1 #ifndef _NFS_FS_SB
2 #define _NFS_FS_SB
3
4 #include <linux/nfs.h>
5
6 struct nfs_server {
7 struct file *file;
8 int lock;
9 struct wait_queue *wait;
10 int flags;
11 int rsize;
12 int wsize;
13 int timeo;
14 int retrans;
15 int acregmin;
16 int acregmax;
17 int acdirmin;
18 int acdirmax;
19 char hostname[256];
20 };
21
22 /*
23 * nfs super-block data in memory
24 */
25
26 struct nfs_sb_info {
27 struct nfs_server s_server;
28 struct nfs_fh s_root;
29 };
30
31 #endif