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 | |
parent | 9216106a847a53e6d0fe6d11dfd9175f2ca7fccf (diff) | |
download | linux-933602e368c4452260c9bff4fbb3baba35cf987a.tar.gz linux-933602e368c4452260c9bff4fbb3baba35cf987a.tar.bz2 linux-933602e368c4452260c9bff4fbb3baba35cf987a.zip |
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')
-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 { /* nfs41 sessions slot seqid */ struct nfs4_slot { + unsigned long renewal_time; u32 seq_nr; }; @@ -200,7 +201,6 @@ struct nfs4_sequence_res { struct nfs4_session *sr_session; struct nfs4_slot *sr_slot; /* slot used to send request */ int sr_status; /* sequence operation status */ - unsigned long sr_renewal_time; u32 sr_status_flags; }; |