net/softnic: fix memory leak as profile is freed
[dpdk.git] / drivers / net / i40e / i40e_rxtx.h
index f4ad6b6..5ccf577 100644 (file)
@@ -129,6 +129,10 @@ struct i40e_tx_entry {
        uint16_t last_id;
 };
 
+struct i40e_vec_tx_entry {
+       struct rte_mbuf *mbuf;
+};
+
 /*
  * Structure associated with each TX queue.
  */
@@ -204,6 +208,8 @@ uint16_t i40e_recv_scattered_pkts(void *rx_queue,
 uint16_t i40e_xmit_pkts(void *tx_queue,
                        struct rte_mbuf **tx_pkts,
                        uint16_t nb_pkts);
+uint16_t i40e_simple_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
+                              uint16_t nb_pkts);
 uint16_t i40e_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
                uint16_t nb_pkts);
 int i40e_tx_queue_init(struct i40e_tx_queue *txq);