NFSv4.1: Convert slotid from u8 to u32

It is perfectly legal to negotiate up to 2^32-1 slots in the protocol,
and with 10GigE, we are already seeing that 255 slots is far too limiting.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
Trond Myklebust
2012-02-06 19:38:51 -05:00
parent 17347d03c0
commit 45d43c291e
5 changed files with 29 additions and 30 deletions

View File

@ -181,7 +181,7 @@ struct nfs4_slot {
struct nfs4_sequence_args {
struct nfs4_session *sa_session;
u8 sa_slotid;
u32 sa_slotid;
u8 sa_cache_this;
};