On 1/14/2020 11:29 AM, Reshma Pattan wrote: > add stubs for ixgbe_xmit_fixed_burst_vec, > ixgbe_rx_queue_release_mbufs_vec and > ixgbe_txq_vec_setup > > CC: Vlad Zolotarov <vl...@cloudius-systems.com> > > Signed-off-by: Reshma Pattan <reshma.pat...@intel.com>
<...> > @@ -5834,4 +5828,23 @@ ixgbe_rxq_vec_setup(struct ixgbe_rx_queue __rte_unused > *rxq) > { > return -1; > } > + > +uint16_t > +ixgbe_xmit_fixed_burst_vec(void *tx_queue, struct rte_mbuf **tx_pkts, > + uint16_t nb_pkts) > +{ > + return 0; > +} > + > +int > +ixgbe_txq_vec_setup(struct ixgbe_tx_queue *txq) > +{ > + return -1; > +} > + > +void > +ixgbe_rx_queue_release_mbufs_vec(struct ixgbe_rx_queue *rxq) > +{ > + return; > +} > #endif getting unused variable warnings for PPC [1], because of missing '__rte_unused' attribute on arguments. I will add them while merging, please verify the commits on next-net [1]: error: unused parameter ‘tx_queue’