root/include/linux/nfs_fs_sb.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _NFS_FS_SB
   2 #define _NFS_FS_SB
   3 
   4 #include <linux/rpcsock.h>
   5 #include <linux/nfs.h>
   6 
   7 struct nfs_server {
   8         struct file *file;
   9         struct rpc_sock *rsock;
  10         struct sockaddr toaddr ;  /* Added for change to NFS code to use sendto()  1995-06-02  JSP */
  11         int lock;
  12         struct wait_queue *wait;
  13         int flags;
  14         int rsize;
  15         int wsize;
  16         int timeo;
  17         int retrans;
  18         int acregmin;
  19         int acregmax;
  20         int acdirmin;
  21         int acdirmax;
  22         char hostname[256];
  23 };
  24 
  25 /*
  26  * nfs super-block data in memory
  27  */
  28 
  29 struct nfs_sb_info {
  30         struct nfs_server s_server;
  31         struct nfs_fh s_root;
  32 };
  33 
  34 #endif

/* [previous][next][first][last][top][bottom][index][help] */