diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-21 13:24:00 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-21 13:24:00 -0500 |
| commit | 8a72ed77efae6220c2c9028454628e0b4294c1a6 (patch) | |
| tree | c09e35a4b3288bf0d4c5297a8792114d53a9a47f /sys/kern | |
| parent | 886879d1854ee60d62e0f9cc79bc6841bc104ea1 (diff) | |
kern: Move os/mount.h to kern/mount.h
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern')
| -rw-r--r-- | sys/kern/kern_namei.c | 2 | ||||
| -rw-r--r-- | sys/kern/vfs_init.c | 2 | ||||
| -rw-r--r-- | sys/kern/vfs_mount.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_namei.c b/sys/kern/kern_namei.c index ab96f75..7a530d7 100644 --- a/sys/kern/kern_namei.c +++ b/sys/kern/kern_namei.c @@ -29,7 +29,7 @@ #include <sys/errno.h> #include <sys/limits.h> -#include <os/mount.h> +#include <kern/mount.h> #include <kern/namei.h> #include <os/trace.h> diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 3f9bbb2..6372f3d 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -34,7 +34,7 @@ #include <lib/string.h> #include <fs/tmpfs.h> #include <kern/vfs.h> -#include <os/mount.h> +#include <kern/mount.h> #include <os/trace.h> #define dtrace(fmt, ...) trace("vfs: " fmt, ##__VA_ARGS__) diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 02c7308..51a464a 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -32,7 +32,7 @@ #include <sys/param.h> #include <kern/spinlock.h> #include <kern/panic.h> -#include <os/mount.h> +#include <kern/mount.h> #include <kern/vfs.h> #include <lib/stdbool.h> #include <lib/string.h> |
