modified files to support kernfs and fdesc fs
This commit is contained in:
parent
be757e0c2d
commit
93156ce06e
|
@ -1 +1 @@
|
||||||
revision 1.1.1.1 intentionally removed
|
revision 1.2 intentionally removed
|
||||||
|
|
|
@ -67,6 +67,14 @@ extern struct vfsops mfs_vfsops;
|
||||||
extern struct vfsops isofs_vfsops;
|
extern struct vfsops isofs_vfsops;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef FDESC
|
||||||
|
extern struct vfsops fdesc_vfsops;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef KERNFS
|
||||||
|
extern struct vfsops kernfs_vfsops;
|
||||||
|
#endif
|
||||||
|
|
||||||
struct vfsops *vfssw[] = {
|
struct vfsops *vfssw[] = {
|
||||||
(struct vfsops *)0, /* 0 = MOUNT_NONE */
|
(struct vfsops *)0, /* 0 = MOUNT_NONE */
|
||||||
&ufs_vfsops, /* 1 = MOUNT_UFS */
|
&ufs_vfsops, /* 1 = MOUNT_UFS */
|
||||||
|
@ -86,4 +94,14 @@ struct vfsops *vfssw[] = {
|
||||||
#else
|
#else
|
||||||
(struct vfsops *)0,
|
(struct vfsops *)0,
|
||||||
#endif
|
#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
|
||||||
};
|
};
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
revision 1.1.1.1 intentionally removed
|
revision 1.2 intentionally removed
|
||||||
|
|
Loading…
Reference in New Issue