|
|
1f2507 |
From a8419e965891901217756254e0ed1a3351b2a3cb Mon Sep 17 00:00:00 2001
|
|
|
1f2507 |
From: Ido Schimmel <idosch@nvidia.com>
|
|
|
1f2507 |
Date: Tue, 12 Oct 2021 16:25:16 +0300
|
|
|
1f2507 |
Subject: [PATCH 17/35] sff-8636: Rename SFF-8636 parsing functions
|
|
|
1f2507 |
|
|
|
1f2507 |
Currently, there are two SFF-8636 parsing functions. sff8636_show_all()
|
|
|
1f2507 |
and sff8636_show_all_paged(). The former is called from the IOCTL path
|
|
|
1f2507 |
with a buffer containing EEPROM contents and the latter is called from
|
|
|
1f2507 |
the netlink path with pointer to individual EEPROM pages.
|
|
|
1f2507 |
|
|
|
1f2507 |
Rename them with '_ioctl' and '_nl' suffixes to make the distinction
|
|
|
1f2507 |
clear.
|
|
|
1f2507 |
|
|
|
1f2507 |
In subsequent patches, these two functions will only differ in the way
|
|
|
1f2507 |
they initialize the SFF-8636 memory map for parsing, while the parsing
|
|
|
1f2507 |
code itself will be shared between the two.
|
|
|
1f2507 |
|
|
|
1f2507 |
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
|
|
|
1f2507 |
---
|
|
|
1f2507 |
ethtool.c | 4 ++--
|
|
|
1f2507 |
internal.h | 6 +++---
|
|
|
1f2507 |
netlink/module-eeprom.c | 2 +-
|
|
|
1f2507 |
qsfp.c | 6 +++---
|
|
|
1f2507 |
4 files changed, 9 insertions(+), 9 deletions(-)
|
|
|
1f2507 |
|
|
|
1f2507 |
diff --git a/ethtool.c b/ethtool.c
|
|
|
1f2507 |
index 1b79e9f8d958..6c744ff84eb9 100644
|
|
|
1f2507 |
--- a/ethtool.c
|
|
|
1f2507 |
+++ b/ethtool.c
|
|
|
1f2507 |
@@ -4908,8 +4908,8 @@ static int do_getmodule(struct cmd_context *ctx)
|
|
|
1f2507 |
break;
|
|
|
1f2507 |
case ETH_MODULE_SFF_8436:
|
|
|
1f2507 |
case ETH_MODULE_SFF_8636:
|
|
|
1f2507 |
- sff8636_show_all(eeprom->data,
|
|
|
1f2507 |
- modinfo.eeprom_len);
|
|
|
1f2507 |
+ sff8636_show_all_ioctl(eeprom->data,
|
|
|
1f2507 |
+ modinfo.eeprom_len);
|
|
|
1f2507 |
break;
|
|
|
1f2507 |
#endif
|
|
|
1f2507 |
default:
|
|
|
1f2507 |
diff --git a/internal.h b/internal.h
|
|
|
1f2507 |
index 33e619b3ac53..7ca6066d4e12 100644
|
|
|
1f2507 |
--- a/internal.h
|
|
|
1f2507 |
+++ b/internal.h
|
|
|
1f2507 |
@@ -390,9 +390,9 @@ void sff8079_show_all(const __u8 *id);
|
|
|
1f2507 |
void sff8472_show_all(const __u8 *id);
|
|
|
1f2507 |
|
|
|
1f2507 |
/* QSFP Optics diagnostics */
|
|
|
1f2507 |
-void sff8636_show_all(const __u8 *id, __u32 eeprom_len);
|
|
|
1f2507 |
-void sff8636_show_all_paged(const struct ethtool_module_eeprom *page_zero,
|
|
|
1f2507 |
- const struct ethtool_module_eeprom *page_three);
|
|
|
1f2507 |
+void sff8636_show_all_ioctl(const __u8 *id, __u32 eeprom_len);
|
|
|
1f2507 |
+void sff8636_show_all_nl(const struct ethtool_module_eeprom *page_zero,
|
|
|
1f2507 |
+ const struct ethtool_module_eeprom *page_three);
|
|
|
1f2507 |
|
|
|
1f2507 |
/* FUJITSU Extended Socket network device */
|
|
|
1f2507 |
int fjes_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs);
|
|
|
1f2507 |
diff --git a/netlink/module-eeprom.c b/netlink/module-eeprom.c
|
|
|
1f2507 |
index fc4ef1a53aff..18b1abbe1252 100644
|
|
|
1f2507 |
--- a/netlink/module-eeprom.c
|
|
|
1f2507 |
+++ b/netlink/module-eeprom.c
|
|
|
1f2507 |
@@ -328,7 +328,7 @@ static void decoder_print(void)
|
|
|
1f2507 |
case SFF8024_ID_QSFP:
|
|
|
1f2507 |
case SFF8024_ID_QSFP28:
|
|
|
1f2507 |
case SFF8024_ID_QSFP_PLUS:
|
|
|
1f2507 |
- sff8636_show_all_paged(page_zero, page_three);
|
|
|
1f2507 |
+ sff8636_show_all_nl(page_zero, page_three);
|
|
|
1f2507 |
break;
|
|
|
1f2507 |
case SFF8024_ID_QSFP_DD:
|
|
|
1f2507 |
case SFF8024_ID_DSFP:
|
|
|
1f2507 |
diff --git a/qsfp.c b/qsfp.c
|
|
|
1f2507 |
index 27fdd3bd1771..dc6407d3ef6f 100644
|
|
|
1f2507 |
--- a/qsfp.c
|
|
|
1f2507 |
+++ b/qsfp.c
|
|
|
1f2507 |
@@ -853,7 +853,7 @@ static void sff8636_show_page_zero(const __u8 *id)
|
|
|
1f2507 |
|
|
|
1f2507 |
}
|
|
|
1f2507 |
|
|
|
1f2507 |
-void sff8636_show_all(const __u8 *id, __u32 eeprom_len)
|
|
|
1f2507 |
+void sff8636_show_all_ioctl(const __u8 *id, __u32 eeprom_len)
|
|
|
1f2507 |
{
|
|
|
1f2507 |
if (id[SFF8636_ID_OFFSET] == SFF8024_ID_QSFP_DD) {
|
|
|
1f2507 |
cmis_show_all_ioctl(id);
|
|
|
1f2507 |
@@ -871,8 +871,8 @@ void sff8636_show_all(const __u8 *id, __u32 eeprom_len)
|
|
|
1f2507 |
}
|
|
|
1f2507 |
}
|
|
|
1f2507 |
|
|
|
1f2507 |
-void sff8636_show_all_paged(const struct ethtool_module_eeprom *page_zero,
|
|
|
1f2507 |
- const struct ethtool_module_eeprom *page_three)
|
|
|
1f2507 |
+void sff8636_show_all_nl(const struct ethtool_module_eeprom *page_zero,
|
|
|
1f2507 |
+ const struct ethtool_module_eeprom *page_three)
|
|
|
1f2507 |
{
|
|
|
1f2507 |
sff8636_show_identifier(page_zero->data);
|
|
|
1f2507 |
sff8636_show_page_zero(page_zero->data);
|
|
|
1f2507 |
--
|
|
|
1f2507 |
2.35.1
|
|
|
1f2507 |
|