X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_port%2Frte_port_ethdev.h;h=201a79e41b32d030b6de43c5122683392425df97;hb=c0583d98a9153549383d236e5cc5464bbbe8dd89;hp=af67a12ba1481446d7b3a423b35d3bc5a75ce590;hpb=4d97e8b565cc5cad3dfd4f67c308a19f2db68ca2;p=dpdk.git diff --git a/lib/librte_port/rte_port_ethdev.h b/lib/librte_port/rte_port_ethdev.h index af67a12ba1..201a79e41b 100644 --- a/lib/librte_port/rte_port_ethdev.h +++ b/lib/librte_port/rte_port_ethdev.h @@ -79,6 +79,25 @@ struct rte_port_ethdev_writer_params { /** ethdev_writer port operations */ extern struct rte_port_out_ops rte_port_ethdev_writer_ops; +/** ethdev_writer_nodrop port parameters */ +struct rte_port_ethdev_writer_nodrop_params { + /** NIC RX port ID */ + uint8_t port_id; + + /** NIC RX queue ID */ + uint16_t queue_id; + + /** Recommended burst size to NIC TX queue. The actual burst size can be + bigger or smaller than this value. */ + uint32_t tx_burst_sz; + + /** Maximum number of retries, 0 for no limit */ + uint32_t n_retries; +}; + +/** ethdev_writer_nodrop port operations */ +extern struct rte_port_out_ops rte_port_ethdev_writer_nodrop_ops; + #ifdef __cplusplus } #endif