VPP-1268: Add option for memory channels DPDK uses
[vpp.git] / src / plugins / dpdk / device / init.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/error.h>
18 #include <vppinfra/format.h>
19 #include <vppinfra/bitmap.h>
20 #include <vppinfra/linux/sysfs.h>
21 #include <vlib/unix/unix.h>
22 #include <vlib/log.h>
23
24 #include <vnet/ethernet/ethernet.h>
25 #include <dpdk/device/dpdk.h>
26 #include <vlib/pci/pci.h>
27
28 #include <rte_ring.h>
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <sys/stat.h>
34 #include <sys/mount.h>
35 #include <string.h>
36 #include <fcntl.h>
37
38 #include <dpdk/device/dpdk_priv.h>
39
40 #define ETHER_MAX_LEN   1518  /**< Maximum frame len, including CRC. */
41
42 dpdk_main_t dpdk_main;
43 dpdk_config_main_t dpdk_config_main;
44
45 #define LINK_STATE_ELOGS        0
46
47 /* Port configuration, mildly modified Intel app values */
48
49 static struct rte_eth_conf port_conf_template = {
50   .rxmode = {
51              .split_hdr_size = 0,
52              },
53   .txmode = {
54              .mq_mode = ETH_MQ_TX_NONE,
55              },
56 };
57
58 static dpdk_port_type_t
59 port_type_from_speed_capa (struct rte_eth_dev_info *dev_info)
60 {
61
62   if (dev_info->speed_capa & ETH_LINK_SPEED_100G)
63     return VNET_DPDK_PORT_TYPE_ETH_100G;
64   else if (dev_info->speed_capa & ETH_LINK_SPEED_56G)
65     return VNET_DPDK_PORT_TYPE_ETH_56G;
66   else if (dev_info->speed_capa & ETH_LINK_SPEED_50G)
67     return VNET_DPDK_PORT_TYPE_ETH_50G;
68   else if (dev_info->speed_capa & ETH_LINK_SPEED_40G)
69     return VNET_DPDK_PORT_TYPE_ETH_40G;
70   else if (dev_info->speed_capa & ETH_LINK_SPEED_25G)
71     return VNET_DPDK_PORT_TYPE_ETH_25G;
72   else if (dev_info->speed_capa & ETH_LINK_SPEED_20G)
73     return VNET_DPDK_PORT_TYPE_ETH_20G;
74   else if (dev_info->speed_capa & ETH_LINK_SPEED_10G)
75     return VNET_DPDK_PORT_TYPE_ETH_10G;
76   else if (dev_info->speed_capa & ETH_LINK_SPEED_5G)
77     return VNET_DPDK_PORT_TYPE_ETH_5G;
78   else if (dev_info->speed_capa & ETH_LINK_SPEED_2_5G)
79     return VNET_DPDK_PORT_TYPE_ETH_2_5G;
80   else if (dev_info->speed_capa & ETH_LINK_SPEED_1G)
81     return VNET_DPDK_PORT_TYPE_ETH_1G;
82
83   return VNET_DPDK_PORT_TYPE_UNKNOWN;
84 }
85
86
87 static u32
88 dpdk_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, u32 flags)
89 {
90   dpdk_main_t *dm = &dpdk_main;
91   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
92   u32 old = 0;
93
94   if (ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC (flags))
95     {
96       old = (xd->flags & DPDK_DEVICE_FLAG_PROMISC) != 0;
97
98       if (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL)
99         xd->flags |= DPDK_DEVICE_FLAG_PROMISC;
100       else
101         xd->flags &= ~DPDK_DEVICE_FLAG_PROMISC;
102
103       if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
104         {
105           if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
106             rte_eth_promiscuous_enable (xd->port_id);
107           else
108             rte_eth_promiscuous_disable (xd->port_id);
109         }
110     }
111   else if (ETHERNET_INTERFACE_FLAG_CONFIG_MTU (flags))
112     {
113       xd->port_conf.rxmode.max_rx_pkt_len = hi->max_packet_bytes;
114       dpdk_device_setup (xd);
115     }
116   return old;
117 }
118
119 static void
120 dpdk_device_lock_init (dpdk_device_t * xd)
121 {
122   int q;
123   vec_validate (xd->lockp, xd->tx_q_used - 1);
124   for (q = 0; q < xd->tx_q_used; q++)
125     {
126       xd->lockp[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
127                                              CLIB_CACHE_LINE_BYTES);
128       memset ((void *) xd->lockp[q], 0, CLIB_CACHE_LINE_BYTES);
129     }
130 }
131
132 static struct rte_mempool_ops *
133 get_ops_by_name (char *ops_name)
134 {
135   u32 i;
136
137   for (i = 0; i < rte_mempool_ops_table.num_ops; i++)
138     {
139       if (!strcmp (ops_name, rte_mempool_ops_table.ops[i].name))
140         return &rte_mempool_ops_table.ops[i];
141     }
142
143   return 0;
144 }
145
146 static int
147 dpdk_ring_alloc (struct rte_mempool *mp)
148 {
149   u32 rg_flags = 0, count;
150   i32 ret;
151   char rg_name[RTE_RING_NAMESIZE];
152   struct rte_ring *r;
153
154   ret = snprintf (rg_name, sizeof (rg_name), RTE_MEMPOOL_MZ_FORMAT, mp->name);
155   if (ret < 0 || ret >= (i32) sizeof (rg_name))
156     return -ENAMETOOLONG;
157
158   /* ring flags */
159   if (mp->flags & MEMPOOL_F_SP_PUT)
160     rg_flags |= RING_F_SP_ENQ;
161   if (mp->flags & MEMPOOL_F_SC_GET)
162     rg_flags |= RING_F_SC_DEQ;
163
164   count = rte_align32pow2 (mp->size + 1);
165   /*
166    * Allocate the ring that will be used to store objects.
167    * Ring functions will return appropriate errors if we are
168    * running as a secondary process etc., so no checks made
169    * in this function for that condition.
170    */
171   /* XXX can we get memory from the right socket? */
172   r = clib_mem_alloc_aligned (rte_ring_get_memsize (count),
173                               CLIB_CACHE_LINE_BYTES);
174
175   /* XXX rte_ring_lookup will not work */
176
177   ret = rte_ring_init (r, rg_name, count, rg_flags);
178   if (ret)
179     return ret;
180
181   mp->pool_data = r;
182
183   return 0;
184 }
185
186 static int
187 dpdk_port_crc_strip_enabled (dpdk_device_t * xd)
188 {
189 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
190   if (xd->port_conf.rxmode.hw_strip_crc)
191 #else
192   if (xd->port_conf.rxmode.offloads & DEV_RX_OFFLOAD_CRC_STRIP)
193 #endif
194     return 1;
195   return 0;
196 }
197
198 static clib_error_t *
199 dpdk_lib_init (dpdk_main_t * dm)
200 {
201   u32 nports;
202   u32 mtu, max_rx_frame;
203   u32 nb_desc = 0;
204   int i;
205   clib_error_t *error;
206   vlib_main_t *vm = vlib_get_main ();
207   vlib_thread_main_t *tm = vlib_get_thread_main ();
208   vnet_device_main_t *vdm = &vnet_device_main;
209   vnet_sw_interface_t *sw;
210   vnet_hw_interface_t *hi;
211   dpdk_device_t *xd;
212   vlib_pci_addr_t last_pci_addr;
213   u32 last_pci_addr_port = 0;
214   vlib_thread_registration_t *tr_hqos;
215   uword *p_hqos;
216
217   u32 next_hqos_cpu = 0;
218   u8 af_packet_instance_num = 0;
219   u8 bond_ether_instance_num = 0;
220   last_pci_addr.as_u32 = ~0;
221
222   dm->hqos_cpu_first_index = 0;
223   dm->hqos_cpu_count = 0;
224
225   /* find out which cpus will be used for I/O TX */
226   p_hqos = hash_get_mem (tm->thread_registrations_by_name, "hqos-threads");
227   tr_hqos = p_hqos ? (vlib_thread_registration_t *) p_hqos[0] : 0;
228
229   if (tr_hqos && tr_hqos->count > 0)
230     {
231       dm->hqos_cpu_first_index = tr_hqos->first_index;
232       dm->hqos_cpu_count = tr_hqos->count;
233     }
234
235   vec_validate_aligned (dm->devices_by_hqos_cpu, tm->n_vlib_mains - 1,
236                         CLIB_CACHE_LINE_BYTES);
237
238   nports = rte_eth_dev_count_avail ();
239
240   if (nports < 1)
241     {
242       dpdk_log_notice ("DPDK drivers found no ports...");
243     }
244
245   if (CLIB_DEBUG > 0)
246     dpdk_log_notice ("DPDK drivers found %d ports...", nports);
247
248   if (dm->conf->enable_tcp_udp_checksum)
249     dm->buffer_flags_template &= ~(VNET_BUFFER_F_L4_CHECKSUM_CORRECT
250                                    | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
251
252   /* vlib_buffer_t template */
253   vec_validate_aligned (dm->per_thread_data, tm->n_vlib_mains - 1,
254                         CLIB_CACHE_LINE_BYTES);
255   for (i = 0; i < tm->n_vlib_mains; i++)
256     {
257       vlib_buffer_free_list_t *fl;
258       dpdk_per_thread_data_t *ptd = vec_elt_at_index (dm->per_thread_data, i);
259       fl = vlib_buffer_get_free_list (vm,
260                                       VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
261       vlib_buffer_init_for_free_list (&ptd->buffer_template, fl);
262       ptd->buffer_template.flags = dm->buffer_flags_template;
263       vnet_buffer (&ptd->buffer_template)->sw_if_index[VLIB_TX] = (u32) ~ 0;
264     }
265
266   /* *INDENT-OFF* */
267   RTE_ETH_FOREACH_DEV(i)
268     {
269       u8 addr[6];
270       u8 vlan_strip = 0;
271       struct rte_eth_dev_info dev_info;
272       struct rte_pci_device *pci_dev;
273       struct rte_eth_link l;
274       dpdk_device_config_t *devconf = 0;
275       vlib_pci_addr_t pci_addr;
276       uword *p = 0;
277
278       if (!rte_eth_dev_is_valid_port(i))
279         continue;
280
281       rte_eth_link_get_nowait (i, &l);
282       rte_eth_dev_info_get (i, &dev_info);
283
284       if (dev_info.device == 0)
285         {
286           clib_warning ("DPDK bug: missing device info. Skipping  %s device",
287                         dev_info.driver_name);
288           continue;
289         }
290       pci_dev = RTE_DEV_TO_PCI (dev_info.device);
291
292       if (pci_dev)      /* bonded interface has no pci info */
293         {
294           pci_addr.domain = pci_dev->addr.domain;
295           pci_addr.bus = pci_dev->addr.bus;
296           pci_addr.slot = pci_dev->addr.devid;
297           pci_addr.function = pci_dev->addr.function;
298           p =
299             hash_get (dm->conf->device_config_index_by_pci_addr,
300                       pci_addr.as_u32);
301         }
302
303       if (p)
304         devconf = pool_elt_at_index (dm->conf->dev_confs, p[0]);
305       else
306         devconf = &dm->conf->default_devconf;
307
308       /* Create vnet interface */
309       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
310       xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
311       xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
312       xd->cpu_socket = (i8) rte_eth_dev_socket_id (i);
313
314       /* Handle interface naming for devices with multiple ports sharing same PCI ID */
315       if (pci_dev)
316         {
317           struct rte_eth_dev_info di = { 0 };
318           struct rte_pci_device *next_pci_dev;
319           rte_eth_dev_info_get (i + 1, &di);
320           next_pci_dev = di.device ? RTE_DEV_TO_PCI (di.device) : 0;
321           if (pci_dev && next_pci_dev &&
322               pci_addr.as_u32 != last_pci_addr.as_u32 &&
323               memcmp (&pci_dev->addr, &next_pci_dev->addr,
324                       sizeof (struct rte_pci_addr)) == 0)
325             {
326               xd->interface_name_suffix = format (0, "0");
327               last_pci_addr.as_u32 = pci_addr.as_u32;
328               last_pci_addr_port = i;
329             }
330           else if (pci_addr.as_u32 == last_pci_addr.as_u32)
331             {
332               xd->interface_name_suffix =
333                 format (0, "%u", i - last_pci_addr_port);
334             }
335           else
336             {
337               last_pci_addr.as_u32 = ~0;
338             }
339         }
340       else
341         last_pci_addr.as_u32 = ~0;
342
343       clib_memcpy (&xd->tx_conf, &dev_info.default_txconf,
344                    sizeof (struct rte_eth_txconf));
345
346       if (dm->conf->no_multi_seg)
347         {
348 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
349           xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
350           port_conf_template.rxmode.jumbo_frame = 0;
351           port_conf_template.rxmode.enable_scatter = 0;
352 #else
353           xd->port_conf.txmode.offloads &= ~DEV_TX_OFFLOAD_MULTI_SEGS;
354           xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
355           xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
356 #endif
357         }
358       else
359         {
360 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
361           xd->tx_conf.txq_flags &= ~ETH_TXQ_FLAGS_NOMULTSEGS;
362           port_conf_template.rxmode.jumbo_frame = 1;
363           port_conf_template.rxmode.enable_scatter = 1;
364 #else
365           xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
366           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
367           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_SCATTER;
368 #endif
369           xd->flags |= DPDK_DEVICE_FLAG_MAYBE_MULTISEG;
370         }
371
372       clib_memcpy (&xd->port_conf, &port_conf_template,
373                    sizeof (struct rte_eth_conf));
374
375       xd->tx_q_used = clib_min (dev_info.max_tx_queues, tm->n_vlib_mains);
376
377       if (devconf->num_tx_queues > 0
378           && devconf->num_tx_queues < xd->tx_q_used)
379         xd->tx_q_used = clib_min (xd->tx_q_used, devconf->num_tx_queues);
380
381       if (devconf->num_rx_queues > 1
382           && dev_info.max_rx_queues >= devconf->num_rx_queues)
383         {
384           xd->rx_q_used = devconf->num_rx_queues;
385           xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
386           if (devconf->rss_fn == 0)
387             xd->port_conf.rx_adv_conf.rss_conf.rss_hf =
388               ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP;
389           else
390             {
391               u64 unsupported_bits;
392               xd->port_conf.rx_adv_conf.rss_conf.rss_hf = devconf->rss_fn;
393               unsupported_bits = xd->port_conf.rx_adv_conf.rss_conf.rss_hf;
394               unsupported_bits &= ~dev_info.flow_type_rss_offloads;
395               if (unsupported_bits)
396                 dpdk_log_warn ("Unsupported RSS hash functions: %U",
397                                format_dpdk_rss_hf_name, unsupported_bits);
398             }
399           xd->port_conf.rx_adv_conf.rss_conf.rss_hf &=
400             dev_info.flow_type_rss_offloads;
401         }
402       else
403         xd->rx_q_used = 1;
404
405       xd->flags |= DPDK_DEVICE_FLAG_PMD;
406
407       /* workaround for drivers not setting driver_name */
408       if ((!dev_info.driver_name) && (pci_dev))
409         dev_info.driver_name = pci_dev->driver->driver.name;
410
411       ASSERT (dev_info.driver_name);
412
413       if (!xd->pmd)
414         {
415
416
417 #define _(s,f) else if (dev_info.driver_name &&                 \
418                         !strcmp(dev_info.driver_name, s))       \
419                  xd->pmd = VNET_DPDK_PMD_##f;
420           if (0)
421             ;
422           foreach_dpdk_pmd
423 #undef _
424             else
425             xd->pmd = VNET_DPDK_PMD_UNKNOWN;
426
427           xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
428           xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
429           xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
430
431           switch (xd->pmd)
432             {
433               /* Drivers with valid speed_capa set */
434             case VNET_DPDK_PMD_E1000EM:
435             case VNET_DPDK_PMD_IGB:
436             case VNET_DPDK_PMD_IXGBE:
437             case VNET_DPDK_PMD_I40E:
438               xd->port_type = port_type_from_speed_capa (&dev_info);
439               xd->supported_flow_actions = VNET_FLOW_ACTION_MARK |
440                 VNET_FLOW_ACTION_REDIRECT_TO_NODE |
441                 VNET_FLOW_ACTION_BUFFER_ADVANCE |
442                 VNET_FLOW_ACTION_COUNT | VNET_FLOW_ACTION_DROP;
443
444               if (dm->conf->no_tx_checksum_offload == 0)
445                 {
446 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
447                   xd->tx_conf.txq_flags &= ~ETH_TXQ_FLAGS_NOXSUMS;
448 #else
449                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM;
450                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
451                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
452 #endif
453                   xd->flags |=
454                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
455                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
456                 }
457
458
459               break;
460             case VNET_DPDK_PMD_CXGBE:
461             case VNET_DPDK_PMD_MLX4:
462             case VNET_DPDK_PMD_MLX5:
463             case VNET_DPDK_PMD_QEDE:
464               xd->port_type = port_type_from_speed_capa (&dev_info);
465               break;
466
467               /* SR-IOV VFs */
468             case VNET_DPDK_PMD_IGBVF:
469             case VNET_DPDK_PMD_IXGBEVF:
470             case VNET_DPDK_PMD_I40EVF:
471               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
472 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
473               xd->port_conf.rxmode.hw_strip_crc = 1;
474 #else
475               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
476 #endif
477               break;
478
479             case VNET_DPDK_PMD_THUNDERX:
480               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
481 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
482               xd->port_conf.rxmode.hw_strip_crc = 1;
483 #else
484               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
485 #endif
486               break;
487
488             case VNET_DPDK_PMD_ENA:
489               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
490 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
491               xd->port_conf.rxmode.enable_scatter = 0;
492 #else
493               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_SCATTER;
494 #endif
495               break;
496
497             case VNET_DPDK_PMD_DPAA2:
498               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
499               break;
500
501               /* Cisco VIC */
502             case VNET_DPDK_PMD_ENIC:
503               if (l.link_speed == 40000)
504                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
505               else
506                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
507               break;
508
509               /* Intel Red Rock Canyon */
510             case VNET_DPDK_PMD_FM10K:
511               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
512 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
513               xd->port_conf.rxmode.hw_strip_crc = 1;
514 #else
515               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
516 #endif
517               break;
518
519               /* virtio */
520             case VNET_DPDK_PMD_VIRTIO:
521               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
522               xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
523               xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
524               break;
525
526               /* vmxnet3 */
527             case VNET_DPDK_PMD_VMXNET3:
528               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
529 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
530               xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
531 #else
532               xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
533 #endif
534               break;
535
536             case VNET_DPDK_PMD_AF_PACKET:
537               xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
538               xd->af_packet_instance_num = af_packet_instance_num++;
539               break;
540
541             case VNET_DPDK_PMD_BOND:
542               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_BOND;
543               xd->bond_instance_num = bond_ether_instance_num++;
544               break;
545
546             case VNET_DPDK_PMD_VIRTIO_USER:
547               xd->port_type = VNET_DPDK_PORT_TYPE_VIRTIO_USER;
548               break;
549
550             case VNET_DPDK_PMD_VHOST_ETHER:
551               xd->port_type = VNET_DPDK_PORT_TYPE_VHOST_ETHER;
552               break;
553
554             case VNET_DPDK_PMD_LIOVF_ETHER:
555               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
556               break;
557
558             case VNET_DPDK_PMD_FAILSAFE:
559               xd->port_type = VNET_DPDK_PORT_TYPE_FAILSAFE;
560               xd->port_conf.intr_conf.lsc = 1;
561               break;
562
563             default:
564               xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
565             }
566
567           if (devconf->num_rx_desc)
568             xd->nb_rx_desc = devconf->num_rx_desc;
569
570           if (devconf->num_tx_desc)
571             xd->nb_tx_desc = devconf->num_tx_desc;
572         }
573
574       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
575         {
576           f64 now = vlib_time_now (vm);
577           u32 rnd;
578           rnd = (u32) (now * 1e6);
579           rnd = random_u32 (&rnd);
580           clib_memcpy (addr + 2, &rnd, sizeof (rnd));
581           addr[0] = 2;
582           addr[1] = 0xfe;
583         }
584       else
585         rte_eth_macaddr_get (i, (struct ether_addr *) addr);
586
587       if (xd->tx_q_used < tm->n_vlib_mains)
588         dpdk_device_lock_init (xd);
589
590       xd->port_id = i;
591       xd->device_index = xd - dm->devices;
592       xd->per_interface_next_index = ~0;
593
594       /* assign interface to input thread */
595       int q;
596
597       if (devconf->hqos_enabled)
598         {
599           xd->flags |= DPDK_DEVICE_FLAG_HQOS;
600
601           int cpu;
602           if (devconf->hqos.hqos_thread_valid)
603             {
604               if (devconf->hqos.hqos_thread >= dm->hqos_cpu_count)
605                 return clib_error_return (0, "invalid HQoS thread index");
606
607               cpu = dm->hqos_cpu_first_index + devconf->hqos.hqos_thread;
608             }
609           else
610             {
611               if (dm->hqos_cpu_count == 0)
612                 return clib_error_return (0, "no HQoS threads available");
613
614               cpu = dm->hqos_cpu_first_index + next_hqos_cpu;
615
616               next_hqos_cpu++;
617               if (next_hqos_cpu == dm->hqos_cpu_count)
618                 next_hqos_cpu = 0;
619
620               devconf->hqos.hqos_thread_valid = 1;
621               devconf->hqos.hqos_thread = cpu;
622             }
623
624           dpdk_device_and_queue_t *dq;
625           vec_add2 (dm->devices_by_hqos_cpu[cpu], dq, 1);
626           dq->device = xd->device_index;
627           dq->queue_id = 0;
628         }
629
630       /* count the number of descriptors used for this device */
631       nb_desc += xd->nb_rx_desc + xd->nb_tx_desc * xd->tx_q_used;
632
633       error = ethernet_register_interface
634         (dm->vnet_main, dpdk_device_class.index, xd->device_index,
635          /* ethernet address */ addr,
636          &xd->hw_if_index, dpdk_flag_change);
637       if (error)
638         return error;
639
640       /*
641        * Ensure default mtu is not > the mtu read from the hardware.
642        * Otherwise rte_eth_dev_configure() will fail and the port will
643        * not be available.
644        * Calculate max_frame_size and mtu supported by NIC
645        */
646       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
647         {
648           /*
649            * This device does not support the platforms's max frame
650            * size. Use it's advertised mru instead.
651            */
652           max_rx_frame = dev_info.max_rx_pktlen;
653           mtu = dev_info.max_rx_pktlen - sizeof (ethernet_header_t);
654         }
655       else
656         {
657           /* VPP treats MTU and max_rx_pktlen both equal to
658            * ETHERNET_MAX_PACKET_BYTES, if dev_info.max_rx_pktlen >=
659            * ETHERNET_MAX_PACKET_BYTES + sizeof(ethernet_header_t)
660            */
661           if (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
662                                          sizeof (ethernet_header_t)))
663             {
664               mtu = ETHERNET_MAX_PACKET_BYTES;
665               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
666
667               /*
668                * Some platforms do not account for Ethernet FCS (4 bytes) in
669                * MTU calculations. To interop with them increase mru but only
670                * if the device's settings can support it.
671                */
672               if (dpdk_port_crc_strip_enabled (xd) &&
673                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
674                                               sizeof (ethernet_header_t) +
675                                               4)))
676                 {
677                   max_rx_frame += 4;
678                 }
679             }
680           else
681             {
682               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
683               mtu = ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
684
685               if (dpdk_port_crc_strip_enabled (xd) &&
686                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)))
687                 {
688                   max_rx_frame += 4;
689                 }
690             }
691         }
692
693       if (xd->pmd == VNET_DPDK_PMD_FAILSAFE)
694         {
695           /* failsafe device numerables are reported with active device only,
696            * need to query the mtu for current device setup to overwrite
697            * reported value.
698            */
699           uint16_t dev_mtu;
700           if (!rte_eth_dev_get_mtu (i, &dev_mtu))
701             {
702               mtu = dev_mtu;
703               max_rx_frame = mtu + sizeof (ethernet_header_t);
704
705               if (dpdk_port_crc_strip_enabled (xd))
706                 {
707                   max_rx_frame += 4;
708                 }
709             }
710         }
711
712       /*Set port rxmode config */
713       xd->port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
714
715       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->hw_if_index);
716       xd->sw_if_index = sw->sw_if_index;
717       vnet_hw_interface_set_input_node (dm->vnet_main, xd->hw_if_index,
718                                         dpdk_input_node.index);
719
720       if (devconf->workers)
721         {
722           int i;
723           q = 0;
724           clib_bitmap_foreach (i, devconf->workers, ({
725             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q++,
726                                              vdm->first_worker_thread_index + i);
727           }));
728         }
729       else
730         for (q = 0; q < xd->rx_q_used; q++)
731           {
732             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q,      /* any */
733                                                 ~1);
734           }
735
736       /*Get vnet hardware interface */
737       hi = vnet_get_hw_interface (dm->vnet_main, xd->hw_if_index);
738
739       /*Override default max_packet_bytes and max_supported_bytes set in
740        * ethernet_register_interface() above*/
741       if (hi)
742         {
743           hi->max_packet_bytes = mtu;
744           hi->max_supported_packet_bytes = max_rx_frame;
745         }
746
747       if (dm->conf->no_tx_checksum_offload == 0)
748         if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD && hi != NULL)
749           hi->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD;
750
751       dpdk_device_setup (xd);
752
753       if (vec_len (xd->errors))
754         dpdk_log_err ("setup failed for device %U. Errors:\n  %U",
755                       format_dpdk_device_name, i,
756                       format_dpdk_device_errors, xd);
757
758       if (devconf->hqos_enabled)
759         {
760           clib_error_t *rv;
761           rv = dpdk_port_setup_hqos (xd, &devconf->hqos);
762           if (rv)
763             return rv;
764         }
765
766       /*
767        * For cisco VIC vNIC, set default to VLAN strip enabled, unless
768        * specified otherwise in the startup config.
769        * For other NICs default to VLAN strip disabled, unless specified
770        * otherwis in the startup config.
771        */
772       if (xd->pmd == VNET_DPDK_PMD_ENIC)
773         {
774           if (devconf->vlan_strip_offload != DPDK_DEVICE_VLAN_STRIP_OFF)
775             vlan_strip = 1;     /* remove vlan tag from VIC port by default */
776           else
777             dpdk_log_warn ("VLAN strip disabled for interface\n");
778         }
779       else if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
780         vlan_strip = 1;
781
782       if (vlan_strip)
783         {
784           int vlan_off;
785           vlan_off = rte_eth_dev_get_vlan_offload (xd->port_id);
786           vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
787 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
788           xd->port_conf.rxmode.hw_vlan_strip = vlan_off;
789 #else
790           if (vlan_off)
791             xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
792           else
793             xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
794 #endif
795           if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) == 0)
796             dpdk_log_info ("VLAN strip enabled for interface\n");
797           else
798             dpdk_log_warn ("VLAN strip cannot be supported by interface\n");
799         }
800
801       if (hi)
802         hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
803           - sizeof (ethernet_header_t);
804       else
805         clib_warning ("hi NULL");
806
807       if (dm->conf->no_multi_seg)
808         mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
809
810       rte_eth_dev_set_mtu (xd->port_id, mtu);
811     }
812   /* *INDENT-ON* */
813
814   if (nb_desc > dm->conf->num_mbufs)
815     dpdk_log_err ("%d mbufs allocated but total rx/tx ring size is %d\n",
816                   dm->conf->num_mbufs, nb_desc);
817
818   return 0;
819 }
820
821 static void
822 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
823 {
824   clib_error_t *error;
825   u8 *pci_addr = 0;
826   int num_whitelisted = vec_len (conf->dev_confs);
827   vlib_pci_device_info_t *d = 0;
828   vlib_pci_addr_t *addr = 0, *addrs;
829
830   addrs = vlib_pci_get_all_dev_addrs ();
831   /* *INDENT-OFF* */
832   vec_foreach (addr, addrs)
833     {
834     dpdk_device_config_t * devconf = 0;
835     vec_reset_length (pci_addr);
836     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
837     if (d)
838     {
839       vlib_pci_free_device_info (d);
840       d = 0;
841       }
842     d = vlib_pci_get_device_info (addr, &error);
843     if (error)
844     {
845       clib_error_report (error);
846       continue;
847     }
848
849     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
850       continue;
851
852     if (num_whitelisted)
853       {
854         uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
855
856         if (!p)
857           continue;
858
859         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
860       }
861
862     /* virtio */
863     if (d->vendor_id == 0x1af4 &&
864             (d->device_id == VIRTIO_PCI_LEGACY_DEVICEID_NET ||
865              d->device_id == VIRTIO_PCI_MODERN_DEVICEID_NET))
866       ;
867     /* vmxnet3 */
868     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
869       ;
870     /* all Intel network devices */
871     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
872       ;
873     /* all Intel QAT devices VFs */
874     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
875         (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3))
876       ;
877     /* Cisco VIC */
878     else if (d->vendor_id == 0x1137 && d->device_id == 0x0043)
879       ;
880     /* Chelsio T4/T5 */
881     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
882       ;
883     /* Amazen Elastic Network Adapter */
884     else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
885       ;
886     /* Cavium Network Adapter */
887     else if (d->vendor_id == 0x177d && d->device_id == 0x9712)
888       ;
889     /* Cavium FastlinQ QL41000 Series */
890     else if (d->vendor_id == 0x1077 && d->device_id >= 0x8070 && d->device_id <= 0x8090)
891       ;
892     /* Mellanox mlx4 */
893     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1003 && d->device_id <= 0x1004)
894       {
895         continue;
896       }
897     /* Mellanox mlx5 */
898     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
899       {
900         continue;
901       }
902     else
903       {
904         dpdk_log_warn ("Unsupported PCI device 0x%04x:0x%04x found "
905                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
906                       pci_addr);
907         continue;
908       }
909
910     error = vlib_pci_bind_to_uio (addr, (char *) conf->uio_driver_name);
911
912     if (error)
913       {
914         if (devconf == 0)
915           {
916             pool_get (conf->dev_confs, devconf);
917             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
918                       devconf - conf->dev_confs);
919             devconf->pci_addr.as_u32 = addr->as_u32;
920           }
921         devconf->is_blacklisted = 1;
922         clib_error_report (error);
923       }
924   }
925   /* *INDENT-ON* */
926   vec_free (pci_addr);
927   vlib_pci_free_device_info (d);
928 }
929
930 static clib_error_t *
931 dpdk_device_config (dpdk_config_main_t * conf, vlib_pci_addr_t pci_addr,
932                     unformat_input_t * input, u8 is_default)
933 {
934   clib_error_t *error = 0;
935   uword *p;
936   dpdk_device_config_t *devconf;
937   unformat_input_t sub_input;
938
939   if (is_default)
940     {
941       devconf = &conf->default_devconf;
942     }
943   else
944     {
945       p = hash_get (conf->device_config_index_by_pci_addr, pci_addr.as_u32);
946
947       if (!p)
948         {
949           pool_get (conf->dev_confs, devconf);
950           hash_set (conf->device_config_index_by_pci_addr, pci_addr.as_u32,
951                     devconf - conf->dev_confs);
952         }
953       else
954         return clib_error_return (0,
955                                   "duplicate configuration for PCI address %U",
956                                   format_vlib_pci_addr, &pci_addr);
957     }
958
959   devconf->pci_addr.as_u32 = pci_addr.as_u32;
960   devconf->hqos_enabled = 0;
961   dpdk_device_config_hqos_default (&devconf->hqos);
962
963   if (!input)
964     return 0;
965
966   unformat_skip_white_space (input);
967   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
968     {
969       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
970         ;
971       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
972         ;
973       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
974         ;
975       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
976         ;
977       else if (unformat (input, "workers %U", unformat_bitmap_list,
978                          &devconf->workers))
979         ;
980       else
981         if (unformat
982             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
983         {
984           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
985           if (error)
986             break;
987         }
988       else if (unformat (input, "vlan-strip-offload off"))
989         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_OFF;
990       else if (unformat (input, "vlan-strip-offload on"))
991         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_ON;
992       else
993         if (unformat
994             (input, "hqos %U", unformat_vlib_cli_sub_input, &sub_input))
995         {
996           devconf->hqos_enabled = 1;
997           error = unformat_hqos (&sub_input, &devconf->hqos);
998           if (error)
999             break;
1000         }
1001       else if (unformat (input, "hqos"))
1002         {
1003           devconf->hqos_enabled = 1;
1004         }
1005       else
1006         {
1007           error = clib_error_return (0, "unknown input `%U'",
1008                                      format_unformat_error, input);
1009           break;
1010         }
1011     }
1012
1013   if (error)
1014     return error;
1015
1016   if (devconf->workers && devconf->num_rx_queues == 0)
1017     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
1018   else if (devconf->workers &&
1019            clib_bitmap_count_set_bits (devconf->workers) !=
1020            devconf->num_rx_queues)
1021     error =
1022       clib_error_return (0,
1023                          "%U: number of worker threadds must be "
1024                          "equal to number of rx queues", format_vlib_pci_addr,
1025                          &pci_addr);
1026
1027   return error;
1028 }
1029
1030 static clib_error_t *
1031 dpdk_log_read_ready (clib_file_t * uf)
1032 {
1033   unformat_input_t input;
1034   u8 *line, *s = 0;
1035   int n, n_try;
1036
1037   n = n_try = 4096;
1038   while (n == n_try)
1039     {
1040       uword len = vec_len (s);
1041       vec_resize (s, len + n_try);
1042
1043       n = read (uf->file_descriptor, s + len, n_try);
1044       if (n < 0 && errno != EAGAIN)
1045         return clib_error_return_unix (0, "read");
1046       _vec_len (s) = len + (n < 0 ? 0 : n);
1047     }
1048
1049   unformat_init_vector (&input, s);
1050
1051   while (unformat_user (&input, unformat_line, &line))
1052     {
1053       dpdk_log_notice ("%v", line);
1054       vec_free (line);
1055     }
1056
1057   unformat_free (&input);
1058   return 0;
1059 }
1060
1061 static clib_error_t *
1062 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
1063 {
1064   clib_error_t *error = 0;
1065   dpdk_config_main_t *conf = &dpdk_config_main;
1066   vlib_thread_main_t *tm = vlib_get_thread_main ();
1067   dpdk_device_config_t *devconf;
1068   vlib_pci_addr_t pci_addr;
1069   unformat_input_t sub_input;
1070   uword x;
1071   u8 *s, *tmp = 0;
1072   u32 log_level;
1073   int ret, i;
1074   int num_whitelisted = 0;
1075   u8 no_pci = 0;
1076   u8 no_huge = 0;
1077   u8 huge_dir = 0;
1078   u8 file_prefix = 0;
1079   u8 *socket_mem = 0;
1080   u8 *huge_dir_path = 0;
1081
1082   huge_dir_path =
1083     format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
1084
1085   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
1086   log_level = RTE_LOG_NOTICE;
1087
1088   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1089     {
1090       /* Prime the pump */
1091       if (unformat (input, "no-hugetlb"))
1092         {
1093           vec_add1 (conf->eal_init_args, (u8 *) "--no-huge");
1094           no_huge = 1;
1095         }
1096
1097       else if (unformat (input, "enable-tcp-udp-checksum"))
1098         conf->enable_tcp_udp_checksum = 1;
1099
1100       else if (unformat (input, "no-tx-checksum-offload"))
1101         conf->no_tx_checksum_offload = 1;
1102
1103       else if (unformat (input, "decimal-interface-names"))
1104         conf->interface_name_format_decimal = 1;
1105
1106       else if (unformat (input, "log-level %U", unformat_dpdk_log_level, &x))
1107         log_level = x;
1108
1109       else if (unformat (input, "no-multi-seg"))
1110         conf->no_multi_seg = 1;
1111
1112       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
1113                          &sub_input))
1114         {
1115           error =
1116             dpdk_device_config (conf, (vlib_pci_addr_t) (u32) ~ 1, &sub_input,
1117                                 1);
1118
1119           if (error)
1120             return error;
1121         }
1122       else
1123         if (unformat
1124             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
1125              unformat_vlib_cli_sub_input, &sub_input))
1126         {
1127           error = dpdk_device_config (conf, pci_addr, &sub_input, 0);
1128
1129           if (error)
1130             return error;
1131
1132           num_whitelisted++;
1133         }
1134       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
1135         {
1136           error = dpdk_device_config (conf, pci_addr, 0, 0);
1137
1138           if (error)
1139             return error;
1140
1141           num_whitelisted++;
1142         }
1143       else if (unformat (input, "num-mem-channels %d", &conf->nchannels))
1144         conf->nchannels_set_manually = 0;
1145       else if (unformat (input, "num-mbufs %d", &conf->num_mbufs))
1146         ;
1147       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1148         ;
1149       else if (unformat (input, "socket-mem %s", &socket_mem))
1150         ;
1151       else if (unformat (input, "no-pci"))
1152         {
1153           no_pci = 1;
1154           tmp = format (0, "--no-pci%c", 0);
1155           vec_add1 (conf->eal_init_args, tmp);
1156         }
1157
1158 #define _(a)                                    \
1159       else if (unformat(input, #a))             \
1160         {                                       \
1161           tmp = format (0, "--%s%c", #a, 0);    \
1162           vec_add1 (conf->eal_init_args, tmp);    \
1163         }
1164       foreach_eal_double_hyphen_predicate_arg
1165 #undef _
1166 #define _(a)                                          \
1167         else if (unformat(input, #a " %s", &s))       \
1168           {                                           \
1169             if (!strncmp(#a, "huge-dir", 8))          \
1170               huge_dir = 1;                           \
1171             else if (!strncmp(#a, "file-prefix", 11)) \
1172               file_prefix = 1;                        \
1173             tmp = format (0, "--%s%c", #a, 0);        \
1174             vec_add1 (conf->eal_init_args, tmp);      \
1175             vec_add1 (s, 0);                          \
1176             if (!strncmp(#a, "vdev", 4))              \
1177               if (strstr((char*)s, "af_packet"))      \
1178                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1179             vec_add1 (conf->eal_init_args, s);        \
1180           }
1181         foreach_eal_double_hyphen_arg
1182 #undef _
1183 #define _(a,b)                                          \
1184           else if (unformat(input, #a " %s", &s))       \
1185             {                                           \
1186               tmp = format (0, "-%s%c", #b, 0);         \
1187               vec_add1 (conf->eal_init_args, tmp);      \
1188               vec_add1 (s, 0);                          \
1189               vec_add1 (conf->eal_init_args, s);        \
1190             }
1191         foreach_eal_single_hyphen_arg
1192 #undef _
1193 #define _(a,b)                                          \
1194             else if (unformat(input, #a " %s", &s))     \
1195               {                                         \
1196                 tmp = format (0, "-%s%c", #b, 0);       \
1197                 vec_add1 (conf->eal_init_args, tmp);    \
1198                 vec_add1 (s, 0);                        \
1199                 vec_add1 (conf->eal_init_args, s);      \
1200                 conf->a##_set_manually = 1;             \
1201               }
1202         foreach_eal_single_hyphen_mandatory_arg
1203 #undef _
1204         else if (unformat (input, "default"))
1205         ;
1206
1207       else if (unformat_skip_white_space (input))
1208         ;
1209       else
1210         {
1211           error = clib_error_return (0, "unknown input `%U'",
1212                                      format_unformat_error, input);
1213           goto done;
1214         }
1215     }
1216
1217   if (!conf->uio_driver_name)
1218     conf->uio_driver_name = format (0, "auto%c", 0);
1219
1220   /*
1221    * Use 1G huge pages if available.
1222    */
1223   if (!no_huge && !huge_dir)
1224     {
1225       u32 x, *mem_by_socket = 0;
1226       uword c = 0;
1227       int rv;
1228
1229       umount ((char *) huge_dir_path);
1230
1231       /* Process "socket-mem" parameter value */
1232       if (vec_len (socket_mem))
1233         {
1234           unformat_input_t in;
1235           unformat_init_vector (&in, socket_mem);
1236           while (unformat_check_input (&in) != UNFORMAT_END_OF_INPUT)
1237             {
1238               if (unformat (&in, "%u,", &x))
1239                 ;
1240               else if (unformat (&in, "%u", &x))
1241                 ;
1242               else if (unformat (&in, ","))
1243                 x = 0;
1244               else
1245                 break;
1246
1247               vec_add1 (mem_by_socket, x);
1248             }
1249           /* Note: unformat_free vec_frees(in.buffer), aka socket_mem... */
1250           unformat_free (&in);
1251           socket_mem = 0;
1252         }
1253       else
1254         {
1255           /* *INDENT-OFF* */
1256           clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1257             {
1258               vec_validate(mem_by_socket, c);
1259               mem_by_socket[c] = 64; /* default per-socket mem */
1260             }
1261           ));
1262           /* *INDENT-ON* */
1263         }
1264
1265       /* *INDENT-OFF* */
1266       clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1267         {
1268           clib_error_t *e;
1269
1270           vec_validate(mem_by_socket, c);
1271
1272           e = clib_sysfs_prealloc_hugepages(c, 2 << 10, mem_by_socket[c] / 2);
1273           if (e)
1274             clib_error_report (e);
1275       }));
1276       /* *INDENT-ON* */
1277
1278       if (mem_by_socket == 0)
1279         {
1280           error = clib_error_return (0, "mem_by_socket NULL");
1281           goto done;
1282         }
1283       _vec_len (mem_by_socket) = c + 1;
1284
1285       /* regenerate socket_mem string */
1286       vec_foreach_index (x, mem_by_socket)
1287         socket_mem = format (socket_mem, "%s%u",
1288                              socket_mem ? "," : "", mem_by_socket[x]);
1289       socket_mem = format (socket_mem, "%c", 0);
1290
1291       vec_free (mem_by_socket);
1292
1293       error = vlib_unix_recursive_mkdir ((char *) huge_dir_path);
1294       if (error)
1295         {
1296           goto done;
1297         }
1298
1299       rv = mount ("none", (char *) huge_dir_path, "hugetlbfs", 0, NULL);
1300
1301       if (rv)
1302         {
1303           error = clib_error_return (0, "mount failed %d", errno);
1304           goto done;
1305         }
1306
1307       tmp = format (0, "--huge-dir%c", 0);
1308       vec_add1 (conf->eal_init_args, tmp);
1309       tmp = format (0, "%s%c", huge_dir_path, 0);
1310       vec_add1 (conf->eal_init_args, tmp);
1311       if (!file_prefix)
1312         {
1313           tmp = format (0, "--file-prefix%c", 0);
1314           vec_add1 (conf->eal_init_args, tmp);
1315           tmp = format (0, "vpp%c", 0);
1316           vec_add1 (conf->eal_init_args, tmp);
1317         }
1318     }
1319
1320   if (error)
1321     return error;
1322
1323   /* I'll bet that -c and -n must be the first and second args... */
1324   if (!conf->coremask_set_manually)
1325     {
1326       vlib_thread_registration_t *tr;
1327       uword *coremask = 0;
1328       int i;
1329
1330       /* main thread core */
1331       coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1332
1333       for (i = 0; i < vec_len (tm->registrations); i++)
1334         {
1335           tr = tm->registrations[i];
1336           coremask = clib_bitmap_or (coremask, tr->coremask);
1337         }
1338
1339       vec_insert (conf->eal_init_args, 2, 1);
1340       conf->eal_init_args[1] = (u8 *) "-c";
1341       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1342       conf->eal_init_args[2] = tmp;
1343       clib_bitmap_free (coremask);
1344     }
1345
1346   if (!conf->nchannels_set_manually)
1347     {
1348       vec_insert (conf->eal_init_args, 2, 3);
1349       conf->eal_init_args[3] = (u8 *) "-n";
1350       tmp = format (0, "%d", conf->nchannels);
1351       conf->eal_init_args[4] = tmp;
1352     }
1353
1354   if (no_pci == 0 && geteuid () == 0)
1355     dpdk_bind_devices_to_uio (conf);
1356
1357 #define _(x) \
1358     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1359       devconf->x = conf->default_devconf.x ;
1360
1361   /* *INDENT-OFF* */
1362   pool_foreach (devconf, conf->dev_confs, ({
1363
1364     /* default per-device config items */
1365     foreach_dpdk_device_config_item
1366
1367     /* add DPDK EAL whitelist/blacklist entry */
1368     if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1369       {
1370         tmp = format (0, "-w%c", 0);
1371         vec_add1 (conf->eal_init_args, tmp);
1372         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1373         vec_add1 (conf->eal_init_args, tmp);
1374       }
1375     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0)
1376       {
1377         tmp = format (0, "-b%c", 0);
1378         vec_add1 (conf->eal_init_args, tmp);
1379         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1380         vec_add1 (conf->eal_init_args, tmp);
1381       }
1382   }));
1383   /* *INDENT-ON* */
1384
1385 #undef _
1386
1387   /* set master-lcore */
1388   tmp = format (0, "--master-lcore%c", 0);
1389   vec_add1 (conf->eal_init_args, tmp);
1390   tmp = format (0, "%u%c", tm->main_lcore, 0);
1391   vec_add1 (conf->eal_init_args, tmp);
1392
1393   /* set socket-mem */
1394   if (!no_huge)
1395     {
1396       tmp = format (0, "--socket-mem%c", 0);
1397       vec_add1 (conf->eal_init_args, tmp);
1398       tmp = format (0, "%s%c", socket_mem, 0);
1399       vec_add1 (conf->eal_init_args, tmp);
1400     }
1401
1402   /* NULL terminate the "argv" vector, in case of stupidity */
1403   vec_add1 (conf->eal_init_args, 0);
1404   _vec_len (conf->eal_init_args) -= 1;
1405
1406   /* Set up DPDK eal and packet mbuf pool early. */
1407
1408   rte_log_set_global_level (log_level);
1409   int log_fds[2] = { 0 };
1410   if (pipe (log_fds) == 0)
1411     {
1412       if (fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1413         {
1414           FILE *f = fdopen (log_fds[1], "a");
1415           if (f && rte_openlog_stream (f) == 0)
1416             {
1417               clib_file_t t = { 0 };
1418               t.read_function = dpdk_log_read_ready;
1419               t.file_descriptor = log_fds[0];
1420               t.description = format (0, "DPDK logging pipe");
1421               clib_file_add (&file_main, &t);
1422             }
1423         }
1424       else
1425         {
1426           close (log_fds[0]);
1427           close (log_fds[1]);
1428         }
1429     }
1430
1431   vm = vlib_get_main ();
1432
1433   /* make copy of args as rte_eal_init tends to mess up with arg array */
1434   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1435     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1436                                       conf->eal_init_args[i]);
1437
1438   dpdk_log_warn ("EAL init args: %s", conf->eal_init_args_str);
1439   ret = rte_eal_init (vec_len (conf->eal_init_args),
1440                       (char **) conf->eal_init_args);
1441
1442   /* lazy umount hugepages */
1443   umount2 ((char *) huge_dir_path, MNT_DETACH);
1444   rmdir ((char *) huge_dir_path);
1445   vec_free (huge_dir_path);
1446
1447   if (ret < 0)
1448     return clib_error_return (0, "rte_eal_init returned %d", ret);
1449
1450   /* set custom ring memory allocator */
1451   {
1452     struct rte_mempool_ops *ops = NULL;
1453
1454     ops = get_ops_by_name ("ring_sp_sc");
1455     ops->alloc = dpdk_ring_alloc;
1456
1457     ops = get_ops_by_name ("ring_mp_sc");
1458     ops->alloc = dpdk_ring_alloc;
1459
1460     ops = get_ops_by_name ("ring_sp_mc");
1461     ops->alloc = dpdk_ring_alloc;
1462
1463     ops = get_ops_by_name ("ring_mp_mc");
1464     ops->alloc = dpdk_ring_alloc;
1465   }
1466
1467   /* main thread 1st */
1468   error = dpdk_buffer_pool_create (vm, conf->num_mbufs, rte_socket_id ());
1469   if (error)
1470     return error;
1471
1472   for (i = 0; i < RTE_MAX_LCORE; i++)
1473     {
1474       error = dpdk_buffer_pool_create (vm, conf->num_mbufs,
1475                                        rte_lcore_to_socket_id (i));
1476       if (error)
1477         return error;
1478     }
1479
1480 done:
1481   return error;
1482 }
1483
1484 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1485
1486 void
1487 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1488 {
1489   vnet_main_t *vnm = vnet_get_main ();
1490   struct rte_eth_link prev_link = xd->link;
1491   u32 hw_flags = 0;
1492   u8 hw_flags_chg = 0;
1493
1494   /* only update link state for PMD interfaces */
1495   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1496     return;
1497
1498   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1499   memset (&xd->link, 0, sizeof (xd->link));
1500   rte_eth_link_get_nowait (xd->port_id, &xd->link);
1501
1502   if (LINK_STATE_ELOGS)
1503     {
1504       vlib_main_t *vm = vlib_get_main ();
1505       ELOG_TYPE_DECLARE (e) =
1506       {
1507       .format =
1508           "update-link-state: sw_if_index %d, admin_up %d,"
1509           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1510
1511       struct
1512       {
1513         u32 sw_if_index;
1514         u8 admin_up;
1515         u8 old_link_state;
1516         u8 new_link_state;
1517       } *ed;
1518       ed = ELOG_DATA (&vm->elog_main, e);
1519       ed->sw_if_index = xd->sw_if_index;
1520       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1521       ed->old_link_state = (u8)
1522         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1523       ed->new_link_state = (u8) xd->link.link_status;
1524     }
1525
1526   if ((xd->flags & (DPDK_DEVICE_FLAG_ADMIN_UP | DPDK_DEVICE_FLAG_BOND_SLAVE))
1527       && ((xd->link.link_status != 0) ^
1528           vnet_hw_interface_is_link_up (vnm, xd->hw_if_index)))
1529     {
1530       hw_flags_chg = 1;
1531       hw_flags |= (xd->link.link_status ? VNET_HW_INTERFACE_FLAG_LINK_UP : 0);
1532     }
1533
1534   if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1535     {
1536       hw_flags_chg = 1;
1537       switch (xd->link.link_duplex)
1538         {
1539         case ETH_LINK_HALF_DUPLEX:
1540           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1541           break;
1542         case ETH_LINK_FULL_DUPLEX:
1543           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1544           break;
1545         default:
1546           break;
1547         }
1548     }
1549   if (hw_flags_chg || (xd->link.link_speed != prev_link.link_speed))
1550     {
1551       hw_flags_chg = 1;
1552       switch (xd->link.link_speed)
1553         {
1554         case ETH_SPEED_NUM_10M:
1555           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10M;
1556           break;
1557         case ETH_SPEED_NUM_100M:
1558           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100M;
1559           break;
1560         case ETH_SPEED_NUM_1G:
1561           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_1G;
1562           break;
1563         case ETH_SPEED_NUM_2_5G:
1564           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_2_5G;
1565           break;
1566         case ETH_SPEED_NUM_5G:
1567           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_5G;
1568           break;
1569         case ETH_SPEED_NUM_10G:
1570           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10G;
1571           break;
1572         case ETH_SPEED_NUM_20G:
1573           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_20G;
1574           break;
1575         case ETH_SPEED_NUM_25G:
1576           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_25G;
1577           break;
1578         case ETH_SPEED_NUM_40G:
1579           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_40G;
1580           break;
1581         case ETH_SPEED_NUM_50G:
1582           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_50G;
1583           break;
1584         case ETH_SPEED_NUM_56G:
1585           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_56G;
1586           break;
1587         case ETH_SPEED_NUM_100G:
1588           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100G;
1589           break;
1590         case 0:
1591           break;
1592         default:
1593           dpdk_log_warn ("unknown link speed %d", xd->link.link_speed);
1594           break;
1595         }
1596     }
1597   if (hw_flags_chg)
1598     {
1599       if (LINK_STATE_ELOGS)
1600         {
1601           vlib_main_t *vm = vlib_get_main ();
1602
1603           ELOG_TYPE_DECLARE (e) =
1604           {
1605           .format =
1606               "update-link-state: sw_if_index %d, new flags %d",.format_args
1607               = "i4i4",};
1608
1609           struct
1610           {
1611             u32 sw_if_index;
1612             u32 flags;
1613           } *ed;
1614           ed = ELOG_DATA (&vm->elog_main, e);
1615           ed->sw_if_index = xd->sw_if_index;
1616           ed->flags = hw_flags;
1617         }
1618       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1619     }
1620 }
1621
1622 static uword
1623 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1624 {
1625   clib_error_t *error;
1626   vnet_main_t *vnm = vnet_get_main ();
1627   dpdk_main_t *dm = &dpdk_main;
1628   ethernet_main_t *em = &ethernet_main;
1629   dpdk_device_t *xd;
1630   vlib_thread_main_t *tm = vlib_get_thread_main ();
1631   int i;
1632   int j;
1633
1634   error = dpdk_lib_init (dm);
1635
1636   if (error)
1637     clib_error_report (error);
1638
1639   tm->worker_thread_release = 1;
1640
1641   f64 now = vlib_time_now (vm);
1642   vec_foreach (xd, dm->devices)
1643   {
1644     dpdk_update_link_state (xd, now);
1645   }
1646
1647   {
1648     /*
1649      * Extra set up for bond interfaces:
1650      *  1. Setup MACs for bond interfaces and their slave links which was set
1651      *     in dpdk_device_setup() but needs to be done again here to take
1652      *     effect.
1653      *  2. Set up info and register slave link state change callback handling.
1654      *  3. Set up info for bond interface related CLI support.
1655      */
1656     int nports = rte_eth_dev_count_avail ();
1657     if (nports > 0)
1658       {
1659         /* *INDENT-OFF* */
1660         RTE_ETH_FOREACH_DEV(i)
1661           {
1662             xd = NULL;
1663             for (j = 0; j < nports; j++)
1664               {
1665                 if (dm->devices[j].port_id == i)
1666                   {
1667                     xd = &dm->devices[j];
1668                   }
1669               }
1670             if (xd != NULL && xd->pmd == VNET_DPDK_PMD_BOND)
1671               {
1672                 u8 addr[6];
1673                 dpdk_portid_t slink[16];
1674                 int nlink = rte_eth_bond_slaves_get (i, slink, 16);
1675                 if (nlink > 0)
1676                   {
1677                     vnet_hw_interface_t *bhi;
1678                     ethernet_interface_t *bei;
1679                     int rv;
1680
1681                     /* Get MAC of 1st slave link */
1682                     rte_eth_macaddr_get
1683                       (slink[0], (struct ether_addr *) addr);
1684
1685                     /* Set MAC of bounded interface to that of 1st slave link */
1686                     dpdk_log_info ("Set MAC for bond port %d BondEthernet%d",
1687                                    i, xd->bond_instance_num);
1688                     rv = rte_eth_bond_mac_address_set
1689                       (i, (struct ether_addr *) addr);
1690                     if (rv)
1691                       dpdk_log_warn ("Set MAC addr failure rv=%d", rv);
1692
1693                     /* Populate MAC of bonded interface in VPP hw tables */
1694                     bhi = vnet_get_hw_interface
1695                       (vnm, dm->devices[i].hw_if_index);
1696                     bei = pool_elt_at_index
1697                       (em->interfaces, bhi->hw_instance);
1698                     clib_memcpy (bhi->hw_address, addr, 6);
1699                     clib_memcpy (bei->address, addr, 6);
1700
1701                     /* Init l3 packet size allowed on bonded interface */
1702                     bhi->max_packet_bytes = ETHERNET_MAX_PACKET_BYTES;
1703                     while (nlink >= 1)
1704                       {         /* for all slave links */
1705                         int slave = slink[--nlink];
1706                         dpdk_device_t *sdev = &dm->devices[slave];
1707                         vnet_hw_interface_t *shi;
1708                         vnet_sw_interface_t *ssi;
1709                         ethernet_interface_t *sei;
1710                         /* Add MAC to all slave links except the first one */
1711                         if (nlink)
1712                           {
1713                             dpdk_log_info ("Add MAC for slave port %d",
1714                                            slave);
1715                             rv = rte_eth_dev_mac_addr_add
1716                               (slave, (struct ether_addr *) addr, 0);
1717                             if (rv)
1718                               dpdk_log_warn ("Add MAC addr failure rv=%d",
1719                                              rv);
1720                           }
1721                         /* Setup slave link state change callback handling */
1722                         rte_eth_dev_callback_register
1723                           (slave, RTE_ETH_EVENT_INTR_LSC,
1724                            dpdk_port_state_callback, NULL);
1725                         dpdk_device_t *sxd = &dm->devices[slave];
1726                         sxd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE;
1727                         sxd->bond_port = i;
1728                         /* Set slaves bitmap for bonded interface */
1729                         bhi->bond_info = clib_bitmap_set
1730                           (bhi->bond_info, sdev->hw_if_index, 1);
1731                         /* Set MACs and slave link flags on slave interface */
1732                         shi = vnet_get_hw_interface (vnm, sdev->hw_if_index);
1733                         ssi = vnet_get_sw_interface (vnm, sdev->sw_if_index);
1734                         sei = pool_elt_at_index
1735                           (em->interfaces, shi->hw_instance);
1736                         shi->bond_info = VNET_HW_INTERFACE_BOND_INFO_SLAVE;
1737                         ssi->flags |= VNET_SW_INTERFACE_FLAG_BOND_SLAVE;
1738                         clib_memcpy (shi->hw_address, addr, 6);
1739                         clib_memcpy (sei->address, addr, 6);
1740                         /* Set l3 packet size allowed as the lowest of slave */
1741                         if (bhi->max_packet_bytes > shi->max_packet_bytes)
1742                           bhi->max_packet_bytes = shi->max_packet_bytes;
1743                       }
1744                   }
1745               }
1746           }
1747         /* *INDENT-ON* */
1748       }
1749   }
1750
1751   while (1)
1752     {
1753       /*
1754        * check each time through the loop in case intervals are changed
1755        */
1756       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1757         dm->link_state_poll_interval : dm->stat_poll_interval;
1758
1759       vlib_process_wait_for_event_or_clock (vm, min_wait);
1760
1761       if (dm->admin_up_down_in_progress)
1762         /* skip the poll if an admin up down is in progress (on any interface) */
1763         continue;
1764
1765       vec_foreach (xd, dm->devices)
1766       {
1767         f64 now = vlib_time_now (vm);
1768         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1769           dpdk_update_counters (xd, now);
1770         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1771           dpdk_update_link_state (xd, now);
1772
1773       }
1774     }
1775
1776   return 0;
1777 }
1778
1779 /* *INDENT-OFF* */
1780 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1781     .function = dpdk_process,
1782     .type = VLIB_NODE_TYPE_PROCESS,
1783     .name = "dpdk-process",
1784     .process_log2_n_stack_bytes = 17,
1785 };
1786 /* *INDENT-ON* */
1787
1788 static clib_error_t *
1789 dpdk_init (vlib_main_t * vm)
1790 {
1791   dpdk_main_t *dm = &dpdk_main;
1792   clib_error_t *error = 0;
1793   vlib_thread_main_t *tm = vlib_get_thread_main ();
1794
1795   /* verify that structs are cacheline aligned */
1796   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1797                  "Cache line marker must be 1st element in dpdk_device_t");
1798   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1799                  CLIB_CACHE_LINE_BYTES,
1800                  "Data in cache line 0 is bigger than cache line size");
1801   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1802                  "Cache line marker must be 1st element in frame_queue_trace_t");
1803   STATIC_ASSERT (RTE_CACHE_LINE_SIZE == 1 << CLIB_LOG2_CACHE_LINE_BYTES,
1804                  "DPDK RTE CACHE LINE SIZE does not match with 1<<CLIB_LOG2_CACHE_LINE_BYTES");
1805
1806   dm->vlib_main = vm;
1807   dm->vnet_main = vnet_get_main ();
1808   dm->conf = &dpdk_config_main;
1809
1810   dm->conf->nchannels = 4;
1811   dm->conf->num_mbufs = dm->conf->num_mbufs ? dm->conf->num_mbufs : NB_MBUF;
1812   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1813
1814   vec_validate (dm->recycle, tm->n_thread_stacks - 1);
1815
1816   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1817   dm->buffer_flags_template =
1818     (VLIB_BUFFER_TOTAL_LENGTH_VALID | VLIB_BUFFER_EXT_HDR_VALID
1819      | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1820      VNET_BUFFER_F_L4_CHECKSUM_CORRECT | VNET_BUFFER_F_L2_HDR_OFFSET_VALID);
1821
1822   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1823   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1824
1825   /* init CLI */
1826   if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1827     return error;
1828
1829   dm->log_default = vlib_log_register_class ("dpdk", 0);
1830
1831   return error;
1832 }
1833
1834 VLIB_INIT_FUNCTION (dpdk_init);
1835
1836
1837 /*
1838  * fd.io coding-style-patch-verification: ON
1839  *
1840  * Local Variables:
1841  * eval: (c-set-style "gnu")
1842  * End:
1843  */