net/qede: fix default config option
authorHarish Patil <harish.patil@cavium.com>
Thu, 9 Nov 2017 06:52:20 +0000 (22:52 -0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 10 Nov 2017 08:12:20 +0000 (08:12 +0000)
Restore the default configuration as in previous releases and
add a debug msg.

Fixes: f07aa795c92a ("net/qede: disable per-VF Tx switching feature")
Cc: stable@dpdk.org
Signed-off-by: Harish Patil <harish.patil@cavium.com>
Signed-off-by: Rasesh Mody <rasesh.mody@cavium.com>
config/common_base
drivers/net/qede/qede_ethdev.c

index 34f04a9..e74febe 100644 (file)
@@ -415,7 +415,7 @@ CONFIG_RTE_LIBRTE_QEDE_DEBUG_INFO=n
 CONFIG_RTE_LIBRTE_QEDE_DEBUG_DRIVER=n
 CONFIG_RTE_LIBRTE_QEDE_DEBUG_TX=n
 CONFIG_RTE_LIBRTE_QEDE_DEBUG_RX=n
-CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH=n
+CONFIG_RTE_LIBRTE_QEDE_VF_TX_SWITCH=y
 #Provides abs path/name of the firmware file.
 #Empty string denotes driver will use default firmware
 CONFIG_RTE_LIBRTE_QEDE_FW=""
index 8832145..6f5ba2a 100644 (file)
@@ -457,6 +457,7 @@ int qede_activate_vport(struct rte_eth_dev *eth_dev, bool flg)
        if (IS_VF(edev)) {
                params.update_tx_switching_flg = 1;
                params.tx_switching_flg = !flg;
+               DP_INFO(edev, "VF tx-switching is disabled\n");
        }
 #endif
        for_each_hwfn(edev, i) {
@@ -469,8 +470,8 @@ int qede_activate_vport(struct rte_eth_dev *eth_dev, bool flg)
                        break;
                }
        }
-       DP_INFO(edev, "vport %s VF tx-switch %s\n", flg ? "activated" : "deactivated",
-                       params.tx_switching_flg ? "enabled" : "disabled");
+       DP_INFO(edev, "vport is %s\n", flg ? "activated" : "deactivated");
+
        return rc;
 }