aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/fdescfs/fdesc_vfsops.c
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1995-03-16 20:23:48 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1995-03-16 20:23:48 +0000
commitbbf3a56610557428e5e7eaccee837a69043bfff4 (patch)
tree339efa4ef833597457007ee0e04e1f79d39a16c5 /sys/fs/fdescfs/fdesc_vfsops.c
parentf1b2407b0bf95d5b3a8754490f2ac2499319b52a (diff)
downloadsrc-bbf3a56610557428e5e7eaccee837a69043bfff4.tar.gz
src-bbf3a56610557428e5e7eaccee837a69043bfff4.zip
Add four more filesystem flags:
VFCF_NETWORK (this FS goes over the net) VFCF_READONLY (read-write mounts do not make any sense) VFCF_SYNTHETIC (data in this FS is not real) VFCF_LOOPBACK (this FS aliases something else) cd9660 is readonly; nullfs, umapfs, and union are loopback; NFS is netowkr; procfs, kernfs, and fdesc are synthetic.
Notes
Notes: svn path=/head/; revision=7095
Diffstat (limited to 'sys/fs/fdescfs/fdesc_vfsops.c')
-rw-r--r--sys/fs/fdescfs/fdesc_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/fdescfs/fdesc_vfsops.c b/sys/fs/fdescfs/fdesc_vfsops.c
index e44c0454b2f9..f44158e04e69 100644
--- a/sys/fs/fdescfs/fdesc_vfsops.c
+++ b/sys/fs/fdescfs/fdesc_vfsops.c
@@ -35,7 +35,7 @@
*
* @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94
*
- * $Id: fdesc_vfsops.c,v 1.2 1994/09/21 03:46:55 wollman Exp $
+ * $Id: fdesc_vfsops.c,v 1.3 1995/03/16 18:13:05 bde Exp $
*/
/*
@@ -287,4 +287,4 @@ struct vfsops fdesc_vfsops = {
fdesc_init,
};
-VFS_SET(fdesc_vfsops, fdesc, MOUNT_FDESC, 0);
+VFS_SET(fdesc_vfsops, fdesc, MOUNT_FDESC, VFCF_SYNTHETIC);