diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-20 22:25:13 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-20 22:25:13 -0500 |
| commit | da0c894f9f0b045d629d6dd1448274bf39becd52 (patch) | |
| tree | 41040b4f28dd314f7681b1046eea4a3286aca9f8 /sys | |
| parent | 8d338f956b62ee24b07c32e8d1b6bd5cd699c31a (diff) | |
kern: Move vnode related files to kern
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/inc/kern/vfs.h (renamed from sys/inc/os/vfs.h) | 0 | ||||
| -rw-r--r-- | sys/inc/kern/vnode.h (renamed from sys/inc/os/vnode.h) | 0 | ||||
| -rw-r--r-- | sys/inc/os/mount.h | 2 | ||||
| -rw-r--r-- | sys/kern/kern_init.c | 2 | ||||
| -rw-r--r-- | sys/kern/vfs_init.c | 2 | ||||
| -rw-r--r-- | sys/kern/vfs_mount.c | 2 | ||||
| -rw-r--r-- | sys/kern/vfs_subr.c | 2 |
7 files changed, 5 insertions, 5 deletions
diff --git a/sys/inc/os/vfs.h b/sys/inc/kern/vfs.h index e5ce607..e5ce607 100644 --- a/sys/inc/os/vfs.h +++ b/sys/inc/kern/vfs.h diff --git a/sys/inc/os/vnode.h b/sys/inc/kern/vnode.h index 4ba5d8e..4ba5d8e 100644 --- a/sys/inc/os/vnode.h +++ b/sys/inc/kern/vnode.h diff --git a/sys/inc/os/mount.h b/sys/inc/os/mount.h index 6cfff2f..799c14f 100644 --- a/sys/inc/os/mount.h +++ b/sys/inc/os/mount.h @@ -32,7 +32,7 @@ #include <sys/types.h> #include <sys/queue.h> -#include <os/vnode.h> +#include <kern/vnode.h> /* Filesystem names */ #define MOUNT_TMPFS "tmpfs" diff --git a/sys/kern/kern_init.c b/sys/kern/kern_init.c index 8f00906..3706dff 100644 --- a/sys/kern/kern_init.c +++ b/sys/kern/kern_init.c @@ -31,7 +31,7 @@ #include <dev/cons/cons.h> #include <os/trace.h> #include <os/sched.h> -#include <os/vfs.h> +#include <kern/vfs.h> #include <acpi/acpi.h> #include <mu/cpu.h> #include <vm/phys.h> diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 2f282cf..3f9bbb2 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -33,9 +33,9 @@ #include <sys/cdefs.h> #include <lib/string.h> #include <fs/tmpfs.h> +#include <kern/vfs.h> #include <os/mount.h> #include <os/trace.h> -#include <os/vfs.h> #define dtrace(fmt, ...) trace("vfs: " fmt, ##__VA_ARGS__) diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index d733a3f..909a618 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -33,7 +33,7 @@ #include <kern/spinlock.h> #include <kern/panic.h> #include <os/mount.h> -#include <os/vfs.h> +#include <kern/vfs.h> #include <lib/stdbool.h> #include <vm/kalloc.h> diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 5b53c0a..3fd8503 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -28,7 +28,7 @@ */ #include <sys/errno.h> -#include <os/vnode.h> +#include <kern/vnode.h> #include <vm/kalloc.h> #include <lib/string.h> |
