[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241103223408.26274-1-mohan.prasad@microchip.com>
Date: Mon, 4 Nov 2024 04:04:07 +0530
From: Mohan Prasad J <mohan.prasad@...rochip.com>
To: <f.pfitzner@...gutronix.de>, <mkubecek@...e.cz>, <netdev@...r.kernel.org>,
<kory.maincent@...tlin.com>, <davem@...emloft.net>
CC: <kuba@...nel.org>, <andrew@...n.ch>, <Anbazhagan.Sakthivel@...rochip.com>,
<Nisar.Sayed@...rochip.com>, <mohan.prasad@...rochip.com>
Subject: [PATCH ethtool v2] netlink: settings: Fix for wrong auto-negotiation state
Auto-negotiation state in json format showed the
opposite state due to wrong comparison.
Fix for returning the correct auto-neg state implemented.
Signed-off-by: Mohan Prasad J <mohan.prasad@...rochip.com>
---
Changes in v2:
Used simpler comparison statement for checking
auto-negotiation.
Link to v1:https://patchwork.kernel.org/project/netdevbpf/patch/20241016035848.292603-1-mohan.prasad@microchip.com/
---
---
netlink/settings.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/netlink/settings.c b/netlink/settings.c
index dbfb520..b9b3ba9 100644
--- a/netlink/settings.c
+++ b/netlink/settings.c
@@ -546,7 +546,7 @@ int linkmodes_reply_cb(const struct nlmsghdr *nlhdr, void *data)
(autoneg == AUTONEG_DISABLE) ? "off" : "on");
else
print_bool(PRINT_JSON, "auto-negotiation", NULL,
- autoneg == AUTONEG_DISABLE);
+ autoneg != AUTONEG_DISABLE);
}
if (tb[ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG]) {
uint8_t val;
--
2.43.0
Powered by blists - more mailing lists