diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-17 14:43:04 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-17 14:43:04 -0400 |
commit | f31e63d79d2a7a4a6f66bacb891af8bd6be00ea5 (patch) | |
tree | 05d2015e6bac5fc9b9721e663a821510df3c4792 /src/sys/os/vfs_init.c | |
parent | 8d592e845253f3e55deb7f899466ecce5b6cdfb1 (diff) |
kern: fs: Add initial tmpfs implementation
Supported VOPs as of now:
- lookup()
- create()
- reclaim()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/os/vfs_init.c')
-rw-r--r-- | src/sys/os/vfs_init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/os/vfs_init.c b/src/sys/os/vfs_init.c index 90747d6..1b6f815 100644 --- a/src/sys/os/vfs_init.c +++ b/src/sys/os/vfs_init.c @@ -40,6 +40,7 @@ static struct fs_info fstab[] = { { MOUNT_INITRD, &g_omar_vfsops, 0 }, { MOUNT_DEVFS, &g_devfs_vfsops, 0 }, + { MOUNT_TMPFS, &g_tmpfs_vfsops, 0 } }; /* |