diff options
author | wollman <wollman@FreeBSD.org> | 1995-03-16 20:23:48 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-03-16 20:23:48 +0000 |
commit | 8e37e9f4798af7aceac629635492aaa37a2abdad (patch) | |
tree | 339efa4ef833597457007ee0e04e1f79d39a16c5 /sys/fs/procfs/procfs_vfsops.c | |
parent | 0c139f325ad73535b37a9f7140d3ae8b2a6370c4 (diff) | |
download | FreeBSD-src-8e37e9f4798af7aceac629635492aaa37a2abdad.zip FreeBSD-src-8e37e9f4798af7aceac629635492aaa37a2abdad.tar.gz |
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.
Diffstat (limited to 'sys/fs/procfs/procfs_vfsops.c')
-rw-r--r-- | sys/fs/procfs/procfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c index 4379d0a..b933a18 100644 --- a/sys/fs/procfs/procfs_vfsops.c +++ b/sys/fs/procfs/procfs_vfsops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vfsops.c 8.4 (Berkeley) 1/21/94 * - * $Id: procfs_vfsops.c,v 1.7 1995/02/20 15:53:33 davidg Exp $ + * $Id: procfs_vfsops.c,v 1.8 1995/03/16 18:13:47 bde Exp $ */ /* @@ -253,4 +253,4 @@ struct vfsops procfs_vfsops = { procfs_init, }; -VFS_SET(procfs_vfsops, procfs, MOUNT_PROCFS, 0); +VFS_SET(procfs_vfsops, procfs, MOUNT_PROCFS, VFCF_SYNTHETIC); |