* [PATCH ethtool-next] sfpid: fix 10G Base-ER module detection
@ 2026-06-10 18:51 Aleksander Jan Bajkowski
0 siblings, 0 replies; only message in thread
From: Aleksander Jan Bajkowski @ 2026-06-10 18:51 UTC (permalink / raw)
To: netdev, mkubecek; +Cc: Aleksander Jan Bajkowski
According to the specification[1], byte 3 bit 7 corresponds to the
10G Base-ER standard.
1. SFF_8472 Rev 12.5a dated Jan 16, 2026
Fixes: 4071862f58d8 ("sfpid: Add JSON output handling to --module-info in SFF8079 modules")
Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
---
sfpid.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sfpid.c b/sfpid.c
index 228b3ee..8123fe8 100644
--- a/sfpid.c
+++ b/sfpid.c
@@ -73,7 +73,7 @@ static void sff8079_show_transceiver(const __u8 *id)
/* 10G Ethernet Compliance Codes */
if (id[3] & (1 << 7))
sprintf(value, "%s",
- "10G Ethernet: 10G Base-LRM [SFF-8472 rev10.4 onwards]");
+ "10G Ethernet: 10G Base-ER [SFF-8472 rev10.4 onwards]");
if (id[3] & (1 << 6))
sprintf(value, "%s", "10G Ethernet: 10G Base-LRM");
if (id[3] & (1 << 5))
--
2.53.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-10 18:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-10 18:51 [PATCH ethtool-next] sfpid: fix 10G Base-ER module detection Aleksander Jan Bajkowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox