diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-02 01:57:30 -0800 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-13 06:15:23 -0800 |
commit | 9e469e30d712b54cd3ff4a82d4dd5510522b8f16 (patch) | |
tree | e3bf5401b2489973a0b7f10e1f555f24e07f0341 /net/sunrpc/auth.c | |
parent | 683428fae8c73d7d7da0fa2e0b6beb4d8df4e808 (diff) | |
download | linux-3.10-9e469e30d712b54cd3ff4a82d4dd5510522b8f16.tar.gz linux-3.10-9e469e30d712b54cd3ff4a82d4dd5510522b8f16.tar.bz2 linux-3.10-9e469e30d712b54cd3ff4a82d4dd5510522b8f16.zip |
sunrpc: Hash uids by first computing their value in the initial userns
In svcauth_unix introduce a helper unix_gid_hash as otherwise the
expresion to generate the hash value is just too long.
Cc: "J. Bruce Fields" <bfields@fieldses.org>
Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'net/sunrpc/auth.c')
-rw-r--r-- | net/sunrpc/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth.c b/net/sunrpc/auth.c index 4cd0ecfe983..392adc41e2e 100644 --- a/net/sunrpc/auth.c +++ b/net/sunrpc/auth.c @@ -412,7 +412,7 @@ rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred, *entry, *new; unsigned int nr; - nr = hash_long(acred->uid, cache->hashbits); + nr = hash_long(from_kuid(&init_user_ns, acred->uid), cache->hashbits); rcu_read_lock(); hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) { |