URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [linux/] [nfs_fs_sb.h] - Rev 1633
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _NFS_FS_SB #define _NFS_FS_SB #include <linux/rpcsock.h> #include <linux/nfs.h> 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]; }; /* * nfs super-block data in memory */ struct nfs_sb_info { struct nfs_server s_server; struct nfs_fh s_root; }; #endif
Go to most recent revision | Compare with Previous | Blame | View Log