pre-2.3.4..
[davej-history.git] / include / linux / nfs_fs_sb.h
blob343455ec93e26dae0e1b73c2021c3fadb4d49179
1 #ifndef _NFS_FS_SB
2 #define _NFS_FS_SB
4 #include <linux/nfs.h>
5 #include <linux/in.h>
7 /*
8 * NFS client parameters stored in the superblock.
9 */
10 struct nfs_server {
11 struct rpc_clnt * client; /* RPC client handle */
12 int flags; /* various flags */
13 int rsize; /* read size */
14 int wsize; /* write size */
15 unsigned int bsize; /* server block size */
16 unsigned int acregmin; /* attr cache timeouts */
17 unsigned int acregmax;
18 unsigned int acdirmin;
19 unsigned int acdirmax;
20 char * hostname; /* remote hostname */
24 * nfs super-block data in memory
26 struct nfs_sb_info {
27 struct nfs_server s_server;
28 struct nfs_fh s_root;
31 #endif