]> git.droids-corp.org - dpdk.git/commitdiff
net/ice: fix secondary process Rx offload path
authorAlvin Zhang <alvinx.zhang@intel.com>
Tue, 16 Nov 2021 02:32:09 +0000 (10:32 +0800)
committerQi Zhang <qi.z.zhang@intel.com>
Tue, 16 Nov 2021 04:56:16 +0000 (05:56 +0100)
Secondary process depends on the vector offload flag to select right
Rx offload path. This patch adds a variable in share memory to store
the vector offload flag that can be directly read by secondary process.

Fixes: 808a17b3c1e6 ("net/ice: add Rx AVX512 offload path")
Cc: stable@dpdk.org
Signed-off-by: Alvin Zhang <alvinx.zhang@intel.com>
Tested-by: Qin Sun <qinx.sun@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
drivers/net/ice/ice_ethdev.h
drivers/net/ice/ice_rxtx.c

index 3a5bb9bbc62555a22cc3f736c5c0b081b2e62bb5..f8d0f0c6ee261a226194c7de9c05506a867b5960 100644 (file)
@@ -538,6 +538,7 @@ struct ice_adapter {
        bool rx_use_avx512;
        bool tx_use_avx2;
        bool tx_use_avx512;
+       bool rx_vec_offload_support;
 #endif
 };
 
index 2d771eab0c164857cfd4f7b6c7ef1866f83de2aa..f6d8564ab8a46d0ea6569e901cacaada9a4f867d 100644 (file)
@@ -3180,6 +3180,8 @@ ice_set_rx_function(struct rte_eth_dev *dev)
                rx_check_ret = ice_rx_vec_dev_check(dev);
                if (ad->ptp_ena)
                        rx_check_ret = -1;
+               ad->rx_vec_offload_support =
+                               (rx_check_ret == ICE_VECTOR_OFFLOAD_PATH);
                if (rx_check_ret >= 0 && ad->rx_bulk_alloc_allowed &&
                    rte_vect_get_max_simd_bitwidth() >= RTE_VECT_SIMD_128) {
                        ad->rx_vec_allowed = true;
@@ -3215,7 +3217,7 @@ ice_set_rx_function(struct rte_eth_dev *dev)
                if (dev->data->scattered_rx) {
                        if (ad->rx_use_avx512) {
 #ifdef CC_AVX512_SUPPORT
-                               if (rx_check_ret == ICE_VECTOR_OFFLOAD_PATH) {
+                               if (ad->rx_vec_offload_support) {
                                        PMD_DRV_LOG(NOTICE,
                                                "Using AVX512 OFFLOAD Vector Scattered Rx (port %d).",
                                                dev->data->port_id);
@@ -3230,7 +3232,7 @@ ice_set_rx_function(struct rte_eth_dev *dev)
                                }
 #endif
                        } else if (ad->rx_use_avx2) {
-                               if (rx_check_ret == ICE_VECTOR_OFFLOAD_PATH) {
+                               if (ad->rx_vec_offload_support) {
                                        PMD_DRV_LOG(NOTICE,
                                                    "Using AVX2 OFFLOAD Vector Scattered Rx (port %d).",
                                                    dev->data->port_id);
@@ -3252,7 +3254,7 @@ ice_set_rx_function(struct rte_eth_dev *dev)
                } else {
                        if (ad->rx_use_avx512) {
 #ifdef CC_AVX512_SUPPORT
-                               if (rx_check_ret == ICE_VECTOR_OFFLOAD_PATH) {
+                               if (ad->rx_vec_offload_support) {
                                        PMD_DRV_LOG(NOTICE,
                                                "Using AVX512 OFFLOAD Vector Rx (port %d).",
                                                dev->data->port_id);
@@ -3267,7 +3269,7 @@ ice_set_rx_function(struct rte_eth_dev *dev)
                                }
 #endif
                        } else if (ad->rx_use_avx2) {
-                               if (rx_check_ret == ICE_VECTOR_OFFLOAD_PATH) {
+                               if (ad->rx_vec_offload_support) {
                                        PMD_DRV_LOG(NOTICE,
                                                    "Using AVX2 OFFLOAD Vector Rx (port %d).",
                                                    dev->data->port_id);