diff options
Diffstat (limited to 'include/linux/nfs_fs_sb.h')
-rw-r--r-- | include/linux/nfs_fs_sb.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index 418faaa33..da76c1d62 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h @@ -1,22 +1,22 @@ #ifndef _NFS_FS_SB #define _NFS_FS_SB -#include <linux/nfs.h> -#include <linux/in.h> - /* * NFS client parameters stored in the superblock. */ struct nfs_server { struct rpc_clnt * client; /* RPC client handle */ + struct nfs_rpc_ops * rpc_ops; /* NFS protocol vector */ int flags; /* various flags */ - int rsize; /* read size */ - int wsize; /* write size */ + unsigned int rsize; /* read size */ + unsigned int wsize; /* write size */ + unsigned int dtsize; /* readdir size */ unsigned int bsize; /* server block size */ unsigned int acregmin; /* attr cache timeouts */ unsigned int acregmax; unsigned int acdirmin; unsigned int acdirmax; + unsigned int namelen; char * hostname; /* remote hostname */ struct nfs_reqlist * rw_requests; /* async read/write requests */ }; @@ -26,7 +26,6 @@ struct nfs_server { */ struct nfs_sb_info { struct nfs_server s_server; - struct nfs_fh s_root; }; #endif |