Linux NFS development
 help / color / mirror / Atom feed
* [PATCH v1 1/8] NFSD: Optimize nfsd4_encode_operation()
@ 2022-07-22 20:08 Chuck Lever
  2022-07-22 20:08 ` [PATCH v1 2/8] NFSD: Optimize nfsd4_encode_fattr() Chuck Lever
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Chuck Lever @ 2022-07-22 20:08 UTC (permalink / raw)
  To: linux-nfs

write_bytes_to_xdr_buf() is a generic way to place a variable-length
data item in an already-reserved spot in the encoding buffer.
However, it is costly, and here, it is unnecessary because the
data item is fixed in size, the buffer destination address is
always word-aligned, and the destination location is already in
@p.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 fs/nfsd/nfs4xdr.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index 2acea7792bb2..b52ea7d8313a 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -5373,8 +5373,7 @@ nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
 						so->so_replay.rp_buf, len);
 	}
 status:
-	/* Note that op->status is already in network byte order: */
-	write_bytes_to_xdr_buf(xdr->buf, post_err_offset - 4, &op->status, 4);
+	*p = op->status;
 }
 
 /* 



^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-07-25 20:18 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-22 20:08 [PATCH v1 1/8] NFSD: Optimize nfsd4_encode_operation() Chuck Lever
2022-07-22 20:08 ` [PATCH v1 2/8] NFSD: Optimize nfsd4_encode_fattr() Chuck Lever
2022-07-22 20:08 ` [PATCH v1 3/8] NFSD: Clean up SPLICE_OK in nfsd4_encode_read() Chuck Lever
2022-07-22 20:08 ` [PATCH v1 4/8] NFSD: Add an nfsd4_read::rd_eof field Chuck Lever
2022-07-22 20:09 ` [PATCH v1 5/8] NFSD: Optimize nfsd4_encode_readv() Chuck Lever
2022-07-22 20:09 ` [PATCH v1 6/8] NFSD: Simplify starting_len Chuck Lever
2022-07-22 20:09 ` [PATCH v1 7/8] NFSD: Use xdr_pad_size() Chuck Lever
2022-07-22 20:09 ` [PATCH v1 8/8] NFSD: Clean up nfsd_encode_readlink() Chuck Lever
2022-07-22 20:12 ` [PATCH v1 1/8] NFSD: Optimize nfsd4_encode_operation() Chuck Lever III
2022-07-25 15:36   ` Jeff Layton
2022-07-25 20:18     ` Chuck Lever III

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox