diff options
| -rw-r--r-- | sys/fs/tmpfs.c | 2 | ||||
| -rw-r--r-- | sys/inc/fs/tmpfs.h | 2 | ||||
| -rw-r--r-- | sys/inc/kern/mount.h (renamed from sys/inc/os/mount.h) | 0 | ||||
| -rw-r--r-- | sys/inc/kern/vfs.h | 2 | ||||
| -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 |
7 files changed, 6 insertions, 6 deletions
diff --git a/sys/fs/tmpfs.c b/sys/fs/tmpfs.c index 648f60e..cb18b6b 100644 --- a/sys/fs/tmpfs.c +++ b/sys/fs/tmpfs.c @@ -27,7 +27,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <os/mount.h> +#include <kern/mount.h> #include <fs/tmpfs.h> /* diff --git a/sys/inc/fs/tmpfs.h b/sys/inc/fs/tmpfs.h index f7a7ece..ba44f74 100644 --- a/sys/inc/fs/tmpfs.h +++ b/sys/inc/fs/tmpfs.h @@ -30,7 +30,7 @@ #ifndef _FS_TMPFS_H_ #define _FS_TMPFS_H_ -#include <os/mount.h> +#include <kern/mount.h> extern struct vfsops g_tmpfs_ops; diff --git a/sys/inc/os/mount.h b/sys/inc/kern/mount.h index 1c3dde6..1c3dde6 100644 --- a/sys/inc/os/mount.h +++ b/sys/inc/kern/mount.h diff --git a/sys/inc/kern/vfs.h b/sys/inc/kern/vfs.h index e5ce607..388f3f7 100644 --- a/sys/inc/kern/vfs.h +++ b/sys/inc/kern/vfs.h @@ -30,7 +30,7 @@ #ifndef _OS_VFS_H_ #define _OS_VFS_H_ 1 -#include <os/mount.h> +#include <kern/mount.h> /* * Initialize the virtual file system 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> |
