diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-05-31 18:22:26 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-05-31 18:22:26 +0000 |
commit | c306a86b5b613b1a88fb2021a1afbd1e893bdd79 (patch) | |
tree | 9c40bf59f20f357c36c75325e778fe3fe8a321f2 /sys | |
parent | 7ef27c53aee23663bb2e768d713be7918fdd0c6b (diff) |
Zap a bunch of unused VT_* tags.
ok tedu@,pedro@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/vnode.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index bccd2357db3..b4ad6836094 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vnode.h,v 1.85 2007/05/30 04:27:43 beck Exp $ */ +/* $OpenBSD: vnode.h,v 1.86 2007/05/31 18:22:25 thib Exp $ */ /* $NetBSD: vnode.h,v 1.38 1996/02/29 20:59:05 cgd Exp $ */ /* @@ -63,15 +63,15 @@ enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD }; * 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, - VT_PORTAL, VT_KERNFS, VT_PROCFS, VT_AFS, VT_ISOFS, VT_ADOSFS, VT_EXT2FS, - VT_NCPFS, VT_VFS, VT_XFS, VT_NTFS, VT_UDF + VT_NON, VT_UFS, VT_NFS, VT_MFS, VT_MSDOSFS, + VT_PORTAL, VT_PROCFS, VT_AFS, VT_ISOFS, VT_ADOSFS, + VT_EXT2FS, VT_VFS, VT_XFS, VT_NTFS, VT_UDF }; #define VTAG_NAMES \ - "NON", "UFS", "NFS", "MFS", "MSDOSFS", "LFS", "LOFS", \ - "FDESC", "PORTAL", "KERNFS", "PROCFS", "AFS", "ISOFS", \ - "ADOSFS", "EXT2FS", "NCPFS", "VFS", "XFS", "NTFS", "UDF" + "NON", "UFS", "NFS", "MFS", "MSDOSFS", \ + "PORTAL", "PROCFS", "AFS", "ISOFS", "ADOSFS", \ + "EXT2FS", "VFS", "XFS", "NTFS", "UDF" /* * Each underlying filesystem allocates its own private area and hangs |