From: Jeff Layton <jlayton@kernel.org>
To: Christoph Hellwig <hch@lst.de>,
Chuck Lever <chuck.lever@oracle.com>,
Trond Myklebust <trondmy@kernel.org>,
Anna Schumaker <anna@kernel.org>
Cc: NeilBrown <neil@brown.name>,
Olga Kornievskaia <okorniev@redhat.com>,
Dai Ngo <Dai.Ngo@oracle.com>, Tom Talpey <tom@talpey.com>,
linux-nfs@vger.kernel.org
Subject: Re: [PATCH 1/3] sunrpc: simplify xdr_init_encode_pages
Date: Tue, 13 May 2025 07:15:58 -0500 [thread overview]
Message-ID: <a45c4dedc2ad1a6571e4fc27ab53fa47e93adea8.camel@kernel.org> (raw)
In-Reply-To: <20250513085739.894150-2-hch@lst.de>
On Tue, 2025-05-13 at 10:57 +0200, Christoph Hellwig wrote:
> The rqst argument to xdr_init_encode_pages is set to NULL by all callers,
> and pages is always set to buf->pages. Remove the two arguments and
> hardcode the assignments.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
> fs/nfsd/nfs3proc.c | 2 +-
> fs/nfsd/nfsproc.c | 2 +-
> include/linux/sunrpc/xdr.h | 3 +--
> net/sunrpc/xdr.c | 11 ++++-------
> 4 files changed, 7 insertions(+), 11 deletions(-)
>
> diff --git a/fs/nfsd/nfs3proc.c b/fs/nfsd/nfs3proc.c
> index 8902fae8c62d..6c94042b03fa 100644
> --- a/fs/nfsd/nfs3proc.c
> +++ b/fs/nfsd/nfs3proc.c
> @@ -562,7 +562,7 @@ static void nfsd3_init_dirlist_pages(struct svc_rqst *rqstp,
> buf->pages = rqstp->rq_next_page;
> rqstp->rq_next_page += (buf->buflen + PAGE_SIZE - 1) >> PAGE_SHIFT;
>
> - xdr_init_encode_pages(xdr, buf, buf->pages, NULL);
> + xdr_init_encode_pages(xdr, buf);
> }
>
> /*
> diff --git a/fs/nfsd/nfsproc.c b/fs/nfsd/nfsproc.c
> index 7c573d792252..f1c2c096804b 100644
> --- a/fs/nfsd/nfsproc.c
> +++ b/fs/nfsd/nfsproc.c
> @@ -577,7 +577,7 @@ static void nfsd_init_dirlist_pages(struct svc_rqst *rqstp,
> buf->pages = rqstp->rq_next_page;
> rqstp->rq_next_page++;
>
> - xdr_init_encode_pages(xdr, buf, buf->pages, NULL);
> + xdr_init_encode_pages(xdr, buf);
> }
>
> /*
> diff --git a/include/linux/sunrpc/xdr.h b/include/linux/sunrpc/xdr.h
> index a2ab813a9800..29d3a7659727 100644
> --- a/include/linux/sunrpc/xdr.h
> +++ b/include/linux/sunrpc/xdr.h
> @@ -242,8 +242,7 @@ typedef int (*kxdrdproc_t)(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
>
> extern void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf,
> __be32 *p, struct rpc_rqst *rqst);
> -extern void xdr_init_encode_pages(struct xdr_stream *xdr, struct xdr_buf *buf,
> - struct page **pages, struct rpc_rqst *rqst);
> +void xdr_init_encode_pages(struct xdr_stream *xdr, struct xdr_buf *buf);
> extern __be32 *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes);
> extern int xdr_reserve_space_vec(struct xdr_stream *xdr, size_t nbytes);
> extern void __xdr_commit_encode(struct xdr_stream *xdr);
> diff --git a/net/sunrpc/xdr.c b/net/sunrpc/xdr.c
> index 4e003cb516fe..1ab973d3e324 100644
> --- a/net/sunrpc/xdr.c
> +++ b/net/sunrpc/xdr.c
> @@ -992,21 +992,18 @@ EXPORT_SYMBOL_GPL(xdr_init_encode);
> * xdr_init_encode_pages - Initialize an xdr_stream for encoding into pages
> * @xdr: pointer to xdr_stream struct
> * @buf: pointer to XDR buffer into which to encode data
> - * @pages: list of pages to decode into
> - * @rqst: pointer to controlling rpc_rqst, for debugging
> *
> */
> -void xdr_init_encode_pages(struct xdr_stream *xdr, struct xdr_buf *buf,
> - struct page **pages, struct rpc_rqst *rqst)
> +void xdr_init_encode_pages(struct xdr_stream *xdr, struct xdr_buf *buf)
> {
> xdr_reset_scratch_buffer(xdr);
>
> xdr->buf = buf;
> - xdr->page_ptr = pages;
> + xdr->page_ptr = buf->pages;
> xdr->iov = NULL;
> - xdr->p = page_address(*pages);
> + xdr->p = page_address(*xdr->page_ptr);
> xdr->end = (void *)xdr->p + min_t(u32, buf->buflen, PAGE_SIZE);
> - xdr->rqst = rqst;
> + xdr->rqst = NULL;
> }
> EXPORT_SYMBOL_GPL(xdr_init_encode_pages);
>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
next prev parent reply other threads:[~2025-05-13 12:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-13 8:57 small sunrpc cleanups Christoph Hellwig
2025-05-13 8:57 ` [PATCH 1/3] sunrpc: simplify xdr_init_encode_pages Christoph Hellwig
2025-05-13 12:15 ` Jeff Layton [this message]
2025-05-13 8:57 ` [PATCH 2/3] sunrpc: simplify xdr_partial_copy_from_skb Christoph Hellwig
2025-05-13 12:15 ` Jeff Layton
2025-05-14 5:05 ` Christoph Hellwig
2025-05-13 8:57 ` [PATCH 3/3] sunrpc: unexport csum_partial_copy_to_xdr Christoph Hellwig
2025-05-13 12:16 ` Jeff Layton
-- strict thread matches above, loose matches on Subject: below --
2025-05-15 11:48 small sunrpc cleanups v2 Christoph Hellwig
2025-05-15 11:48 ` [PATCH 1/3] sunrpc: simplify xdr_init_encode_pages Christoph Hellwig
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=a45c4dedc2ad1a6571e4fc27ab53fa47e93adea8.camel@kernel.org \
--to=jlayton@kernel.org \
--cc=Dai.Ngo@oracle.com \
--cc=anna@kernel.org \
--cc=chuck.lever@oracle.com \
--cc=hch@lst.de \
--cc=linux-nfs@vger.kernel.org \
--cc=neil@brown.name \
--cc=okorniev@redhat.com \
--cc=tom@talpey.com \
--cc=trondmy@kernel.org \
/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