Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / sunrpc / netns.h
CommitLineData
2f72c9b7
PE
1#ifndef __SUNRPC_NETNS_H__
2#define __SUNRPC_NETNS_H__
3
4#include <net/net_namespace.h>
5#include <net/netns/generic.h>
6
90d51b02
PE
7struct cache_detail;
8
2f72c9b7 9struct sunrpc_net {
4f42d0d5 10 struct proc_dir_entry *proc_net_rpc;
90d51b02 11 struct cache_detail *ip_map_cache;
73393232 12 struct cache_detail *unix_gid_cache;
a1db410d
SK
13 struct cache_detail *rsc_cache;
14 struct cache_detail *rsi_cache;
90c4e829
SK
15
16 struct super_block *pipefs_sb;
c21a588f 17 struct mutex pipefs_sb_lock;
70abc49b
SK
18
19 struct list_head all_clients;
20 spinlock_t rpc_client_lock;
dff02d49
SK
21
22 struct rpc_clnt *rpcb_local_clnt;
23 struct rpc_clnt *rpcb_local_clnt4;
24 spinlock_t rpcb_clnt_lock;
25 unsigned int rpcb_users;
1d658336
SS
26
27 struct mutex gssp_lock;
030d794b 28 wait_queue_head_t gssp_wq;
1d658336 29 struct rpc_clnt *gssp_clnt;
030d794b 30 int use_gss_proxy;
2aed8b47
TM
31 int pipe_version;
32 atomic_t pipe_users;
030d794b 33 struct proc_dir_entry *use_gssp_proc;
abfdbd53
TM
34
35 unsigned int gssd_running;
2f72c9b7
PE
36};
37
38extern int sunrpc_net_id;
39
90d51b02
PE
40int ip_map_cache_create(struct net *);
41void ip_map_cache_destroy(struct net *);
42
2f72c9b7 43#endif