Pavel Emelyanov | 2f72c9b | 2010-09-27 14:01:27 +0400 | [diff] [blame] | 1 | #ifndef __SUNRPC_NETNS_H__ |
| 2 | #define __SUNRPC_NETNS_H__ |
| 3 | |
| 4 | #include <net/net_namespace.h> |
| 5 | #include <net/netns/generic.h> |
| 6 | |
Pavel Emelyanov | 90d51b0 | 2010-09-27 14:02:29 +0400 | [diff] [blame] | 7 | struct cache_detail; |
| 8 | |
Pavel Emelyanov | 2f72c9b | 2010-09-27 14:01:27 +0400 | [diff] [blame] | 9 | struct sunrpc_net { |
Pavel Emelyanov | 4f42d0d | 2010-09-27 14:01:58 +0400 | [diff] [blame] | 10 | struct proc_dir_entry *proc_net_rpc; |
Pavel Emelyanov | 90d51b0 | 2010-09-27 14:02:29 +0400 | [diff] [blame] | 11 | struct cache_detail *ip_map_cache; |
Pavel Emelyanov | 2f72c9b | 2010-09-27 14:01:27 +0400 | [diff] [blame] | 12 | }; |
| 13 | |
| 14 | extern int sunrpc_net_id; |
| 15 | |
Pavel Emelyanov | 90d51b0 | 2010-09-27 14:02:29 +0400 | [diff] [blame] | 16 | int ip_map_cache_create(struct net *); |
| 17 | void ip_map_cache_destroy(struct net *); |
| 18 | |
Pavel Emelyanov | 2f72c9b | 2010-09-27 14:01:27 +0400 | [diff] [blame] | 19 | #endif |