[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250921200948.1568850-1-alok.a.tiwari@oracle.com>
Date: Sun, 21 Sep 2025 13:09:46 -0700
From: Alok Tiwari <alok.a.tiwari@...cle.com>
To: selvin.xavier@...adcom.com, kalesh-anakkur.purayil@...adcom.com,
jgg@...pe.ca, leon@...nel.org, linux-rdma@...r.kernel.org
Cc: alok.a.tiwari@...cle.com, linux-kernel@...r.kernel.org
Subject: [PATCH rdma-next] RDMA/bnxt_re: improve clarity in ALLOC_PAGE handler
Update uverbs_copy_to call to use sizeof(dpi) instead of sizeof(length)
when copying the device page index (DPI) back to user space. Both dpi
and length are declared as u32, so this change has no functional impact
but makes the code clearer.
Signed-off-by: Alok Tiwari <alok.a.tiwari@...cle.com>
---
drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/hw/bnxt_re/ib_verbs.c b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
index 6bb4f6ac8476..09cd2622e363 100644
--- a/drivers/infiniband/hw/bnxt_re/ib_verbs.c
+++ b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
@@ -4746,7 +4746,7 @@ static int UVERBS_HANDLER(BNXT_RE_METHOD_ALLOC_PAGE)(struct uverbs_attr_bundle *
return err;
err = uverbs_copy_to(attrs, BNXT_RE_ALLOC_PAGE_DPI,
- &dpi, sizeof(length));
+ &dpi, sizeof(dpi));
if (err)
return err;
--
2.50.1
Powered by blists - more mailing lists