From: Zhu Yanjun <yanjun.zhu@linux.dev>
To: Colin Ian King <coking@nvidia.com>,
Zhu Yanjun <zyjzyj2000@gmail.com>, Jason Gunthorpe <jgg@ziepe.ca>,
Leon Romanovsky <leon@kernel.org>,
linux-rdma@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] RDMA/rxe: remove redundant assignment to variable page_offset
Date: Tue, 14 Oct 2025 07:41:15 -0700 [thread overview]
Message-ID: <c9f46ef5-b7fe-4592-b458-ecb91652d2ed@linux.dev> (raw)
In-Reply-To: <20251014120343.2528608-1-coking@nvidia.com>
在 2025/10/14 5:03, Colin Ian King 写道:
> The variable page_offset is being assigned a value at the start of
> a loop and being redundantly zero'd at the end of the loop, there
> is no code that reads the zero'd value. The assignment is redundant
> and can be removed.
>
> Signed-off-by: Colin Ian King <coking@nvidia.com>
> ---
> drivers/infiniband/sw/rxe/rxe_mr.c | 1 -
> drivers/infiniband/sw/rxe/rxe_odp.c | 1 -
> 2 files changed, 2 deletions(-)
>
> diff --git a/drivers/infiniband/sw/rxe/rxe_mr.c b/drivers/infiniband/sw/rxe/rxe_mr.c
> index bcb97b3ea58a..b1df05238848 100644
> --- a/drivers/infiniband/sw/rxe/rxe_mr.c
> +++ b/drivers/infiniband/sw/rxe/rxe_mr.c
> @@ -452,7 +452,6 @@ static int rxe_mr_flush_pmem_iova(struct rxe_mr *mr, u64 iova, unsigned int leng
>
> length -= bytes;
> iova += bytes;
> - page_offset = 0;
> }
static int rxe_mr_flush_pmem_iova(struct rxe_mr *mr, u64 iova, unsigned
int length)
{
unsigned int page_offset;
...
while (length > 0) {
index = rxe_mr_iova_to_index(mr, iova);
page = xa_load(&mr->page_list, index);
page_offset = rxe_mr_iova_to_page_offset(mr, iova);
...
page_offset = 0;
}
return 0;
}>
> return 0;
> diff --git a/drivers/infiniband/sw/rxe/rxe_odp.c b/drivers/infiniband/sw/rxe/rxe_odp.c
> index f58e3ec6252f..ae71812bea82 100644
> --- a/drivers/infiniband/sw/rxe/rxe_odp.c
> +++ b/drivers/infiniband/sw/rxe/rxe_odp.c
> @@ -358,7 +358,6 @@ int rxe_odp_flush_pmem_iova(struct rxe_mr *mr, u64 iova,
>
> length -= bytes;
> iova += bytes;
> - page_offset = 0;
> }
int rxe_odp_flush_pmem_iova(struct rxe_mr *mr, u64 iova,
unsigned int length)
{
unsigned int page_offset;
...
while (length > 0) {
index = rxe_odp_iova_to_index(umem_odp, iova);
page_offset = rxe_odp_iova_to_page_offset(umem_odp, iova);
...
page_offset = 0;
}
mutex_unlock(&umem_odp->umem_mutex);
return 0;
}
From the above, in the functions rxe_mr_flush_pmem_iova and
rxe_odp_flush_pmem_iova, within the while loop, the variable page_offset
is assigned a value. At the end of the loop, page_offset is set to 0.
However, this assignment at the end of the loop is actually unnecessary.
Thanks,
Reviewed-by: Zhu Yanjun <yanjun.zhu@linux.dev>
Zhu Yanjun
>
> mutex_unlock(&umem_odp->umem_mutex);
next prev parent reply other threads:[~2025-10-14 14:41 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-14 12:03 [PATCH] RDMA/rxe: remove redundant assignment to variable page_offset Colin Ian King
2025-10-14 14:41 ` Zhu Yanjun [this message]
2025-10-19 12:06 ` Leon Romanovsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c9f46ef5-b7fe-4592-b458-ecb91652d2ed@linux.dev \
--to=yanjun.zhu@linux.dev \
--cc=coking@nvidia.com \
--cc=jgg@ziepe.ca \
--cc=kernel-janitors@vger.kernel.org \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=zyjzyj2000@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox