2010-09-27 12:01:27 +02:00
|
|
|
#ifndef __SUNRPC_NETNS_H__
|
|
|
|
#define __SUNRPC_NETNS_H__
|
|
|
|
|
|
|
|
#include <net/net_namespace.h>
|
|
|
|
#include <net/netns/generic.h>
|
|
|
|
|
2010-09-27 12:02:29 +02:00
|
|
|
struct cache_detail;
|
|
|
|
|
2010-09-27 12:01:27 +02:00
|
|
|
struct sunrpc_net {
|
2010-09-27 12:01:58 +02:00
|
|
|
struct proc_dir_entry *proc_net_rpc;
|
2010-09-27 12:02:29 +02:00
|
|
|
struct cache_detail *ip_map_cache;
|
2012-01-19 18:42:29 +01:00
|
|
|
struct cache_detail *unix_gid_cache;
|
2012-01-19 18:42:37 +01:00
|
|
|
struct cache_detail *rsc_cache;
|
|
|
|
struct cache_detail *rsi_cache;
|
2011-12-26 13:39:30 +01:00
|
|
|
|
|
|
|
struct super_block *pipefs_sb;
|
2011-12-26 13:39:39 +01:00
|
|
|
struct mutex pipefs_sb_lock;
|
2012-01-12 19:07:51 +01:00
|
|
|
|
|
|
|
struct list_head all_clients;
|
|
|
|
spinlock_t rpc_client_lock;
|
2012-01-13 09:52:10 +01: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 12:01:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern int sunrpc_net_id;
|
|
|
|
|
2010-09-27 12:02:29 +02:00
|
|
|
int ip_map_cache_create(struct net *);
|
|
|
|
void ip_map_cache_destroy(struct net *);
|
|
|
|
|
2010-09-27 12:01:27 +02:00
|
|
|
#endif
|