diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-07-31 14:29:07 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-08-04 08:54:05 -0400 |
commit | 988664a0f6bbfc356e6ce55f7a87b8594050012f (patch) | |
tree | c6c6450c8559c13ca9d53c8959ffa4276f3eddf1 /include/linux/sunrpc/auth.h | |
parent | 5d8d9a4d9ff74c55901642b4e2ac5124830ddafe (diff) |
SUNRPC: Store the hashtable size in struct rpc_cred_cache
Cleanup in preparation for allowing the user to determine the maximum hash
table size.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc/auth.h')
-rw-r--r-- | include/linux/sunrpc/auth.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h index 784e78c73ec5..84d64b6926a9 100644 --- a/include/linux/sunrpc/auth.h +++ b/include/linux/sunrpc/auth.h | |||
@@ -65,6 +65,7 @@ struct rpc_cred { | |||
65 | #define RPC_CREDCACHE_NR (1 << RPC_CREDCACHE_HASHBITS) | 65 | #define RPC_CREDCACHE_NR (1 << RPC_CREDCACHE_HASHBITS) |
66 | struct rpc_cred_cache { | 66 | struct rpc_cred_cache { |
67 | struct hlist_head hashtable[RPC_CREDCACHE_NR]; | 67 | struct hlist_head hashtable[RPC_CREDCACHE_NR]; |
68 | unsigned int hashbits; | ||
68 | spinlock_t lock; | 69 | spinlock_t lock; |
69 | }; | 70 | }; |
70 | 71 | ||