diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-01 20:28:00 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-01 20:28:00 -0500 |
commit | f07313259fa422581b64b5b22d1de575d710df52 (patch) | |
tree | 06173c65192d3d3d44113665c344eef3d68c65a4 /sys/kern | |
parent | ec28488329d766a939a28292ffff22fac3963736 (diff) |
kernel: vfs_mount: Allocate vnode per mountpoint
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/vfs_mount.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 3b1fcc5..3efd7a7 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -91,6 +91,12 @@ vfs_mount(const char *path, int mntflags) } mp->phash = hash; + status = vfs_alloc_vnode(&mp->vnode, mp, VDIR); + + if (status != 0) { + return status; + } + entry = &mountlist[hash % MOUNTLIST_SIZE]; TAILQ_INSERT_TAIL(&entry->buckets, mp, link); return 0; |