diff options
Diffstat (limited to 'net/sunrpc/svcauth_unix.c')
-rw-r--r-- | net/sunrpc/svcauth_unix.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index 521d8f7dc833..9c3b9f014468 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c | |||
@@ -346,17 +346,12 @@ static inline int ip_map_update(struct net *net, struct ip_map *ipm, | |||
346 | return __ip_map_update(sn->ip_map_cache, ipm, udom, expiry); | 346 | return __ip_map_update(sn->ip_map_cache, ipm, udom, expiry); |
347 | } | 347 | } |
348 | 348 | ||
349 | 349 | void svcauth_unix_purge(struct net *net) | |
350 | void svcauth_unix_purge(void) | ||
351 | { | 350 | { |
352 | struct net *net; | 351 | struct sunrpc_net *sn; |
353 | |||
354 | for_each_net(net) { | ||
355 | struct sunrpc_net *sn; | ||
356 | 352 | ||
357 | sn = net_generic(net, sunrpc_net_id); | 353 | sn = net_generic(net, sunrpc_net_id); |
358 | cache_purge(sn->ip_map_cache); | 354 | cache_purge(sn->ip_map_cache); |
359 | } | ||
360 | } | 355 | } |
361 | EXPORT_SYMBOL_GPL(svcauth_unix_purge); | 356 | EXPORT_SYMBOL_GPL(svcauth_unix_purge); |
362 | 357 | ||