aboutsummaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-01 13:26:53 -0500
committerIan Moffett <ian@osmora.org>2024-03-01 13:26:53 -0500
commit22bdfe6ed296a8a9d95e9d88a856bad8f1c870b7 (patch)
tree0cd366ee14170a010e26d58b4cf54c58ea9ffbbe /sys/include
parenta31024156aebcc2f58d849970efcce50ede58c1c (diff)
kernel: vfs: Simplify mounting logic
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/vfs.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/include/sys/vfs.h b/sys/include/sys/vfs.h
index 2c056a1..40b27af 100644
--- a/sys/include/sys/vfs.h
+++ b/sys/include/sys/vfs.h
@@ -42,10 +42,6 @@ struct vnode *vfs_path_to_node(const char *path);
char *vfs_get_fname_at(const char *path, size_t idx);
bool vfs_is_valid_path(const char *path);
size_t vfs_hash_path(const char *path);
-
-void vfs_init_cache(void);
-int vfs_cache_mp(struct mount *mp, const char *path);
-int vfs_cache_fetch_mp(const char *path, struct mount **mp);
#endif /* defined(_KERNEL) */
#endif /* !_SYS_VFS_H_ */