diff options
author | 1996-07-14 08:54:05 +0000 | |
---|---|---|
committer | 1996-07-14 08:54:05 +0000 | |
commit | f00352699d462095562bb8e661100604f9f66e8e (patch) | |
tree | 3ec6da0e46d407bc58714f9c969da94f0aa9f4bd /sys | |
parent | Upgrade to termcap version 9.13.8 (diff) | |
download | wireguard-openbsd-f00352699d462095562bb8e661100604f9f66e8e.tar.xz wireguard-openbsd-f00352699d462095562bb8e661100604f9f66e8e.zip |
document v_tag correctly
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/vnode.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index 7043034d519..ed2fbcebca7 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vnode.h,v 1.7 1996/07/05 06:52:31 mickey Exp $ */ +/* $OpenBSD: vnode.h,v 1.8 1996/07/14 08:54:05 downsj Exp $ */ /* $NetBSD: vnode.h,v 1.38 1996/02/29 20:59:05 cgd Exp $ */ /* @@ -53,6 +53,9 @@ enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD }; * Vnode tag types. * These are for the benefit of external programs only (e.g., pstat) * and should NEVER be inspected by the kernel. + * + * Note that v_tag is actually used to tell MFS from FFS, and EXT2FS from + * the rest, so don't believe the above comment! */ enum vtagtype { VT_NON, VT_UFS, VT_NFS, VT_MFS, VT_MSDOSFS, VT_LFS, VT_LOFS, VT_FDESC, |