aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/amd64/pmap.c2
-rw-r--r--sys/include/vm/page.h (renamed from sys/include/vm/vm_page.h)0
-rw-r--r--sys/include/vm/physseg.h (renamed from sys/include/vm/vm_physseg.h)0
-rw-r--r--sys/include/vm/pmap.h (renamed from sys/include/vm/vm_pmap.h)0
-rw-r--r--sys/include/vm/vm.h4
-rw-r--r--sys/kern/init_main.c2
-rw-r--r--sys/vm/vm_init.c2
-rw-r--r--sys/vm/vm_page.c2
-rw-r--r--sys/vm/vm_physseg.c2
9 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/amd64/pmap.c b/sys/arch/amd64/pmap.c
index afbdbda..2e3e744 100644
--- a/sys/arch/amd64/pmap.c
+++ b/sys/arch/amd64/pmap.c
@@ -27,7 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <vm/vm_pmap.h>
+#include <vm/pmap.h>
#include <sys/cdefs.h>
#define PTE_ADDR_MASK 0x000FFFFFFFFFF000
diff --git a/sys/include/vm/vm_page.h b/sys/include/vm/page.h
index 21d2a6e..21d2a6e 100644
--- a/sys/include/vm/vm_page.h
+++ b/sys/include/vm/page.h
diff --git a/sys/include/vm/vm_physseg.h b/sys/include/vm/physseg.h
index d0b474e..d0b474e 100644
--- a/sys/include/vm/vm_physseg.h
+++ b/sys/include/vm/physseg.h
diff --git a/sys/include/vm/vm_pmap.h b/sys/include/vm/pmap.h
index f83219d..f83219d 100644
--- a/sys/include/vm/vm_pmap.h
+++ b/sys/include/vm/pmap.h
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h
index e18df4c..d135b72 100644
--- a/sys/include/vm/vm.h
+++ b/sys/include/vm/vm.h
@@ -33,8 +33,8 @@
#include <sys/types.h>
#include <sys/limine.h>
#include <sys/cdefs.h>
-#include <vm/vm_page.h>
-#include <vm/vm_pmap.h>
+#include <vm/page.h>
+#include <vm/pmap.h>
#include <vm/tlsf.h>
extern volatile struct limine_hhdm_request g_hhdm_request;
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index e4cc524..6f06f9d 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -33,7 +33,7 @@
#include <sys/machdep.h>
#include <sys/timer.h>
#include <firmware/acpi/acpi.h>
-#include <vm/vm_physseg.h>
+#include <vm/physseg.h>
#include <vm/vm.h>
#include <logo.h>
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c
index 600e61d..c298a6a 100644
--- a/sys/vm/vm_init.c
+++ b/sys/vm/vm_init.c
@@ -28,7 +28,7 @@
*/
#include <vm/vm.h>
-#include <vm/vm_physseg.h>
+#include <vm/physseg.h>
#include <sys/panic.h>
#include <assert.h>
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c
index f8f50ef..4325cee 100644
--- a/sys/vm/vm_page.c
+++ b/sys/vm/vm_page.c
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#include <sys/panic.h>
-#include <vm/vm_page.h>
+#include <vm/page.h>
#include <vm/vm.h>
#include <string.h>
diff --git a/sys/vm/vm_physseg.c b/sys/vm/vm_physseg.c
index 3f2b6b9..d9abc4b 100644
--- a/sys/vm/vm_physseg.c
+++ b/sys/vm/vm_physseg.c
@@ -30,7 +30,7 @@
#include <sys/limine.h>
#include <sys/cdefs.h>
#include <sys/syslog.h>
-#include <vm/vm_physseg.h>
+#include <vm/physseg.h>
#include <vm/vm.h>
#include <bitmap.h>
#include <string.h>