From 7304758298141964b024892d757967f32418bccc Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 1 Mar 2024 20:35:55 -0500 Subject: kernel: mount: Update sys/mount.h Signed-off-by: Ian Moffett --- sys/include/sys/mount.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sys/include') diff --git a/sys/include/sys/mount.h b/sys/include/sys/mount.h index 86581f2..3ac7ec7 100644 --- a/sys/include/sys/mount.h +++ b/sys/include/sys/mount.h @@ -32,6 +32,7 @@ #include #include +#include #define FS_NAME_MAX 16 /* Max length of FS type name including nul */ @@ -40,12 +41,12 @@ struct mount; struct vfsops { int(*init)(struct fs_info *info); - int(*vget_name)(struct fs_info *info, const char *name); }; struct mount { int flags; size_t phash; /* Path hash */ + struct vnode *vnode; TAILQ_ENTRY(mount) link; }; @@ -61,7 +62,9 @@ struct fs_info { #define MNT_RDONLY 0x00000001 #if defined(_KERNEL) -int vfs_mount(struct mount **mp_out, const char *path, int mnt_flags); +int vfs_mount(const char *path, int mntflags); +int vfs_get_mp(const char *path, struct mount **mp); +void vfs_mount_init(void); #endif /* defined(_KERNEL) */ #endif /* !_SYS_MOUNT_H_ */ -- cgit v1.2.3