diff options
Diffstat (limited to 'src/sys/os/vfs_mount.c')
-rw-r--r-- | src/sys/os/vfs_mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/os/vfs_mount.c b/src/sys/os/vfs_mount.c index 034b324..8048352 100644 --- a/src/sys/os/vfs_mount.c +++ b/src/sys/os/vfs_mount.c @@ -165,7 +165,7 @@ mount_alloc(const char *name, struct mount **mp_res) * Mount a filesystem */ int -mount(struct mount_args *margs, uint32_t flags) +kmount(struct mount_args *margs, uint32_t flags) { const struct vfsops *vfsops; struct mount *mpp; @@ -256,6 +256,6 @@ mountlist_init(struct mountlist *mlp) TAILQ_INIT(&mlp->list); mlp->i = 1; - mount(&margs, 0); + kmount(&margs, 0); return 0; } |