[08/10] net/ixgbe/base: update VF HV subsystem device ID constant
Checks
Commit Message
From: Piotr Kwapulinski <piotr.kwapulinski@intel.com>
Current value of IXGBE_SUBDEV_ID_E610_VF_HV (0x0001) causes the conflict
with real e610 subsystem device ID. This causes the TX hung of driver
running in VM. Update this value to 0x00FF to resolve conflict.
Fixes: 659e36767e77 (net/ixgbe/base: add E610 VF HV macro)
Cc: stable@dpdk.org
Signed-off-by: Piotr Kwapulinski <piotr.kwapulinski@intel.com>
Signed-off-by: Yuan Wang <yuanx.wang@intel.com>
---
drivers/net/ixgbe/base/ixgbe_type.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -131,7 +131,7 @@
#define IXGBE_DEV_ID_E610_2_5G_T 0x57B1
#define IXGBE_DEV_ID_E610_SGMII 0x57B2
#define IXGBE_DEV_ID_E610_VF 0x57AD
-#define IXGBE_SUBDEV_ID_E610_VF_HV 0x0001
+#define IXGBE_SUBDEV_ID_E610_VF_HV 0x00FF
#define IXGBE_CAT(r, m) IXGBE_##r##m