net/qede: remove flags from Tx entry
[dpdk.git] / drivers / net / bnxt / bnxt_txr.h
index 91e10db..e4bd90f 100644 (file)
@@ -17,18 +17,13 @@ struct bnxt_tx_ring_info {
        struct bnxt_db_info     tx_db;
 
        struct tx_bd_long       *tx_desc_ring;
-       struct bnxt_sw_tx_bd    *tx_buf_ring;
+       struct rte_mbuf         **tx_buf_ring;
 
        rte_iova_t              tx_desc_mapping;
 
        struct bnxt_ring        *tx_ring_struct;
 };
 
-struct bnxt_sw_tx_bd {
-       struct rte_mbuf         *mbuf; /* mbuf associated with TX descriptor */
-       unsigned short          nr_bds;
-};
-
 static inline uint32_t bnxt_tx_bds_in_hw(struct bnxt_tx_queue *txq)
 {
        return ((txq->tx_ring->tx_raw_prod - txq->tx_ring->tx_raw_cons) &