2010-09-27 10:01:27 +00:00
|
|
|
#ifndef __SUNRPC_NETNS_H__
|
|
|
|
#define __SUNRPC_NETNS_H__
|
|
|
|
|
|
|
|
#include <net/net_namespace.h>
|
|
|
|
#include <net/netns/generic.h>
|
|
|
|
|
2010-09-27 10:02:29 +00:00
|
|
|
struct cache_detail;
|
|
|
|
|
2010-09-27 10:01:27 +00:00
|
|
|
struct sunrpc_net {
|
2010-09-27 10:01:58 +00:00
|
|
|
struct proc_dir_entry *proc_net_rpc;
|
2010-09-27 10:02:29 +00:00
|
|
|
struct cache_detail *ip_map_cache;
|
2012-01-19 17:42:29 +00:00
|
|
|
struct cache_detail *unix_gid_cache;
|
2012-01-19 17:42:37 +00:00
|
|
|
struct cache_detail *rsc_cache;
|
|
|
|
struct cache_detail *rsi_cache;
|
2011-12-26 12:39:30 +00:00
|
|
|
|
|
|
|
struct super_block *pipefs_sb;
|
2011-12-26 12:39:39 +00:00
|
|
|
struct mutex pipefs_sb_lock;
|
2012-01-12 18:07:51 +00:00
|
|
|
|
|
|
|
struct list_head all_clients;
|
|
|
|
spinlock_t rpc_client_lock;
|
2012-01-13 08:52:10 +00:00
|
|
|
|
|
|
|
struct rpc_clnt *rpcb_local_clnt;
|
|
|
|
struct rpc_clnt *rpcb_local_clnt4;
|
|
|
|
spinlock_t rpcb_clnt_lock;
|
|
|
|
unsigned int rpcb_users;
|
2013-08-05 20:04:47 +00:00
|
|
|
unsigned int rpcb_is_af_local : 1;
|
2012-05-25 22:09:55 +00:00
|
|
|
|
|
|
|
struct mutex gssp_lock;
|
2012-05-25 22:09:56 +00:00
|
|
|
wait_queue_head_t gssp_wq;
|
2012-05-25 22:09:55 +00:00
|
|
|
struct rpc_clnt *gssp_clnt;
|
2012-05-25 22:09:56 +00:00
|
|
|
int use_gss_proxy;
|
2013-05-15 17:27:32 +00:00
|
|
|
int pipe_version;
|
|
|
|
atomic_t pipe_users;
|
2012-05-25 22:09:56 +00:00
|
|
|
struct proc_dir_entry *use_gssp_proc;
|
2013-05-15 18:28:54 +00:00
|
|
|
|
|
|
|
unsigned int gssd_running;
|
2010-09-27 10:01:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern int sunrpc_net_id;
|
|
|
|
|
2010-09-27 10:02:29 +00:00
|
|
|
int ip_map_cache_create(struct net *);
|
|
|
|
void ip_map_cache_destroy(struct net *);
|
|
|
|
|
2010-09-27 10:01:27 +00:00
|
|
|
#endif
|