examples/pipeline: add new example application
[dpdk.git] / drivers / net / bnxt / bnxt_txq.h
index 7a44251..9f849fc 100644 (file)
@@ -6,6 +6,9 @@
 #ifndef _BNXT_TXQ_H_
 #define _BNXT_TXQ_H_
 
+/* Maximum transmit burst for vector mode.  */
+#define RTE_BNXT_MAX_TX_BURST          64U
+
 struct bnxt_tx_ring_info;
 struct bnxt_cp_ring_info;
 struct bnxt_tx_queue {
@@ -29,11 +32,11 @@ struct bnxt_tx_queue {
        struct bnxt             *bp;
        int                     index;
        int                     tx_wake_thresh;
+       uint32_t                vfr_tx_cfa_action;
        struct bnxt_tx_ring_info        *tx_ring;
 
        unsigned int            cp_nr_rings;
        struct bnxt_cp_ring_info        *cp_ring;
-       struct bnxt_cp_ring_info        *nq_ring;
        const struct rte_memzone *mz;
        struct rte_mbuf **free;
 };