DPDK: add support for v2.0.0
[cascardo/ovs.git] / lib / netdev-dpdk.c
1 /*
2  * Copyright (c) 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include <stdio.h>
20 #include <string.h>
21 #include <signal.h>
22 #include <stdlib.h>
23 #include <pthread.h>
24 #include <config.h>
25 #include <errno.h>
26 #include <sched.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <stdio.h>
30
31 #include "dp-packet.h"
32 #include "dpif-netdev.h"
33 #include "list.h"
34 #include "netdev-dpdk.h"
35 #include "netdev-provider.h"
36 #include "netdev-vport.h"
37 #include "odp-util.h"
38 #include "ofp-print.h"
39 #include "ovs-numa.h"
40 #include "ovs-thread.h"
41 #include "ovs-rcu.h"
42 #include "packets.h"
43 #include "shash.h"
44 #include "sset.h"
45 #include "unaligned.h"
46 #include "timeval.h"
47 #include "unixctl.h"
48 #include "openvswitch/vlog.h"
49
50 #include "rte_config.h"
51 #include "rte_mbuf.h"
52 #include "rte_virtio_net.h"
53
54 VLOG_DEFINE_THIS_MODULE(dpdk);
55 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
56
57 #define DPDK_PORT_WATCHDOG_INTERVAL 5
58
59 #define OVS_CACHE_LINE_SIZE CACHE_LINE_SIZE
60 #define OVS_VPORT_DPDK "ovs_dpdk"
61
62 /*
63  * need to reserve tons of extra space in the mbufs so we can align the
64  * DMA addresses to 4KB.
65  */
66
67 #define MTU_TO_MAX_LEN(mtu)  ((mtu) + ETHER_HDR_LEN + ETHER_CRC_LEN)
68 #define MBUF_SIZE(mtu)       (MTU_TO_MAX_LEN(mtu) + (512) + \
69                              sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
70
71 /* Max and min number of packets in the mempool.  OVS tries to allocate a
72  * mempool with MAX_NB_MBUF: if this fails (because the system doesn't have
73  * enough hugepages) we keep halving the number until the allocation succeeds
74  * or we reach MIN_NB_MBUF */
75
76 #define MAX_NB_MBUF          (4096 * 64)
77 #define MIN_NB_MBUF          (4096 * 4)
78 #define MP_CACHE_SZ          RTE_MEMPOOL_CACHE_MAX_SIZE
79
80 /* MAX_NB_MBUF can be divided by 2 many times, until MIN_NB_MBUF */
81 BUILD_ASSERT_DECL(MAX_NB_MBUF % ROUND_DOWN_POW2(MAX_NB_MBUF/MIN_NB_MBUF) == 0);
82
83 /* The smallest possible NB_MBUF that we're going to try should be a multiple
84  * of MP_CACHE_SZ. This is advised by DPDK documentation. */
85 BUILD_ASSERT_DECL((MAX_NB_MBUF / ROUND_DOWN_POW2(MAX_NB_MBUF/MIN_NB_MBUF))
86                   % MP_CACHE_SZ == 0);
87
88 #define SOCKET0              0
89
90 #define NIC_PORT_RX_Q_SIZE 2048  /* Size of Physical NIC RX Queue, Max (n+32<=4096)*/
91 #define NIC_PORT_TX_Q_SIZE 2048  /* Size of Physical NIC TX Queue, Max (n+32<=4096)*/
92
93 /* XXX: Needs per NIC value for these constants. */
94 #define RX_PTHRESH 32 /* Default values of RX prefetch threshold reg. */
95 #define RX_HTHRESH 32 /* Default values of RX host threshold reg. */
96 #define RX_WTHRESH 16 /* Default values of RX write-back threshold reg. */
97
98 #define TX_PTHRESH 36 /* Default values of TX prefetch threshold reg. */
99 #define TX_HTHRESH 0  /* Default values of TX host threshold reg. */
100 #define TX_WTHRESH 0  /* Default values of TX write-back threshold reg. */
101
102 #define MAX_PKT_BURST 32           /* Max burst size for RX/TX */
103
104 /* Character device cuse_dev_name. */
105 char *cuse_dev_name = NULL;
106
107 static const struct rte_eth_conf port_conf = {
108     .rxmode = {
109         .mq_mode = ETH_MQ_RX_RSS,
110         .split_hdr_size = 0,
111         .header_split   = 0, /* Header Split disabled */
112         .hw_ip_checksum = 0, /* IP checksum offload disabled */
113         .hw_vlan_filter = 0, /* VLAN filtering disabled */
114         .jumbo_frame    = 0, /* Jumbo Frame Support disabled */
115         .hw_strip_crc   = 0,
116     },
117     .rx_adv_conf = {
118         .rss_conf = {
119             .rss_key = NULL,
120             .rss_hf = ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP,
121         },
122     },
123     .txmode = {
124         .mq_mode = ETH_MQ_TX_NONE,
125     },
126 };
127
128 static const struct rte_eth_rxconf rx_conf = {
129     .rx_thresh = {
130         .pthresh = RX_PTHRESH,
131         .hthresh = RX_HTHRESH,
132         .wthresh = RX_WTHRESH,
133     },
134 };
135
136 static const struct rte_eth_txconf tx_conf = {
137     .tx_thresh = {
138         .pthresh = TX_PTHRESH,
139         .hthresh = TX_HTHRESH,
140         .wthresh = TX_WTHRESH,
141     },
142     .tx_free_thresh = 0,
143     .tx_rs_thresh = 0,
144     .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS|ETH_TXQ_FLAGS_NOOFFLOADS,
145 };
146
147 enum { MAX_RX_QUEUE_LEN = 192 };
148 enum { MAX_TX_QUEUE_LEN = 384 };
149 enum { DPDK_RING_SIZE = 256 };
150 BUILD_ASSERT_DECL(IS_POW2(DPDK_RING_SIZE));
151 enum { DRAIN_TSC = 200000ULL };
152
153 enum dpdk_dev_type {
154     DPDK_DEV_ETH = 0,
155     DPDK_DEV_VHOST = 1
156 };
157
158 static int rte_eal_init_ret = ENODEV;
159
160 static struct ovs_mutex dpdk_mutex = OVS_MUTEX_INITIALIZER;
161
162 /* Contains all 'struct dpdk_dev's. */
163 static struct ovs_list dpdk_list OVS_GUARDED_BY(dpdk_mutex)
164     = OVS_LIST_INITIALIZER(&dpdk_list);
165
166 static struct ovs_list dpdk_mp_list OVS_GUARDED_BY(dpdk_mutex)
167     = OVS_LIST_INITIALIZER(&dpdk_mp_list);
168
169 /* This mutex must be used by non pmd threads when allocating or freeing
170  * mbufs through mempools. Since dpdk_queue_pkts() and dpdk_queue_flush() may
171  * use mempools, a non pmd thread should hold this mutex while calling them */
172 struct ovs_mutex nonpmd_mempool_mutex = OVS_MUTEX_INITIALIZER;
173
174 struct dpdk_mp {
175     struct rte_mempool *mp;
176     int mtu;
177     int socket_id;
178     int refcount;
179     struct ovs_list list_node OVS_GUARDED_BY(dpdk_mutex);
180 };
181
182 /* There should be one 'struct dpdk_tx_queue' created for
183  * each cpu core. */
184 struct dpdk_tx_queue {
185     bool flush_tx;                 /* Set to true to flush queue everytime */
186                                    /* pkts are queued. */
187     int count;
188     uint64_t tsc;
189     struct rte_mbuf *burst_pkts[MAX_TX_QUEUE_LEN];
190 };
191
192 /* dpdk has no way to remove dpdk ring ethernet devices
193    so we have to keep them around once they've been created
194 */
195
196 static struct ovs_list dpdk_ring_list OVS_GUARDED_BY(dpdk_mutex)
197     = OVS_LIST_INITIALIZER(&dpdk_ring_list);
198
199 struct dpdk_ring {
200     /* For the client rings */
201     struct rte_ring *cring_tx;
202     struct rte_ring *cring_rx;
203     int user_port_id; /* User given port no, parsed from port name */
204     int eth_port_id; /* ethernet device port id */
205     struct ovs_list list_node OVS_GUARDED_BY(dpdk_mutex);
206 };
207
208 struct netdev_dpdk {
209     struct netdev up;
210     int port_id;
211     int max_packet_len;
212     enum dpdk_dev_type type;
213
214     struct dpdk_tx_queue *tx_q;
215
216     struct ovs_mutex mutex OVS_ACQ_AFTER(dpdk_mutex);
217
218     struct dpdk_mp *dpdk_mp;
219     int mtu;
220     int socket_id;
221     int buf_size;
222     struct netdev_stats stats;
223
224     uint8_t hwaddr[ETH_ADDR_LEN];
225     enum netdev_flags flags;
226
227     struct rte_eth_link link;
228     int link_reset_cnt;
229
230     /* virtio-net structure for vhost device */
231     OVSRCU_TYPE(struct virtio_net *) virtio_dev;
232
233     /* In dpdk_list. */
234     struct ovs_list list_node OVS_GUARDED_BY(dpdk_mutex);
235     rte_spinlock_t txq_lock;
236 };
237
238 struct netdev_rxq_dpdk {
239     struct netdev_rxq up;
240     int port_id;
241 };
242
243 static bool thread_is_pmd(void);
244
245 static int netdev_dpdk_construct(struct netdev *);
246
247 struct virtio_net * netdev_dpdk_get_virtio(const struct netdev_dpdk *dev);
248
249 static bool
250 is_dpdk_class(const struct netdev_class *class)
251 {
252     return class->construct == netdev_dpdk_construct;
253 }
254
255 /* XXX: use dpdk malloc for entire OVS. in fact huge page should be used
256  * for all other segments data, bss and text. */
257
258 static void *
259 dpdk_rte_mzalloc(size_t sz)
260 {
261     void *ptr;
262
263     ptr = rte_zmalloc(OVS_VPORT_DPDK, sz, OVS_CACHE_LINE_SIZE);
264     if (ptr == NULL) {
265         out_of_memory();
266     }
267     return ptr;
268 }
269
270 /* XXX this function should be called only by pmd threads (or by non pmd
271  * threads holding the nonpmd_mempool_mutex) */
272 void
273 free_dpdk_buf(struct dp_packet *p)
274 {
275     struct rte_mbuf *pkt = (struct rte_mbuf *) p;
276
277     rte_pktmbuf_free_seg(pkt);
278 }
279
280 static void
281 __rte_pktmbuf_init(struct rte_mempool *mp,
282                    void *opaque_arg OVS_UNUSED,
283                    void *_m,
284                    unsigned i OVS_UNUSED)
285 {
286     struct rte_mbuf *m = _m;
287     uint32_t buf_len = mp->elt_size - sizeof(struct dp_packet);
288
289     RTE_MBUF_ASSERT(mp->elt_size >= sizeof(struct dp_packet));
290
291     memset(m, 0, mp->elt_size);
292
293     /* start of buffer is just after mbuf structure */
294     m->buf_addr = (char *)m + sizeof(struct dp_packet);
295     m->buf_physaddr = rte_mempool_virt2phy(mp, m) +
296                     sizeof(struct dp_packet);
297     m->buf_len = (uint16_t)buf_len;
298
299     /* keep some headroom between start of buffer and data */
300     m->data_off = RTE_MIN(RTE_PKTMBUF_HEADROOM, m->buf_len);
301
302     /* init some constant fields */
303     m->pool = mp;
304     m->nb_segs = 1;
305     m->port = 0xff;
306 }
307
308 static void
309 ovs_rte_pktmbuf_init(struct rte_mempool *mp,
310                      void *opaque_arg OVS_UNUSED,
311                      void *_m,
312                      unsigned i OVS_UNUSED)
313 {
314     struct rte_mbuf *m = _m;
315
316     __rte_pktmbuf_init(mp, opaque_arg, _m, i);
317
318     dp_packet_init_dpdk((struct dp_packet *) m, m->buf_len);
319 }
320
321 static struct dpdk_mp *
322 dpdk_mp_get(int socket_id, int mtu) OVS_REQUIRES(dpdk_mutex)
323 {
324     struct dpdk_mp *dmp = NULL;
325     char mp_name[RTE_MEMPOOL_NAMESIZE];
326     unsigned mp_size;
327
328     LIST_FOR_EACH (dmp, list_node, &dpdk_mp_list) {
329         if (dmp->socket_id == socket_id && dmp->mtu == mtu) {
330             dmp->refcount++;
331             return dmp;
332         }
333     }
334
335     dmp = dpdk_rte_mzalloc(sizeof *dmp);
336     dmp->socket_id = socket_id;
337     dmp->mtu = mtu;
338     dmp->refcount = 1;
339
340     mp_size = MAX_NB_MBUF;
341     do {
342         if (snprintf(mp_name, RTE_MEMPOOL_NAMESIZE, "ovs_mp_%d_%d_%u",
343                      dmp->mtu, dmp->socket_id, mp_size) < 0) {
344             return NULL;
345         }
346
347         dmp->mp = rte_mempool_create(mp_name, mp_size, MBUF_SIZE(mtu),
348                                      MP_CACHE_SZ,
349                                      sizeof(struct rte_pktmbuf_pool_private),
350                                      rte_pktmbuf_pool_init, NULL,
351                                      ovs_rte_pktmbuf_init, NULL,
352                                      socket_id, 0);
353     } while (!dmp->mp && rte_errno == ENOMEM && (mp_size /= 2) >= MIN_NB_MBUF);
354
355     if (dmp->mp == NULL) {
356         return NULL;
357     } else {
358         VLOG_DBG("Allocated \"%s\" mempool with %u mbufs", mp_name, mp_size );
359     }
360
361     list_push_back(&dpdk_mp_list, &dmp->list_node);
362     return dmp;
363 }
364
365 static void
366 dpdk_mp_put(struct dpdk_mp *dmp)
367 {
368
369     if (!dmp) {
370         return;
371     }
372
373     dmp->refcount--;
374     ovs_assert(dmp->refcount >= 0);
375
376 #if 0
377     /* I could not find any API to destroy mp. */
378     if (dmp->refcount == 0) {
379         list_delete(dmp->list_node);
380         /* destroy mp-pool. */
381     }
382 #endif
383 }
384
385 static void
386 check_link_status(struct netdev_dpdk *dev)
387 {
388     struct rte_eth_link link;
389
390     rte_eth_link_get_nowait(dev->port_id, &link);
391
392     if (dev->link.link_status != link.link_status) {
393         netdev_change_seq_changed(&dev->up);
394
395         dev->link_reset_cnt++;
396         dev->link = link;
397         if (dev->link.link_status) {
398             VLOG_DBG_RL(&rl, "Port %d Link Up - speed %u Mbps - %s",
399                         dev->port_id, (unsigned)dev->link.link_speed,
400                         (dev->link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
401                          ("full-duplex") : ("half-duplex"));
402         } else {
403             VLOG_DBG_RL(&rl, "Port %d Link Down", dev->port_id);
404         }
405     }
406 }
407
408 static void *
409 dpdk_watchdog(void *dummy OVS_UNUSED)
410 {
411     struct netdev_dpdk *dev;
412
413     pthread_detach(pthread_self());
414
415     for (;;) {
416         ovs_mutex_lock(&dpdk_mutex);
417         LIST_FOR_EACH (dev, list_node, &dpdk_list) {
418             ovs_mutex_lock(&dev->mutex);
419             check_link_status(dev);
420             ovs_mutex_unlock(&dev->mutex);
421         }
422         ovs_mutex_unlock(&dpdk_mutex);
423         xsleep(DPDK_PORT_WATCHDOG_INTERVAL);
424     }
425
426     return NULL;
427 }
428
429 static int
430 dpdk_eth_dev_init(struct netdev_dpdk *dev) OVS_REQUIRES(dpdk_mutex)
431 {
432     struct rte_pktmbuf_pool_private *mbp_priv;
433     struct ether_addr eth_addr;
434     int diag;
435     int i;
436
437     if (dev->port_id < 0 || dev->port_id >= rte_eth_dev_count()) {
438         return ENODEV;
439     }
440
441     diag = rte_eth_dev_configure(dev->port_id, dev->up.n_rxq, dev->up.n_txq,
442                                  &port_conf);
443     if (diag) {
444         VLOG_ERR("eth dev config error %d",diag);
445         return -diag;
446     }
447
448     for (i = 0; i < dev->up.n_txq; i++) {
449         diag = rte_eth_tx_queue_setup(dev->port_id, i, NIC_PORT_TX_Q_SIZE,
450                                       dev->socket_id, &tx_conf);
451         if (diag) {
452             VLOG_ERR("eth dev tx queue setup error %d",diag);
453             return -diag;
454         }
455     }
456
457     for (i = 0; i < dev->up.n_rxq; i++) {
458         diag = rte_eth_rx_queue_setup(dev->port_id, i, NIC_PORT_RX_Q_SIZE,
459                                       dev->socket_id,
460                                       &rx_conf, dev->dpdk_mp->mp);
461         if (diag) {
462             VLOG_ERR("eth dev rx queue setup error %d",diag);
463             return -diag;
464         }
465     }
466
467     diag = rte_eth_dev_start(dev->port_id);
468     if (diag) {
469         VLOG_ERR("eth dev start error %d",diag);
470         return -diag;
471     }
472
473     rte_eth_promiscuous_enable(dev->port_id);
474     rte_eth_allmulticast_enable(dev->port_id);
475
476     memset(&eth_addr, 0x0, sizeof(eth_addr));
477     rte_eth_macaddr_get(dev->port_id, &eth_addr);
478     VLOG_INFO_RL(&rl, "Port %d: "ETH_ADDR_FMT"",
479                     dev->port_id, ETH_ADDR_ARGS(eth_addr.addr_bytes));
480
481     memcpy(dev->hwaddr, eth_addr.addr_bytes, ETH_ADDR_LEN);
482     rte_eth_link_get_nowait(dev->port_id, &dev->link);
483
484     mbp_priv = rte_mempool_get_priv(dev->dpdk_mp->mp);
485     dev->buf_size = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
486
487     dev->flags = NETDEV_UP | NETDEV_PROMISC;
488     return 0;
489 }
490
491 static struct netdev_dpdk *
492 netdev_dpdk_cast(const struct netdev *netdev)
493 {
494     return CONTAINER_OF(netdev, struct netdev_dpdk, up);
495 }
496
497 static struct netdev *
498 netdev_dpdk_alloc(void)
499 {
500     struct netdev_dpdk *netdev = dpdk_rte_mzalloc(sizeof *netdev);
501     return &netdev->up;
502 }
503
504 static void
505 netdev_dpdk_alloc_txq(struct netdev_dpdk *netdev, unsigned int n_txqs)
506 {
507     int i;
508
509     netdev->tx_q = dpdk_rte_mzalloc(n_txqs * sizeof *netdev->tx_q);
510     /* Each index is considered as a cpu core id, since there should
511      * be one tx queue for each cpu core. */
512     for (i = 0; i < n_txqs; i++) {
513         int numa_id = ovs_numa_get_numa_id(i);
514
515         /* If the corresponding core is not on the same numa node
516          * as 'netdev', flags the 'flush_tx'. */
517         netdev->tx_q[i].flush_tx = netdev->socket_id == numa_id;
518     }
519 }
520
521 static int
522 netdev_dpdk_init(struct netdev *netdev_, unsigned int port_no,
523                  enum dpdk_dev_type type)
524     OVS_REQUIRES(dpdk_mutex)
525 {
526     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
527     int sid;
528     int err = 0;
529
530     ovs_mutex_init(&netdev->mutex);
531     ovs_mutex_lock(&netdev->mutex);
532
533     /* If the 'sid' is negative, it means that the kernel fails
534      * to obtain the pci numa info.  In that situation, always
535      * use 'SOCKET0'. */
536     if (type == DPDK_DEV_ETH) {
537         sid = rte_eth_dev_socket_id(port_no);
538     } else {
539         sid = rte_lcore_to_socket_id(rte_get_master_lcore());
540     }
541
542     netdev->socket_id = sid < 0 ? SOCKET0 : sid;
543     netdev->port_id = port_no;
544     netdev->type = type;
545     netdev->flags = 0;
546     netdev->mtu = ETHER_MTU;
547     netdev->max_packet_len = MTU_TO_MAX_LEN(netdev->mtu);
548     rte_spinlock_init(&netdev->txq_lock);
549
550     netdev->dpdk_mp = dpdk_mp_get(netdev->socket_id, netdev->mtu);
551     if (!netdev->dpdk_mp) {
552         err = ENOMEM;
553         goto unlock;
554     }
555
556     netdev_->n_txq = NR_QUEUE;
557     netdev_->n_rxq = NR_QUEUE;
558
559     if (type == DPDK_DEV_ETH) {
560         netdev_dpdk_alloc_txq(netdev, NR_QUEUE);
561         err = dpdk_eth_dev_init(netdev);
562         if (err) {
563             goto unlock;
564         }
565     }
566
567     list_push_back(&dpdk_list, &netdev->list_node);
568
569 unlock:
570     if (err) {
571         rte_free(netdev->tx_q);
572     }
573     ovs_mutex_unlock(&netdev->mutex);
574     return err;
575 }
576
577 static int
578 dpdk_dev_parse_name(const char dev_name[], const char prefix[],
579                     unsigned int *port_no)
580 {
581     const char *cport;
582
583     if (strncmp(dev_name, prefix, strlen(prefix))) {
584         return ENODEV;
585     }
586
587     cport = dev_name + strlen(prefix);
588     *port_no = strtol(cport, 0, 0); /* string must be null terminated */
589     return 0;
590 }
591
592 static int
593 netdev_dpdk_vhost_construct(struct netdev *netdev_)
594 {
595     int err;
596
597     if (rte_eal_init_ret) {
598         return rte_eal_init_ret;
599     }
600
601     ovs_mutex_lock(&dpdk_mutex);
602     err = netdev_dpdk_init(netdev_, -1, DPDK_DEV_VHOST);
603     ovs_mutex_unlock(&dpdk_mutex);
604
605     return err;
606 }
607
608 static int
609 netdev_dpdk_construct(struct netdev *netdev)
610 {
611     unsigned int port_no;
612     int err;
613
614     if (rte_eal_init_ret) {
615         return rte_eal_init_ret;
616     }
617
618     /* Names always start with "dpdk" */
619     err = dpdk_dev_parse_name(netdev->name, "dpdk", &port_no);
620     if (err) {
621         return err;
622     }
623
624     ovs_mutex_lock(&dpdk_mutex);
625     err = netdev_dpdk_init(netdev, port_no, DPDK_DEV_ETH);
626     ovs_mutex_unlock(&dpdk_mutex);
627     return err;
628 }
629
630 static void
631 netdev_dpdk_destruct(struct netdev *netdev_)
632 {
633     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
634
635     ovs_mutex_lock(&dev->mutex);
636     rte_eth_dev_stop(dev->port_id);
637     ovs_mutex_unlock(&dev->mutex);
638
639     ovs_mutex_lock(&dpdk_mutex);
640     rte_free(dev->tx_q);
641     list_remove(&dev->list_node);
642     dpdk_mp_put(dev->dpdk_mp);
643     ovs_mutex_unlock(&dpdk_mutex);
644 }
645
646 static void
647 netdev_dpdk_vhost_destruct(struct netdev *netdev_)
648 {
649     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
650
651     /* Can't remove a port while a guest is attached to it. */
652     if (netdev_dpdk_get_virtio(dev) != NULL) {
653         VLOG_ERR("Can not remove port, vhost device still attached");
654                 return;
655     }
656
657     ovs_mutex_lock(&dpdk_mutex);
658     list_remove(&dev->list_node);
659     dpdk_mp_put(dev->dpdk_mp);
660     ovs_mutex_unlock(&dpdk_mutex);
661 }
662
663 static void
664 netdev_dpdk_dealloc(struct netdev *netdev_)
665 {
666     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
667
668     rte_free(netdev);
669 }
670
671 static int
672 netdev_dpdk_get_config(const struct netdev *netdev_, struct smap *args)
673 {
674     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
675
676     ovs_mutex_lock(&dev->mutex);
677
678     smap_add_format(args, "configured_rx_queues", "%d", netdev_->n_rxq);
679     smap_add_format(args, "configured_tx_queues", "%d", netdev_->n_txq);
680     ovs_mutex_unlock(&dev->mutex);
681
682     return 0;
683 }
684
685 static int
686 netdev_dpdk_get_numa_id(const struct netdev *netdev_)
687 {
688     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
689
690     return netdev->socket_id;
691 }
692
693 /* Sets the number of tx queues and rx queues for the dpdk interface.
694  * If the configuration fails, do not try restoring its old configuration
695  * and just returns the error. */
696 static int
697 netdev_dpdk_set_multiq(struct netdev *netdev_, unsigned int n_txq,
698                        unsigned int n_rxq)
699 {
700     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
701     int err = 0;
702
703     if (netdev->up.n_txq == n_txq && netdev->up.n_rxq == n_rxq) {
704         return err;
705     }
706
707     ovs_mutex_lock(&dpdk_mutex);
708     ovs_mutex_lock(&netdev->mutex);
709
710     rte_eth_dev_stop(netdev->port_id);
711
712     netdev->up.n_txq = n_txq;
713     netdev->up.n_rxq = n_rxq;
714
715     rte_free(netdev->tx_q);
716     netdev_dpdk_alloc_txq(netdev, n_txq);
717     err = dpdk_eth_dev_init(netdev);
718
719     ovs_mutex_unlock(&netdev->mutex);
720     ovs_mutex_unlock(&dpdk_mutex);
721
722     return err;
723 }
724
725 static int
726 netdev_dpdk_vhost_set_multiq(struct netdev *netdev_, unsigned int n_txq,
727                        unsigned int n_rxq)
728 {
729     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
730     int err = 0;
731
732     if (netdev->up.n_txq == n_txq && netdev->up.n_rxq == n_rxq) {
733         return err;
734     }
735
736     ovs_mutex_lock(&dpdk_mutex);
737     ovs_mutex_lock(&netdev->mutex);
738
739     netdev->up.n_txq = n_txq;
740     netdev->up.n_rxq = n_rxq;
741
742     ovs_mutex_unlock(&netdev->mutex);
743     ovs_mutex_unlock(&dpdk_mutex);
744
745     return err;
746 }
747
748 static struct netdev_rxq *
749 netdev_dpdk_rxq_alloc(void)
750 {
751     struct netdev_rxq_dpdk *rx = dpdk_rte_mzalloc(sizeof *rx);
752
753     return &rx->up;
754 }
755
756 static struct netdev_rxq_dpdk *
757 netdev_rxq_dpdk_cast(const struct netdev_rxq *rx)
758 {
759     return CONTAINER_OF(rx, struct netdev_rxq_dpdk, up);
760 }
761
762 static int
763 netdev_dpdk_rxq_construct(struct netdev_rxq *rxq_)
764 {
765     struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq_);
766     struct netdev_dpdk *netdev = netdev_dpdk_cast(rx->up.netdev);
767
768     ovs_mutex_lock(&netdev->mutex);
769     rx->port_id = netdev->port_id;
770     ovs_mutex_unlock(&netdev->mutex);
771
772     return 0;
773 }
774
775 static void
776 netdev_dpdk_rxq_destruct(struct netdev_rxq *rxq_ OVS_UNUSED)
777 {
778 }
779
780 static void
781 netdev_dpdk_rxq_dealloc(struct netdev_rxq *rxq_)
782 {
783     struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq_);
784
785     rte_free(rx);
786 }
787
788 static inline void
789 dpdk_queue_flush__(struct netdev_dpdk *dev, int qid)
790 {
791     struct dpdk_tx_queue *txq = &dev->tx_q[qid];
792     uint32_t nb_tx = 0;
793
794     while (nb_tx != txq->count) {
795         uint32_t ret;
796
797         ret = rte_eth_tx_burst(dev->port_id, qid, txq->burst_pkts + nb_tx,
798                                txq->count - nb_tx);
799         if (!ret) {
800             break;
801         }
802
803         nb_tx += ret;
804     }
805
806     if (OVS_UNLIKELY(nb_tx != txq->count)) {
807         /* free buffers, which we couldn't transmit, one at a time (each
808          * packet could come from a different mempool) */
809         int i;
810
811         for (i = nb_tx; i < txq->count; i++) {
812             rte_pktmbuf_free_seg(txq->burst_pkts[i]);
813         }
814         ovs_mutex_lock(&dev->mutex);
815         dev->stats.tx_dropped += txq->count-nb_tx;
816         ovs_mutex_unlock(&dev->mutex);
817     }
818
819     txq->count = 0;
820     txq->tsc = rte_get_timer_cycles();
821 }
822
823 static inline void
824 dpdk_queue_flush(struct netdev_dpdk *dev, int qid)
825 {
826     struct dpdk_tx_queue *txq = &dev->tx_q[qid];
827
828     if (txq->count == 0) {
829         return;
830     }
831     dpdk_queue_flush__(dev, qid);
832 }
833
834 static bool
835 is_vhost_running(struct virtio_net *dev)
836 {
837     return (dev != NULL && (dev->flags & VIRTIO_DEV_RUNNING));
838 }
839
840 /*
841  * The receive path for the vhost port is the TX path out from guest.
842  */
843 static int
844 netdev_dpdk_vhost_rxq_recv(struct netdev_rxq *rxq_,
845                            struct dp_packet **packets, int *c)
846 {
847     struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq_);
848     struct netdev *netdev = rx->up.netdev;
849     struct netdev_dpdk *vhost_dev = netdev_dpdk_cast(netdev);
850     struct virtio_net *virtio_dev = netdev_dpdk_get_virtio(vhost_dev);
851     int qid = 1;
852     uint16_t nb_rx = 0;
853
854     if (OVS_UNLIKELY(!is_vhost_running(virtio_dev))) {
855         return EAGAIN;
856     }
857
858     nb_rx = rte_vhost_dequeue_burst(virtio_dev, qid,
859                                     vhost_dev->dpdk_mp->mp,
860                                     (struct rte_mbuf **)packets,
861                                     MAX_PKT_BURST);
862     if (!nb_rx) {
863         return EAGAIN;
864     }
865
866     vhost_dev->stats.rx_packets += (uint64_t)nb_rx;
867     *c = (int) nb_rx;
868     return 0;
869 }
870
871 static int
872 netdev_dpdk_rxq_recv(struct netdev_rxq *rxq_, struct dp_packet **packets,
873                      int *c)
874 {
875     struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq_);
876     struct netdev *netdev = rx->up.netdev;
877     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
878     int nb_rx;
879
880     /* There is only one tx queue for this core.  Do not flush other
881      * queueus. */
882     if (rxq_->queue_id == rte_lcore_id()) {
883         dpdk_queue_flush(dev, rxq_->queue_id);
884     }
885
886     nb_rx = rte_eth_rx_burst(rx->port_id, rxq_->queue_id,
887                              (struct rte_mbuf **) packets,
888                              MIN((int)NETDEV_MAX_RX_BATCH,
889                                  (int)MAX_RX_QUEUE_LEN));
890     if (!nb_rx) {
891         return EAGAIN;
892     }
893
894     *c = nb_rx;
895
896     return 0;
897 }
898
899 static void
900 __netdev_dpdk_vhost_send(struct netdev *netdev, struct dp_packet **pkts,
901                          int cnt, bool may_steal)
902 {
903     struct netdev_dpdk *vhost_dev = netdev_dpdk_cast(netdev);
904     struct virtio_net *virtio_dev = netdev_dpdk_get_virtio(vhost_dev);
905     int tx_pkts, i;
906
907     if (OVS_UNLIKELY(!is_vhost_running(virtio_dev))) {
908         ovs_mutex_lock(&vhost_dev->mutex);
909         vhost_dev->stats.tx_dropped+= cnt;
910         ovs_mutex_unlock(&vhost_dev->mutex);
911         goto out;
912     }
913
914     /* There is vHost TX single queue, So we need to lock it for TX. */
915     rte_spinlock_lock(&vhost_dev->txq_lock);
916     tx_pkts = rte_vhost_enqueue_burst(virtio_dev, VIRTIO_RXQ,
917                                       (struct rte_mbuf **)pkts, cnt);
918
919     vhost_dev->stats.tx_packets += tx_pkts;
920     vhost_dev->stats.tx_dropped += (cnt - tx_pkts);
921     rte_spinlock_unlock(&vhost_dev->txq_lock);
922
923 out:
924     if (may_steal) {
925         for (i = 0; i < cnt; i++) {
926             dp_packet_delete(pkts[i]);
927         }
928     }
929 }
930
931 inline static void
932 dpdk_queue_pkts(struct netdev_dpdk *dev, int qid,
933                struct rte_mbuf **pkts, int cnt)
934 {
935     struct dpdk_tx_queue *txq = &dev->tx_q[qid];
936     uint64_t diff_tsc;
937
938     int i = 0;
939
940     while (i < cnt) {
941         int freeslots = MAX_TX_QUEUE_LEN - txq->count;
942         int tocopy = MIN(freeslots, cnt-i);
943
944         memcpy(&txq->burst_pkts[txq->count], &pkts[i],
945                tocopy * sizeof (struct rte_mbuf *));
946
947         txq->count += tocopy;
948         i += tocopy;
949
950         if (txq->count == MAX_TX_QUEUE_LEN || txq->flush_tx) {
951             dpdk_queue_flush__(dev, qid);
952         }
953         diff_tsc = rte_get_timer_cycles() - txq->tsc;
954         if (diff_tsc >= DRAIN_TSC) {
955             dpdk_queue_flush__(dev, qid);
956         }
957     }
958 }
959
960 /* Tx function. Transmit packets indefinitely */
961 static void
962 dpdk_do_tx_copy(struct netdev *netdev, int qid, struct dp_packet **pkts,
963                 int cnt)
964     OVS_NO_THREAD_SAFETY_ANALYSIS
965 {
966     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
967     struct rte_mbuf *mbufs[cnt];
968     int dropped = 0;
969     int newcnt = 0;
970     int i;
971
972     /* If we are on a non pmd thread we have to use the mempool mutex, because
973      * every non pmd thread shares the same mempool cache */
974
975     if (!thread_is_pmd()) {
976         ovs_mutex_lock(&nonpmd_mempool_mutex);
977     }
978
979     for (i = 0; i < cnt; i++) {
980         int size = dp_packet_size(pkts[i]);
981
982         if (OVS_UNLIKELY(size > dev->max_packet_len)) {
983             VLOG_WARN_RL(&rl, "Too big size %d max_packet_len %d",
984                          (int)size , dev->max_packet_len);
985
986             dropped++;
987             continue;
988         }
989
990         mbufs[newcnt] = rte_pktmbuf_alloc(dev->dpdk_mp->mp);
991
992         if (!mbufs[newcnt]) {
993             dropped += cnt - i;
994             break;
995         }
996
997         /* We have to do a copy for now */
998         memcpy(rte_pktmbuf_mtod(mbufs[newcnt], void *), dp_packet_data(pkts[i]), size);
999
1000         rte_pktmbuf_data_len(mbufs[newcnt]) = size;
1001         rte_pktmbuf_pkt_len(mbufs[newcnt]) = size;
1002
1003         newcnt++;
1004     }
1005
1006     if (OVS_UNLIKELY(dropped)) {
1007         ovs_mutex_lock(&dev->mutex);
1008         dev->stats.tx_dropped += dropped;
1009         ovs_mutex_unlock(&dev->mutex);
1010     }
1011
1012     if (dev->type == DPDK_DEV_VHOST) {
1013         __netdev_dpdk_vhost_send(netdev, (struct dp_packet **) mbufs, newcnt, true);
1014     } else {
1015         dpdk_queue_pkts(dev, qid, mbufs, newcnt);
1016         dpdk_queue_flush(dev, qid);
1017     }
1018
1019     if (!thread_is_pmd()) {
1020         ovs_mutex_unlock(&nonpmd_mempool_mutex);
1021     }
1022 }
1023
1024 static int
1025 netdev_dpdk_vhost_send(struct netdev *netdev, int qid OVS_UNUSED, struct dp_packet **pkts,
1026                  int cnt, bool may_steal)
1027 {
1028     if (OVS_UNLIKELY(pkts[0]->source != DPBUF_DPDK)) {
1029         int i;
1030
1031         dpdk_do_tx_copy(netdev, qid, pkts, cnt);
1032         if (may_steal) {
1033             for (i = 0; i < cnt; i++) {
1034                 dp_packet_delete(pkts[i]);
1035             }
1036         }
1037     } else {
1038         __netdev_dpdk_vhost_send(netdev, pkts, cnt, may_steal);
1039     }
1040     return 0;
1041 }
1042
1043 static inline void
1044 netdev_dpdk_send__(struct netdev_dpdk *dev, int qid,
1045                    struct dp_packet **pkts, int cnt, bool may_steal)
1046 {
1047     int i;
1048
1049     if (OVS_UNLIKELY(!may_steal ||
1050                      pkts[0]->source != DPBUF_DPDK)) {
1051         struct netdev *netdev = &dev->up;
1052
1053         dpdk_do_tx_copy(netdev, qid, pkts, cnt);
1054
1055         if (may_steal) {
1056             for (i = 0; i < cnt; i++) {
1057                 dp_packet_delete(pkts[i]);
1058             }
1059         }
1060     } else {
1061         int next_tx_idx = 0;
1062         int dropped = 0;
1063
1064         for (i = 0; i < cnt; i++) {
1065             int size = dp_packet_size(pkts[i]);
1066
1067             if (OVS_UNLIKELY(size > dev->max_packet_len)) {
1068                 if (next_tx_idx != i) {
1069                     dpdk_queue_pkts(dev, qid,
1070                                     (struct rte_mbuf **)&pkts[next_tx_idx],
1071                                     i-next_tx_idx);
1072                 }
1073
1074                 VLOG_WARN_RL(&rl, "Too big size %d max_packet_len %d",
1075                              (int)size , dev->max_packet_len);
1076
1077                 dp_packet_delete(pkts[i]);
1078                 dropped++;
1079                 next_tx_idx = i + 1;
1080             }
1081         }
1082         if (next_tx_idx != cnt) {
1083            dpdk_queue_pkts(dev, qid,
1084                             (struct rte_mbuf **)&pkts[next_tx_idx],
1085                             cnt-next_tx_idx);
1086         }
1087
1088         if (OVS_UNLIKELY(dropped)) {
1089             ovs_mutex_lock(&dev->mutex);
1090             dev->stats.tx_dropped += dropped;
1091             ovs_mutex_unlock(&dev->mutex);
1092         }
1093     }
1094 }
1095
1096 static int
1097 netdev_dpdk_eth_send(struct netdev *netdev, int qid,
1098                      struct dp_packet **pkts, int cnt, bool may_steal)
1099 {
1100     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1101
1102     netdev_dpdk_send__(dev, qid, pkts, cnt, may_steal);
1103     return 0;
1104 }
1105
1106 static int
1107 netdev_dpdk_set_etheraddr(struct netdev *netdev,
1108                           const uint8_t mac[ETH_ADDR_LEN])
1109 {
1110     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1111
1112     ovs_mutex_lock(&dev->mutex);
1113     if (!eth_addr_equals(dev->hwaddr, mac)) {
1114         memcpy(dev->hwaddr, mac, ETH_ADDR_LEN);
1115         netdev_change_seq_changed(netdev);
1116     }
1117     ovs_mutex_unlock(&dev->mutex);
1118
1119     return 0;
1120 }
1121
1122 static int
1123 netdev_dpdk_get_etheraddr(const struct netdev *netdev,
1124                           uint8_t mac[ETH_ADDR_LEN])
1125 {
1126     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1127
1128     ovs_mutex_lock(&dev->mutex);
1129     memcpy(mac, dev->hwaddr, ETH_ADDR_LEN);
1130     ovs_mutex_unlock(&dev->mutex);
1131
1132     return 0;
1133 }
1134
1135 static int
1136 netdev_dpdk_get_mtu(const struct netdev *netdev, int *mtup)
1137 {
1138     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1139
1140     ovs_mutex_lock(&dev->mutex);
1141     *mtup = dev->mtu;
1142     ovs_mutex_unlock(&dev->mutex);
1143
1144     return 0;
1145 }
1146
1147 static int
1148 netdev_dpdk_set_mtu(const struct netdev *netdev, int mtu)
1149 {
1150     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1151     int old_mtu, err;
1152     struct dpdk_mp *old_mp;
1153     struct dpdk_mp *mp;
1154
1155     ovs_mutex_lock(&dpdk_mutex);
1156     ovs_mutex_lock(&dev->mutex);
1157     if (dev->mtu == mtu) {
1158         err = 0;
1159         goto out;
1160     }
1161
1162     mp = dpdk_mp_get(dev->socket_id, dev->mtu);
1163     if (!mp) {
1164         err = ENOMEM;
1165         goto out;
1166     }
1167
1168     rte_eth_dev_stop(dev->port_id);
1169
1170     old_mtu = dev->mtu;
1171     old_mp = dev->dpdk_mp;
1172     dev->dpdk_mp = mp;
1173     dev->mtu = mtu;
1174     dev->max_packet_len = MTU_TO_MAX_LEN(dev->mtu);
1175
1176     err = dpdk_eth_dev_init(dev);
1177     if (err) {
1178         dpdk_mp_put(mp);
1179         dev->mtu = old_mtu;
1180         dev->dpdk_mp = old_mp;
1181         dev->max_packet_len = MTU_TO_MAX_LEN(dev->mtu);
1182         dpdk_eth_dev_init(dev);
1183         goto out;
1184     }
1185
1186     dpdk_mp_put(old_mp);
1187     netdev_change_seq_changed(netdev);
1188 out:
1189     ovs_mutex_unlock(&dev->mutex);
1190     ovs_mutex_unlock(&dpdk_mutex);
1191     return err;
1192 }
1193
1194 static int
1195 netdev_dpdk_get_carrier(const struct netdev *netdev_, bool *carrier);
1196
1197 static int
1198 netdev_dpdk_vhost_get_stats(const struct netdev *netdev,
1199                             struct netdev_stats *stats)
1200 {
1201     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1202
1203     ovs_mutex_lock(&dev->mutex);
1204     memset(stats, 0, sizeof(*stats));
1205     /* Unsupported Stats */
1206     stats->rx_errors = UINT64_MAX;
1207     stats->tx_errors = UINT64_MAX;
1208     stats->multicast = UINT64_MAX;
1209     stats->collisions = UINT64_MAX;
1210     stats->rx_crc_errors = UINT64_MAX;
1211     stats->rx_fifo_errors = UINT64_MAX;
1212     stats->rx_frame_errors = UINT64_MAX;
1213     stats->rx_length_errors = UINT64_MAX;
1214     stats->rx_missed_errors = UINT64_MAX;
1215     stats->rx_over_errors = UINT64_MAX;
1216     stats->tx_aborted_errors = UINT64_MAX;
1217     stats->tx_carrier_errors = UINT64_MAX;
1218     stats->tx_errors = UINT64_MAX;
1219     stats->tx_fifo_errors = UINT64_MAX;
1220     stats->tx_heartbeat_errors = UINT64_MAX;
1221     stats->tx_window_errors = UINT64_MAX;
1222     stats->rx_bytes += UINT64_MAX;
1223     stats->rx_dropped += UINT64_MAX;
1224     stats->tx_bytes += UINT64_MAX;
1225
1226     /* Supported Stats */
1227     stats->rx_packets += dev->stats.rx_packets;
1228     stats->tx_packets += dev->stats.tx_packets;
1229     stats->tx_dropped += dev->stats.tx_dropped;
1230     ovs_mutex_unlock(&dev->mutex);
1231
1232     return 0;
1233 }
1234
1235 static int
1236 netdev_dpdk_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
1237 {
1238     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1239     struct rte_eth_stats rte_stats;
1240     bool gg;
1241
1242     netdev_dpdk_get_carrier(netdev, &gg);
1243     ovs_mutex_lock(&dev->mutex);
1244     rte_eth_stats_get(dev->port_id, &rte_stats);
1245
1246     memset(stats, 0, sizeof(*stats));
1247
1248     stats->rx_packets = rte_stats.ipackets;
1249     stats->tx_packets = rte_stats.opackets;
1250     stats->rx_bytes = rte_stats.ibytes;
1251     stats->tx_bytes = rte_stats.obytes;
1252     stats->rx_errors = rte_stats.ierrors;
1253     stats->tx_errors = rte_stats.oerrors;
1254     stats->multicast = rte_stats.imcasts;
1255
1256     stats->tx_dropped = dev->stats.tx_dropped;
1257     ovs_mutex_unlock(&dev->mutex);
1258
1259     return 0;
1260 }
1261
1262 static int
1263 netdev_dpdk_get_features(const struct netdev *netdev_,
1264                          enum netdev_features *current,
1265                          enum netdev_features *advertised OVS_UNUSED,
1266                          enum netdev_features *supported OVS_UNUSED,
1267                          enum netdev_features *peer OVS_UNUSED)
1268 {
1269     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1270     struct rte_eth_link link;
1271
1272     ovs_mutex_lock(&dev->mutex);
1273     link = dev->link;
1274     ovs_mutex_unlock(&dev->mutex);
1275
1276     if (link.link_duplex == ETH_LINK_AUTONEG_DUPLEX) {
1277         if (link.link_speed == ETH_LINK_SPEED_AUTONEG) {
1278             *current = NETDEV_F_AUTONEG;
1279         }
1280     } else if (link.link_duplex == ETH_LINK_HALF_DUPLEX) {
1281         if (link.link_speed == ETH_LINK_SPEED_10) {
1282             *current = NETDEV_F_10MB_HD;
1283         }
1284         if (link.link_speed == ETH_LINK_SPEED_100) {
1285             *current = NETDEV_F_100MB_HD;
1286         }
1287         if (link.link_speed == ETH_LINK_SPEED_1000) {
1288             *current = NETDEV_F_1GB_HD;
1289         }
1290     } else if (link.link_duplex == ETH_LINK_FULL_DUPLEX) {
1291         if (link.link_speed == ETH_LINK_SPEED_10) {
1292             *current = NETDEV_F_10MB_FD;
1293         }
1294         if (link.link_speed == ETH_LINK_SPEED_100) {
1295             *current = NETDEV_F_100MB_FD;
1296         }
1297         if (link.link_speed == ETH_LINK_SPEED_1000) {
1298             *current = NETDEV_F_1GB_FD;
1299         }
1300         if (link.link_speed == ETH_LINK_SPEED_10000) {
1301             *current = NETDEV_F_10GB_FD;
1302         }
1303     }
1304
1305     return 0;
1306 }
1307
1308 static int
1309 netdev_dpdk_get_ifindex(const struct netdev *netdev)
1310 {
1311     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1312     int ifindex;
1313
1314     ovs_mutex_lock(&dev->mutex);
1315     ifindex = dev->port_id;
1316     ovs_mutex_unlock(&dev->mutex);
1317
1318     return ifindex;
1319 }
1320
1321 static int
1322 netdev_dpdk_get_carrier(const struct netdev *netdev_, bool *carrier)
1323 {
1324     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1325
1326     ovs_mutex_lock(&dev->mutex);
1327     check_link_status(dev);
1328     *carrier = dev->link.link_status;
1329
1330     ovs_mutex_unlock(&dev->mutex);
1331
1332     return 0;
1333 }
1334
1335 static int
1336 netdev_dpdk_vhost_get_carrier(const struct netdev *netdev_, bool *carrier)
1337 {
1338     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1339     struct virtio_net *virtio_dev = netdev_dpdk_get_virtio(dev);
1340
1341     ovs_mutex_lock(&dev->mutex);
1342
1343     if (is_vhost_running(virtio_dev)) {
1344         *carrier = 1;
1345     } else {
1346         *carrier = 0;
1347     }
1348
1349     ovs_mutex_unlock(&dev->mutex);
1350
1351     return 0;
1352 }
1353
1354 static long long int
1355 netdev_dpdk_get_carrier_resets(const struct netdev *netdev_)
1356 {
1357     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1358     long long int carrier_resets;
1359
1360     ovs_mutex_lock(&dev->mutex);
1361     carrier_resets = dev->link_reset_cnt;
1362     ovs_mutex_unlock(&dev->mutex);
1363
1364     return carrier_resets;
1365 }
1366
1367 static int
1368 netdev_dpdk_set_miimon(struct netdev *netdev_ OVS_UNUSED,
1369                        long long int interval OVS_UNUSED)
1370 {
1371     return EOPNOTSUPP;
1372 }
1373
1374 static int
1375 netdev_dpdk_update_flags__(struct netdev_dpdk *dev,
1376                            enum netdev_flags off, enum netdev_flags on,
1377                            enum netdev_flags *old_flagsp) OVS_REQUIRES(dev->mutex)
1378 {
1379     int err;
1380
1381     if ((off | on) & ~(NETDEV_UP | NETDEV_PROMISC)) {
1382         return EINVAL;
1383     }
1384
1385     *old_flagsp = dev->flags;
1386     dev->flags |= on;
1387     dev->flags &= ~off;
1388
1389     if (dev->flags == *old_flagsp) {
1390         return 0;
1391     }
1392
1393     if (dev->type == DPDK_DEV_ETH) {
1394         if (dev->flags & NETDEV_UP) {
1395             err = rte_eth_dev_start(dev->port_id);
1396             if (err)
1397                 return -err;
1398         }
1399
1400         if (dev->flags & NETDEV_PROMISC) {
1401             rte_eth_promiscuous_enable(dev->port_id);
1402         }
1403
1404         if (!(dev->flags & NETDEV_UP)) {
1405             rte_eth_dev_stop(dev->port_id);
1406         }
1407     }
1408
1409     return 0;
1410 }
1411
1412 static int
1413 netdev_dpdk_update_flags(struct netdev *netdev_,
1414                          enum netdev_flags off, enum netdev_flags on,
1415                          enum netdev_flags *old_flagsp)
1416 {
1417     struct netdev_dpdk *netdev = netdev_dpdk_cast(netdev_);
1418     int error;
1419
1420     ovs_mutex_lock(&netdev->mutex);
1421     error = netdev_dpdk_update_flags__(netdev, off, on, old_flagsp);
1422     ovs_mutex_unlock(&netdev->mutex);
1423
1424     return error;
1425 }
1426
1427 static int
1428 netdev_dpdk_get_status(const struct netdev *netdev_, struct smap *args)
1429 {
1430     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev_);
1431     struct rte_eth_dev_info dev_info;
1432
1433     if (dev->port_id < 0)
1434         return ENODEV;
1435
1436     ovs_mutex_lock(&dev->mutex);
1437     rte_eth_dev_info_get(dev->port_id, &dev_info);
1438     ovs_mutex_unlock(&dev->mutex);
1439
1440     smap_add_format(args, "driver_name", "%s", dev_info.driver_name);
1441
1442     smap_add_format(args, "port_no", "%d", dev->port_id);
1443     smap_add_format(args, "numa_id", "%d", rte_eth_dev_socket_id(dev->port_id));
1444     smap_add_format(args, "driver_name", "%s", dev_info.driver_name);
1445     smap_add_format(args, "min_rx_bufsize", "%u", dev_info.min_rx_bufsize);
1446     smap_add_format(args, "max_rx_pktlen", "%u", dev_info.max_rx_pktlen);
1447     smap_add_format(args, "max_rx_queues", "%u", dev_info.max_rx_queues);
1448     smap_add_format(args, "max_tx_queues", "%u", dev_info.max_tx_queues);
1449     smap_add_format(args, "max_mac_addrs", "%u", dev_info.max_mac_addrs);
1450     smap_add_format(args, "max_hash_mac_addrs", "%u", dev_info.max_hash_mac_addrs);
1451     smap_add_format(args, "max_vfs", "%u", dev_info.max_vfs);
1452     smap_add_format(args, "max_vmdq_pools", "%u", dev_info.max_vmdq_pools);
1453
1454     smap_add_format(args, "pci-vendor_id", "0x%u", dev_info.pci_dev->id.vendor_id);
1455     smap_add_format(args, "pci-device_id", "0x%x", dev_info.pci_dev->id.device_id);
1456
1457     return 0;
1458 }
1459
1460 static void
1461 netdev_dpdk_set_admin_state__(struct netdev_dpdk *dev, bool admin_state)
1462     OVS_REQUIRES(dev->mutex)
1463 {
1464     enum netdev_flags old_flags;
1465
1466     if (admin_state) {
1467         netdev_dpdk_update_flags__(dev, 0, NETDEV_UP, &old_flags);
1468     } else {
1469         netdev_dpdk_update_flags__(dev, NETDEV_UP, 0, &old_flags);
1470     }
1471 }
1472
1473 static void
1474 netdev_dpdk_set_admin_state(struct unixctl_conn *conn, int argc,
1475                             const char *argv[], void *aux OVS_UNUSED)
1476 {
1477     bool up;
1478
1479     if (!strcasecmp(argv[argc - 1], "up")) {
1480         up = true;
1481     } else if ( !strcasecmp(argv[argc - 1], "down")) {
1482         up = false;
1483     } else {
1484         unixctl_command_reply_error(conn, "Invalid Admin State");
1485         return;
1486     }
1487
1488     if (argc > 2) {
1489         struct netdev *netdev = netdev_from_name(argv[1]);
1490         if (netdev && is_dpdk_class(netdev->netdev_class)) {
1491             struct netdev_dpdk *dpdk_dev = netdev_dpdk_cast(netdev);
1492
1493             ovs_mutex_lock(&dpdk_dev->mutex);
1494             netdev_dpdk_set_admin_state__(dpdk_dev, up);
1495             ovs_mutex_unlock(&dpdk_dev->mutex);
1496
1497             netdev_close(netdev);
1498         } else {
1499             unixctl_command_reply_error(conn, "Not a DPDK Interface");
1500             netdev_close(netdev);
1501             return;
1502         }
1503     } else {
1504         struct netdev_dpdk *netdev;
1505
1506         ovs_mutex_lock(&dpdk_mutex);
1507         LIST_FOR_EACH (netdev, list_node, &dpdk_list) {
1508             ovs_mutex_lock(&netdev->mutex);
1509             netdev_dpdk_set_admin_state__(netdev, up);
1510             ovs_mutex_unlock(&netdev->mutex);
1511         }
1512         ovs_mutex_unlock(&dpdk_mutex);
1513     }
1514     unixctl_command_reply(conn, "OK");
1515 }
1516
1517 /*
1518  * Set virtqueue flags so that we do not receive interrupts.
1519  */
1520 static void
1521 set_irq_status(struct virtio_net *dev)
1522 {
1523     dev->virtqueue[VIRTIO_RXQ]->used->flags = VRING_USED_F_NO_NOTIFY;
1524     dev->virtqueue[VIRTIO_TXQ]->used->flags = VRING_USED_F_NO_NOTIFY;
1525 }
1526
1527 /*
1528  * A new virtio-net device is added to a vhost port.
1529  */
1530 static int
1531 new_device(struct virtio_net *dev)
1532 {
1533     struct netdev_dpdk *netdev;
1534     bool exists = false;
1535
1536     ovs_mutex_lock(&dpdk_mutex);
1537     /* Add device to the vhost port with the same name as that passed down. */
1538     LIST_FOR_EACH(netdev, list_node, &dpdk_list) {
1539         if (strncmp(dev->ifname, netdev->up.name, IFNAMSIZ) == 0) {
1540             ovs_mutex_lock(&netdev->mutex);
1541             ovsrcu_set(&netdev->virtio_dev, dev);
1542             ovs_mutex_unlock(&netdev->mutex);
1543             exists = true;
1544             dev->flags |= VIRTIO_DEV_RUNNING;
1545             /* Disable notifications. */
1546             set_irq_status(dev);
1547             break;
1548         }
1549     }
1550     ovs_mutex_unlock(&dpdk_mutex);
1551
1552     if (!exists) {
1553         VLOG_INFO("vHost Device '%s' (%ld) can't be added - name not found",
1554                    dev->ifname, dev->device_fh);
1555
1556         return -1;
1557     }
1558
1559     VLOG_INFO("vHost Device '%s' (%ld) has been added",
1560                dev->ifname, dev->device_fh);
1561     return 0;
1562 }
1563
1564 /*
1565  * Remove a virtio-net device from the specific vhost port.  Use dev->remove
1566  * flag to stop any more packets from being sent or received to/from a VM and
1567  * ensure all currently queued packets have been sent/received before removing
1568  *  the device.
1569  */
1570 static void
1571 destroy_device(volatile struct virtio_net *dev)
1572 {
1573     struct netdev_dpdk *vhost_dev;
1574
1575     ovs_mutex_lock(&dpdk_mutex);
1576     LIST_FOR_EACH (vhost_dev, list_node, &dpdk_list) {
1577         if (netdev_dpdk_get_virtio(vhost_dev) == dev) {
1578
1579             ovs_mutex_lock(&vhost_dev->mutex);
1580             dev->flags &= ~VIRTIO_DEV_RUNNING;
1581             ovsrcu_set(&vhost_dev->virtio_dev, NULL);
1582             ovs_mutex_unlock(&vhost_dev->mutex);
1583
1584             /*
1585              * Wait for other threads to quiesce before
1586              * setting the virtio_dev to NULL.
1587              */
1588             ovsrcu_synchronize();
1589             /*
1590              * As call to ovsrcu_synchronize() will end the quiescent state,
1591              * put thread back into quiescent state before returning.
1592              */
1593             ovsrcu_quiesce_start();
1594         }
1595     }
1596     ovs_mutex_unlock(&dpdk_mutex);
1597
1598     VLOG_INFO("vHost Device '%s' (%ld) has been removed",
1599                dev->ifname, dev->device_fh);
1600 }
1601
1602 struct virtio_net *
1603 netdev_dpdk_get_virtio(const struct netdev_dpdk *dev)
1604 {
1605     return ovsrcu_get(struct virtio_net *, &dev->virtio_dev);
1606 }
1607
1608 /*
1609  * These callbacks allow virtio-net devices to be added to vhost ports when
1610  * configuration has been fully complete.
1611  */
1612 const struct virtio_net_device_ops virtio_net_device_ops =
1613 {
1614     .new_device =  new_device,
1615     .destroy_device = destroy_device,
1616 };
1617
1618 static void *
1619 start_cuse_session_loop(void *dummy OVS_UNUSED)
1620 {
1621      pthread_detach(pthread_self());
1622      /* Put the cuse thread into quiescent state. */
1623      ovsrcu_quiesce_start();
1624      rte_vhost_driver_session_start();
1625      return NULL;
1626 }
1627
1628 static int
1629 dpdk_vhost_class_init(void)
1630 {
1631     int err = -1;
1632
1633     rte_vhost_driver_callback_register(&virtio_net_device_ops);
1634
1635     /* Register CUSE device to handle IOCTLs.
1636      * Unless otherwise specified on the vswitchd command line, cuse_dev_name
1637      * is set to vhost-net.
1638      */
1639     err = rte_vhost_driver_register(cuse_dev_name);
1640
1641     if (err != 0) {
1642         VLOG_ERR("CUSE device setup failure.");
1643         return -1;
1644     }
1645
1646     ovs_thread_create("cuse_thread", start_cuse_session_loop, NULL);
1647     return 0;
1648 }
1649
1650 static void
1651 dpdk_common_init(void)
1652 {
1653     unixctl_command_register("netdev-dpdk/set-admin-state",
1654                              "[netdev] up|down", 1, 2,
1655                              netdev_dpdk_set_admin_state, NULL);
1656
1657     ovs_thread_create("dpdk_watchdog", dpdk_watchdog, NULL);
1658 }
1659
1660 /* Client Rings */
1661
1662 static int
1663 dpdk_ring_create(const char dev_name[], unsigned int port_no,
1664                  unsigned int *eth_port_id)
1665 {
1666     struct dpdk_ring *ivshmem;
1667     char ring_name[10];
1668     int err;
1669
1670     ivshmem = dpdk_rte_mzalloc(sizeof *ivshmem);
1671     if (ivshmem == NULL) {
1672         return ENOMEM;
1673     }
1674
1675     /* XXX: Add support for multiquque ring. */
1676     err = snprintf(ring_name, 10, "%s_tx", dev_name);
1677     if (err < 0) {
1678         return -err;
1679     }
1680
1681     /* Create single consumer/producer rings, netdev does explicit locking. */
1682     ivshmem->cring_tx = rte_ring_create(ring_name, DPDK_RING_SIZE, SOCKET0,
1683                                         RING_F_SP_ENQ | RING_F_SC_DEQ);
1684     if (ivshmem->cring_tx == NULL) {
1685         rte_free(ivshmem);
1686         return ENOMEM;
1687     }
1688
1689     err = snprintf(ring_name, 10, "%s_rx", dev_name);
1690     if (err < 0) {
1691         return -err;
1692     }
1693
1694     /* Create single consumer/producer rings, netdev does explicit locking. */
1695     ivshmem->cring_rx = rte_ring_create(ring_name, DPDK_RING_SIZE, SOCKET0,
1696                                         RING_F_SP_ENQ | RING_F_SC_DEQ);
1697     if (ivshmem->cring_rx == NULL) {
1698         rte_free(ivshmem);
1699         return ENOMEM;
1700     }
1701
1702     err = rte_eth_from_rings(dev_name, &ivshmem->cring_rx, 1,
1703                              &ivshmem->cring_tx, 1, SOCKET0);
1704
1705     if (err < 0) {
1706         rte_free(ivshmem);
1707         return ENODEV;
1708     }
1709
1710     ivshmem->user_port_id = port_no;
1711     ivshmem->eth_port_id = rte_eth_dev_count() - 1;
1712     list_push_back(&dpdk_ring_list, &ivshmem->list_node);
1713
1714     *eth_port_id = ivshmem->eth_port_id;
1715     return 0;
1716 }
1717
1718 static int
1719 dpdk_ring_open(const char dev_name[], unsigned int *eth_port_id) OVS_REQUIRES(dpdk_mutex)
1720 {
1721     struct dpdk_ring *ivshmem;
1722     unsigned int port_no;
1723     int err = 0;
1724
1725     /* Names always start with "dpdkr" */
1726     err = dpdk_dev_parse_name(dev_name, "dpdkr", &port_no);
1727     if (err) {
1728         return err;
1729     }
1730
1731     /* look through our list to find the device */
1732     LIST_FOR_EACH (ivshmem, list_node, &dpdk_ring_list) {
1733          if (ivshmem->user_port_id == port_no) {
1734             VLOG_INFO("Found dpdk ring device %s:", dev_name);
1735             *eth_port_id = ivshmem->eth_port_id; /* really all that is needed */
1736             return 0;
1737          }
1738     }
1739     /* Need to create the device rings */
1740     return dpdk_ring_create(dev_name, port_no, eth_port_id);
1741 }
1742
1743 static int
1744 netdev_dpdk_ring_send(struct netdev *netdev, int qid OVS_UNUSED,
1745                       struct dp_packet **pkts, int cnt, bool may_steal)
1746 {
1747     struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1748     unsigned i;
1749
1750     /* When using 'dpdkr' and sending to a DPDK ring, we want to ensure that the
1751      * rss hash field is clear. This is because the same mbuf may be modified by
1752      * the consumer of the ring and return into the datapath without recalculating
1753      * the RSS hash. */
1754     for (i = 0; i < cnt; i++) {
1755         dp_packet_set_rss_hash(pkts[i], 0);
1756     }
1757
1758     /* DPDK Rings have a single TX queue, Therefore needs locking. */
1759     rte_spinlock_lock(&dev->txq_lock);
1760     netdev_dpdk_send__(dev, 0, pkts, cnt, may_steal);
1761     rte_spinlock_unlock(&dev->txq_lock);
1762     return 0;
1763 }
1764
1765 static int
1766 netdev_dpdk_ring_construct(struct netdev *netdev)
1767 {
1768     unsigned int port_no = 0;
1769     int err = 0;
1770
1771     if (rte_eal_init_ret) {
1772         return rte_eal_init_ret;
1773     }
1774
1775     ovs_mutex_lock(&dpdk_mutex);
1776
1777     err = dpdk_ring_open(netdev->name, &port_no);
1778     if (err) {
1779         goto unlock_dpdk;
1780     }
1781
1782     err = netdev_dpdk_init(netdev, port_no, DPDK_DEV_ETH);
1783
1784 unlock_dpdk:
1785     ovs_mutex_unlock(&dpdk_mutex);
1786     return err;
1787 }
1788
1789 #define NETDEV_DPDK_CLASS(NAME, INIT, CONSTRUCT, DESTRUCT, MULTIQ, SEND, \
1790     GET_CARRIER, GET_STATS, GET_FEATURES, GET_STATUS, RXQ_RECV)          \
1791 {                                                             \
1792     NAME,                                                     \
1793     INIT,                       /* init */                    \
1794     NULL,                       /* netdev_dpdk_run */         \
1795     NULL,                       /* netdev_dpdk_wait */        \
1796                                                               \
1797     netdev_dpdk_alloc,                                        \
1798     CONSTRUCT,                                                \
1799     DESTRUCT,                                                 \
1800     netdev_dpdk_dealloc,                                      \
1801     netdev_dpdk_get_config,                                   \
1802     NULL,                       /* netdev_dpdk_set_config */  \
1803     NULL,                       /* get_tunnel_config */       \
1804     NULL,                       /* build header */            \
1805     NULL,                       /* push header */             \
1806     NULL,                       /* pop header */              \
1807     netdev_dpdk_get_numa_id,    /* get_numa_id */             \
1808     MULTIQ,                     /* set_multiq */              \
1809                                                               \
1810     SEND,                       /* send */                    \
1811     NULL,                       /* send_wait */               \
1812                                                               \
1813     netdev_dpdk_set_etheraddr,                                \
1814     netdev_dpdk_get_etheraddr,                                \
1815     netdev_dpdk_get_mtu,                                      \
1816     netdev_dpdk_set_mtu,                                      \
1817     netdev_dpdk_get_ifindex,                                  \
1818     GET_CARRIER,                                              \
1819     netdev_dpdk_get_carrier_resets,                           \
1820     netdev_dpdk_set_miimon,                                   \
1821     GET_STATS,                                                \
1822     GET_FEATURES,                                             \
1823     NULL,                       /* set_advertisements */      \
1824                                                               \
1825     NULL,                       /* set_policing */            \
1826     NULL,                       /* get_qos_types */           \
1827     NULL,                       /* get_qos_capabilities */    \
1828     NULL,                       /* get_qos */                 \
1829     NULL,                       /* set_qos */                 \
1830     NULL,                       /* get_queue */               \
1831     NULL,                       /* set_queue */               \
1832     NULL,                       /* delete_queue */            \
1833     NULL,                       /* get_queue_stats */         \
1834     NULL,                       /* queue_dump_start */        \
1835     NULL,                       /* queue_dump_next */         \
1836     NULL,                       /* queue_dump_done */         \
1837     NULL,                       /* dump_queue_stats */        \
1838                                                               \
1839     NULL,                       /* get_in4 */                 \
1840     NULL,                       /* set_in4 */                 \
1841     NULL,                       /* get_in6 */                 \
1842     NULL,                       /* add_router */              \
1843     NULL,                       /* get_next_hop */            \
1844     GET_STATUS,                                               \
1845     NULL,                       /* arp_lookup */              \
1846                                                               \
1847     netdev_dpdk_update_flags,                                 \
1848                                                               \
1849     netdev_dpdk_rxq_alloc,                                    \
1850     netdev_dpdk_rxq_construct,                                \
1851     netdev_dpdk_rxq_destruct,                                 \
1852     netdev_dpdk_rxq_dealloc,                                  \
1853     RXQ_RECV,                                                 \
1854     NULL,                       /* rx_wait */                 \
1855     NULL,                       /* rxq_drain */               \
1856 }
1857
1858 int
1859 dpdk_init(int argc, char **argv)
1860 {
1861     int result;
1862     int base = 0;
1863     char *pragram_name = argv[0];
1864
1865     if (argc < 2 || strcmp(argv[1], "--dpdk"))
1866         return 0;
1867
1868     /* Remove the --dpdk argument from arg list.*/
1869     argc--;
1870     argv++;
1871
1872     /* If the cuse_dev_name parameter has been provided, set 'cuse_dev_name' to
1873      * this string if it meets the correct criteria. Otherwise, set it to the
1874      * default (vhost-net).
1875      */
1876     if (!strcmp(argv[1], "--cuse_dev_name") &&
1877         (strlen(argv[2]) <= NAME_MAX)) {
1878
1879         cuse_dev_name = strdup(argv[2]);
1880
1881         /* Remove the cuse_dev_name configuration parameters from the argument
1882          * list, so that the correct elements are passed to the DPDK
1883          * initialization function
1884          */
1885         argc -= 2;
1886         argv += 2;    /* Increment by two to bypass the cuse_dev_name arguments */
1887         base = 2;
1888
1889         VLOG_ERR("User-provided cuse_dev_name in use: /dev/%s", cuse_dev_name);
1890     } else {
1891         cuse_dev_name = "vhost-net";
1892         VLOG_INFO("No cuse_dev_name provided - defaulting to /dev/vhost-net");
1893     }
1894
1895     /* Keep the program name argument as this is needed for call to
1896      * rte_eal_init()
1897      */
1898     argv[0] = pragram_name;
1899
1900     /* Make sure things are initialized ... */
1901     result = rte_eal_init(argc, argv);
1902     if (result < 0) {
1903         ovs_abort(result, "Cannot init EAL");
1904     }
1905
1906     rte_memzone_dump(stdout);
1907     rte_eal_init_ret = 0;
1908
1909     if (argc > result) {
1910         argv[result] = argv[0];
1911     }
1912
1913     /* We are called from the main thread here */
1914     thread_set_nonpmd();
1915
1916     return result + 1 + base;
1917 }
1918
1919 const struct netdev_class dpdk_class =
1920     NETDEV_DPDK_CLASS(
1921         "dpdk",
1922         NULL,
1923         netdev_dpdk_construct,
1924         netdev_dpdk_destruct,
1925         netdev_dpdk_set_multiq,
1926         netdev_dpdk_eth_send,
1927         netdev_dpdk_get_carrier,
1928         netdev_dpdk_get_stats,
1929         netdev_dpdk_get_features,
1930         netdev_dpdk_get_status,
1931         netdev_dpdk_rxq_recv);
1932
1933 const struct netdev_class dpdk_ring_class =
1934     NETDEV_DPDK_CLASS(
1935         "dpdkr",
1936         NULL,
1937         netdev_dpdk_ring_construct,
1938         netdev_dpdk_destruct,
1939         NULL,
1940         netdev_dpdk_ring_send,
1941         netdev_dpdk_get_carrier,
1942         netdev_dpdk_get_stats,
1943         netdev_dpdk_get_features,
1944         netdev_dpdk_get_status,
1945         netdev_dpdk_rxq_recv);
1946
1947 const struct netdev_class dpdk_vhost_class =
1948     NETDEV_DPDK_CLASS(
1949         "dpdkvhost",
1950         dpdk_vhost_class_init,
1951         netdev_dpdk_vhost_construct,
1952         netdev_dpdk_vhost_destruct,
1953         netdev_dpdk_vhost_set_multiq,
1954         netdev_dpdk_vhost_send,
1955         netdev_dpdk_vhost_get_carrier,
1956         netdev_dpdk_vhost_get_stats,
1957         NULL,
1958         NULL,
1959         netdev_dpdk_vhost_rxq_recv);
1960
1961 void
1962 netdev_dpdk_register(void)
1963 {
1964     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
1965
1966     if (rte_eal_init_ret) {
1967         return;
1968     }
1969
1970     if (ovsthread_once_start(&once)) {
1971         dpdk_common_init();
1972         netdev_register_provider(&dpdk_class);
1973         netdev_register_provider(&dpdk_ring_class);
1974         netdev_register_provider(&dpdk_vhost_class);
1975         ovsthread_once_done(&once);
1976     }
1977 }
1978
1979 int
1980 pmd_thread_setaffinity_cpu(int cpu)
1981 {
1982     cpu_set_t cpuset;
1983     int err;
1984
1985     CPU_ZERO(&cpuset);
1986     CPU_SET(cpu, &cpuset);
1987     err = pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset);
1988     if (err) {
1989         VLOG_ERR("Thread affinity error %d",err);
1990         return err;
1991     }
1992     /* NON_PMD_CORE_ID is reserved for use by non pmd threads. */
1993     ovs_assert(cpu != NON_PMD_CORE_ID);
1994     RTE_PER_LCORE(_lcore_id) = cpu;
1995
1996     return 0;
1997 }
1998
1999 void
2000 thread_set_nonpmd(void)
2001 {
2002     /* We have to use NON_PMD_CORE_ID to allow non-pmd threads to perform
2003      * certain DPDK operations, like rte_eth_dev_configure(). */
2004     RTE_PER_LCORE(_lcore_id) = NON_PMD_CORE_ID;
2005 }
2006
2007 static bool
2008 thread_is_pmd(void)
2009 {
2010     return rte_lcore_id() != NON_PMD_CORE_ID;
2011 }