| /dpdk/drivers/net/bnxt/ |
| H A D | bnxt_rxq.c | 82 if (dev_conf->rxmode.mq_mode & RTE_ETH_MQ_RX_VMDQ_DCB_RSS) { in bnxt_mq_rx_configure() 85 switch (dev_conf->rxmode.mq_mode) { in bnxt_mq_rx_configure() 108 dev_conf->rxmode.mq_mode); in bnxt_mq_rx_configure() 112 } else if (!dev_conf->rxmode.mq_mode) { in bnxt_mq_rx_configure() 141 if (dev_conf->rxmode.mq_mode & RTE_ETH_MQ_RX_VMDQ_DCB) { in bnxt_mq_rx_configure() 151 if (dev_conf->rxmode.mq_mode & RTE_ETH_MQ_RX_VMDQ_DCB || in bnxt_mq_rx_configure() 152 !(dev_conf->rxmode.mq_mode & RTE_ETH_MQ_RX_RSS)) in bnxt_mq_rx_configure() 498 if (dev_conf->rxmode.mq_mode & RTE_ETH_MQ_RX_RSS_FLAG) { in bnxt_rx_queue_start() 569 if (dev_conf->rxmode.mq_mode & RTE_ETH_MQ_RX_RSS_FLAG) { in bnxt_rx_queue_stop()
|
| /dpdk/examples/ip_pipeline/ |
| H A D | link.c | 48 .mq_mode = RTE_ETH_MQ_RX_NONE, 60 .mq_mode = RTE_ETH_MQ_TX_NONE, 160 port_conf.rxmode.mq_mode = RTE_ETH_MQ_RX_RSS; in link_create()
|
| /dpdk/lib/ethdev/ |
| H A D | rte_ethdev_trace.h | 30 rte_trace_point_emit_u32(dev_conf->rxmode.mq_mode); 33 rte_trace_point_emit_u32(dev_conf->txmode.mq_mode);
|
| /dpdk/examples/l2fwd-event/ |
| H A D | l2fwd_common.c | 17 .mq_mode = RTE_ETH_MQ_TX_NONE, in l2fwd_event_init_ports() 25 port_conf.rxmode.mq_mode = RTE_ETH_MQ_RX_RSS; in l2fwd_event_init_ports()
|
| /dpdk/app/test/ |
| H A D | test_link_bonding_rssconf.c | 83 .mq_mode = RTE_ETH_MQ_RX_NONE, 87 .mq_mode = RTE_ETH_MQ_TX_NONE, 94 .mq_mode = RTE_ETH_MQ_RX_RSS, 98 .mq_mode = RTE_ETH_MQ_TX_NONE,
|
| /dpdk/examples/multi_process/symmetric_mp/ |
| H A D | main.c | 178 .mq_mode = RTE_ETH_MQ_RX_RSS, in smp_port_init() 189 .mq_mode = RTE_ETH_MQ_TX_NONE, in smp_port_init() 245 port_conf.rxmode.mq_mode &= ~(RTE_ETH_MQ_RX_RSS); in smp_port_init()
|
| /dpdk/examples/pipeline/ |
| H A D | obj.c | 130 .mq_mode = RTE_ETH_MQ_RX_NONE, 142 .mq_mode = RTE_ETH_MQ_TX_NONE, 242 port_conf.rxmode.mq_mode = RTE_ETH_MQ_RX_RSS; in link_create()
|
| /dpdk/examples/vmdq/ |
| H A D | main.c | 68 .mq_mode = RTE_ETH_MQ_RX_VMDQ_ONLY, 73 .mq_mode = RTE_ETH_MQ_TX_NONE, 159 eth_conf->rxmode.mq_mode = RTE_ETH_MQ_RX_VMDQ_RSS; in get_eth_conf()
|
| /dpdk/examples/vmdq_dcb/ |
| H A D | main.c | 71 .mq_mode = RTE_ETH_MQ_RX_VMDQ_DCB, 75 .mq_mode = RTE_ETH_MQ_TX_VMDQ_DCB, 175 eth_conf->rxmode.mq_mode = RTE_ETH_MQ_RX_VMDQ_DCB_RSS; in get_eth_conf()
|
| /dpdk/examples/qos_meter/ |
| H A D | main.c | 54 .mq_mode = RTE_ETH_MQ_RX_RSS, 65 .mq_mode = RTE_ETH_MQ_TX_NONE,
|
| /dpdk/drivers/net/hns3/ |
| H A D | hns3_rss.c | 659 enum rte_eth_rx_mq_mode mq_mode = hw->data->dev_conf.rxmode.mq_mode; in hns3_config_rss() local 692 if (!((uint32_t)mq_mode & RTE_ETH_MQ_RX_RSS_FLAG) || in hns3_config_rss()
|
| /dpdk/drivers/net/thunderx/ |
| H A D | nicvf_ethdev.c | 806 dev->data->dev_conf.rxmode.mq_mode, in nicvf_configure_rss() 810 if (dev->data->dev_conf.rxmode.mq_mode == RTE_ETH_MQ_RX_NONE) in nicvf_configure_rss() 812 else if (dev->data->dev_conf.rxmode.mq_mode == RTE_ETH_MQ_RX_RSS) in nicvf_configure_rss() 1901 if (rxmode->mq_mode & RTE_ETH_MQ_RX_RSS_FLAG) in nicvf_dev_configure() 1909 if (txmode->mq_mode) { in nicvf_dev_configure() 1914 if (rxmode->mq_mode != RTE_ETH_MQ_RX_NONE && in nicvf_dev_configure() 1915 rxmode->mq_mode != RTE_ETH_MQ_RX_RSS) { in nicvf_dev_configure() 1916 PMD_INIT_LOG(INFO, "Unsupported rx qmode %d", rxmode->mq_mode); in nicvf_dev_configure()
|
| /dpdk/app/test-pipeline/ |
| H A D | init.c | 81 .mq_mode = RTE_ETH_MQ_TX_NONE,
|
| /dpdk/drivers/net/mlx5/ |
| H A D | mlx5_rss.c | 73 !!(dev->data->dev_conf.rxmode.mq_mode & RTE_ETH_MQ_RX_RSS); in mlx5_rss_hash_update()
|
| /dpdk/examples/multi_process/client_server_mp/mp_server/ |
| H A D | init.c | 96 .mq_mode = RTE_ETH_MQ_RX_RSS in init_port()
|
| /dpdk/drivers/net/txgbe/ |
| H A D | txgbe_ethdev.c | 1355 switch (dev_conf->rxmode.mq_mode) { in txgbe_check_mq_mode() 1363 dev_conf->rxmode.mq_mode); in txgbe_check_mq_mode() 1367 dev->data->dev_conf.rxmode.mq_mode = RTE_ETH_MQ_RX_VMDQ_RSS; in txgbe_check_mq_mode() 1380 dev->data->dev_conf.rxmode.mq_mode = in txgbe_check_mq_mode() 1387 dev_conf->rxmode.mq_mode); in txgbe_check_mq_mode() 1391 switch (dev_conf->txmode.mq_mode) { in txgbe_check_mq_mode() 1397 dev->data->dev_conf.txmode.mq_mode = in txgbe_check_mq_mode() 1419 if (dev_conf->rxmode.mq_mode == RTE_ETH_MQ_RX_VMDQ_DCB) { in txgbe_check_mq_mode() 1436 if (dev_conf->txmode.mq_mode == RTE_ETH_MQ_TX_VMDQ_DCB) { in txgbe_check_mq_mode() 1456 if (dev_conf->rxmode.mq_mode == RTE_ETH_MQ_RX_DCB) { in txgbe_check_mq_mode() [all …]
|
| H A D | txgbe_pf.c | 613 switch (eth_conf->txmode.mq_mode) { in txgbe_get_vf_queues() 618 eth_conf->txmode.mq_mode); in txgbe_get_vf_queues() 652 eth_conf->txmode.mq_mode); in txgbe_get_vf_queues()
|
| /dpdk/drivers/net/ixgbe/ |
| H A D | ixgbe_pf.c | 676 switch (eth_conf->txmode.mq_mode) { in ixgbe_get_vf_queues() 681 eth_conf->txmode.mq_mode); in ixgbe_get_vf_queues() 715 eth_conf->txmode.mq_mode); in ixgbe_get_vf_queues()
|
| H A D | ixgbe_ethdev.c | 2246 switch (dev_conf->rxmode.mq_mode) { in ixgbe_check_mq_mode() 2254 dev_conf->rxmode.mq_mode); in ixgbe_check_mq_mode() 2258 dev->data->dev_conf.rxmode.mq_mode = RTE_ETH_MQ_RX_VMDQ_RSS; in ixgbe_check_mq_mode() 2277 dev_conf->rxmode.mq_mode); in ixgbe_check_mq_mode() 2281 switch (dev_conf->txmode.mq_mode) { in ixgbe_check_mq_mode() 2308 if (dev_conf->rxmode.mq_mode == RTE_ETH_MQ_RX_VMDQ_DCB) { in ixgbe_check_mq_mode() 2325 if (dev_conf->txmode.mq_mode == RTE_ETH_MQ_TX_VMDQ_DCB) { in ixgbe_check_mq_mode() 2345 if (dev_conf->rxmode.mq_mode == RTE_ETH_MQ_RX_DCB) { in ixgbe_check_mq_mode() 2358 if (dev_conf->txmode.mq_mode == RTE_ETH_MQ_TX_DCB) { in ixgbe_check_mq_mode() 2375 if (dev_conf->txmode.mq_mode == RTE_ETH_MQ_TX_NONE && in ixgbe_check_mq_mode() [all …]
|
| /dpdk/examples/server_node_efd/server/ |
| H A D | init.c | 98 .mq_mode = RTE_ETH_MQ_RX_RSS, in init_port()
|
| /dpdk/drivers/net/cnxk/ |
| H A D | cn10k_flow.c | 101 if (eth_dev->data->dev_conf.rxmode.mq_mode != RTE_ETH_MQ_RX_RSS) { in cn10k_rss_action_validate()
|
| /dpdk/drivers/net/octeontx/ |
| H A D | octeontx_ethdev.c | 422 if (txmode->mq_mode) { in octeontx_dev_configure() 427 if (rxmode->mq_mode != RTE_ETH_MQ_RX_NONE && in octeontx_dev_configure() 428 rxmode->mq_mode != RTE_ETH_MQ_RX_RSS) { in octeontx_dev_configure() 429 octeontx_log_err("unsupported rx qmode %d", rxmode->mq_mode); in octeontx_dev_configure()
|
| /dpdk/drivers/net/nfp/ |
| H A D | nfp_common.c | 163 if (rxmode->mq_mode & RTE_ETH_MQ_RX_RSS_FLAG) in nfp_net_configure() 167 if (txmode->mq_mode) { in nfp_net_configure() 173 if (rxmode->mq_mode & RTE_ETH_MQ_RX_RSS && in nfp_net_configure()
|
| /dpdk/drivers/net/mvneta/ |
| H A D | mvneta_ethdev.c | 117 if (dev->data->dev_conf.rxmode.mq_mode != RTE_ETH_MQ_RX_NONE) { in mvneta_dev_configure() 119 dev->data->dev_conf.rxmode.mq_mode); in mvneta_dev_configure()
|
| /dpdk/examples/ethtool/ethtool-app/ |
| H A D | main.c | 101 cfg_port.txmode.mq_mode = RTE_ETH_MQ_TX_NONE; in setup_ports()
|