[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20251021-fix-module-info-json-v1-1-01d61b1973f6@a-eberle.de>
Date: Tue, 21 Oct 2025 16:00:12 +0200
From: Johannes Eigner <johannes.eigner@...berle.de>
To: netdev@...r.kernel.org
Cc: Michal Kubecek <mkubecek@...e.cz>,
Danielle Ratson <danieller@...dia.com>,
Stephan Wurm <stephan.wurm@...berle.de>,
Johannes Eigner <johannes.eigner@...berle.de>
Subject: [PATCH ethtool 1/2] sfpid: Fix JSON output of SFP diagnostics
Close and delete JSON object only after output of SFP diagnostics so
that it is also JSON formatted. If the JSON object is deleted too early,
some of the output will not be JSON formatted, resulting in mixed output
formats.
Signed-off-by: Johannes Eigner <johannes.eigner@...berle.de>
---
sfpid.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sfpid.c b/sfpid.c
index 62acb4f..5216ce3 100644
--- a/sfpid.c
+++ b/sfpid.c
@@ -520,8 +520,6 @@ int sff8079_show_all_nl(struct cmd_context *ctx)
new_json_obj(ctx->json);
open_json_object(NULL);
sff8079_show_all_common(buf);
- close_json_object();
- delete_json_obj();
/* Finish if A2h page is not present */
if (!(buf[92] & (1 << 6)))
@@ -537,6 +535,8 @@ int sff8079_show_all_nl(struct cmd_context *ctx)
sff8472_show_all(buf);
out:
+ close_json_object();
+ delete_json_obj();
free(buf);
return ret;
--
2.43.0
Download attachment "smime.p7s" of type "application/x-pkcs7-signature" (4153 bytes)
Powered by blists - more mailing lists