From 19c9bba94152148523ba0f7ef7cffe3d45656b11 Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Tue, 29 Apr 1997 21:13:14 +0000 Subject: Import of Linux/MIPS 2.1.36 --- include/linux/nfs_fs_sb.h | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) (limited to 'include/linux/nfs_fs_sb.h') diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index bfdba35b4..c1bedfbdf 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h @@ -1,34 +1,32 @@ #ifndef _NFS_FS_SB #define _NFS_FS_SB -#include #include +#include +/* + * NFS client parameters + * Part of this is duplicated in rpc_clnt and is therefore obsolete. + */ struct nfs_server { - struct file *file; - struct rpc_sock *rsock; - struct sockaddr toaddr ; /* Added for change to NFS code to use sendto() 1995-06-02 JSP */ - int lock; - struct wait_queue *wait; - int flags; - int rsize; - int wsize; - int timeo; - int retrans; - int acregmin; - int acregmax; - int acdirmin; - int acdirmax; - char hostname[256]; + struct rpc_clnt * client; /* RPC client handle */ + int flags; /* various flags */ + int rsize; /* read size */ + int wsize; /* write size */ + unsigned int bsize; /* server block size */ + unsigned int acregmin; /* attr cache timeouts */ + unsigned int acregmax; + unsigned int acdirmin; + unsigned int acdirmax; + char hostname[256]; /* remote hostname */ }; /* * 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; + struct nfs_fh s_root; }; #endif -- cgit v1.2.3