Home
last modified time | relevance | path

Searched refs:txconf (Results 1 – 24 of 24) sorted by relevance

/f-stack/dpdk/examples/skeleton/
H A Dbasicfwd.c42 struct rte_eth_txconf txconf; in port_init() local
75 txconf = dev_info.default_txconf; in port_init()
76 txconf.offloads = port_conf.txmode.offloads; in port_init()
80 rte_eth_dev_socket_id(port), &txconf); in port_init()
/f-stack/dpdk/examples/l3fwd/
H A Dl3fwd_event.c51 struct rte_eth_txconf txconf; in l3fwd_eth_dev_port_setup() local
160 txconf = dev_info.default_txconf; in l3fwd_eth_dev_port_setup()
161 txconf.offloads = local_port_conf.txmode.offloads; in l3fwd_eth_dev_port_setup()
162 ret = rte_eth_tx_queue_setup(port_id, 0, nb_txd, 0, &txconf); in l3fwd_eth_dev_port_setup()
H A Dmain.c902 struct rte_eth_txconf *txconf; in l3fwd_poll_resource_setup() local
1024 txconf = &dev_info.default_txconf; in l3fwd_poll_resource_setup()
1025 txconf->offloads = local_port_conf.txmode.offloads; in l3fwd_poll_resource_setup()
1027 socketid, txconf); in l3fwd_poll_resource_setup()
/f-stack/dpdk/examples/server_node_efd/server/
H A Dinit.c106 struct rte_eth_txconf txconf; in init_port() local
143 txconf = dev_info.default_txconf; in init_port()
144 txconf.offloads = port_conf.txmode.offloads; in init_port()
148 &txconf); in init_port()
/f-stack/dpdk/examples/rxtx_callbacks/
H A Dmain.c129 struct rte_eth_txconf txconf; in port_init() local
177 txconf = dev_info.default_txconf; in port_init()
178 txconf.offloads = port_conf.txmode.offloads; in port_init()
181 rte_eth_dev_socket_id(port), &txconf); in port_init()
/f-stack/dpdk/examples/vmdq/
H A Dmain.c166 struct rte_eth_txconf *txconf; in port_init() local
270 txconf = &dev_info.default_txconf; in port_init()
271 txconf->offloads = port_conf.txmode.offloads; in port_init()
286 txconf); in port_init()
/f-stack/dpdk/examples/ipv4_multicast/
H A Dmain.c631 struct rte_eth_txconf *txconf; in main() local
768 txconf = &dev_info.default_txconf; in main()
769 txconf->offloads = local_port_conf.txmode.offloads; in main()
771 rte_lcore_to_socket_id(lcore_id), txconf); in main()
/f-stack/dpdk/examples/eventdev_pipeline/
H A Dpipeline_worker_generic.c303 struct rte_eth_txconf txconf; in port_init() local
350 txconf = dev_info.default_txconf; in port_init()
351 txconf.offloads = port_conf_default.txmode.offloads; in port_init()
355 rte_eth_dev_socket_id(port), &txconf); in port_init()
H A Dpipeline_worker_tx.c634 struct rte_eth_txconf txconf; in port_init() local
677 txconf = dev_info.default_txconf; in port_init()
678 txconf.offloads = port_conf_default.txmode.offloads; in port_init()
682 rte_eth_dev_socket_id(port), &txconf); in port_init()
/f-stack/dpdk/examples/packet_ordering/
H A Dmain.c277 struct rte_eth_txconf txconf; in configure_eth_port() local
309 txconf = dev_info.default_txconf; in configure_eth_port()
310 txconf.offloads = port_conf.txmode.offloads; in configure_eth_port()
313 rte_eth_dev_socket_id(port_id), &txconf); in configure_eth_port()
/f-stack/dpdk/examples/ptpclient/
H A Dptpclient.c226 struct rte_eth_txconf *txconf; in port_init() local
228 txconf = &dev_info.default_txconf; in port_init()
229 txconf->offloads = port_conf.txmode.offloads; in port_init()
232 rte_eth_dev_socket_id(port), txconf); in port_init()
/f-stack/dpdk/examples/flow_classify/
H A Dflow_classify.c200 struct rte_eth_txconf txconf; in port_init() local
229 txconf = dev_info.default_txconf; in port_init()
230 txconf.offloads = port_conf.txmode.offloads; in port_init()
234 rte_eth_dev_socket_id(port), &txconf); in port_init()
/f-stack/dpdk/examples/distributor/
H A Dmain.c118 struct rte_eth_txconf txconf; in port_init() local
161 txconf = dev_info.default_txconf; in port_init()
162 txconf.offloads = port_conf.txmode.offloads; in port_init()
166 &txconf); in port_init()
/f-stack/dpdk/examples/ip_fragmentation/
H A Dmain.c862 struct rte_eth_txconf *txconf; in main() local
1022 txconf = &dev_info.default_txconf; in main()
1023 txconf->offloads = local_port_conf.txmode.offloads; in main()
1025 socket, txconf); in main()
/f-stack/dpdk/examples/l3fwd-graph/
H A Dmain.c739 struct rte_eth_txconf *txconf; in main() local
883 txconf = &dev_info.default_txconf; in main()
884 txconf->offloads = local_port_conf.txmode.offloads; in main()
886 socketid, txconf); in main()
/f-stack/dpdk/examples/ip_reassembly/
H A Dmain.c994 struct rte_eth_txconf *txconf; in main() local
1151 txconf = &dev_info.default_txconf; in main()
1152 txconf->offloads = local_port_conf.txmode.offloads; in main()
1155 socket, txconf); in main()
/f-stack/dpdk/examples/vhost/
H A Dmain.c237 struct rte_eth_txconf *txconf; in port_init() local
254 txconf = &dev_info.default_txconf; in port_init()
321 txconf->offloads = port_conf.txmode.offloads; in port_init()
325 txconf); in port_init()
/f-stack/dpdk/drivers/net/bonding/
H A Drte_eth_bond_api.c393 const struct rte_eth_txconf *txconf = &di->default_txconf; in eth_bond_slave_inherit_dev_info_tx_next() local
406 txconf_i->offloads = (txconf_i->offloads | txconf->offloads) & in eth_bond_slave_inherit_dev_info_tx_next()
/f-stack/dpdk/examples/l3fwd-acl/
H A Dmain.c2014 struct rte_eth_txconf *txconf; in main() local
2163 txconf = &dev_info.default_txconf; in main()
2164 txconf->offloads = local_port_conf.txmode.offloads; in main()
2166 socketid, txconf); in main()
/f-stack/dpdk/examples/l3fwd-power/
H A Dmain.c2455 struct rte_eth_txconf *txconf; in main() local
2639 txconf = &dev_info.default_txconf; in main()
2640 txconf->offloads = local_port_conf.txmode.offloads; in main()
2642 socketid, txconf); in main()
/f-stack/dpdk/examples/ipsec-secgw/
H A Dipsec-secgw.c2127 struct rte_eth_txconf *txconf; in port_init() local
2251 txconf = &dev_info.default_txconf; in port_init()
2252 txconf->offloads = local_port_conf.txmode.offloads; in port_init()
2255 socket_id, txconf); in port_init()
/f-stack/dpdk/examples/performance-thread/l3fwd-thread/
H A Dmain.c3492 struct rte_eth_txconf *txconf; in main() local
3641 txconf = &dev_info.default_txconf; in main()
3642 txconf->offloads = local_port_conf.txmode.offloads; in main()
3644 socketid, txconf); in main()
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dl3_forward_graph.rst150 socketid, txconf);
/f-stack/freebsd/net/
H A Diflib.c5593 int i, j, cpu, err, txconf, rxconf; in iflib_queues_alloc() local
5633 for (txconf = i = 0, cpu = CPU_FIRST(); i < ntxqsets; i++, txconf++, txq++, cpu = CPU_NEXT(cpu)) { in iflib_queues_alloc()