aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsclient/nfsnode.h
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-09-22 19:38:41 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-09-22 19:38:41 +0000
commitc9b1d6048dd2438cf4a1676ab55dcf0b9735ef55 (patch)
tree8a04304254d084244650740c5bace4d140e11a7e /sys/nfsclient/nfsnode.h
parentaf2c9cfd5bce441d3f682348f415ee8965ea2f02 (diff)
downloadsrc-c9b1d6048dd2438cf4a1676ab55dcf0b9735ef55.tar.gz
src-c9b1d6048dd2438cf4a1676ab55dcf0b9735ef55.zip
More loadable VFS changes:
- Make a number of filesystems work again when they are statically compiled (blush) - FIFOs are no longer optional; ``options FIFO'' removed from distributed config files.
Notes
Notes: svn path=/head/; revision=2979
Diffstat (limited to 'sys/nfsclient/nfsnode.h')
-rw-r--r--sys/nfsclient/nfsnode.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/nfsclient/nfsnode.h b/sys/nfsclient/nfsnode.h
index 0eb12b382d14..f0b586a42f23 100644
--- a/sys/nfsclient/nfsnode.h
+++ b/sys/nfsclient/nfsnode.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nfsnode.h 8.4 (Berkeley) 2/13/94
- * $Id: nfsnode.h,v 1.4 1994/08/09 15:10:14 davidg Exp $
+ * $Id: nfsnode.h,v 1.5 1994/08/21 06:50:11 paul Exp $
*/
#ifndef _NFS_NFSNODE_H_
@@ -119,9 +119,7 @@ int nfs_mknod __P((struct vop_mknod_args *));
int nfs_open __P((struct vop_open_args *));
int nfs_close __P((struct vop_close_args *));
int nfsspec_close __P((struct vop_close_args *));
-#ifdef FIFO
int nfsfifo_close __P((struct vop_close_args *));
-#endif
int nfs_access __P((struct vop_access_args *));
int nfsspec_access __P((struct vop_access_args *));
int nfs_getattr __P((struct vop_getattr_args *));
@@ -130,10 +128,8 @@ int nfs_read __P((struct vop_read_args *));
int nfs_write __P((struct vop_write_args *));
int nfsspec_read __P((struct vop_read_args *));
int nfsspec_write __P((struct vop_write_args *));
-#ifdef FIFO
int nfsfifo_read __P((struct vop_read_args *));
int nfsfifo_write __P((struct vop_write_args *));
-#endif
#define nfs_ioctl ((int (*) __P((struct vop_ioctl_args *)))enoioctl)
#define nfs_select ((int (*) __P((struct vop_select_args *)))seltrue)
int nfs_mmap __P((struct vop_mmap_args *));