35 #include <sys/mount.h> 41 #define ETHER_MAX_LEN 1518 46 #define LINK_STATE_ELOGS 0 54 if (dev_info->speed_capa & ETH_LINK_SPEED_100G)
56 else if (dev_info->speed_capa & ETH_LINK_SPEED_56G)
58 else if (dev_info->speed_capa & ETH_LINK_SPEED_50G)
60 else if (dev_info->speed_capa & ETH_LINK_SPEED_40G)
62 else if (dev_info->speed_capa & ETH_LINK_SPEED_25G)
64 else if (dev_info->speed_capa & ETH_LINK_SPEED_20G)
66 else if (dev_info->speed_capa & ETH_LINK_SPEED_10G)
68 else if (dev_info->speed_capa & ETH_LINK_SPEED_5G)
70 else if (dev_info->speed_capa & ETH_LINK_SPEED_2_5G)
72 else if (dev_info->speed_capa & ETH_LINK_SPEED_1G)
83 case ETH_SPEED_NUM_1G:
85 case ETH_SPEED_NUM_2_5G:
87 case ETH_SPEED_NUM_5G:
89 case ETH_SPEED_NUM_10G:
91 case ETH_SPEED_NUM_20G:
93 case ETH_SPEED_NUM_25G:
95 case ETH_SPEED_NUM_40G:
97 case ETH_SPEED_NUM_50G:
99 case ETH_SPEED_NUM_56G:
101 case ETH_SPEED_NUM_100G:
117 old = (xd->
flags & DPDK_DEVICE_FLAG_PROMISC) != 0;
120 xd->
flags |= DPDK_DEVICE_FLAG_PROMISC;
122 xd->
flags &= ~DPDK_DEVICE_FLAG_PROMISC;
124 if (xd->
flags & DPDK_DEVICE_FLAG_ADMIN_UP)
126 if (xd->
flags & DPDK_DEVICE_FLAG_PROMISC)
127 rte_eth_promiscuous_enable (xd->
port_id);
129 rte_eth_promiscuous_disable (xd->
port_id);
153 static struct rte_mempool_ops *
158 for (i = 0; i < rte_mempool_ops_table.num_ops; i++)
160 if (!strcmp (ops_name, rte_mempool_ops_table.ops[i].name))
161 return &rte_mempool_ops_table.ops[
i];
172 char rg_name[RTE_RING_NAMESIZE];
175 ret = snprintf (rg_name,
sizeof (rg_name), RTE_MEMPOOL_MZ_FORMAT, mp->name);
176 if (ret < 0 || ret >= (
i32)
sizeof (rg_name))
177 return -ENAMETOOLONG;
180 if (mp->flags & MEMPOOL_F_SP_PUT)
181 rg_flags |= RING_F_SP_ENQ;
182 if (mp->flags & MEMPOOL_F_SC_GET)
183 rg_flags |= RING_F_SC_DEQ;
185 count = rte_align32pow2 (mp->size + 1);
198 ret = rte_ring_init (r, rg_name,
count, rg_flags);
210 #if RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0) 211 return ! !(xd->
port_conf.rxmode.offloads & DEV_RX_OFFLOAD_CRC_STRIP);
213 return !(xd->
port_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC);
221 u32 mtu, max_rx_frame;
231 vlib_pci_addr_t last_pci_addr;
232 u32 last_pci_addr_port = 0;
236 u32 next_hqos_cpu = 0;
237 u8 af_packet_instance_num = 0;
238 u8 bond_ether_instance_num = 0;
239 last_pci_addr.as_u32 = ~0;
248 if (tr_hqos && tr_hqos->
count > 0)
257 nports = rte_eth_dev_count_avail ();
269 | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
286 RTE_ETH_FOREACH_DEV(i)
290 struct rte_eth_dev_info dev_info;
291 struct rte_pci_device *pci_dev;
292 struct rte_eth_link l;
294 vlib_pci_addr_t pci_addr;
297 if (!rte_eth_dev_is_valid_port(i))
300 rte_eth_link_get_nowait (i, &l);
301 rte_eth_dev_info_get (i, &dev_info);
303 if (dev_info.device == 0)
305 clib_warning (
"DPDK bug: missing device info. Skipping %s device",
306 dev_info.driver_name);
314 pci_addr.domain = pci_dev->addr.domain;
315 pci_addr.bus = pci_dev->addr.bus;
316 pci_addr.slot = pci_dev->addr.devid;
317 pci_addr.function = pci_dev->addr.function;
332 xd->
name = devconf->name;
340 struct rte_eth_dev_info di = { 0 };
341 struct rte_pci_device *next_pci_dev;
342 rte_eth_dev_info_get (i + 1, &di);
343 next_pci_dev = di.device ? RTE_DEV_TO_PCI (di.device) : 0;
344 if (pci_dev && next_pci_dev &&
345 pci_addr.as_u32 != last_pci_addr.as_u32 &&
346 memcmp (&pci_dev->addr, &next_pci_dev->addr,
347 sizeof (
struct rte_pci_addr)) == 0)
350 last_pci_addr.as_u32 = pci_addr.as_u32;
351 last_pci_addr_port =
i;
353 else if (pci_addr.as_u32 == last_pci_addr.as_u32)
356 format (0,
"%u", i - last_pci_addr_port);
360 last_pci_addr.as_u32 = ~0;
364 last_pci_addr.as_u32 = ~0;
367 sizeof (
struct rte_eth_txconf));
369 if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_IPV4_CKSUM)
371 xd->
port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_IPV4_CKSUM;
372 xd->
flags |= DPDK_DEVICE_FLAG_RX_IP4_CKSUM;
377 xd->
port_conf.txmode.offloads &= ~DEV_TX_OFFLOAD_MULTI_SEGS;
378 xd->
port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
379 xd->
port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
383 xd->
port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
384 xd->
port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
385 xd->
port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_SCATTER;
386 xd->
flags |= DPDK_DEVICE_FLAG_MAYBE_MULTISEG;
391 if (devconf->num_tx_queues > 0
392 && devconf->num_tx_queues < xd->
tx_q_used)
395 if (devconf->num_rx_queues > 1
396 && dev_info.max_rx_queues >= devconf->num_rx_queues)
399 xd->
port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
400 if (devconf->rss_fn == 0)
401 xd->
port_conf.rx_adv_conf.rss_conf.rss_hf =
402 ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP;
405 u64 unsupported_bits;
406 xd->
port_conf.rx_adv_conf.rss_conf.rss_hf = devconf->rss_fn;
407 unsupported_bits = xd->
port_conf.rx_adv_conf.rss_conf.rss_hf;
408 unsupported_bits &= ~dev_info.flow_type_rss_offloads;
409 if (unsupported_bits)
413 xd->
port_conf.rx_adv_conf.rss_conf.rss_hf &=
414 dev_info.flow_type_rss_offloads;
419 xd->
flags |= DPDK_DEVICE_FLAG_PMD;
422 if ((!dev_info.driver_name) && (pci_dev))
423 dev_info.driver_name = pci_dev->driver->driver.name;
425 ASSERT (dev_info.driver_name);
431 #define _(s,f) else if (dev_info.driver_name && \ 432 !strcmp(dev_info.driver_name, s)) \ 433 xd->pmd = VNET_DPDK_PMD_##f; 448 case VNET_DPDK_PMD_E1000EM:
449 case VNET_DPDK_PMD_IGB:
450 case VNET_DPDK_PMD_IXGBE:
451 case VNET_DPDK_PMD_I40E:
454 VNET_FLOW_ACTION_REDIRECT_TO_NODE |
455 VNET_FLOW_ACTION_BUFFER_ADVANCE |
456 VNET_FLOW_ACTION_COUNT | VNET_FLOW_ACTION_DROP;
460 xd->
port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
461 xd->
port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
463 DPDK_DEVICE_FLAG_TX_OFFLOAD |
464 DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
469 case VNET_DPDK_PMD_CXGBE:
470 case VNET_DPDK_PMD_MLX4:
471 case VNET_DPDK_PMD_MLX5:
472 case VNET_DPDK_PMD_QEDE:
477 case VNET_DPDK_PMD_IGBVF:
478 case VNET_DPDK_PMD_IXGBEVF:
479 case VNET_DPDK_PMD_I40EVF:
481 #if RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0) 482 xd->
port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
486 case VNET_DPDK_PMD_THUNDERX:
488 #if RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0) 489 xd->
port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
494 xd->
port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
495 xd->
port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
496 xd->
flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD;
500 case VNET_DPDK_PMD_ENA:
502 xd->
port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
505 case VNET_DPDK_PMD_DPAA2:
510 case VNET_DPDK_PMD_ENIC:
511 if (l.link_speed == 40000)
518 case VNET_DPDK_PMD_FM10K:
520 #if RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0) 521 xd->
port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
526 case VNET_DPDK_PMD_VIRTIO:
533 case VNET_DPDK_PMD_VMXNET3:
535 xd->
port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
538 case VNET_DPDK_PMD_AF_PACKET:
543 case VNET_DPDK_PMD_BOND:
548 case VNET_DPDK_PMD_VIRTIO_USER:
552 case VNET_DPDK_PMD_VHOST_ETHER:
556 case VNET_DPDK_PMD_LIOVF_ETHER:
560 case VNET_DPDK_PMD_FAILSAFE:
565 case VNET_DPDK_PMD_NETVSC:
573 if (devconf->num_rx_desc)
576 if (devconf->num_tx_desc)
580 if (xd->
pmd == VNET_DPDK_PMD_AF_PACKET)
584 rnd = (
u32) (now * 1e6);
591 rte_eth_macaddr_get (i, (
struct ether_addr *) addr);
603 if (devconf->hqos_enabled)
605 xd->
flags |= DPDK_DEVICE_FLAG_HQOS;
608 if (devconf->hqos.hqos_thread_valid)
626 devconf->hqos.hqos_thread_valid = 1;
627 devconf->hqos.hqos_thread = cpu;
658 max_rx_frame = dev_info.max_rx_pktlen;
699 if (xd->
pmd == VNET_DPDK_PMD_FAILSAFE)
706 if (!rte_eth_dev_get_mtu (i, &dev_mtu))
719 xd->
port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
726 if (devconf->workers)
731 vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q++,
732 vdm->first_worker_thread_index + i);
754 if (xd->
flags & DPDK_DEVICE_FLAG_TX_OFFLOAD && hi !=
NULL)
760 dpdk_log_err (
"setup failed for device %U. Errors:\n %U",
764 if (devconf->hqos_enabled)
778 if (xd->
pmd == VNET_DPDK_PMD_ENIC)
791 vlan_off = rte_eth_dev_get_vlan_offload (xd->
port_id);
792 vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
794 xd->
port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
796 xd->
port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
797 if (rte_eth_dev_set_vlan_offload (xd->
port_id, vlan_off) == 0)
800 dpdk_log_warn (
"VLAN strip cannot be supported by interface\n");
812 rte_eth_dev_set_mtu (xd->
port_id, mtu);
817 dpdk_log_err (
"%d mbufs allocated but total rx/tx ring size is %d\n",
831 vlib_pci_addr_t *
addr = 0, *addrs;
887 devconf->
pci_addr.as_u32 = addr->as_u32;
913 devconf->
pci_addr.as_u32 = addr->as_u32;
966 devconf->
pci_addr.as_u32 = addr->as_u32;
1023 "duplicate configuration for PCI address %U",
1027 devconf->
pci_addr.as_u32 = pci_addr.as_u32;
1037 if (
unformat (input,
"num-rx-queues %u", &devconf->num_rx_queues))
1039 else if (
unformat (input,
"num-tx-queues %u", &devconf->num_tx_queues))
1041 else if (
unformat (input,
"num-rx-desc %u", &devconf->num_rx_desc))
1043 else if (
unformat (input,
"num-tx-desc %u", &devconf->num_tx_desc))
1047 else if (
unformat (input,
"workers %U", unformat_bitmap_list,
1058 else if (
unformat (input,
"vlan-strip-offload off"))
1060 else if (
unformat (input,
"vlan-strip-offload on"))
1086 if (devconf->
workers && devconf->num_rx_queues == 0)
1090 devconf->num_rx_queues)
1093 "%U: number of worker threads must be " 1114 if (n < 0 && errno != EAGAIN)
1116 _vec_len (s) = len + (n < 0 ? 0 : n);
1138 vlib_pci_addr_t pci_addr;
1140 uword default_hugepage_sz, x;
1144 int num_whitelisted = 0;
1149 u8 *huge_dir_path = 0;
1156 log_level = RTE_LOG_NOTICE;
1161 if (
unformat (input,
"no-hugetlb"))
1166 else if (
unformat (input,
"enable-tcp-udp-checksum"))
1169 else if (
unformat (input,
"no-tx-checksum-offload"))
1172 else if (
unformat (input,
"decimal-interface-names"))
1178 else if (
unformat (input,
"no-multi-seg"))
1218 else if (
unformat (input,
"socket-mem %s", &socket_mem))
1220 else if (
unformat (input,
"no-pci"))
1223 tmp =
format (0,
"--no-pci%c", 0);
1226 else if (
unformat (input,
"blacklist %x:%x", &vendor, &device))
1228 u32 blacklist_entry;
1229 if (vendor > 0xFFFF)
1231 if (device > 0xFFFF)
1233 blacklist_entry = (vendor << 16) | (device & 0xffff);
1237 else if (
unformat (input,
"no-vmbus"))
1240 tmp =
format (0,
"--no-vmbus%c", 0);
1245 else if (unformat(input, #a)) \ 1247 tmp = format (0, "--%s%c", #a, 0); \ 1248 vec_add1 (conf->eal_init_args, tmp); \ 1253 else if (unformat(input, #a " %s", &s)) \ 1255 if (!strncmp(#a, "file-prefix", 11)) \ 1257 tmp = format (0, "--%s%c", #a, 0); \ 1258 vec_add1 (conf->eal_init_args, tmp); \ 1260 if (!strncmp(#a, "vdev", 4)) \ 1261 if (strstr((char*)s, "af_packet")) \ 1262 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \ 1263 vec_add1 (conf->eal_init_args, s); \ 1268 else if (unformat(input, #a " %s", &s)) \ 1270 tmp = format (0, "-%s%c", #b, 0); \ 1271 vec_add1 (conf->eal_init_args, tmp); \ 1273 vec_add1 (conf->eal_init_args, s); \ 1278 else if (unformat(input, #a " %s", &s)) \ 1280 tmp = format (0, "-%s%c", #b, 0); \ 1281 vec_add1 (conf->eal_init_args, tmp); \ 1283 vec_add1 (conf->eal_init_args, s); \ 1284 conf->a##_set_manually = 1; \ 1288 else if (
unformat (input,
"default"))
1313 n_pages = round_pow2 ((uword) 16 << 20, default_hugepage_sz);
1314 n_pages /= default_hugepage_sz;
1316 if ((e = clib_sysfs_prealloc_hugepages(x, 0, n_pages)))
1317 clib_error_report (e);
1323 tmp =
format (0,
"--file-prefix%c", 0);
1325 tmp =
format (0,
"vpp%c", 0);
1336 uword *coremask = 0;
1350 tmp =
format (0,
"%U%c", format_bitmap_hex, coremask, 0);
1363 if (no_pci == 0 && geteuid () == 0)
1366 if (no_vmbus == 0 && geteuid () == 0)
1370 if (devconf->x == 0 && conf->default_devconf.x > 0) \ 1371 devconf->x = conf->default_devconf.x ; 1377 foreach_dpdk_device_config_item
1380 if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1382 tmp = format (0,
"-w%c", 0);
1383 vec_add1 (conf->eal_init_args, tmp);
1384 tmp = format (0,
"%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1385 vec_add1 (conf->eal_init_args, tmp);
1389 tmp = format (0,
"-b%c", 0);
1390 vec_add1 (conf->eal_init_args, tmp);
1391 tmp = format (0,
"%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1392 vec_add1 (conf->eal_init_args, tmp);
1400 tmp =
format (0,
"--master-lcore%c", 0);
1401 vec_add1 (conf->eal_init_args, tmp);
1402 tmp =
format (0,
"%u%c", tm->main_lcore, 0);
1403 vec_add1 (conf->eal_init_args, tmp);
1411 _vec_len (conf->eal_init_args) -= 1;
1415 rte_log_set_global_level (log_level);
1416 int log_fds[2] = { 0 };
1417 if (pipe (log_fds) == 0)
1419 if (fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1421 FILE *f = fdopen (log_fds[1],
"a");
1422 if (f && rte_openlog_stream (f) == 0)
1441 for (
i = 1;
i <
vec_len (conf->eal_init_args);
i++)
1442 conf->eal_init_args_str =
format (conf->eal_init_args_str,
"%s ",
1443 conf->eal_init_args[
i]);
1445 dpdk_log_warn (
"EAL init args: %s", conf->eal_init_args_str);
1446 ret = rte_eal_init (
vec_len (conf->eal_init_args),
1447 (
char **) conf->eal_init_args);
1450 umount2 ((
char *) huge_dir_path, MNT_DETACH);
1451 rmdir ((
char *) huge_dir_path);
1459 struct rte_mempool_ops *ops =
NULL;
1479 for (
i = 0;
i < RTE_MAX_LCORE;
i++)
1482 rte_lcore_to_socket_id (
i));
1497 struct rte_eth_link prev_link = xd->
link;
1499 u8 hw_flags_chg = 0;
1502 if ((xd->
flags & DPDK_DEVICE_FLAG_PMD) == 0)
1515 "update-link-state: sw_if_index %d, admin_up %d," 1516 "old link_state %d new link_state %d",.format_args =
"i4i1i1i1",};
1527 ed->admin_up = (xd->
flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1528 ed->old_link_state = (
u8)
1530 ed->new_link_state = (
u8) xd->
link.link_status;
1533 if ((xd->
flags & (DPDK_DEVICE_FLAG_ADMIN_UP | DPDK_DEVICE_FLAG_BOND_SLAVE))
1534 && ((xd->
link.link_status != 0) ^
1541 if (hw_flags_chg || (xd->
link.link_duplex != prev_link.link_duplex))
1544 switch (xd->
link.link_duplex)
1546 case ETH_LINK_HALF_DUPLEX:
1549 case ETH_LINK_FULL_DUPLEX:
1556 if (xd->
link.link_speed != prev_link.link_speed)
1558 xd->
link.link_speed * 1000);
1569 "update-link-state: sw_if_index %d, new flags %d",.format_args
1579 ed->flags = hw_flags;
1619 int nports = rte_eth_dev_count_avail ();
1623 RTE_ETH_FOREACH_DEV(i)
1626 for (j = 0; j < nports; j++)
1633 if (xd !=
NULL && xd->
pmd == VNET_DPDK_PMD_BOND)
1637 int nlink = rte_eth_bond_slaves_get (i, slink, 16);
1646 (slink[0], (
struct ether_addr *) addr);
1651 rv = rte_eth_bond_mac_address_set
1652 (i, (
struct ether_addr *) addr);
1668 int slave = slink[--nlink];
1678 rv = rte_eth_dev_mac_addr_add
1679 (slave, (
struct ether_addr *) addr, 0);
1685 rte_eth_dev_callback_register
1686 (slave, RTE_ETH_EVENT_INTR_LSC,
1689 sxd->
flags |= DPDK_DEVICE_FLAG_BOND_SLAVE;
1746 .name =
"dpdk-process",
1747 .process_log2_n_stack_bytes = 17,
1759 "Cache line marker must be 1st element in dpdk_device_t");
1762 "Data in cache line 0 is bigger than cache line size");
1764 "Cache line marker must be 1st element in frame_queue_trace_t");
1766 "DPDK RTE CACHE LINE SIZE does not match with 1<<CLIB_LOG2_CACHE_LINE_BYTES");
1779 VLIB_BUFFER_EXT_HDR_VALID |
1780 VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1781 VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
static void dpdk_bind_devices_to_uio(dpdk_config_main_t *conf)
f64 time_last_link_update
format_function_t format_vlib_pci_addr
#define hash_set(h, key, value)
#define VIRTIO_PCI_MODERN_DEVICEID_NET
ethernet_main_t ethernet_main
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
u8 interface_name_format_decimal
clib_error_t * vlib_vmbus_bind_to_uio(vlib_vmbus_addr_t *addr)
vnet_main_t * vnet_get_main(void)
Optimized string handling code, including c11-compliant "safe C library" variants.
vnet_device_class_t dpdk_device_class
#define DPDK_DEVICE_VLAN_STRIP_OFF
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static f64 vlib_time_now(vlib_main_t *vm)
#define vec_add2_aligned(V, P, N, A)
Add N elements to end of vector V, return pointer to new elements in P.
static uword * clib_bitmap_or(uword *ai, uword *bi)
Logical operator across two bitmaps.
static u32 dpdk_flag_change(vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 flags)
struct rte_pci_device * dpdk_get_pci_device(const struct rte_eth_dev_info *info)
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define CLIB_LOG2_CACHE_LINE_BYTES
static struct rte_mempool_ops * get_ops_by_name(char *ops_name)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
dpdk_device_and_queue_t ** devices_by_hqos_cpu
#define DPDK_NB_RX_DESC_VIRTIO
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
u32 per_interface_next_index
u8 enable_tcp_udp_checksum
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
#define DPDK_DEVICE_VLAN_STRIP_ON
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
#define DPDK_NB_TX_DESC_DEFAULT
u32 supported_flow_actions
#define foreach_eal_double_hyphen_predicate_arg
unformat_function_t unformat_vlib_pci_addr
int dpdk_port_state_callback(dpdk_portid_t port_id, enum rte_eth_event_type type, void *param, void *ret_param)
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
dpdk_device_config_hqos_t hqos
vlib_pci_addr_t * vlib_pci_get_all_dev_addrs()
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
u32 * blacklist_by_pci_vendor_and_device
dpdk_config_main_t dpdk_config_main
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
clib_file_function_t * read_function
#define ETHER_MAX_LEN
Maximum frame len, including CRC.
static vnet_sw_interface_t * vnet_get_hw_sw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define clib_memcpy(d, s, n)
foreach_dpdk_device_config_item clib_bitmap_t * workers
#define dpdk_log_warn(...)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
static clib_error_t * dpdk_log_read_ready(clib_file_t *uf)
#define VLIB_INIT_FUNCTION(x)
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
dpdk_device_config_t default_devconf
static char * vlib_unix_get_runtime_dir(void)
static dpdk_port_type_t port_type_from_speed_capa(struct rte_eth_dev_info *dev_info)
vnet_hw_interface_flags_t flags
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define clib_error_return(e, args...)
clib_file_main_t file_main
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
void dpdk_device_setup(dpdk_device_t *xd)
#define vlib_call_init_function(vm, x)
clib_error_t * unformat_rss_fn(unformat_input_t *input, uword *rss_fn)
#define DPDK_NB_TX_DESC_VIRTIO
struct rte_eth_conf port_conf
static clib_error_t * dpdk_init(vlib_main_t *vm)
u32 max_supported_packet_bytes
f64 time_last_stats_update
struct rte_eth_txconf tx_conf
#define clib_bitmap_foreach(i, ai, body)
Macro to iterate across set bits in a bitmap.
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
#define vec_insert(V, N, M)
Insert N vector elements starting at element M, initialize new elements to zero (no header...
clib_error_t * dpdk_buffer_pool_create(vlib_main_t *vm, unsigned num_mbufs, unsigned socket_id)
static clib_error_t * dpdk_config(vlib_main_t *vm, unformat_input_t *input)
#define foreach_eal_double_hyphen_arg
#define ETHERNET_INTERFACE_FLAG_CONFIG_MTU(flags)
dpdk_per_thread_data_t * per_thread_data
#define foreach_eal_single_hyphen_mandatory_arg
static dpdk_port_type_t port_type_from_link_speed(u32 link_speed)
#define clib_error_return_unix(e, args...)
vlib_buffer_t buffer_template
#define VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX
#define VIRTIO_PCI_LEGACY_DEVICEID_NET
dpdk_port_type_t port_type
#define VLIB_CONFIG_FUNCTION(x, n,...)
vnet_sw_interface_flags_t flags
#define dpdk_log_info(...)
#define VNET_HW_INTERFACE_BOND_INFO_SLAVE
u16 af_packet_instance_num
#define foreach_eal_single_hyphen_arg
#define VLIB_REGISTER_NODE(x,...)
#define DPDK_NB_RX_DESC_DEFAULT
static clib_error_t * dpdk_device_config(dpdk_config_main_t *conf, vlib_pci_addr_t pci_addr, unformat_input_t *input, u8 is_default)
static void dpdk_update_counters(dpdk_device_t *xd, f64 now)
u8 nchannels_set_manually
#define vec_free(V)
Free vector's memory (no header).
#define dpdk_log_err(...)
dpdk_device_config_t * dev_confs
#define clib_warning(format, args...)
format_function_t format_dpdk_device_errors
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
#define ELOG_TYPE_DECLARE(f)
static void dpdk_device_lock_init(dpdk_device_t *xd)
format_function_t format_dpdk_rss_hf_name
static void dpdk_bind_vmbus_devices_to_uio(dpdk_config_main_t *conf)
u8 * interface_name_suffix
#define hash_create(elts, value_bytes)
void dpdk_device_config_hqos_default(dpdk_device_config_hqos_t *hqos)
format_function_t format_dpdk_device_name
void vnet_hw_interface_assign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, uword thread_index)
vlib_pci_device_info_t * vlib_pci_get_device_info(vlib_main_t *vm, vlib_pci_addr_t *addr, clib_error_t **error)
static uword clib_file_add(clib_file_main_t *um, clib_file_t *template)
vlib_log_class_t log_default
static uword dpdk_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Bitmaps built as vectors of machine words.
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
#define clib_error_report(e)
#define clib_bitmap_free(v)
Free a bitmap.
uword clib_mem_get_default_hugepage_size(void)
#define DPDK_LINK_POLL_INTERVAL
uword * thread_registrations_by_name
clib_error_t * dpdk_cli_init(vlib_main_t *vm)
dpdk_portid_t device_index
static vlib_main_t * vlib_get_main(void)
clib_error_t * dpdk_port_setup_hqos(dpdk_device_t *xd, dpdk_device_config_hqos_t *hqos)
static int dpdk_port_crc_strip_enabled(dpdk_device_t *xd)
static uword clib_bitmap_count_set_bits(uword *ai)
Return the number of set bits in a bitmap.
#define DPDK_STATS_POLL_INTERVAL
vlib_vmbus_addr_t * vlib_vmbus_get_all_dev_addrs()
static vlib_node_registration_t dpdk_process_node
(constructor) VLIB_REGISTER_NODE (dpdk_process_node)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
uword unformat_vlib_cli_sub_input(unformat_input_t *i, va_list *args)
u8 admin_up_down_in_progress
#define STATIC_ASSERT(truth,...)
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
u8 no_tx_checksum_offload
static clib_error_t * dpdk_lib_init(dpdk_main_t *dm)
#define hash_get_mem(h, key)
u32 buffer_flags_template
static void * clib_mem_alloc_aligned(uword size, uword align)
static void vlib_buffer_init_for_free_list(vlib_buffer_t *dst, vlib_buffer_free_list_t *fl)
static u32 random_u32(u32 *seed)
32-bit random number generator
static vlib_thread_main_t * vlib_get_thread_main()
#define ETHERNET_MAX_PACKET_BYTES
#define vec_foreach(var, vec)
Vector iterator.
#define ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC(flags)
uword * cpu_socket_bitmap
static int dpdk_ring_alloc(struct rte_mempool *mp)
static vlib_buffer_free_list_t * vlib_buffer_get_free_list(vlib_main_t *vm, vlib_buffer_free_list_index_t free_list_index)
clib_error_t * vlib_pci_bind_to_uio(vlib_main_t *vm, vlib_pci_addr_t *addr, char *uio_drv_name)
vlib_thread_registration_t ** registrations
static void vlib_pci_free_device_info(vlib_pci_device_info_t *di)
#define CLIB_CACHE_LINE_BYTES
unformat_function_t unformat_dpdk_log_level
ethernet_interface_t * interfaces
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
clib_error_t * unformat_hqos(unformat_input_t *input, dpdk_device_config_hqos_t *hqos)
uword * device_config_index_by_pci_addr
static uword vnet_hw_interface_is_link_up(vnet_main_t *vnm, u32 hw_if_index)
volatile u32 worker_thread_release
#define dpdk_log_notice(...)
static void vnet_hw_interface_set_link_speed(vnet_main_t *vnm, u32 hw_if_index, u32 link_speed)
static void vnet_hw_interface_set_input_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
vnet_device_main_t vnet_device_main
f64 link_state_poll_interval
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".
dpdk_config_main_t * conf