diff options
Diffstat (limited to 'sys/kern/vfs_conf.c')
-rw-r--r-- | sys/kern/vfs_conf.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index ad18de92f78..3731ec5b455 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -240,6 +240,9 @@ extern struct vnodeopv_desc cd9660_fifoop_opv_desc; extern struct vnodeopv_desc union_vnodeop_opv_desc; extern struct vnodeopv_desc msdosfs_vnodeop_opv_desc; extern struct vnodeopv_desc adosfs_vnodeop_opv_desc; +extern struct vnodeopv_desc ext2fs_vnodeop_opv_desc; +extern struct vnodeopv_desc ext2fs_specop_opv_desc; +extern struct vnodeopv_desc ext2fs_fifoop_opv_desc; struct vnodeopv_desc *vfs_opv_descs[] = { #ifdef FFS @@ -305,5 +308,12 @@ struct vnodeopv_desc *vfs_opv_descs[] = { #ifdef ADOSFS &adosfs_vnodeop_opv_desc, #endif +#ifdef EXT2FS + &ext2fs_vnodeop_opv_desc, + &ext2fs_specop_opv_desc, +#ifdef FIFO + &ext2fs_fifoop_opv_desc, +#endif +#endif NULL }; |