netns.h 307 B

12345678910111213141516
  1. #ifndef __NFS_NETNS_H__
  2. #define __NFS_NETNS_H__
  3. #include <net/net_namespace.h>
  4. #include <net/netns/generic.h>
  5. struct nfs_net {
  6. struct cache_detail *nfs_dns_resolve;
  7. struct rpc_pipe *bl_device_pipe;
  8. struct list_head nfs_client_list;
  9. struct list_head nfs_volume_list;
  10. };
  11. extern int nfs_net_id;
  12. #endif