.. | .. |
---|
33 | 33 | #define vnic_wq_service fnic_wq_service |
---|
34 | 34 | #define vnic_wq_free fnic_wq_free |
---|
35 | 35 | #define vnic_wq_alloc fnic_wq_alloc |
---|
| 36 | +#define vnic_wq_devcmd2_alloc fnic_wq_devcmd2_alloc |
---|
| 37 | +#define vnic_wq_init_start fnic_wq_init_start |
---|
36 | 38 | #define vnic_wq_init fnic_wq_init |
---|
37 | 39 | #define vnic_wq_error_status fnic_wq_error_status |
---|
38 | 40 | #define vnic_wq_enable fnic_wq_enable |
---|
.. | .. |
---|
163 | 165 | void vnic_wq_free(struct vnic_wq *wq); |
---|
164 | 166 | int vnic_wq_alloc(struct vnic_dev *vdev, struct vnic_wq *wq, unsigned int index, |
---|
165 | 167 | unsigned int desc_count, unsigned int desc_size); |
---|
| 168 | +int vnic_wq_devcmd2_alloc(struct vnic_dev *vdev, struct vnic_wq *wq, |
---|
| 169 | + unsigned int desc_count, unsigned int desc_size); |
---|
| 170 | +void vnic_wq_init_start(struct vnic_wq *wq, unsigned int cq_index, |
---|
| 171 | + unsigned int fetch_index, unsigned int posted_index, |
---|
| 172 | + unsigned int error_interrupt_enable, |
---|
| 173 | + unsigned int error_interrupt_offset); |
---|
166 | 174 | void vnic_wq_init(struct vnic_wq *wq, unsigned int cq_index, |
---|
167 | 175 | unsigned int error_interrupt_enable, |
---|
168 | 176 | unsigned int error_interrupt_offset); |
---|