summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-06-25 00:16:26 +0200
committerRichard Braun <rbraun@sceen.net>2017-06-25 00:16:26 +0200
commit9e1c5185ee157f4b0b155c0a788bcd0557c44623 (patch)
treea46c9e4d6b63ec4c1e30f31c69ce1270de54439c /test
parent9fb3131dbde508526dcbec29aac166ca425cd352 (diff)
Remove the param module
Move the page properties into the new x86/page module, and the virtual memory layout macros into the x86/pmap module.
Diffstat (limited to 'test')
-rw-r--r--test/test_llsync_defer.c2
-rw-r--r--test/test_pmap_update_mp.c2
-rw-r--r--test/test_vm_page_fill.c1
3 files changed, 3 insertions, 2 deletions
diff --git a/test/test_llsync_defer.c b/test/test_llsync_defer.c
index 26747998..249c53a5 100644
--- a/test/test_llsync_defer.c
+++ b/test/test_llsync_defer.c
@@ -39,9 +39,9 @@
#include <kern/macros.h>
#include <kern/mutex.h>
#include <kern/panic.h>
-#include <kern/param.h>
#include <kern/thread.h>
#include <kern/work.h>
+#include <machine/page.h>
#include <test/test.h>
#include <vm/vm_kmem.h>
diff --git a/test/test_pmap_update_mp.c b/test/test_pmap_update_mp.c
index 5588ce83..c058323a 100644
--- a/test/test_pmap_update_mp.c
+++ b/test/test_pmap_update_mp.c
@@ -33,8 +33,8 @@
#include <kern/error.h>
#include <kern/mutex.h>
#include <kern/panic.h>
-#include <kern/param.h>
#include <kern/thread.h>
+#include <machine/page.h>
#include <test/test.h>
#include <vm/vm_kmem.h>
diff --git a/test/test_vm_page_fill.c b/test/test_vm_page_fill.c
index fe351038..2b7f1130 100644
--- a/test/test_vm_page_fill.c
+++ b/test/test_vm_page_fill.c
@@ -30,6 +30,7 @@
#include <kern/error.h>
#include <kern/list.h>
#include <kern/thread.h>
+#include <machine/page.h>
#include <machine/pmap.h>
#include <test/test.h>
#include <vm/vm_kmem.h>