diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 6fd4cde98eef..07b425adae39 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $NetBSD: mount.h,v 1.124 2004/08/15 07:19:55 mycroft Exp $ */ +/* $NetBSD: mount.h,v 1.125 2004/11/10 17:30:56 christos Exp $ */ /* * Copyright (c) 1989, 1991, 1993 @@ -102,10 +102,11 @@ struct statfs12 { #define MOUNT_ADOSFS "adosfs" /* AmigaDOS Filesystem */ #define MOUNT_EXT2FS "ext2fs" /* Second Extended Filesystem */ #define MOUNT_CFS "coda" /* Coda Filesystem */ -#define MOUNT_CODA "coda" /* Coda Filesystem */ +#define MOUNT_CODA MOUNT_CFS /* Coda Filesystem */ #define MOUNT_FILECORE "filecore" /* Acorn Filecore Filesystem */ #define MOUNT_NTFS "ntfs" /* Windows/NT Filesystem */ #define MOUNT_SMBFS "smbfs" /* CIFS (SMB) */ +#define MOUNT_PTYFS "ptyfs" /* Pseudo tty filesystem */ /* * Structure per mounted file system. Each mounted file system has an diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index d86eafc231d1..842217a405bd 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $NetBSD: vnode.h,v 1.126 2004/09/21 03:10:35 thorpej Exp $ */ +/* $NetBSD: vnode.h,v 1.127 2004/11/10 17:30:56 christos Exp $ */ /* * Copyright (c) 1989, 1993 @@ -66,7 +66,7 @@ enum vtagtype { VT_NON, VT_UFS, VT_NFS, VT_MFS, VT_MSDOSFS, VT_LFS, VT_LOFS, VT_FDESC, VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS, VT_AFS, VT_ISOFS, VT_UNION, VT_ADOSFS, VT_EXT2FS, VT_CODA, VT_FILECORE, VT_NTFS, VT_VFS, - VT_OVERLAY, VT_SMBFS + VT_OVERLAY, VT_SMBFS, VT_PTYFS }; LIST_HEAD(buflists, buf);