* [PATCH] ncsi: Support sparse package ids in ncsi_write_package_info
@ 2024-08-20 7:05 James Lamanna
0 siblings, 0 replies; only message in thread
From: James Lamanna @ 2024-08-20 7:05 UTC (permalink / raw)
To: sam; +Cc: linux-kernel, James Lamanna
For platforms with sparse package ids, where package_num < max(package_id)-1,
a check against package_num would prevent the return of package info.
This removes that check as it breaks these platforms and is an incorrect
comparison (package_id vs number of packages).
Invalid package_ids are checked in the following loop, and
-ENODEV is still returned if there are no matches.
Signed-off-by: James Lamanna <jlamanna@gmail.com>
---
net/ncsi/ncsi-netlink.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/net/ncsi/ncsi-netlink.c b/net/ncsi/ncsi-netlink.c
index 2f872d064396..62fabcc000c9 100644
--- a/net/ncsi/ncsi-netlink.c
+++ b/net/ncsi/ncsi-netlink.c
@@ -100,11 +100,6 @@ static int ncsi_write_package_info(struct sk_buff *skb,
bool found;
int rc;
- if (id > ndp->package_num - 1) {
- netdev_info(ndp->ndev.dev, "NCSI: No package with id %u\n", id);
- return -ENODEV;
- }
-
found = false;
NCSI_FOR_EACH_PACKAGE(ndp, np) {
if (np->id != id)
--
2.34.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-08-20 7:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-20 7:05 [PATCH] ncsi: Support sparse package ids in ncsi_write_package_info James Lamanna
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®