diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2025-05-07 03:15:08 +0300 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2025-05-15 23:16:25 +0300 |
commit | 1259560b988c959abf9b84da0b9e56c2863b6837 (patch) | |
tree | 22edda903af13bfa9662a184ee99398b6ece51e9 | |
parent | b406c6b78198f123e08061c45d56803459785975 (diff) | |
download | linux-1259560b988c959abf9b84da0b9e56c2863b6837.tar.xz |
SUNRPC: Remove svc_rqst :: rq_vec
Clean up: This array is no longer used.
On a system with 8-byte pointers and 4KB pages, pahole reports that
the rq_vec[] array accounts for 4144 bytes.
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
-rw-r--r-- | include/linux/sunrpc/svc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 510ee1927977..6540af4b9bdb 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h @@ -212,7 +212,6 @@ struct svc_rqst { struct page * *rq_page_end; /* one past the last page */ struct folio_batch rq_fbatch; - struct kvec rq_vec[RPCSVC_MAXPAGES]; /* generally useful.. */ struct bio_vec *rq_bvec; __be32 rq_xid; /* transmission id */ |