patch 'net/i40e/base: add missing X710TL device check' has been queued to stable release 23.11.3

Xueming Li xuemingl at nvidia.com
Mon Nov 11 07:27:48 CET 2024


Hi,

FYI, your patch has been queued to stable release 23.11.3

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 11/30/24. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://git.dpdk.org/dpdk-stable/log/?h=23.11-staging

This queued commit can be viewed at:
https://git.dpdk.org/dpdk-stable/commit/?h=23.11-staging&id=9f966b465d8ce98430feeb81a1db414b83a26a8d

Thanks.

Xueming Li <xuemingl at nvidia.com>

---
>From 9f966b465d8ce98430feeb81a1db414b83a26a8d Mon Sep 17 00:00:00 2001
From: Anatoly Burakov <anatoly.burakov at intel.com>
Date: Mon, 2 Sep 2024 10:54:19 +0100
Subject: [PATCH] net/i40e/base: add missing X710TL device check
Cc: Xueming Li <xuemingl at nvidia.com>

[ upstream commit 597e19e7eae17beb820795c3a8a97c547870ba26 ]

Commit c0ce1c4677fd ("net/i40e: add new X722 device") added a new X722
define as well as one for X710T*L (that wasn't called out in commit
message), however it was not added to the I40E_IS_X710TL_DEVICE check.
This patch adds the missing define to the check.

Fixes: c0ce1c4677fd ("net/i40e: add new X722 device")

Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
 drivers/net/i40e/base/i40e_devids.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/i40e/base/i40e_devids.h b/drivers/net/i40e/base/i40e_devids.h
index ee31e51f57..37d7ee9939 100644
--- a/drivers/net/i40e/base/i40e_devids.h
+++ b/drivers/net/i40e/base/i40e_devids.h
@@ -42,7 +42,8 @@
 #define I40E_DEV_ID_10G_SFP		0x104E
 #define I40E_IS_X710TL_DEVICE(d) \
 	(((d) == I40E_DEV_ID_10G_BASE_T_BC) || \
-	((d) == I40E_DEV_ID_5G_BASE_T_BC))
+	((d) == I40E_DEV_ID_5G_BASE_T_BC) || \
+	((d) == I40E_DEV_ID_1G_BASE_T_BC))
 #define I40E_DEV_ID_KX_X722		0x37CE
 #define I40E_DEV_ID_QSFP_X722		0x37CF
 #define I40E_DEV_ID_SFP_X722		0x37D0
--
2.34.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2024-11-11 14:23:08.181442678 +0800
+++ 0062-net-i40e-base-add-missing-X710TL-device-check.patch	2024-11-11 14:23:05.142192839 +0800
@@ -1 +1 @@
-From 597e19e7eae17beb820795c3a8a97c547870ba26 Mon Sep 17 00:00:00 2001
+From 9f966b465d8ce98430feeb81a1db414b83a26a8d Mon Sep 17 00:00:00 2001
@@ -4,0 +5,3 @@
+Cc: Xueming Li <xuemingl at nvidia.com>
+
+[ upstream commit 597e19e7eae17beb820795c3a8a97c547870ba26 ]
@@ -12 +14,0 @@
-Cc: stable at dpdk.org
@@ -21 +23 @@
-index 11e98f1f28..0a323566d1 100644
+index ee31e51f57..37d7ee9939 100644
@@ -24,2 +26,2 @@
-@@ -31,7 +31,8 @@
- #define I40E_DEV_ID_1G_BASE_T_BC	0x0DD2
+@@ -42,7 +42,8 @@
+ #define I40E_DEV_ID_10G_SFP		0x104E


More information about the stable mailing list