Home
last modified time | relevance | path

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

/dpdk/examples/skeleton/
H A Dbasicfwd.c38 struct rte_eth_txconf txconf; in port_init() local
73 txconf = dev_info.default_txconf; in port_init()
74 txconf.offloads = port_conf.txmode.offloads; in port_init()
78 rte_eth_dev_socket_id(port), &txconf); in port_init()
/dpdk/examples/server_node_efd/server/
H A Dinit.c105 struct rte_eth_txconf txconf; in init_port() local
142 txconf = dev_info.default_txconf; in init_port()
143 txconf.offloads = port_conf.txmode.offloads; in init_port()
147 &txconf); in init_port()
/dpdk/examples/rxtx_callbacks/
H A Dmain.c129 struct rte_eth_txconf txconf; in port_init() local
179 txconf = dev_info.default_txconf; in port_init()
180 txconf.offloads = port_conf.txmode.offloads; in port_init()
183 rte_eth_dev_socket_id(port), &txconf); in port_init()
/dpdk/examples/l3fwd/
H A Dl3fwd_event.c49 struct rte_eth_txconf txconf; in l3fwd_eth_dev_port_setup() local
158 txconf = dev_info.default_txconf; in l3fwd_eth_dev_port_setup()
159 txconf.offloads = local_port_conf.txmode.offloads; in l3fwd_eth_dev_port_setup()
160 ret = rte_eth_tx_queue_setup(port_id, 0, nb_txd, 0, &txconf); in l3fwd_eth_dev_port_setup()
H A Dmain.c1167 struct rte_eth_txconf *txconf; in l3fwd_poll_resource_setup() local
1299 txconf = &dev_info.default_txconf; in l3fwd_poll_resource_setup()
1300 txconf->offloads = local_port_conf.txmode.offloads; in l3fwd_poll_resource_setup()
1302 socketid, txconf); in l3fwd_poll_resource_setup()
/dpdk/examples/vmdq/
H A Dmain.c177 struct rte_eth_txconf *txconf; in port_init() local
281 txconf = &dev_info.default_txconf; in port_init()
282 txconf->offloads = port_conf.txmode.offloads; in port_init()
297 txconf); in port_init()
/dpdk/examples/ipv4_multicast/
H A Dmain.c650 struct rte_eth_txconf *txconf; in main() local
788 txconf = &dev_info.default_txconf; in main()
789 txconf->offloads = local_port_conf.txmode.offloads; in main()
791 rte_lcore_to_socket_id(lcore_id), txconf); in main()
/dpdk/examples/eventdev_pipeline/
H A Dpipeline_worker_generic.c306 struct rte_eth_txconf txconf; in port_init() local
353 txconf = dev_info.default_txconf; in port_init()
354 txconf.offloads = port_conf_default.txmode.offloads; in port_init()
358 rte_eth_dev_socket_id(port), &txconf); in port_init()
H A Dpipeline_worker_tx.c659 struct rte_eth_txconf txconf; in port_init() local
702 txconf = dev_info.default_txconf; in port_init()
703 txconf.offloads = port_conf_default.txmode.offloads; in port_init()
707 rte_eth_dev_socket_id(port), &txconf); in port_init()
/dpdk/examples/packet_ordering/
H A Dmain.c284 struct rte_eth_txconf txconf; in configure_eth_port() local
316 txconf = dev_info.default_txconf; in configure_eth_port()
317 txconf.offloads = port_conf.txmode.offloads; in configure_eth_port()
320 rte_eth_dev_socket_id(port_id), &txconf); in configure_eth_port()
/dpdk/examples/ptpclient/
H A Dptpclient.c230 struct rte_eth_txconf *txconf; in port_init() local
232 txconf = &dev_info.default_txconf; in port_init()
233 txconf->offloads = port_conf.txmode.offloads; in port_init()
236 rte_eth_dev_socket_id(port), txconf); in port_init()
/dpdk/examples/flow_classify/
H A Dflow_classify.c201 struct rte_eth_txconf txconf; in port_init() local
232 txconf = dev_info.default_txconf; in port_init()
233 txconf.offloads = port_conf.txmode.offloads; in port_init()
237 rte_eth_dev_socket_id(port), &txconf); in port_init()
/dpdk/examples/distributor/
H A Dmain.c117 struct rte_eth_txconf txconf; in port_init() local
160 txconf = dev_info.default_txconf; in port_init()
161 txconf.offloads = port_conf.txmode.offloads; in port_init()
165 &txconf); in port_init()
/dpdk/examples/l3fwd-graph/
H A Dmain.c755 struct rte_eth_txconf *txconf; in main() local
906 txconf = &dev_info.default_txconf; in main()
907 txconf->offloads = local_port_conf.txmode.offloads; in main()
909 socketid, txconf); in main()
/dpdk/examples/ip_fragmentation/
H A Dmain.c865 struct rte_eth_txconf *txconf; in main() local
1024 txconf = &dev_info.default_txconf; in main()
1025 txconf->offloads = local_port_conf.txmode.offloads; in main()
1027 socket, txconf); in main()
/dpdk/examples/ip_reassembly/
H A Dmain.c1000 struct rte_eth_txconf *txconf; in main() local
1157 txconf = &dev_info.default_txconf; in main()
1158 txconf->offloads = local_port_conf.txmode.offloads; in main()
1161 socket, txconf); in main()
/dpdk/examples/vhost/
H A Dmain.c388 struct rte_eth_txconf *txconf; in port_init() local
405 txconf = &dev_info.default_txconf; in port_init()
479 txconf->offloads = port_conf.txmode.offloads; in port_init()
483 txconf); in port_init()
/dpdk/drivers/net/bonding/
H A Drte_eth_bond_api.c405 const struct rte_eth_txconf *txconf = &di->default_txconf; in eth_bond_slave_inherit_dev_info_tx_next() local
418 txconf_i->offloads = (txconf_i->offloads | txconf->offloads) & in eth_bond_slave_inherit_dev_info_tx_next()
/dpdk/examples/l3fwd-acl/
H A Dmain.c2016 struct rte_eth_txconf *txconf; in main() local
2171 txconf = &dev_info.default_txconf; in main()
2172 txconf->offloads = local_port_conf.txmode.offloads; in main()
2174 socketid, txconf); in main()
/dpdk/examples/l3fwd-power/
H A Dmain.c2531 struct rte_eth_txconf *txconf; in main() local
2729 txconf = &dev_info.default_txconf; in main()
2730 txconf->offloads = local_port_conf.txmode.offloads; in main()
2732 socketid, txconf); in main()
/dpdk/examples/ipsec-secgw/
H A Dipsec-secgw.c2256 struct rte_eth_txconf *txconf; in port_init() local
2377 txconf = &dev_info.default_txconf; in port_init()
2378 txconf->offloads = local_port_conf.txmode.offloads; in port_init()
2381 socket_id, txconf); in port_init()