net/cxgbe: fix port ID in Rx mbuf
[dpdk.git] / drivers / net / sfc / sfc_tx.c
index 0dccf21..f376f24 100644 (file)
@@ -308,6 +308,7 @@ sfc_tx_qinit_info(struct sfc_adapter *sa, sfc_sw_index_t sw_index)
 static int
 sfc_tx_check_mode(struct sfc_adapter *sa, const struct rte_eth_txmode *txmode)
 {
+       uint64_t dev_tx_offload_cap = sfc_tx_get_dev_offload_caps(sa);
        int rc = 0;
 
        switch (txmode->mq_mode) {
@@ -319,6 +320,13 @@ sfc_tx_check_mode(struct sfc_adapter *sa, const struct rte_eth_txmode *txmode)
                rc = EINVAL;
        }
 
+       if ((dev_tx_offload_cap & RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE) != 0 &&
+           (txmode->offloads & RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE) == 0) {
+               sfc_err(sa, "There is no FAST_FREE flag in the attempted Tx mode configuration");
+               sfc_err(sa, "FAST_FREE is always active as per the current Tx datapath variant");
+               rc = EINVAL;
+       }
+
        /*
         * These features are claimed to be i40e-specific,
         * but it does make sense to double-check their absence
@@ -356,7 +364,7 @@ sfc_tx_fini_queues(struct sfc_adapter *sa, unsigned int nb_tx_queues)
 
        /*
         * Finalize only ethdev queues since other ones are finalized only
-        * on device close and they may require additional deinitializaton.
+        * on device close and they may require additional deinitialization.
         */
        ethdev_qid = sas->ethdev_txq_count;
        while (--ethdev_qid >= (int)nb_tx_queues) {