diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-03-12 14:40:14 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-03-14 13:42:29 -0400 |
commit | 25337fdc85951dfeac944f16cb565904c619077a (patch) | |
tree | 8c0f37eca64775825ea84ade40460862a2ba377e /include | |
parent | 9446389ef612096704fdf18fa79bab423d4110f0 (diff) |
SUNRPC: Fix a bug in rpcauth_lookup_credcache()
The hash bucket is for some reason always being set to zero.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sunrpc/auth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h index 7a69ca3bebaf..84d5f3a05b16 100644 --- a/include/linux/sunrpc/auth.h +++ b/include/linux/sunrpc/auth.h | |||
@@ -59,8 +59,8 @@ struct rpc_cred { | |||
59 | /* | 59 | /* |
60 | * Client authentication handle | 60 | * Client authentication handle |
61 | */ | 61 | */ |
62 | #define RPC_CREDCACHE_NR 8 | 62 | #define RPC_CREDCACHE_HASHBITS 4 |
63 | #define RPC_CREDCACHE_MASK (RPC_CREDCACHE_NR - 1) | 63 | #define RPC_CREDCACHE_NR (1 << RPC_CREDCACHE_HASHBITS) |
64 | struct rpc_cred_cache { | 64 | struct rpc_cred_cache { |
65 | struct hlist_head hashtable[RPC_CREDCACHE_NR]; | 65 | struct hlist_head hashtable[RPC_CREDCACHE_NR]; |
66 | spinlock_t lock; | 66 | spinlock_t lock; |