From 8e37e9f4798af7aceac629635492aaa37a2abdad Mon Sep 17 00:00:00 2001 From: wollman Date: Thu, 16 Mar 1995 20:23:48 +0000 Subject: 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. --- sys/fs/portalfs/portal_vfsops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/fs/portalfs/portal_vfsops.c') diff --git a/sys/fs/portalfs/portal_vfsops.c b/sys/fs/portalfs/portal_vfsops.c index cad30bd..130f991 100644 --- a/sys/fs/portalfs/portal_vfsops.c +++ b/sys/fs/portalfs/portal_vfsops.c @@ -35,7 +35,7 @@ * * @(#)portal_vfsops.c 8.6 (Berkeley) 1/21/94 * - * $Id: portal_vfsops.c,v 1.5 1994/10/10 07:55:35 phk Exp $ + * $Id: portal_vfsops.c,v 1.6 1995/03/16 18:13:38 bde Exp $ */ /* @@ -315,4 +315,4 @@ struct vfsops portal_vfsops = { portal_init, }; -VFS_SET(portal_vfsops, portal, MOUNT_PORTAL, 0); +VFS_SET(portal_vfsops, portal, MOUNT_PORTAL, VFCF_SYNTHETIC); -- cgit v1.1