]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
RDMA/rxe: Fix a couple IS_ERR() vs NULL bugs
authorDan Carpenter <dan.carpenter@linaro.org>
Wed, 25 Jun 2025 15:22:23 +0000 (10:22 -0500)
committerLeon Romanovsky <leon@kernel.org>
Thu, 26 Jun 2025 09:19:56 +0000 (05:19 -0400)
The lookup_mr() function returns NULL on error.  It never returns error
pointers.

Fixes: 9284bc34c773 ("RDMA/rxe: Enable asynchronous prefetch for ODP MRs")
Fixes: 3576b0df1588 ("RDMA/rxe: Implement synchronous prefetch for ODP MRs")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://patch.msgid.link/685c1430.050a0220.18b0ef.da83@mx.google.com
Reviewed-by: Zhu Yanjun <yanjun.zhu@linux.dev>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/sw/rxe/rxe_odp.c

index 01a59d3f8ed477bcd58fd846be7a35678363269f..f58e3ec6252f52d6fa62289997c78b5e18818e10 100644 (file)
@@ -470,10 +470,10 @@ static int rxe_ib_prefetch_sg_list(struct ib_pd *ibpd,
                mr = lookup_mr(pd, IB_ACCESS_LOCAL_WRITE,
                               sg_list[i].lkey, RXE_LOOKUP_LOCAL);
 
-               if (IS_ERR(mr)) {
+               if (!mr) {
                        rxe_dbg_pd(pd, "mr with lkey %x not found\n",
                                   sg_list[i].lkey);
-                       return PTR_ERR(mr);
+                       return -EINVAL;
                }
 
                if (advice == IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_WRITE &&
@@ -535,8 +535,10 @@ static int rxe_ib_advise_mr_prefetch(struct ib_pd *ibpd,
                /* Takes a reference, which will be released in the queued work */
                mr = lookup_mr(pd, IB_ACCESS_LOCAL_WRITE,
                               sg_list[i].lkey, RXE_LOOKUP_LOCAL);
-               if (IS_ERR(mr))
+               if (!mr) {
+                       mr = ERR_PTR(-EINVAL);
                        goto err;
+               }
 
                work->frags[i].io_virt = sg_list[i].addr;
                work->frags[i].length = sg_list[i].length;