patch-2.2.18 linux/include/linux/nfs_fs_sb.h
Next file: linux/include/linux/nfs_mount.h
Previous file: linux/include/linux/nfs_fs_i.h
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
Fri Sep 15 22:10:44 2000
- Orig file:
v2.2.17/include/linux/nfs_fs_sb.h
- Orig date:
Fri Apr 21 23:10:16 2000
diff -u --new-file --recursive --exclude-from /usr/src/exclude v2.2.17/include/linux/nfs_fs_sb.h linux/include/linux/nfs_fs_sb.h
@@ -1,7 +1,6 @@
#ifndef _NFS_FS_SB
#define _NFS_FS_SB
-#include <linux/nfs.h>
#include <linux/in.h>
/*
@@ -9,23 +8,32 @@
*/
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 rpages; /* read size (in pages) */
+ unsigned int wsize; /* write size */
+ unsigned int wpages; /* write size (in pages) */
+ 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_dircache * dircache; /* readdir cache info */
+ struct nfs_reqlist * rw_requests; /* async read/write requests */
};
+
/*
* nfs super-block data in memory
*/
struct nfs_sb_info {
- struct nfs_server s_server;
- struct nfs_fh s_root;
+ struct nfs_server s_server; /* NFS server info */
+ unsigned int s_fhsize; /* File handle size */
+ struct nfs_fh * s_root; /* The root file handle */
};
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)