diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-11-16 12:12:38 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-11-21 09:29:53 -0500 |
commit | 933602e368c4452260c9bff4fbb3baba35cf987a (patch) | |
tree | 44839731364e55c7d6b4c8ae6f4906386046c8c6 /include/linux/nfs_xdr.h | |
parent | 9216106a847a53e6d0fe6d11dfd9175f2ca7fccf (diff) |
NFSv4.1: Shrink struct nfs4_sequence_res by moving sr_renewal_time
Store the renewal time inside the session slot instead.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/nfs_xdr.h')
-rw-r--r-- | include/linux/nfs_xdr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index a73ea89789d1..9cb1c63a70c2 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h | |||
@@ -187,6 +187,7 @@ struct nfs4_channel_attrs { | |||
187 | 187 | ||
188 | /* nfs41 sessions slot seqid */ | 188 | /* nfs41 sessions slot seqid */ |
189 | struct nfs4_slot { | 189 | struct nfs4_slot { |
190 | unsigned long renewal_time; | ||
190 | u32 seq_nr; | 191 | u32 seq_nr; |
191 | }; | 192 | }; |
192 | 193 | ||
@@ -200,7 +201,6 @@ struct nfs4_sequence_res { | |||
200 | struct nfs4_session *sr_session; | 201 | struct nfs4_session *sr_session; |
201 | struct nfs4_slot *sr_slot; /* slot used to send request */ | 202 | struct nfs4_slot *sr_slot; /* slot used to send request */ |
202 | int sr_status; /* sequence operation status */ | 203 | int sr_status; /* sequence operation status */ |
203 | unsigned long sr_renewal_time; | ||
204 | u32 sr_status_flags; | 204 | u32 sr_status_flags; |
205 | }; | 205 | }; |
206 | 206 | ||