diff options
author | Ian Moffett <ian@osmora.org> | 2024-04-09 22:48:53 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-04-09 22:48:53 -0400 |
commit | e326f77a5441abbacd23b8309a59e744999779ca (patch) | |
tree | a3d65aa32971f8ab42789e26db7725f3ac7a75a2 /sys/kern/vfs_init.c | |
parent | 0103817eb5b580d769e793c8bef053eb077fa0be (diff) |
kernel: vfs_mount: Fix mount code
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern/vfs_init.c')
-rw-r--r-- | sys/kern/vfs_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 0d8d194..9039e6a 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -43,7 +43,7 @@ __KERNEL_META("$Hyra$: vfs.c, Ian Marco Moffett, " #define INITRAMFS_ID 0 static struct fs_info filesystems[] = { - [INITRAMFS_ID] = { "initramfs", &g_initramfs_ops } + [INITRAMFS_ID] = { "initramfs", &g_initramfs_ops, NULL}, }; struct vnode *g_root_vnode = NULL; @@ -74,6 +74,7 @@ vfs_init(void) vfsops = info->vfsops; __assert(vfsops->init != NULL); + __assert(vfs_mount(info->name, 0, info) == 0); vfsops->init(info); } |