summaryrefslogtreecommitdiff
path: root/sys/inc
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-11-20 22:25:13 -0500
committerIan Moffett <ian@osmora.org>2025-11-20 22:25:13 -0500
commitda0c894f9f0b045d629d6dd1448274bf39becd52 (patch)
tree41040b4f28dd314f7681b1046eea4a3286aca9f8 /sys/inc
parent8d338f956b62ee24b07c32e8d1b6bd5cd699c31a (diff)
kern: Move vnode related files to kern
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/inc')
-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.h2
3 files changed, 1 insertions, 1 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"