diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-02-06 19:38:51 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-02-15 00:19:43 -0500 |
commit | 45d43c291e9a922d7b432b0dbcb1d8fb70d8410f (patch) | |
tree | b7aeca1a66177b2b03c2bb96996d3d40cbbf7a9a /fs/nfs/callback.h | |
parent | 17347d03c008e2f504c33bb4905cdad0abc01319 (diff) |
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>
Diffstat (limited to 'fs/nfs/callback.h')
-rw-r--r-- | fs/nfs/callback.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/callback.h b/fs/nfs/callback.h index 197e0d3754c2..a5527c90a5aa 100644 --- a/fs/nfs/callback.h +++ b/fs/nfs/callback.h | |||
@@ -38,7 +38,7 @@ enum nfs4_callback_opnum { | |||
38 | struct cb_process_state { | 38 | struct cb_process_state { |
39 | __be32 drc_status; | 39 | __be32 drc_status; |
40 | struct nfs_client *clp; | 40 | struct nfs_client *clp; |
41 | int slotid; | 41 | u32 slotid; |
42 | struct net *net; | 42 | struct net *net; |
43 | }; | 43 | }; |
44 | 44 | ||