diff options
author | hmp <hmp@FreeBSD.org> | 2003-05-16 15:21:20 +0000 |
---|---|---|
committer | hmp <hmp@FreeBSD.org> | 2003-05-16 15:21:20 +0000 |
commit | 934c5dcced46d33099bad4c6d0813423fd7147ab (patch) | |
tree | a197b3b28f8804749371bae1f38bf74b9c81e1df | |
parent | 9e8ba6de4ebc9d928b3dc86e6f37554c3f562c57 (diff) | |
download | FreeBSD-src-934c5dcced46d33099bad4c6d0813423fd7147ab.zip FreeBSD-src-934c5dcced46d33099bad4c6d0813423fd7147ab.tar.gz |
Document the VFCF_* flags.
Approved by: des (mentor), re (scottl)
-rw-r--r-- | share/man/man9/VFS_SET.9 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/share/man/man9/VFS_SET.9 b/share/man/man9/VFS_SET.9 index 0383c8d..2f2b8f4 100644 --- a/share/man/man9/VFS_SET.9 +++ b/share/man/man9/VFS_SET.9 @@ -53,6 +53,24 @@ and declares it by calling using .Fn vfs_modevent as the event handler. +.Pp +Possible values for the +.Fa flags +argument are documented below: +.Bl -hang -width VFCF_SYNTHETIC +.It Dv VFCF_STATIC +File system should be statically available in the kernel. +.It Dv VFCF_NETWORK +Network exportable file system. +.It Dv VFCF_READONLY +Does not support write operations. +.It Dv VFCF_SYNTHETIC +Pseudo file system, data does not represent on-disk files. +.It Dv VFCF_LOOPBACK +Loopback file system layer. +.It Dv VFCF_UNICODE +File names are stored as Unicode. +.El .Sh PSEUDO CODE .Bd -literal /* |