From: Jeff Layton Date: Mon, 3 Mar 2025 17:25:59 +0000 (-0500) Subject: nfsd: reorganize struct nfs4_delegation for better packing X-Git-Tag: block-6.15-20250403~9^2~5 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=87055f8aea273712c35706f11a4250e243137dc9;p=linux-block.git nfsd: reorganize struct nfs4_delegation for better packing Move dl_type field above dl_time, which shaves 8 bytes off this struct. Signed-off-by: Jeff Layton Signed-off-by: Chuck Lever --- diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index cd469bde6859..290e29dd43eb 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -197,8 +197,8 @@ struct nfs4_delegation { struct list_head dl_perclnt; struct list_head dl_recall_lru; /* delegation recalled */ struct nfs4_clnt_odstate *dl_clnt_odstate; - u32 dl_type; time64_t dl_time; + u32 dl_type; /* For recall: */ int dl_retries; struct nfsd4_callback dl_recall;