Import 2.1.42pre1
[davej-history.git] / include / linux / nfs_fs_sb.h
blobc1bedfbdfcc0fd5a9b772e85d9637ed88b149f71
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
9 * Part of this is duplicated in rpc_clnt and is therefore obsolete.
11 struct nfs_server {
12 struct rpc_clnt * client; /* RPC client handle */
13 int flags; /* various flags */
14 int rsize; /* read size */
15 int wsize; /* write size */
16 unsigned int bsize; /* server block size */
17 unsigned int acregmin; /* attr cache timeouts */
18 unsigned int acregmax;
19 unsigned int acdirmin;
20 unsigned int acdirmax;
21 char hostname[256]; /* remote hostname */
25 * nfs super-block data in memory
27 struct nfs_sb_info {
28 struct nfs_server s_server;
29 struct nfs_fh s_root;
32 #endif