dpdk: remove KNI support
[vpp.git] / vnet / vnet / devices / dpdk / device.c
1 /*
2  * Copyright (c) 2015 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 #include <vnet/vnet.h>
16 #include <vppinfra/vec.h>
17 #include <vppinfra/format.h>
18 #include <vlib/unix/cj.h>
19 #include <assert.h>
20
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/devices/dpdk/dpdk.h>
23
24 #include "dpdk_priv.h"
25 #include <vppinfra/error.h>
26
27 #define foreach_dpdk_tx_func_error                      \
28   _(BAD_RETVAL, "DPDK tx function returned an error")   \
29   _(RING_FULL, "Tx packet drops (ring full)")           \
30   _(PKT_DROP, "Tx packet drops (dpdk tx failure)")      \
31   _(REPL_FAIL, "Tx packet drops (replication failure)")
32
33 typedef enum
34 {
35 #define _(f,s) DPDK_TX_FUNC_ERROR_##f,
36   foreach_dpdk_tx_func_error
37 #undef _
38     DPDK_TX_FUNC_N_ERROR,
39 } dpdk_tx_func_error_t;
40
41 static char *dpdk_tx_func_error_strings[] = {
42 #define _(n,s) s,
43   foreach_dpdk_tx_func_error
44 #undef _
45 };
46
47 clib_error_t *
48 dpdk_set_mac_address (vnet_hw_interface_t * hi, char *address)
49 {
50   int error;
51   dpdk_main_t *dm = &dpdk_main;
52   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
53
54   error = rte_eth_dev_default_mac_addr_set (xd->device_index,
55                                             (struct ether_addr *) address);
56
57   if (error)
58     {
59       return clib_error_return (0, "mac address set failed: %d", error);
60     }
61   else
62     {
63       return NULL;
64     }
65 }
66
67 clib_error_t *
68 dpdk_set_mc_filter (vnet_hw_interface_t * hi,
69                     struct ether_addr mc_addr_vec[], int naddr)
70 {
71   int error;
72   dpdk_main_t *dm = &dpdk_main;
73   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
74
75   error = rte_eth_dev_set_mc_addr_list (xd->device_index, mc_addr_vec, naddr);
76
77   if (error)
78     {
79       return clib_error_return (0, "mc addr list failed: %d", error);
80     }
81   else
82     {
83       return NULL;
84     }
85 }
86
87 struct rte_mbuf *
88 dpdk_replicate_packet_mb (vlib_buffer_t * b)
89 {
90   vlib_main_t *vm = vlib_get_main ();
91   vlib_buffer_main_t *bm = vm->buffer_main;
92   struct rte_mbuf *first_mb = 0, *new_mb, *pkt_mb, **prev_mb_next = 0;
93   u8 nb_segs, nb_segs_left;
94   u32 copy_bytes;
95   unsigned socket_id = rte_socket_id ();
96
97   ASSERT (bm->pktmbuf_pools[socket_id]);
98   pkt_mb = rte_mbuf_from_vlib_buffer (b);
99   nb_segs = pkt_mb->nb_segs;
100   for (nb_segs_left = nb_segs; nb_segs_left; nb_segs_left--)
101     {
102       if (PREDICT_FALSE (pkt_mb == 0))
103         {
104           clib_warning ("Missing %d mbuf chain segment(s):   "
105                         "(nb_segs = %d, nb_segs_left = %d)!",
106                         nb_segs - nb_segs_left, nb_segs, nb_segs_left);
107           if (first_mb)
108             rte_pktmbuf_free (first_mb);
109           return NULL;
110         }
111       new_mb = rte_pktmbuf_alloc (bm->pktmbuf_pools[socket_id]);
112       if (PREDICT_FALSE (new_mb == 0))
113         {
114           if (first_mb)
115             rte_pktmbuf_free (first_mb);
116           return NULL;
117         }
118
119       /*
120        * Copy packet info into 1st segment.
121        */
122       if (first_mb == 0)
123         {
124           first_mb = new_mb;
125           rte_pktmbuf_pkt_len (first_mb) = pkt_mb->pkt_len;
126           first_mb->nb_segs = pkt_mb->nb_segs;
127           first_mb->port = pkt_mb->port;
128 #ifdef DAW_FIXME                // TX Offload support TBD
129           first_mb->vlan_macip = pkt_mb->vlan_macip;
130           first_mb->hash = pkt_mb->hash;
131           first_mb->ol_flags = pkt_mb->ol_flags
132 #endif
133         }
134       else
135         {
136           ASSERT (prev_mb_next != 0);
137           *prev_mb_next = new_mb;
138         }
139
140       /*
141        * Copy packet segment data into new mbuf segment.
142        */
143       rte_pktmbuf_data_len (new_mb) = pkt_mb->data_len;
144       copy_bytes = pkt_mb->data_len + RTE_PKTMBUF_HEADROOM;
145       ASSERT (copy_bytes <= pkt_mb->buf_len);
146       clib_memcpy (new_mb->buf_addr, pkt_mb->buf_addr, copy_bytes);
147
148       prev_mb_next = &new_mb->next;
149       pkt_mb = pkt_mb->next;
150     }
151
152   ASSERT (pkt_mb == 0);
153   __rte_mbuf_sanity_check (first_mb, 1);
154
155   return first_mb;
156 }
157
158 struct rte_mbuf *
159 dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b)
160 {
161   vlib_main_t *vm = vlib_get_main ();
162   vlib_buffer_main_t *bm = vm->buffer_main;
163   struct rte_mbuf *first_mb = 0, *new_mb, *pkt_mb, **prev_mb_next = 0;
164   u8 nb_segs, nb_segs_left;
165   unsigned socket_id = rte_socket_id ();
166
167   ASSERT (bm->pktmbuf_pools[socket_id]);
168   pkt_mb = rte_mbuf_from_vlib_buffer (b);
169   nb_segs = pkt_mb->nb_segs;
170   for (nb_segs_left = nb_segs; nb_segs_left; nb_segs_left--)
171     {
172       if (PREDICT_FALSE (pkt_mb == 0))
173         {
174           clib_warning ("Missing %d mbuf chain segment(s):   "
175                         "(nb_segs = %d, nb_segs_left = %d)!",
176                         nb_segs - nb_segs_left, nb_segs, nb_segs_left);
177           if (first_mb)
178             rte_pktmbuf_free (first_mb);
179           return NULL;
180         }
181       new_mb = rte_pktmbuf_clone (pkt_mb, bm->pktmbuf_pools[socket_id]);
182       if (PREDICT_FALSE (new_mb == 0))
183         {
184           if (first_mb)
185             rte_pktmbuf_free (first_mb);
186           return NULL;
187         }
188
189       /*
190        * Copy packet info into 1st segment.
191        */
192       if (first_mb == 0)
193         {
194           first_mb = new_mb;
195           rte_pktmbuf_pkt_len (first_mb) = pkt_mb->pkt_len;
196           first_mb->nb_segs = pkt_mb->nb_segs;
197           first_mb->port = pkt_mb->port;
198 #ifdef DAW_FIXME                // TX Offload support TBD
199           first_mb->vlan_macip = pkt_mb->vlan_macip;
200           first_mb->hash = pkt_mb->hash;
201           first_mb->ol_flags = pkt_mb->ol_flags
202 #endif
203         }
204       else
205         {
206           ASSERT (prev_mb_next != 0);
207           *prev_mb_next = new_mb;
208         }
209
210       /*
211        * Copy packet segment data into new mbuf segment.
212        */
213       rte_pktmbuf_data_len (new_mb) = pkt_mb->data_len;
214
215       prev_mb_next = &new_mb->next;
216       pkt_mb = pkt_mb->next;
217     }
218
219   ASSERT (pkt_mb == 0);
220   __rte_mbuf_sanity_check (first_mb, 1);
221
222   return first_mb;
223
224
225 }
226
227 static void
228 dpdk_tx_trace_buffer (dpdk_main_t * dm,
229                       vlib_node_runtime_t * node,
230                       dpdk_device_t * xd,
231                       u16 queue_id, u32 buffer_index, vlib_buffer_t * buffer)
232 {
233   vlib_main_t *vm = vlib_get_main ();
234   dpdk_tx_dma_trace_t *t0;
235   struct rte_mbuf *mb;
236
237   mb = rte_mbuf_from_vlib_buffer (buffer);
238
239   t0 = vlib_add_trace (vm, node, buffer, sizeof (t0[0]));
240   t0->queue_index = queue_id;
241   t0->device_index = xd->device_index;
242   t0->buffer_index = buffer_index;
243   clib_memcpy (&t0->mb, mb, sizeof (t0->mb));
244   clib_memcpy (&t0->buffer, buffer,
245                sizeof (buffer[0]) - sizeof (buffer->pre_data));
246   clib_memcpy (t0->buffer.pre_data, buffer->data + buffer->current_data,
247                sizeof (t0->buffer.pre_data));
248 }
249
250 /*
251  * This function calls the dpdk's tx_burst function to transmit the packets
252  * on the tx_vector. It manages a lock per-device if the device does not
253  * support multiple queues. It returns the number of packets untransmitted
254  * on the tx_vector. If all packets are transmitted (the normal case), the
255  * function returns 0.
256  *
257  * The tx_burst function may not be able to transmit all packets because the
258  * dpdk ring is full. If a flowcontrol callback function has been configured
259  * then the function simply returns. If no callback has been configured, the
260  * function will retry calling tx_burst with the remaining packets. This will
261  * continue until all packets are transmitted or tx_burst indicates no packets
262  * could be transmitted. (The caller can drop the remaining packets.)
263  *
264  * The function assumes there is at least one packet on the tx_vector.
265  */
266 static_always_inline
267   u32 tx_burst_vector_internal (vlib_main_t * vm,
268                                 dpdk_device_t * xd,
269                                 struct rte_mbuf **tx_vector)
270 {
271   dpdk_main_t *dm = &dpdk_main;
272   u32 n_packets;
273   u32 tx_head;
274   u32 tx_tail;
275   u32 n_retry;
276   int rv;
277   int queue_id;
278   tx_ring_hdr_t *ring;
279
280   ring = vec_header (tx_vector, sizeof (*ring));
281
282   n_packets = ring->tx_head - ring->tx_tail;
283
284   tx_head = ring->tx_head % xd->nb_tx_desc;
285
286   /*
287    * Ensure rte_eth_tx_burst is not called with 0 packets, which can lead to
288    * unpredictable results.
289    */
290   ASSERT (n_packets > 0);
291
292   /*
293    * Check for tx_vector overflow. If this fails it is a system configuration
294    * error. The ring should be sized big enough to handle the largest un-flowed
295    * off burst from a traffic manager. A larger size also helps performance
296    * a bit because it decreases the probability of having to issue two tx_burst
297    * calls due to a ring wrap.
298    */
299   ASSERT (n_packets < xd->nb_tx_desc);
300
301   /*
302    * If there is no flowcontrol callback, there is only temporary buffering
303    * on the tx_vector and so the tail should always be 0.
304    */
305   ASSERT (dm->flowcontrol_callback || ring->tx_tail == 0);
306
307   /*
308    * If there is a flowcontrol callback, don't retry any incomplete tx_bursts.
309    * Apply backpressure instead. If there is no callback, keep retrying until
310    * a tx_burst sends no packets. n_retry of 255 essentially means no retry
311    * limit.
312    */
313   n_retry = dm->flowcontrol_callback ? 0 : 255;
314
315   queue_id = vm->cpu_index;
316
317   do
318     {
319       /* start the burst at the tail */
320       tx_tail = ring->tx_tail % xd->nb_tx_desc;
321
322       /*
323        * This device only supports one TX queue,
324        * and we're running multi-threaded...
325        */
326       if (PREDICT_FALSE ((xd->flags & DPDK_DEVICE_FLAG_VHOST_USER) == 0 &&
327                          xd->lockp != 0))
328         {
329           queue_id = queue_id % xd->tx_q_used;
330           while (__sync_lock_test_and_set (xd->lockp[queue_id], 1))
331             /* zzzz */
332             queue_id = (queue_id + 1) % xd->tx_q_used;
333         }
334
335       if (PREDICT_TRUE (xd->flags & DPDK_DEVICE_FLAG_HQOS))     /* HQoS ON */
336         {
337           if (PREDICT_TRUE (tx_head > tx_tail))
338             {
339               /* no wrap, transmit in one burst */
340               dpdk_device_hqos_per_worker_thread_t *hqos =
341                 &xd->hqos_wt[vm->cpu_index];
342
343               dpdk_hqos_metadata_set (hqos,
344                                       &tx_vector[tx_tail], tx_head - tx_tail);
345               rv = rte_ring_sp_enqueue_burst (hqos->swq,
346                                               (void **) &tx_vector[tx_tail],
347                                               (uint16_t) (tx_head - tx_tail));
348             }
349           else
350             {
351               /*
352                * This can only happen if there is a flowcontrol callback.
353                * We need to split the transmit into two calls: one for
354                * the packets up to the wrap point, and one to continue
355                * at the start of the ring.
356                * Transmit pkts up to the wrap point.
357                */
358               dpdk_device_hqos_per_worker_thread_t *hqos =
359                 &xd->hqos_wt[vm->cpu_index];
360
361               dpdk_hqos_metadata_set (hqos,
362                                       &tx_vector[tx_tail],
363                                       xd->nb_tx_desc - tx_tail);
364               rv = rte_ring_sp_enqueue_burst (hqos->swq,
365                                               (void **) &tx_vector[tx_tail],
366                                               (uint16_t) (xd->nb_tx_desc -
367                                                           tx_tail));
368               /*
369                * If we transmitted everything we wanted, then allow 1 retry
370                * so we can try to transmit the rest. If we didn't transmit
371                * everything, stop now.
372                */
373               n_retry = (rv == xd->nb_tx_desc - tx_tail) ? 1 : 0;
374             }
375         }
376       else if (PREDICT_TRUE (xd->flags & DPDK_DEVICE_FLAG_PMD))
377         {
378           if (PREDICT_TRUE (tx_head > tx_tail))
379             {
380               /* no wrap, transmit in one burst */
381               rv = rte_eth_tx_burst (xd->device_index,
382                                      (uint16_t) queue_id,
383                                      &tx_vector[tx_tail],
384                                      (uint16_t) (tx_head - tx_tail));
385             }
386           else
387             {
388               /*
389                * This can only happen if there is a flowcontrol callback.
390                * We need to split the transmit into two calls: one for
391                * the packets up to the wrap point, and one to continue
392                * at the start of the ring.
393                * Transmit pkts up to the wrap point.
394                */
395               rv = rte_eth_tx_burst (xd->device_index,
396                                      (uint16_t) queue_id,
397                                      &tx_vector[tx_tail],
398                                      (uint16_t) (xd->nb_tx_desc - tx_tail));
399
400               /*
401                * If we transmitted everything we wanted, then allow 1 retry
402                * so we can try to transmit the rest. If we didn't transmit
403                * everything, stop now.
404                */
405               n_retry = (rv == xd->nb_tx_desc - tx_tail) ? 1 : 0;
406             }
407         }
408 #if DPDK_VHOST_USER
409       else if (xd->flags & DPDK_DEVICE_FLAG_VHOST_USER)
410         {
411           u32 offset = 0;
412           if (xd->need_txlock)
413             {
414               queue_id = 0;
415               while (__sync_lock_test_and_set (xd->lockp[queue_id], 1));
416             }
417           else
418             {
419               dpdk_device_and_queue_t *dq;
420               vec_foreach (dq, dm->devices_by_cpu[vm->cpu_index])
421               {
422                 if (xd->device_index == dq->device)
423                   break;
424               }
425               assert (dq);
426               offset = dq->queue_id * VIRTIO_QNUM;
427             }
428           if (PREDICT_TRUE (tx_head > tx_tail))
429             {
430               int i;
431               u32 bytes = 0;
432               struct rte_mbuf **pkts = &tx_vector[tx_tail];
433               for (i = 0; i < (tx_head - tx_tail); i++)
434                 {
435                   struct rte_mbuf *buff = pkts[i];
436                   bytes += rte_pktmbuf_data_len (buff);
437                 }
438
439               /* no wrap, transmit in one burst */
440               rv =
441                 rte_vhost_enqueue_burst (&xd->vu_vhost_dev,
442                                          offset + VIRTIO_RXQ,
443                                          &tx_vector[tx_tail],
444                                          (uint16_t) (tx_head - tx_tail));
445               if (PREDICT_TRUE (rv > 0))
446                 {
447                   dpdk_vu_vring *vring =
448                     &(xd->vu_intf->vrings[offset + VIRTIO_TXQ]);
449                   vring->packets += rv;
450                   vring->bytes += bytes;
451
452                   if (dpdk_vhost_user_want_interrupt
453                       (xd, offset + VIRTIO_RXQ))
454                     {
455                       vring = &(xd->vu_intf->vrings[offset + VIRTIO_RXQ]);
456                       vring->n_since_last_int += rv;
457
458                       f64 now = vlib_time_now (vm);
459                       if (vring->int_deadline < now ||
460                           vring->n_since_last_int >
461                           dm->conf->vhost_coalesce_frames)
462                         dpdk_vhost_user_send_interrupt (vm, xd,
463                                                         offset + VIRTIO_RXQ);
464                     }
465
466                   int c = rv;
467                   while (c--)
468                     rte_pktmbuf_free (tx_vector[tx_tail + c]);
469                 }
470             }
471           else
472             {
473               /*
474                * If we transmitted everything we wanted, then allow 1 retry
475                * so we can try to transmit the rest. If we didn't transmit
476                * everything, stop now.
477                */
478               int i;
479               u32 bytes = 0;
480               struct rte_mbuf **pkts = &tx_vector[tx_tail];
481               for (i = 0; i < (xd->nb_tx_desc - tx_tail); i++)
482                 {
483                   struct rte_mbuf *buff = pkts[i];
484                   bytes += rte_pktmbuf_data_len (buff);
485                 }
486               rv =
487                 rte_vhost_enqueue_burst (&xd->vu_vhost_dev,
488                                          offset + VIRTIO_RXQ,
489                                          &tx_vector[tx_tail],
490                                          (uint16_t) (xd->nb_tx_desc -
491                                                      tx_tail));
492
493               if (PREDICT_TRUE (rv > 0))
494                 {
495                   dpdk_vu_vring *vring =
496                     &(xd->vu_intf->vrings[offset + VIRTIO_TXQ]);
497                   vring->packets += rv;
498                   vring->bytes += bytes;
499
500                   if (dpdk_vhost_user_want_interrupt
501                       (xd, offset + VIRTIO_RXQ))
502                     {
503                       vring = &(xd->vu_intf->vrings[offset + VIRTIO_RXQ]);
504                       vring->n_since_last_int += rv;
505
506                       f64 now = vlib_time_now (vm);
507                       if (vring->int_deadline < now ||
508                           vring->n_since_last_int >
509                           dm->conf->vhost_coalesce_frames)
510                         dpdk_vhost_user_send_interrupt (vm, xd,
511                                                         offset + VIRTIO_RXQ);
512                     }
513
514                   int c = rv;
515                   while (c--)
516                     rte_pktmbuf_free (tx_vector[tx_tail + c]);
517                 }
518
519               n_retry = (rv == xd->nb_tx_desc - tx_tail) ? 1 : 0;
520             }
521
522           if (xd->need_txlock)
523             *xd->lockp[queue_id] = 0;
524         }
525 #endif
526       else
527         {
528           ASSERT (0);
529           rv = 0;
530         }
531
532       if (PREDICT_FALSE ((xd->flags & DPDK_DEVICE_FLAG_VHOST_USER) == 0 &&
533                          xd->lockp != 0))
534         *xd->lockp[queue_id] = 0;
535
536       if (PREDICT_FALSE (rv < 0))
537         {
538           // emit non-fatal message, bump counter
539           vnet_main_t *vnm = dm->vnet_main;
540           vnet_interface_main_t *im = &vnm->interface_main;
541           u32 node_index;
542
543           node_index = vec_elt_at_index (im->hw_interfaces,
544                                          xd->vlib_hw_if_index)->tx_node_index;
545
546           vlib_error_count (vm, node_index, DPDK_TX_FUNC_ERROR_BAD_RETVAL, 1);
547           clib_warning ("rte_eth_tx_burst[%d]: error %d", xd->device_index,
548                         rv);
549           return n_packets;     // untransmitted packets
550         }
551       ring->tx_tail += (u16) rv;
552       n_packets -= (uint16_t) rv;
553     }
554   while (rv && n_packets && (n_retry > 0));
555
556   return n_packets;
557 }
558
559
560 /*
561  * This function transmits any packets on the interface's tx_vector and returns
562  * the number of packets untransmitted on the tx_vector. If the tx_vector is
563  * empty the function simply returns 0.
564  *
565  * It is intended to be called by a traffic manager which has flowed-off an
566  * interface to see if the interface can be flowed-on again.
567  */
568 u32
569 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance)
570 {
571   dpdk_main_t *dm = &dpdk_main;
572   dpdk_device_t *xd;
573   int queue_id;
574   struct rte_mbuf **tx_vector;
575   tx_ring_hdr_t *ring;
576
577   /* param is dev_instance and not hw_if_index to save another lookup */
578   xd = vec_elt_at_index (dm->devices, dev_instance);
579
580   queue_id = vm->cpu_index;
581   tx_vector = xd->tx_vectors[queue_id];
582
583   /* If no packets on the ring, don't bother calling tx function */
584   ring = vec_header (tx_vector, sizeof (*ring));
585   if (ring->tx_head == ring->tx_tail)
586     {
587       return 0;
588     }
589
590   return tx_burst_vector_internal (vm, xd, tx_vector);
591 }
592
593 /*
594  * Transmits the packets on the frame to the interface associated with the
595  * node. It first copies packets on the frame to a tx_vector containing the
596  * rte_mbuf pointers. It then passes this vector to tx_burst_vector_internal
597  * which calls the dpdk tx_burst function.
598  *
599  * The tx_vector is treated slightly differently depending on whether or
600  * not a flowcontrol callback function has been configured. If there is no
601  * callback, the tx_vector is a temporary array of rte_mbuf packet pointers.
602  * Its entries are written and consumed before the function exits.
603  *
604  * If there is a callback then the transmit is being invoked in the presence
605  * of a traffic manager. Here the tx_vector is treated like a ring of rte_mbuf
606  * pointers. If not all packets can be transmitted, the untransmitted packets
607  * stay on the tx_vector until the next call. The callback allows the traffic
608  * manager to flow-off dequeues to the interface. The companion function
609  * dpdk_interface_tx_vector() allows the traffic manager to detect when
610  * it should flow-on the interface again.
611  */
612 static uword
613 dpdk_interface_tx (vlib_main_t * vm,
614                    vlib_node_runtime_t * node, vlib_frame_t * f)
615 {
616   dpdk_main_t *dm = &dpdk_main;
617   vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
618   dpdk_device_t *xd = vec_elt_at_index (dm->devices, rd->dev_instance);
619   u32 n_packets = f->n_vectors;
620   u32 n_left;
621   u32 *from;
622   struct rte_mbuf **tx_vector;
623   int i;
624   int queue_id;
625   u32 my_cpu;
626   u32 tx_pkts = 0;
627   tx_ring_hdr_t *ring;
628   u32 n_on_ring;
629
630   my_cpu = vm->cpu_index;
631
632   queue_id = my_cpu;
633
634   tx_vector = xd->tx_vectors[queue_id];
635   ring = vec_header (tx_vector, sizeof (*ring));
636
637   n_on_ring = ring->tx_head - ring->tx_tail;
638   from = vlib_frame_vector_args (f);
639
640   ASSERT (n_packets <= VLIB_FRAME_SIZE);
641
642   if (PREDICT_FALSE (n_on_ring + n_packets > xd->nb_tx_desc))
643     {
644       /*
645        * Overflowing the ring should never happen.
646        * If it does then drop the whole frame.
647        */
648       vlib_error_count (vm, node->node_index, DPDK_TX_FUNC_ERROR_RING_FULL,
649                         n_packets);
650
651       while (n_packets--)
652         {
653           u32 bi0 = from[n_packets];
654           vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
655           struct rte_mbuf *mb0 = rte_mbuf_from_vlib_buffer (b0);
656           rte_pktmbuf_free (mb0);
657         }
658       return n_on_ring;
659     }
660
661   if (PREDICT_FALSE (dm->tx_pcap_enable))
662     {
663       n_left = n_packets;
664       while (n_left > 0)
665         {
666           u32 bi0 = from[0];
667           vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
668           if (dm->pcap_sw_if_index == 0 ||
669               dm->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_TX])
670             pcap_add_buffer (&dm->pcap_main, vm, bi0, 512);
671           from++;
672           n_left--;
673         }
674     }
675
676   from = vlib_frame_vector_args (f);
677   n_left = n_packets;
678   i = ring->tx_head % xd->nb_tx_desc;
679
680   while (n_left >= 4)
681     {
682       u32 bi0, bi1;
683       u32 pi0, pi1;
684       struct rte_mbuf *mb0, *mb1;
685       struct rte_mbuf *prefmb0, *prefmb1;
686       vlib_buffer_t *b0, *b1;
687       vlib_buffer_t *pref0, *pref1;
688       i16 delta0, delta1;
689       u16 new_data_len0, new_data_len1;
690       u16 new_pkt_len0, new_pkt_len1;
691       u32 any_clone;
692
693       pi0 = from[2];
694       pi1 = from[3];
695       pref0 = vlib_get_buffer (vm, pi0);
696       pref1 = vlib_get_buffer (vm, pi1);
697
698       prefmb0 = rte_mbuf_from_vlib_buffer (pref0);
699       prefmb1 = rte_mbuf_from_vlib_buffer (pref1);
700
701       CLIB_PREFETCH (prefmb0, CLIB_CACHE_LINE_BYTES, LOAD);
702       CLIB_PREFETCH (pref0, CLIB_CACHE_LINE_BYTES, LOAD);
703       CLIB_PREFETCH (prefmb1, CLIB_CACHE_LINE_BYTES, LOAD);
704       CLIB_PREFETCH (pref1, CLIB_CACHE_LINE_BYTES, LOAD);
705
706       bi0 = from[0];
707       bi1 = from[1];
708       from += 2;
709
710       b0 = vlib_get_buffer (vm, bi0);
711       b1 = vlib_get_buffer (vm, bi1);
712
713       mb0 = rte_mbuf_from_vlib_buffer (b0);
714       mb1 = rte_mbuf_from_vlib_buffer (b1);
715
716       any_clone = (b0->flags & VLIB_BUFFER_RECYCLE)
717         | (b1->flags & VLIB_BUFFER_RECYCLE);
718       if (PREDICT_FALSE (any_clone != 0))
719         {
720           if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_RECYCLE) != 0))
721             {
722               struct rte_mbuf *mb0_new = dpdk_replicate_packet_mb (b0);
723               if (PREDICT_FALSE (mb0_new == 0))
724                 {
725                   vlib_error_count (vm, node->node_index,
726                                     DPDK_TX_FUNC_ERROR_REPL_FAIL, 1);
727                   b0->flags |= VLIB_BUFFER_REPL_FAIL;
728                 }
729               else
730                 mb0 = mb0_new;
731               vec_add1 (dm->recycle[my_cpu], bi0);
732             }
733           if (PREDICT_FALSE ((b1->flags & VLIB_BUFFER_RECYCLE) != 0))
734             {
735               struct rte_mbuf *mb1_new = dpdk_replicate_packet_mb (b1);
736               if (PREDICT_FALSE (mb1_new == 0))
737                 {
738                   vlib_error_count (vm, node->node_index,
739                                     DPDK_TX_FUNC_ERROR_REPL_FAIL, 1);
740                   b1->flags |= VLIB_BUFFER_REPL_FAIL;
741                 }
742               else
743                 mb1 = mb1_new;
744               vec_add1 (dm->recycle[my_cpu], bi1);
745             }
746         }
747
748       delta0 = PREDICT_FALSE (b0->flags & VLIB_BUFFER_REPL_FAIL) ? 0 :
749         vlib_buffer_length_in_chain (vm, b0) - (i16) mb0->pkt_len;
750       delta1 = PREDICT_FALSE (b1->flags & VLIB_BUFFER_REPL_FAIL) ? 0 :
751         vlib_buffer_length_in_chain (vm, b1) - (i16) mb1->pkt_len;
752
753       new_data_len0 = (u16) ((i16) mb0->data_len + delta0);
754       new_data_len1 = (u16) ((i16) mb1->data_len + delta1);
755       new_pkt_len0 = (u16) ((i16) mb0->pkt_len + delta0);
756       new_pkt_len1 = (u16) ((i16) mb1->pkt_len + delta1);
757
758       b0->current_length = new_data_len0;
759       b1->current_length = new_data_len1;
760       mb0->data_len = new_data_len0;
761       mb1->data_len = new_data_len1;
762       mb0->pkt_len = new_pkt_len0;
763       mb1->pkt_len = new_pkt_len1;
764
765       mb0->data_off = (PREDICT_FALSE (b0->flags & VLIB_BUFFER_REPL_FAIL)) ?
766         mb0->data_off : (u16) (RTE_PKTMBUF_HEADROOM + b0->current_data);
767       mb1->data_off = (PREDICT_FALSE (b1->flags & VLIB_BUFFER_REPL_FAIL)) ?
768         mb1->data_off : (u16) (RTE_PKTMBUF_HEADROOM + b1->current_data);
769
770       if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
771         {
772           if (b0->flags & VLIB_BUFFER_IS_TRACED)
773             dpdk_tx_trace_buffer (dm, node, xd, queue_id, bi0, b0);
774           if (b1->flags & VLIB_BUFFER_IS_TRACED)
775             dpdk_tx_trace_buffer (dm, node, xd, queue_id, bi1, b1);
776         }
777
778       if (PREDICT_TRUE (any_clone == 0))
779         {
780           tx_vector[i % xd->nb_tx_desc] = mb0;
781           i++;
782           tx_vector[i % xd->nb_tx_desc] = mb1;
783           i++;
784         }
785       else
786         {
787           /* cloning was done, need to check for failure */
788           if (PREDICT_TRUE ((b0->flags & VLIB_BUFFER_REPL_FAIL) == 0))
789             {
790               tx_vector[i % xd->nb_tx_desc] = mb0;
791               i++;
792             }
793           if (PREDICT_TRUE ((b1->flags & VLIB_BUFFER_REPL_FAIL) == 0))
794             {
795               tx_vector[i % xd->nb_tx_desc] = mb1;
796               i++;
797             }
798         }
799
800       n_left -= 2;
801     }
802   while (n_left > 0)
803     {
804       u32 bi0;
805       struct rte_mbuf *mb0;
806       vlib_buffer_t *b0;
807       i16 delta0;
808       u16 new_data_len0;
809       u16 new_pkt_len0;
810
811       bi0 = from[0];
812       from++;
813
814       b0 = vlib_get_buffer (vm, bi0);
815
816       mb0 = rte_mbuf_from_vlib_buffer (b0);
817       if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_RECYCLE) != 0))
818         {
819           struct rte_mbuf *mb0_new = dpdk_replicate_packet_mb (b0);
820           if (PREDICT_FALSE (mb0_new == 0))
821             {
822               vlib_error_count (vm, node->node_index,
823                                 DPDK_TX_FUNC_ERROR_REPL_FAIL, 1);
824               b0->flags |= VLIB_BUFFER_REPL_FAIL;
825             }
826           else
827             mb0 = mb0_new;
828           vec_add1 (dm->recycle[my_cpu], bi0);
829         }
830
831       delta0 = PREDICT_FALSE (b0->flags & VLIB_BUFFER_REPL_FAIL) ? 0 :
832         vlib_buffer_length_in_chain (vm, b0) - (i16) mb0->pkt_len;
833
834       new_data_len0 = (u16) ((i16) mb0->data_len + delta0);
835       new_pkt_len0 = (u16) ((i16) mb0->pkt_len + delta0);
836
837       b0->current_length = new_data_len0;
838       mb0->data_len = new_data_len0;
839       mb0->pkt_len = new_pkt_len0;
840       mb0->data_off = (PREDICT_FALSE (b0->flags & VLIB_BUFFER_REPL_FAIL)) ?
841         mb0->data_off : (u16) (RTE_PKTMBUF_HEADROOM + b0->current_data);
842
843       if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
844         if (b0->flags & VLIB_BUFFER_IS_TRACED)
845           dpdk_tx_trace_buffer (dm, node, xd, queue_id, bi0, b0);
846
847       if (PREDICT_TRUE ((b0->flags & VLIB_BUFFER_REPL_FAIL) == 0))
848         {
849           tx_vector[i % xd->nb_tx_desc] = mb0;
850           i++;
851         }
852       n_left--;
853     }
854
855   /* account for additional packets in the ring */
856   ring->tx_head += n_packets;
857   n_on_ring = ring->tx_head - ring->tx_tail;
858
859   /* transmit as many packets as possible */
860   n_packets = tx_burst_vector_internal (vm, xd, tx_vector);
861
862   /*
863    * tx_pkts is the number of packets successfully transmitted
864    * This is the number originally on ring minus the number remaining on ring
865    */
866   tx_pkts = n_on_ring - n_packets;
867
868   if (PREDICT_FALSE (dm->flowcontrol_callback != 0))
869     {
870       if (PREDICT_FALSE (n_packets))
871         {
872           /* Callback may want to enable flowcontrol */
873           dm->flowcontrol_callback (vm, xd->vlib_hw_if_index,
874                                     ring->tx_head - ring->tx_tail);
875         }
876       else
877         {
878           /* Reset head/tail to avoid unnecessary wrap */
879           ring->tx_head = 0;
880           ring->tx_tail = 0;
881         }
882     }
883   else
884     {
885       /* If there is no callback then drop any non-transmitted packets */
886       if (PREDICT_FALSE (n_packets))
887         {
888           vlib_simple_counter_main_t *cm;
889           vnet_main_t *vnm = vnet_get_main ();
890
891           cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
892                                  VNET_INTERFACE_COUNTER_TX_ERROR);
893
894           vlib_increment_simple_counter (cm, my_cpu, xd->vlib_sw_if_index,
895                                          n_packets);
896
897           vlib_error_count (vm, node->node_index, DPDK_TX_FUNC_ERROR_PKT_DROP,
898                             n_packets);
899
900           while (n_packets--)
901             rte_pktmbuf_free (tx_vector[ring->tx_tail + n_packets]);
902         }
903
904       /* Reset head/tail to avoid unnecessary wrap */
905       ring->tx_head = 0;
906       ring->tx_tail = 0;
907     }
908
909   /* Recycle replicated buffers */
910   if (PREDICT_FALSE (vec_len (dm->recycle[my_cpu])))
911     {
912       vlib_buffer_free (vm, dm->recycle[my_cpu],
913                         vec_len (dm->recycle[my_cpu]));
914       _vec_len (dm->recycle[my_cpu]) = 0;
915     }
916
917   ASSERT (ring->tx_head >= ring->tx_tail);
918
919   return tx_pkts;
920 }
921
922 static int
923 dpdk_device_renumber (vnet_hw_interface_t * hi, u32 new_dev_instance)
924 {
925 #if DPDK_VHOST_USER
926   dpdk_main_t *dm = &dpdk_main;
927   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
928
929   if (!xd || (xd->flags & DPDK_DEVICE_FLAG_VHOST_USER) == 0)
930     {
931       clib_warning
932         ("cannot renumber non-vhost-user interface (sw_if_index: %d)",
933          hi->sw_if_index);
934       return 0;
935     }
936
937   xd->vu_if_id = new_dev_instance;
938 #endif
939   return 0;
940 }
941
942 static void
943 dpdk_clear_hw_interface_counters (u32 instance)
944 {
945   dpdk_main_t *dm = &dpdk_main;
946   dpdk_device_t *xd = vec_elt_at_index (dm->devices, instance);
947
948   /*
949    * Set the "last_cleared_stats" to the current stats, so that
950    * things appear to clear from a display perspective.
951    */
952   dpdk_update_counters (xd, vlib_time_now (dm->vlib_main));
953
954   clib_memcpy (&xd->last_cleared_stats, &xd->stats, sizeof (xd->stats));
955   clib_memcpy (xd->last_cleared_xstats, xd->xstats,
956                vec_len (xd->last_cleared_xstats) *
957                sizeof (xd->last_cleared_xstats[0]));
958
959 #if DPDK_VHOST_USER
960   if (PREDICT_FALSE (xd->flags & DPDK_DEVICE_FLAG_VHOST_USER))
961     {
962       int i;
963       for (i = 0; i < xd->rx_q_used * VIRTIO_QNUM; i++)
964         {
965           xd->vu_intf->vrings[i].packets = 0;
966           xd->vu_intf->vrings[i].bytes = 0;
967         }
968     }
969 #endif
970 }
971
972 static clib_error_t *
973 dpdk_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
974 {
975   vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
976   uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
977   dpdk_main_t *dm = &dpdk_main;
978   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hif->dev_instance);
979   int rv = 0;
980
981 #if DPDK_VHOST_USER
982   if (xd->flags & DPDK_DEVICE_FLAG_VHOST_USER)
983     {
984       if (is_up)
985         {
986           if (xd->vu_is_running)
987             vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index,
988                                          VNET_HW_INTERFACE_FLAG_LINK_UP |
989                                          ETH_LINK_FULL_DUPLEX);
990           xd->flags |= DPDK_DEVICE_FLAG_ADMIN_UP;
991         }
992       else
993         {
994           vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index, 0);
995           xd->flags &= ~DPDK_DEVICE_FLAG_ADMIN_UP;
996         }
997
998       return 0;
999     }
1000 #endif
1001
1002
1003   if (is_up)
1004     {
1005       f64 now = vlib_time_now (dm->vlib_main);
1006
1007       if ((xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) == 0)
1008         rv = rte_eth_dev_start (xd->device_index);
1009
1010       if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
1011         rte_eth_promiscuous_enable (xd->device_index);
1012       else
1013         rte_eth_promiscuous_disable (xd->device_index);
1014
1015       rte_eth_allmulticast_enable (xd->device_index);
1016       xd->flags |= DPDK_DEVICE_FLAG_ADMIN_UP;
1017       dpdk_update_counters (xd, now);
1018       dpdk_update_link_state (xd, now);
1019     }
1020   else
1021     {
1022       xd->flags &= ~DPDK_DEVICE_FLAG_ADMIN_UP;
1023
1024       rte_eth_allmulticast_disable (xd->device_index);
1025       vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index, 0);
1026       rte_eth_dev_stop (xd->device_index);
1027
1028       /* For bonded interface, stop slave links */
1029       if (xd->pmd == VNET_DPDK_PMD_BOND)
1030         {
1031           u8 slink[16];
1032           int nlink = rte_eth_bond_slaves_get (xd->device_index, slink, 16);
1033           while (nlink >= 1)
1034             {
1035               u8 dpdk_port = slink[--nlink];
1036               rte_eth_dev_stop (dpdk_port);
1037             }
1038         }
1039     }
1040
1041   if (rv < 0)
1042     clib_warning ("rte_eth_dev_%s error: %d", is_up ? "start" : "stop", rv);
1043
1044   return /* no error */ 0;
1045 }
1046
1047 /*
1048  * Dynamically redirect all pkts from a specific interface
1049  * to the specified node
1050  */
1051 static void
1052 dpdk_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
1053                               u32 node_index)
1054 {
1055   dpdk_main_t *xm = &dpdk_main;
1056   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1057   dpdk_device_t *xd = vec_elt_at_index (xm->devices, hw->dev_instance);
1058
1059   /* Shut off redirection */
1060   if (node_index == ~0)
1061     {
1062       xd->per_interface_next_index = node_index;
1063       return;
1064     }
1065
1066   xd->per_interface_next_index =
1067     vlib_node_add_next (xm->vlib_main, dpdk_input_node.index, node_index);
1068 }
1069
1070
1071 static clib_error_t *
1072 dpdk_subif_add_del_function (vnet_main_t * vnm,
1073                              u32 hw_if_index,
1074                              struct vnet_sw_interface_t *st, int is_add)
1075 {
1076   dpdk_main_t *xm = &dpdk_main;
1077   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1078   dpdk_device_t *xd = vec_elt_at_index (xm->devices, hw->dev_instance);
1079   vnet_sw_interface_t *t = (vnet_sw_interface_t *) st;
1080   int r, vlan_offload;
1081   u32 prev_subifs = xd->num_subifs;
1082   clib_error_t *err = 0;
1083
1084   if (is_add)
1085     xd->num_subifs++;
1086   else if (xd->num_subifs)
1087     xd->num_subifs--;
1088
1089   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1090     goto done;
1091
1092   /* currently we program VLANS only for IXGBE VF and I40E VF */
1093   if ((xd->pmd != VNET_DPDK_PMD_IXGBEVF) && (xd->pmd != VNET_DPDK_PMD_I40EVF))
1094     goto done;
1095
1096   if (t->sub.eth.flags.no_tags == 1)
1097     goto done;
1098
1099   if ((t->sub.eth.flags.one_tag != 1) || (t->sub.eth.flags.exact_match != 1))
1100     {
1101       xd->num_subifs = prev_subifs;
1102       err = clib_error_return (0, "unsupported VLAN setup");
1103       goto done;
1104     }
1105
1106   vlan_offload = rte_eth_dev_get_vlan_offload (xd->device_index);
1107   vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
1108
1109   if ((r = rte_eth_dev_set_vlan_offload (xd->device_index, vlan_offload)))
1110     {
1111       xd->num_subifs = prev_subifs;
1112       err = clib_error_return (0, "rte_eth_dev_set_vlan_offload[%d]: err %d",
1113                                xd->device_index, r);
1114       goto done;
1115     }
1116
1117
1118   if ((r =
1119        rte_eth_dev_vlan_filter (xd->device_index, t->sub.eth.outer_vlan_id,
1120                                 is_add)))
1121     {
1122       xd->num_subifs = prev_subifs;
1123       err = clib_error_return (0, "rte_eth_dev_vlan_filter[%d]: err %d",
1124                                xd->device_index, r);
1125       goto done;
1126     }
1127
1128 done:
1129   if (xd->num_subifs)
1130     xd->flags |= DPDK_DEVICE_FLAG_HAVE_SUBIF;
1131   else
1132     xd->flags &= ~DPDK_DEVICE_FLAG_HAVE_SUBIF;
1133
1134   return err;
1135 }
1136
1137 /* *INDENT-OFF* */
1138 VNET_DEVICE_CLASS (dpdk_device_class) = {
1139   .name = "dpdk",
1140   .tx_function = dpdk_interface_tx,
1141   .tx_function_n_errors = DPDK_TX_FUNC_N_ERROR,
1142   .tx_function_error_strings = dpdk_tx_func_error_strings,
1143   .format_device_name = format_dpdk_device_name,
1144   .format_device = format_dpdk_device,
1145   .format_tx_trace = format_dpdk_tx_dma_trace,
1146   .clear_counters = dpdk_clear_hw_interface_counters,
1147   .admin_up_down_function = dpdk_interface_admin_up_down,
1148   .subif_add_del_function = dpdk_subif_add_del_function,
1149   .rx_redirect_to_node = dpdk_set_interface_next_node,
1150   .no_flatten_output_chains = 1,
1151   .name_renumber = dpdk_device_renumber,
1152   .mac_addr_change_function = dpdk_set_mac_address,
1153 };
1154
1155 VLIB_DEVICE_TX_FUNCTION_MULTIARCH (dpdk_device_class, dpdk_interface_tx)
1156 /* *INDENT-ON* */
1157
1158 void
1159 dpdk_set_flowcontrol_callback (vlib_main_t * vm,
1160                                dpdk_flowcontrol_callback_t callback)
1161 {
1162   dpdk_main.flowcontrol_callback = callback;
1163 }
1164
1165 #define UP_DOWN_FLAG_EVENT 1
1166
1167
1168 u32
1169 dpdk_get_admin_up_down_in_progress (void)
1170 {
1171   return dpdk_main.admin_up_down_in_progress;
1172 }
1173
1174 uword
1175 admin_up_down_process (vlib_main_t * vm,
1176                        vlib_node_runtime_t * rt, vlib_frame_t * f)
1177 {
1178   clib_error_t *error = 0;
1179   uword event_type;
1180   uword *event_data = 0;
1181   u32 sw_if_index;
1182   u32 flags;
1183
1184   while (1)
1185     {
1186       vlib_process_wait_for_event (vm);
1187
1188       event_type = vlib_process_get_events (vm, &event_data);
1189
1190       dpdk_main.admin_up_down_in_progress = 1;
1191
1192       switch (event_type)
1193         {
1194         case UP_DOWN_FLAG_EVENT:
1195           {
1196             if (vec_len (event_data) == 2)
1197               {
1198                 sw_if_index = event_data[0];
1199                 flags = event_data[1];
1200                 error =
1201                   vnet_sw_interface_set_flags (vnet_get_main (), sw_if_index,
1202                                                flags);
1203                 clib_error_report (error);
1204               }
1205           }
1206           break;
1207         }
1208
1209       vec_reset_length (event_data);
1210
1211       dpdk_main.admin_up_down_in_progress = 0;
1212
1213     }
1214   return 0;                     /* or not */
1215 }
1216
1217 /* *INDENT-OFF* */
1218 VLIB_REGISTER_NODE (admin_up_down_process_node,static) = {
1219     .function = admin_up_down_process,
1220     .type = VLIB_NODE_TYPE_PROCESS,
1221     .name = "admin-up-down-process",
1222     .process_log2_n_stack_bytes = 17,  // 256KB
1223 };
1224 /* *INDENT-ON* */
1225
1226 /*
1227  * Asynchronously invoke vnet_sw_interface_set_flags via the admin_up_down
1228  * process. Useful for avoiding long blocking delays (>150ms) in the dpdk
1229  * drivers.
1230  * WARNING: when posting this event, no other interface-related calls should
1231  * be made (e.g. vnet_create_sw_interface()) while the event is being
1232  * processed (admin_up_down_in_progress). This is required in order to avoid
1233  * race conditions in manipulating interface data structures.
1234  */
1235 void
1236 post_sw_interface_set_flags (vlib_main_t * vm, u32 sw_if_index, u32 flags)
1237 {
1238   uword *d = vlib_process_signal_event_data
1239     (vm, admin_up_down_process_node.index,
1240      UP_DOWN_FLAG_EVENT, 2, sizeof (u32));
1241   d[0] = sw_if_index;
1242   d[1] = flags;
1243 }
1244
1245 /*
1246  * Return a copy of the DPDK port stats in dest.
1247  */
1248 clib_error_t *
1249 dpdk_get_hw_interface_stats (u32 hw_if_index, struct rte_eth_stats *dest)
1250 {
1251   dpdk_main_t *dm = &dpdk_main;
1252   vnet_main_t *vnm = vnet_get_main ();
1253   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1254   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
1255
1256   if (!dest)
1257     {
1258       return clib_error_return (0, "Missing or NULL argument");
1259     }
1260   if (!xd)
1261     {
1262       return clib_error_return (0,
1263                                 "Unable to get DPDK device from HW interface");
1264     }
1265
1266   dpdk_update_counters (xd, vlib_time_now (dm->vlib_main));
1267
1268   clib_memcpy (dest, &xd->stats, sizeof (xd->stats));
1269   return (0);
1270 }
1271
1272 /*
1273  * Return the number of dpdk mbufs
1274  */
1275 u32
1276 dpdk_num_mbufs (void)
1277 {
1278   dpdk_main_t *dm = &dpdk_main;
1279
1280   return dm->conf->num_mbufs;
1281 }
1282
1283 /*
1284  * Return the pmd type for a given hardware interface
1285  */
1286 dpdk_pmd_t
1287 dpdk_get_pmd_type (vnet_hw_interface_t * hi)
1288 {
1289   dpdk_main_t *dm = &dpdk_main;
1290   dpdk_device_t *xd;
1291
1292   assert (hi);
1293
1294   xd = vec_elt_at_index (dm->devices, hi->dev_instance);
1295
1296   assert (xd);
1297
1298   return xd->pmd;
1299 }
1300
1301 /*
1302  * Return the cpu socket for a given hardware interface
1303  */
1304 i8
1305 dpdk_get_cpu_socket (vnet_hw_interface_t * hi)
1306 {
1307   dpdk_main_t *dm = &dpdk_main;
1308   dpdk_device_t *xd;
1309
1310   assert (hi);
1311
1312   xd = vec_elt_at_index (dm->devices, hi->dev_instance);
1313
1314   assert (xd);
1315
1316   return xd->cpu_socket;
1317 }
1318
1319 /*
1320  * fd.io coding-style-patch-verification: ON
1321  *
1322  * Local Variables:
1323  * eval: (c-set-style "gnu")
1324  * End:
1325  */