summaryrefslogtreecommitdiff
path: root/vm
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2012-11-03 17:30:15 +0100
committerRichard Braun <rbraun@sceen.net>2012-11-03 17:30:15 +0100
commit27484e07cdd0be148743cb8e4acd99e96264eca9 (patch)
tree3d32b0b274a879e5f814ff366b7d8bd6f2c973ba /vm
parent6b04aaae27ef9cc26487da1dd2acf75f3b49e3f5 (diff)
Merge lib into kern
There are no precise enough criteria to justify the separation of these two directories.
Diffstat (limited to 'vm')
-rw-r--r--vm/vm_kmem.c4
-rw-r--r--vm/vm_map.c12
-rw-r--r--vm/vm_map.h6
-rw-r--r--vm/vm_page.h4
-rw-r--r--vm/vm_phys.c12
5 files changed, 19 insertions, 19 deletions
diff --git a/vm/vm_kmem.c b/vm/vm_kmem.c
index 72d02899..a90fb058 100644
--- a/vm/vm_kmem.c
+++ b/vm/vm_kmem.c
@@ -15,12 +15,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <kern/assert.h>
#include <kern/init.h>
#include <kern/panic.h>
#include <kern/param.h>
+#include <kern/stddef.h>
#include <kern/types.h>
-#include <lib/assert.h>
-#include <lib/stddef.h>
#include <machine/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kmem.h>
diff --git a/vm/vm_map.c b/vm/vm_map.c
index 6eecab73..8343472f 100644
--- a/vm/vm_map.c
+++ b/vm/vm_map.c
@@ -19,18 +19,18 @@
* needed for kernel allocation.
*/
+#include <kern/assert.h>
#include <kern/error.h>
#include <kern/init.h>
#include <kern/kmem.h>
+#include <kern/list.h>
+#include <kern/macros.h>
#include <kern/panic.h>
#include <kern/param.h>
#include <kern/printk.h>
-#include <lib/assert.h>
-#include <lib/list.h>
-#include <lib/macros.h>
-#include <lib/rbtree.h>
-#include <lib/stddef.h>
-#include <lib/stdint.h>
+#include <kern/rbtree.h>
+#include <kern/stddef.h>
+#include <kern/stdint.h>
#include <machine/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kmem.h>
diff --git a/vm/vm_map.h b/vm/vm_map.h
index 7231b6a3..9759ff4b 100644
--- a/vm/vm_map.h
+++ b/vm/vm_map.h
@@ -21,9 +21,9 @@
#ifndef _VM_VM_MAP_H
#define _VM_VM_MAP_H
-#include <lib/list.h>
-#include <lib/rbtree.h>
-#include <lib/stdint.h>
+#include <kern/list.h>
+#include <kern/rbtree.h>
+#include <kern/stdint.h>
#include <machine/pmap.h>
/*
diff --git a/vm/vm_page.h b/vm/vm_page.h
index e499dc52..e5ad8fc5 100644
--- a/vm/vm_page.h
+++ b/vm/vm_page.h
@@ -18,8 +18,8 @@
#ifndef _VM_VM_PAGE_H
#define _VM_VM_PAGE_H
-#include <lib/list.h>
-#include <lib/macros.h>
+#include <kern/list.h>
+#include <kern/macros.h>
#include <kern/param.h>
#include <kern/types.h>
diff --git a/vm/vm_phys.c b/vm/vm_phys.c
index 81e655bf..9fcc7cc9 100644
--- a/vm/vm_phys.c
+++ b/vm/vm_phys.c
@@ -29,17 +29,17 @@
* The symmetric case is handled likewise.
*/
+#include <kern/assert.h>
#include <kern/init.h>
+#include <kern/list.h>
+#include <kern/macros.h>
#include <kern/panic.h>
#include <kern/param.h>
#include <kern/printk.h>
+#include <kern/sprintf.h>
+#include <kern/stddef.h>
+#include <kern/string.h>
#include <kern/types.h>
-#include <lib/assert.h>
-#include <lib/list.h>
-#include <lib/macros.h>
-#include <lib/sprintf.h>
-#include <lib/stddef.h>
-#include <lib/string.h>
#include <machine/cpu.h>
#include <vm/vm_kmem.h>
#include <vm/vm_page.h>