vmxnet3: show vmxnet3 with filtering capability [VPP-1452]
[vpp.git] / src / plugins / vmxnet3 / vmxnet3.h
1 /*
2  * Copyright (c) 2018 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #ifndef __included_vmnet_vmnet_h__
17 #define __included_vmnet_vmnet_h__
18
19 #define foreach_vmxnet3_tx_func_error          \
20   _(ERROR_PACKETS, "error packets") \
21   _(LINK_DOWN, "link down") \
22   _(NO_FREE_SLOTS, "no free tx slots")
23
24 typedef enum
25 {
26 #define _(f,s) VMXNET3_TX_ERROR_##f,
27   foreach_vmxnet3_tx_func_error
28 #undef _
29     VMXNET3_TX_N_ERROR,
30 } vmxnet3_tx_func_error_t;
31
32 #define foreach_vmxnet3_rxmode_flags \
33   _(0, UCAST, "unicast") \
34   _(1, MCAST, "multicast")                 \
35   _(2, BCAST, "broadcast") \
36   _(3, ALL_MULTI, "all multicast") \
37   _(4, PROMISC, "promiscuous")
38
39 enum
40 {
41 #define _(a, b, c) VMXNET3_RXMODE_##b = (1 << a),
42   foreach_vmxnet3_rxmode_flags
43 #undef _
44 };
45
46 #define foreach_vmxnet3_show_entry \
47   _(RX_COMP, "rx comp") \
48   _(RX_DESC0, "rx desc 0") \
49   _(RX_DESC1, "rx desc 1") \
50   _(TX_COMP, "tx comp") \
51   _(TX_DESC, "tx desc")
52
53 enum
54 {
55 #define _(a, b) VMXNET3_SHOW_##a,
56   foreach_vmxnet3_show_entry
57 #undef _
58 };
59
60 /* BAR 0 */
61 #define VMXNET3_REG_IMR     0x0000      /* Interrupt Mask Register */
62 #define VMXNET3_REG_TXPROD  0x0600      /* Tx Producer Index */
63 #define VMXNET3_REG_RXPROD  0x0800      /* Rx Producer Index for ring 1 */
64 #define VMXNET3_REG_RXPROD2 0x0A00      /* Rx Producer Index for ring 2 */
65
66
67 /* BAR 1 */
68 #define VMXNET3_REG_VRRS 0x0000 /* VMXNET3 Revision Report Selection */
69 #define VMXNET3_REG_UVRS 0x0008 /* UPT Version Report Selection */
70 #define VMXNET3_REG_DSAL 0x0010 /* Driver Shared Address Low */
71 #define VMXNET3_REG_DSAH 0x0018 /* Driver Shared Address High */
72 #define VMXNET3_REG_CMD  0x0020 /* Command */
73 #define VMXNET3_REG_MACL 0x0028 /* MAC Address Low */
74 #define VMXNET3_REG_MACH 0x0030 /* MAC Address High */
75 #define VMXNET3_REG_ICR  0x0038 /* Interrupt Cause Register */
76 #define VMXNET3_REG_ECR  0x0040 /* Event Cause Register */
77
78 #define VMXNET3_VLAN_LEN 4
79 #define VMXNET3_FCS_LEN  4
80 #define VMXNET3_MTU (1514 + VMXNET3_VLAN_LEN + VMXNET3_FCS_LEN)
81
82 #define VMXNET3_RXF_BTYPE (1 << 14)     /* rx body buffer type */
83 #define VMXNET3_RXF_GEN   (1 << 31)     /* rx generation */
84 #define VMXNET3_RXCF_IP6  (1 << 20)     /* rx ip6 packet */
85 #define VMXNET3_RXCF_IP4  (1 << 21)     /* rx ip4 packet */
86 #define VMXNET3_RXCF_GEN  (1 << 31)     /* rx completion generation */
87 #define VMXNET3_RXC_INDEX (0xFFF)       /* rx completion index mask */
88
89 #define VMXNET3_TXF_GEN  (1 << 14)      /* tx generation */
90 #define VMXNET3_TXF_EOP  (1 << 12)      /* tx end of packet */
91 #define VMXNET3_TXF_CQ   (1 << 13)      /* tx completion request */
92 #define VMXNET3_TXCF_GEN (1 << 31)      /* tx completion generation */
93 #define VMXNET3_TXC_INDEX (0xFFF)       /* tx completion index mask */
94
95 #define VMXNET3_RX_RING_SIZE 2
96 #define VMXNET3_INPUT_REFILL_THRESHOLD 32
97 #define VMXNET3_NUM_TX_DESC 1024
98 #define VMXNET3_NUM_TX_COMP VMXNET3_NUM_TX_DESC
99 #define VMXNET3_NUM_RX_DESC 1024
100 #define VMXNET3_NUM_RX_COMP VMXNET3_NUM_RX_DESC
101
102 #define VMXNET3_VERSION_MAGIC 0x69505845
103 #define VMXNET3_SHARED_MAGIC  0xbabefee1
104 #define VMXNET3_VERSION_SELECT     1
105 #define VMXNET3_UPT_VERSION_SELECT 1
106 #define VMXNET3_MAX_INTRS          25
107 #define VMXNET3_IC_DISABLE_ALL     0x1
108
109 #define VMXNET3_GOS_BITS_32     (1 << 0)
110 #define VMXNET3_GOS_BITS_64     (2 << 0)
111 #define VMXNET3_GOS_TYPE_LINUX  (1 << 2)
112 #define VMXNET3_RXCL_LEN_MASK   (0x3FFF)        // 14 bits
113 #define VMXNET3_RXCL_ERROR      (1 << 14)
114 #define VMXNET3_RXCI_EOP        (1 << 14)
115 #define VMXNET3_RXCI_SOP        (1 << 15)
116
117 #define foreach_vmxnet3_device_flags \
118   _(0, INITIALIZED, "initialized") \
119   _(1, ERROR, "error")             \
120   _(2, ADMIN_UP, "admin-up") \
121   _(3, IOVA, "iova") \
122   _(4, LINK_UP, "link-up") \
123   _(5, SHARED_TXQ_LOCK, "shared-txq-lock") \
124   _(6, ELOG, "elog")
125
126 enum
127 {
128 #define _(a, b, c) VMXNET3_DEVICE_F_##b = (1 << a),
129   foreach_vmxnet3_device_flags
130 #undef _
131 };
132
133 #define foreach_vmxnet3_set_cmds \
134   _(0, ACTIVATE_DEV, "activate device") \
135   _(1, QUIESCE_DEV, "quiesce device") \
136   _(2, RESET_DEV, "reset device") \
137   _(3, UPDATE_RX_MODE, "update rx mode") \
138   _(4, UPDATE_MAC_FILTERS, "update mac filters") \
139   _(5, UPDATE_VLAN_FILTERS, "update vlan filters") \
140   _(6, UPDATE_RSSIDT, "update rss idt") \
141   _(7, UPDATE_IML, "update iml") \
142   _(8, UPDATE_PMCFG, "update pm cfg") \
143   _(9, UPDATE_FEATURE, "update feature") \
144   _(10, STOP_EMULATION, "stop emulation") \
145   _(11, LOAD_PLUGIN, "load plugin") \
146   _(12, ACTIVATE_VF, "activate vf") \
147   _(13, RESERVED3, "reserved 3") \
148   _(14, RESERVED4, "reservced 4") \
149   _(15, REGISTER_MEMREGS, "register mem regs")
150
151 enum
152 {
153 #define _(a, b, c) VMXNET3_CMD_##b = (a + 0xCAFE0000),
154   foreach_vmxnet3_set_cmds
155 #undef _
156 };
157
158 #define foreach_vmxnet3_get_cmds \
159   _(0, GET_QUEUE_STATUS, "get queue status") \
160   _(1, GET_STATS, "get stats") \
161   _(2, GET_LINK, "get link") \
162   _(3, GET_PERM_MAC_LO, "get perm mac lo") \
163   _(4, GET_PERM_MAC_HI, "get perm mac hi") \
164   _(5, GET_DID_LO, "get did lo") \
165   _(6, GET_DID_HI, "get did hi") \
166   _(7, GET_DEV_EXTRA_INFO, "get dev extra info") \
167   _(8, GET_CONF_INTR, "get conf intr") \
168   _(9, GET_ADAPTIVE_RING_INFO, "get adaptive ring info") \
169   _(10, GET_TXDATA_DESC_SIZE, "gte txdata desc size") \
170   _(11, RESERVED5, "reserved5")
171
172 enum
173 {
174 #define _(a, b, c) VMXNET3_CMD_##b = (a + 0xF00D0000),
175   foreach_vmxnet3_get_cmds
176 #undef _
177 };
178
179 typedef CLIB_PACKED (struct
180                      {
181                      u32 version; u32 guest_info; u32 version_support;
182                      u32 upt_version_support; u64 upt_features;
183                      u64 driver_data_address; u64 queue_desc_address;
184                      u32 driver_data_len; u32 queue_desc_len;
185                      u32 mtu;
186                      u16 max_num_rx_sg; u8 num_tx_queues; u8 num_rx_queues;
187                      u32 pad[4];
188                      }) vmxnet3_misc_config;
189
190 typedef CLIB_PACKED (struct
191                      {
192                      u8 mask_mode;
193                      u8 num_intrs;
194                      u8 event_intr_index;
195                      u8 moderation_level[VMXNET3_MAX_INTRS]; u32 control;
196                      u32 pad[2];
197                      }) vmxnet3_interrupt_config;
198
199 typedef CLIB_PACKED (struct
200                      {
201                      u32 mode;
202                      u16 multicast_len;
203                      u16 pad; u64 multicast_address; u8 vlan_filter[512];
204                      }) vmxnet3_rx_filter_config;
205
206 typedef CLIB_PACKED (struct
207                      {
208                      u32 version; u32 length;
209                      u64 address;
210                      }) vmxnet3_variable_config;
211
212 typedef CLIB_PACKED (struct
213                      {
214                      u32 magic;
215                      u32 pad;
216                      vmxnet3_misc_config misc;
217                      vmxnet3_interrupt_config interrupt;
218                      vmxnet3_rx_filter_config rx_filter;
219                      vmxnet3_variable_config rss;
220                      vmxnet3_variable_config pattern;
221                      vmxnet3_variable_config plugin; u32 ecr;
222                      u32 pad1[5];
223                      }) vmxnet3_shared;
224
225 typedef CLIB_PACKED (struct
226                      {
227                      u8 stopped;
228                      u8 pad[3];
229                      u32 error;
230                      }) vmxnet3_queue_status;
231
232 typedef CLIB_PACKED (struct
233                      {
234                      u32 num_deferred; u32 threshold;
235                      u64 pad;
236                      }) vmxnet3_tx_queue_control;
237
238 typedef CLIB_PACKED (struct
239                      {
240                      u64 desc_address;
241                      u64 data_address;
242                      u64 comp_address; u64 driver_data_address; u64 pad;
243                      u32 num_desc;
244                      u32 num_data;
245                      u32 num_comp; u32 driver_data_len; u8 intr_index;
246                      u8 pad1[7];
247                      }) vmxnet3_tx_queue_config;
248
249 typedef CLIB_PACKED (struct
250                      {
251                      u64 tso_pkts;
252                      u64 tso_bytes;
253                      u64 ucast_pkts; u64 ucast_bytes; u64 mcast_pkts;
254                      u64 mcast_bytes;
255                      u64 bcast_pkts; u64 bcast_bytes; u64 error_pkts;
256                      u64 discard_pkts;
257                      }) vmxnet3_tx_stats;
258
259 typedef CLIB_PACKED (struct
260                      {
261                      vmxnet3_tx_queue_control ctrl;
262                      vmxnet3_tx_queue_config cfg;
263                      vmxnet3_queue_status status; vmxnet3_tx_stats stats;
264                      u8 pad[88];
265                      }) vmxnet3_tx_queue;
266
267 typedef CLIB_PACKED (struct
268                      {
269                      u8 update_prod; u8 pad[7];
270                      u64 pad1;
271                      }) vmxnet3_rx_queue_control;
272
273 typedef CLIB_PACKED (struct
274                      {
275                      u64 desc_address[2];
276                      u64 comp_address; u64 driver_data_address; u64 pad;
277                      u32 num_desc[2];
278                      u32 num_comp; u32 driver_data_len; u8 intr_index;
279                      u8 pad1[7];
280                      }) vmxnet3_rx_queue_config;
281
282 typedef CLIB_PACKED (struct
283                      {
284                      u64 lro_pkts;
285                      u64 lro_bytes;
286                      u64 ucast_pkts; u64 ucast_bytes; u64 mcast_pkts;
287                      u64 mcast_bytes;
288                      u64 bcast_pkts; u64 bcast_bytes; u64 nobuf_pkts;
289                      u64 error_pkts;
290                      }) vmxnet3_rx_stats;
291
292 typedef CLIB_PACKED (struct
293                      {
294                      vmxnet3_rx_queue_control ctrl;
295                      vmxnet3_rx_queue_config cfg;
296                      vmxnet3_queue_status status; vmxnet3_rx_stats stats;
297                      u8 pad[88];
298                      }) vmxnet3_rx_queue;
299
300 typedef CLIB_PACKED (struct
301                      {
302                      vmxnet3_tx_queue tx; vmxnet3_rx_queue rx;
303                      }) vmxnet3_queues;
304
305 /*
306  * flags:
307  *   buffer length   -- bits 0-13
308  *   buffer type     -- bit  14
309  *   descriptor type -- bit  15
310  *   reserved        -- bits 16-30
311  *   generation      -- bit  31
312  */
313 typedef CLIB_PACKED (struct
314                      {
315                      u64 address;
316                      u32 flags;
317                      u32 pad;
318                      }) vmxnet3_rx_desc;
319
320 /*
321  * index:
322  *   RX desc index           -- bits 0-11
323  *   ext1                    -- bits 12-13
324  *   end of packet           -- bit  14
325  *   start of packet         -- bit  15
326  *   ring ID                 -- bits 16-25
327  *   RSS hash type           -- bits 26-29
328  *   checksum not calculated -- bit  30
329  *   ext2                    -- bit  31
330  *
331  * rss: RSS hash value
332  *
333  * len:
334  *   data length             -- bits 0-13
335  *   error                   -- bit  14
336  *   tag is stripped         -- bit  15
337  *   tag stripped            -- bits 16-31
338  *
339  * flags:
340  *   checksum                -- bits 0 - 15
341  *   tcp/udp checksum correct-- bit  16
342  *   udp packet              -- bit  17
343  *   tcp packet              -- bit  18
344  *   ip checksum correct     -- bit  19
345  *   ipv6                    -- bit  20
346  *   ipv4                    -- bit  21
347  *   ip fragment             -- bit  22
348  *   frame crc correct       -- bit  23
349  *   completion type         -- bits 24-30
350  *   generation              -- bit  31
351  */
352 typedef CLIB_PACKED (struct
353                      {
354                      u32 index; u32 rss;
355                      u32 len;
356                      u32 flags;
357                      }) vmxnet3_rx_comp;
358
359 /*
360  * index:
361  *   TX desc index           -- bits 0-11
362  *   ext1                    -- bits 12-31
363  *
364  * flags:
365  *   reserved                -- bits 0-23
366  *   completion type         -- bits 24-30
367  *   generation              -- bit  31
368  */
369 typedef CLIB_PACKED (struct
370                      {
371                      u32 index;
372                      u32 pad[2];
373                      u32 flags;
374                      }) vmxnet3_tx_comp;
375
376 /*
377  * flags[0]:
378  *   length                  -- bits 0-13
379  *   generation              -- bit  14
380  *   reserved                -- bit  15
381  *   descriptor type         -- bit  16
382  *   ext1                    -- bit  17
383  *   MSS, checksum offset    -- bits 18-31
384  * flags[1]:
385  *   header length           -- bits 0-9
386  *   offload mode            -- bits 10-11
387  *   end of packet           -- bit  12
388  *   completion request      -- bit  13
389  *   ext2                    -- bit  14
390  *   vlan tag insertion      -- bit  15
391  *   tag to insert           -- bits 16-31
392  */
393 typedef CLIB_PACKED (struct
394                      {
395                      u64 address;
396                      u32 flags[2];
397                      }) vmxnet3_tx_desc;
398
399 typedef struct
400 {
401   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
402   u32 *bufs;
403   u32 gen;
404   u16 fill;
405   u16 rid;
406   u16 produce;
407   u16 consume;
408 } vmxnet3_rx_ring;
409
410 typedef struct
411 {
412   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
413   u32 gen;
414   u16 next;
415 } vmxnet3_rx_comp_ring;
416
417 typedef struct
418 {
419   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
420   u16 size;
421   u8 int_mode;
422   vmxnet3_rx_ring rx_ring[VMXNET3_RX_RING_SIZE];
423   vmxnet3_rx_desc *rx_desc[VMXNET3_RX_RING_SIZE];
424   vmxnet3_rx_comp *rx_comp;
425   vmxnet3_rx_comp_ring rx_comp_ring;
426 } vmxnet3_rxq_t;
427
428 typedef struct
429 {
430   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
431   u32 *bufs;
432   u32 gen;
433   u16 produce;
434   u16 consume;
435 } vmxnet3_tx_ring;
436
437 typedef struct
438 {
439   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
440   u32 gen;
441   u16 next;
442 } vmxnet3_tx_comp_ring;
443
444 typedef struct
445 {
446   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
447   u16 size;
448   clib_spinlock_t lock;
449
450   vmxnet3_tx_desc *tx_desc;
451   vmxnet3_tx_comp *tx_comp;
452   vmxnet3_tx_ring tx_ring;
453   vmxnet3_tx_comp_ring tx_comp_ring;
454 } vmxnet3_txq_t;
455
456 typedef CLIB_PACKED (struct
457                      {
458                      vmxnet3_queues queues; vmxnet3_shared shared;
459                      }) vmxnet3_dma;
460
461 typedef struct
462 {
463   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
464   u32 flags;
465   u32 per_interface_next_index;
466
467   u32 dev_instance;
468   u32 sw_if_index;
469   u32 hw_if_index;
470   vlib_pci_dev_handle_t pci_dev_handle;
471   vlib_pci_addr_t pci_addr;
472   void *bar[2];
473
474   /* queues */
475   vmxnet3_rxq_t *rxqs;
476   vmxnet3_txq_t *txqs;
477
478   u16 num_tx_queues;
479   u16 num_rx_queues;
480   u16 num_intrs;
481
482   u8 version;
483   u8 mac_addr[6];
484
485   /* error */
486   clib_error_t *error;
487
488   vmxnet3_dma *dma;
489
490   u32 link_speed;
491 } vmxnet3_device_t;
492
493 typedef struct
494 {
495   vmxnet3_device_t *devices;
496   vlib_physmem_region_index_t physmem_region;
497   u32 physmem_region_alloc;
498   u16 msg_id_base;
499 } vmxnet3_main_t;
500
501 extern vmxnet3_main_t vmxnet3_main;
502
503 typedef struct
504 {
505   vlib_pci_addr_t addr;
506   u32 enable_elog;
507   u16 rxq_size;
508   u16 txq_size;
509   /* return */
510   i32 rv;
511   u32 sw_if_index;
512   clib_error_t *error;
513 } vmxnet3_create_if_args_t;
514
515 typedef struct
516 {
517   u32 next_index;
518   u32 hw_if_index;
519   vlib_buffer_t buffer;
520 } vmxnet3_input_trace_t;
521
522 void vmxnet3_create_if (vlib_main_t * vm, vmxnet3_create_if_args_t * args);
523 void vmxnet3_delete_if (vlib_main_t * vm, vmxnet3_device_t * ad);
524
525 extern clib_error_t *vmxnet3_plugin_api_hookup (vlib_main_t * vm);
526 extern vlib_node_registration_t vmxnet3_input_node;
527 extern vnet_device_class_t vmxnet3_device_class;
528
529 /* format.c */
530 format_function_t format_vmxnet3_device;
531 format_function_t format_vmxnet3_device_name;
532 format_function_t format_vmxnet3_input_trace;
533
534 static_always_inline void
535 vmxnet3_reg_write (vmxnet3_device_t * vd, u8 bar, u32 addr, u32 val)
536 {
537   *(volatile u32 *) ((u8 *) vd->bar[bar] + addr) = val;
538 }
539
540 static_always_inline u32
541 vmxnet3_reg_read (vmxnet3_device_t * vd, u8 bar, u32 addr)
542 {
543   return *(volatile u32 *) (vd->bar[bar] + addr);
544 }
545
546 static_always_inline uword
547 vmxnet3_dma_addr (vlib_main_t * vm, vmxnet3_device_t * vd, void *p)
548 {
549   vmxnet3_main_t *vmxm = &vmxnet3_main;
550
551   return (vd->flags & VMXNET3_DEVICE_F_IOVA) ? pointer_to_uword (p) :
552     vlib_physmem_virtual_to_physical (vm, vmxm->physmem_region, p);
553 }
554
555 static_always_inline void
556 vmxnet3_rx_ring_advance_produce (vmxnet3_rxq_t * rxq, vmxnet3_rx_ring * ring)
557 {
558   ring->produce++;
559   if (PREDICT_FALSE (ring->produce == rxq->size))
560     {
561       ring->produce = 0;
562       ring->gen ^= VMXNET3_RXF_GEN;
563     }
564 }
565
566 static_always_inline clib_error_t *
567 vmxnet3_rxq_refill_ring0 (vlib_main_t * vm, vmxnet3_device_t * vd,
568                           vmxnet3_rxq_t * rxq)
569 {
570   vmxnet3_rx_desc *rxd;
571   u16 n_refill, n_alloc;
572   vmxnet3_rx_ring *ring;
573
574   ring = &rxq->rx_ring[0];
575   n_refill = rxq->size - ring->fill;
576
577   if (PREDICT_TRUE (n_refill <= VMXNET3_INPUT_REFILL_THRESHOLD))
578     return 0;
579
580   n_alloc =
581     vlib_buffer_alloc_to_ring (vm, ring->bufs, ring->produce, rxq->size,
582                                n_refill);
583   if (PREDICT_FALSE (n_alloc != n_refill))
584     {
585       if (n_alloc)
586         vlib_buffer_free_from_ring (vm, ring->bufs, ring->produce, rxq->size,
587                                     n_alloc);
588       return clib_error_return (0, "buffer alloc failed");
589     }
590
591   while (n_alloc)
592     {
593       rxd = &rxq->rx_desc[0][ring->produce];
594       rxd->address =
595         vlib_get_buffer_data_physical_address (vm, ring->bufs[ring->produce]);
596       rxd->flags = ring->gen | VLIB_BUFFER_DATA_SIZE;
597
598       vmxnet3_rx_ring_advance_produce (rxq, ring);
599       ring->fill++;
600       n_alloc--;
601     }
602
603   vmxnet3_reg_write (vd, 0, VMXNET3_REG_RXPROD, ring->produce);
604
605   return 0;
606 }
607
608 static_always_inline clib_error_t *
609 vmxnet3_rxq_refill_ring1 (vlib_main_t * vm, vmxnet3_device_t * vd,
610                           vmxnet3_rxq_t * rxq)
611 {
612   vmxnet3_rx_desc *rxd;
613   u16 n_refill, n_alloc;
614   vmxnet3_rx_ring *ring;
615
616   ring = &rxq->rx_ring[1];
617   n_refill = rxq->size - ring->fill;
618
619   if (PREDICT_TRUE (n_refill <= VMXNET3_INPUT_REFILL_THRESHOLD))
620     return 0;
621
622   n_alloc =
623     vlib_buffer_alloc_to_ring (vm, ring->bufs, ring->produce, rxq->size,
624                                n_refill);
625   if (PREDICT_FALSE (n_alloc != n_refill))
626     {
627       if (n_alloc)
628         vlib_buffer_free_from_ring (vm, ring->bufs, ring->produce, rxq->size,
629                                     n_alloc);
630       return clib_error_return (0, "buffer alloc failed");
631     }
632
633   while (n_alloc)
634     {
635       rxd = &rxq->rx_desc[1][ring->produce];
636       rxd->address =
637         vlib_get_buffer_data_physical_address (vm, ring->bufs[ring->produce]);
638       rxd->flags = ring->gen | VLIB_BUFFER_DATA_SIZE | VMXNET3_RXF_BTYPE;
639
640       vmxnet3_rx_ring_advance_produce (rxq, ring);
641       ring->fill++;
642       n_alloc--;
643     }
644
645   vmxnet3_reg_write (vd, 0, VMXNET3_REG_RXPROD2, ring->produce);
646
647   return 0;
648 }
649
650 #endif /* __included_vmnet_vmnet_h__ */
651 /*
652  * fd.io coding-style-patch-verification: ON
653  *
654  * Local Variables:
655  * eval: (c-set-style "gnu")
656  * End:
657  */