diff options
Diffstat (limited to 'net/sunrpc/svcauth_unix.c')
| -rw-r--r-- | net/sunrpc/svcauth_unix.c | 16 | 
1 files changed, 3 insertions, 13 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index a1852e19ed0..c3f9e1ef7f5 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c @@ -6,6 +6,7 @@  #include <linux/sunrpc/svcsock.h>  #include <linux/sunrpc/svcauth.h>  #include <linux/sunrpc/gss_api.h> +#include <linux/sunrpc/addr.h>  #include <linux/err.h>  #include <linux/seq_file.h>  #include <linux/hash.h> @@ -17,7 +18,6 @@  #include <linux/user_namespace.h>  #define RPCDBG_FACILITY	RPCDBG_AUTH -#include <linux/sunrpc/clnt.h>  #include "netns.h" @@ -157,11 +157,6 @@ static void ip_map_request(struct cache_detail *cd,  	(*bpp)[-1] = '\n';  } -static int ip_map_upcall(struct cache_detail *cd, struct cache_head *h) -{ -	return sunrpc_cache_pipe_upcall(cd, h, ip_map_request); -} -  static struct ip_map *__ip_map_lookup(struct cache_detail *cd, char *class, struct in6_addr *addr);  static int __ip_map_update(struct cache_detail *cd, struct ip_map *ipm, struct unix_domain *udom, time_t expiry); @@ -475,11 +470,6 @@ static void unix_gid_request(struct cache_detail *cd,  	(*bpp)[-1] = '\n';  } -static int unix_gid_upcall(struct cache_detail *cd, struct cache_head *h) -{ -	return sunrpc_cache_pipe_upcall(cd, h, unix_gid_request); -} -  static struct unix_gid *unix_gid_lookup(struct cache_detail *cd, kuid_t uid);  static int unix_gid_parse(struct cache_detail *cd, @@ -586,7 +576,7 @@ static struct cache_detail unix_gid_cache_template = {  	.hash_size	= GID_HASHMAX,  	.name		= "auth.unix.gid",  	.cache_put	= unix_gid_put, -	.cache_upcall	= unix_gid_upcall, +	.cache_request	= unix_gid_request,  	.cache_parse	= unix_gid_parse,  	.cache_show	= unix_gid_show,  	.match		= unix_gid_match, @@ -885,7 +875,7 @@ static struct cache_detail ip_map_cache_template = {  	.hash_size	= IP_HASHMAX,  	.name		= "auth.unix.ip",  	.cache_put	= ip_map_put, -	.cache_upcall	= ip_map_upcall, +	.cache_request	= ip_map_request,  	.cache_parse	= ip_map_parse,  	.cache_show	= ip_map_show,  	.match		= ip_map_match,  |