1 #ifndef _NFS_FS_SB 2 #define _NFS_FS_SB 3 4 #include <linux/nfs.h> 5 6 struct nfs_server { 7 struct file *file; 8 struct sockaddr toaddr ; /* Added for change to NFS code to use sendto() 1995-06-02 JSP */ 9 int lock; 10 struct wait_queue *wait; 11 int flags; 12 int rsize; 13 int wsize; 14 int timeo; 15 int retrans; 16 int acregmin; 17 int acregmax; 18 int acdirmin; 19 int acdirmax; 20 char hostname[256]; 21 }; 22 23 /* 24 * nfs super-block data in memory 25 */ 26 27 struct nfs_sb_info { 28 struct nfs_server s_server; 29 struct nfs_fh s_root; 30 }; 31 32 #endif