diff options
author | NeilBrown <neilb@suse.de> | 2006-03-27 04:15:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:41 -0500 |
commit | 7d317f2c9f1e9dcf4f632fa98f91d1d4a36c4cae (patch) | |
tree | 7794c88facd3943a7496f7d41c2b7eb24a5d0be0 /net/sunrpc | |
parent | eab7e2e647c348b418e8715ecaca0177e1b473c7 (diff) |
[PATCH] knfsd: Get rid of 'inplace' sunrpc caches
These were an unnecessary wart. Also only have one 'DefineSimpleCache..'
instead of two.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/auth_gss/svcauth_gss.c | 4 | ||||
-rw-r--r-- | net/sunrpc/svcauth_unix.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c index 6b073c2e6930..aadb4e8d6aa7 100644 --- a/net/sunrpc/auth_gss/svcauth_gss.c +++ b/net/sunrpc/auth_gss/svcauth_gss.c | |||
@@ -259,7 +259,7 @@ static struct cache_detail rsi_cache = { | |||
259 | .cache_parse = rsi_parse, | 259 | .cache_parse = rsi_parse, |
260 | }; | 260 | }; |
261 | 261 | ||
262 | static DefineSimpleCacheLookup(rsi, 0) | 262 | static DefineSimpleCacheLookup(rsi, rsi) |
263 | 263 | ||
264 | /* | 264 | /* |
265 | * The rpcsec_context cache is used to store a context that is | 265 | * The rpcsec_context cache is used to store a context that is |
@@ -446,7 +446,7 @@ static struct cache_detail rsc_cache = { | |||
446 | .cache_parse = rsc_parse, | 446 | .cache_parse = rsc_parse, |
447 | }; | 447 | }; |
448 | 448 | ||
449 | static DefineSimpleCacheLookup(rsc, 0); | 449 | static DefineSimpleCacheLookup(rsc, rsc); |
450 | 450 | ||
451 | static struct rsc * | 451 | static struct rsc * |
452 | gss_svc_searchbyctx(struct xdr_netobj *handle) | 452 | gss_svc_searchbyctx(struct xdr_netobj *handle) |
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index 17e8b2a3130c..7ddf068b5b25 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c | |||
@@ -258,7 +258,7 @@ struct cache_detail ip_map_cache = { | |||
258 | .cache_show = ip_map_show, | 258 | .cache_show = ip_map_show, |
259 | }; | 259 | }; |
260 | 260 | ||
261 | static DefineSimpleCacheLookup(ip_map, 0) | 261 | static DefineSimpleCacheLookup(ip_map, ip_map) |
262 | 262 | ||
263 | 263 | ||
264 | int auth_unix_add_addr(struct in_addr addr, struct auth_domain *dom) | 264 | int auth_unix_add_addr(struct in_addr addr, struct auth_domain *dom) |