diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c index 2ecd4e9c15b1..16dc1f6467d4 100644 --- a/sys/kern/kern_descrip.c +++ b/sys/kern/kern_descrip.c @@ -1 +1 @@ -revision 1.1.1.1 intentionally removed +revision 1.2 intentionally removed diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 70d0ae5c664b..b450d6f72794 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -67,6 +67,14 @@ extern struct vfsops mfs_vfsops; extern struct vfsops isofs_vfsops; #endif +#ifdef FDESC +extern struct vfsops fdesc_vfsops; +#endif + +#ifdef KERNFS +extern struct vfsops kernfs_vfsops; +#endif + struct vfsops *vfssw[] = { (struct vfsops *)0, /* 0 = MOUNT_NONE */ &ufs_vfsops, /* 1 = MOUNT_UFS */ @@ -86,4 +94,14 @@ struct vfsops *vfssw[] = { #else (struct vfsops *)0, #endif +#ifdef FDESC + &fdesc_vfsops, /* 6 = MOUNT_FDESC */ +#else + (struct vfsops *)0, +#endif +#ifdef KERNFS + &kernfs_vfsops, /* 5 = MOUNT_KERNFS */ +#else + (struct vfsops *)0, +#endif }; diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 2ecd4e9c15b1..16dc1f6467d4 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1 +1 @@ -revision 1.1.1.1 intentionally removed +revision 1.2 intentionally removed