From owner-cvs-sys Thu Mar 16 12:23:58 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA25422 for cvs-sys-outgoing; Thu, 16 Mar 1995 12:23:58 -0800 Received: (from wollman@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id MAA25409; Thu, 16 Mar 1995 12:23:49 -0800 Date: Thu, 16 Mar 1995 12:23:49 -0800 From: "Garrett A. Wollman" Message-Id: <199503162023.MAA25409@freefall.cdrom.com> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys mount.h Sender: cvs-sys-owner@freebsd.org Precedence: bulk wollman 95/03/16 12:23:48 Modified: sys/isofs/cd9660 cd9660_vfsops.c sys/miscfs/fdesc fdesc_vfsops.c sys/miscfs/kernfs kernfs_vfsops.c sys/miscfs/nullfs null_vfsops.c sys/miscfs/portal portal_vfsops.c sys/miscfs/procfs procfs_vfsops.c sys/miscfs/umapfs umap_vfsops.c sys/miscfs/union union_vfsops.c sys/nfs nfs_vfsops.c sys/sys mount.h Log: 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.