2010-09-27 18:01:27 +08:00
|
|
|
#ifndef __SUNRPC_NETNS_H__
|
|
|
|
#define __SUNRPC_NETNS_H__
|
|
|
|
|
|
|
|
#include <net/net_namespace.h>
|
|
|
|
#include <net/netns/generic.h>
|
|
|
|
|
2010-09-27 18:02:29 +08:00
|
|
|
struct cache_detail;
|
|
|
|
|
2010-09-27 18:01:27 +08:00
|
|
|
struct sunrpc_net {
|
2010-09-27 18:01:58 +08:00
|
|
|
struct proc_dir_entry *proc_net_rpc;
|
2010-09-27 18:02:29 +08:00
|
|
|
struct cache_detail *ip_map_cache;
|
2011-12-26 20:39:30 +08:00
|
|
|
|
|
|
|
struct super_block *pipefs_sb;
|
2011-12-26 20:39:39 +08:00
|
|
|
struct mutex pipefs_sb_lock;
|
2012-01-13 02:07:51 +08:00
|
|
|
|
|
|
|
struct list_head all_clients;
|
|
|
|
spinlock_t rpc_client_lock;
|
2012-01-13 16:52:10 +08:00
|
|
|
|
|
|
|
struct rpc_clnt *rpcb_local_clnt;
|
|
|
|
struct rpc_clnt *rpcb_local_clnt4;
|
|
|
|
spinlock_t rpcb_clnt_lock;
|
|
|
|
unsigned int rpcb_users;
|
2010-09-27 18:01:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern int sunrpc_net_id;
|
|
|
|
|
2010-09-27 18:02:29 +08:00
|
|
|
int ip_map_cache_create(struct net *);
|
|
|
|
void ip_map_cache_destroy(struct net *);
|
|
|
|
|
2010-09-27 18:01:27 +08:00
|
|
|
#endif
|