From 22bdfe6ed296a8a9d95e9d88a856bad8f1c870b7 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 1 Mar 2024 13:26:53 -0500 Subject: kernel: vfs: Simplify mounting logic Signed-off-by: Ian Moffett --- sys/include/sys/vfs.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'sys/include') 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_ */ -- cgit v1.2.3