amd64: Remove unneeded paging flags

This commit is contained in:
Matheus Pecoraro
2024-06-25 13:35:13 +00:00
committed by Kinsey Moore
parent 19d8888ac6
commit 263cbb9408
+2 -3
View File
@@ -60,9 +60,8 @@ void paging_init(void);
#define PAGE_FLAGS_GLOBAL (1 << 8)
#define PAGE_FLAGS_NO_EXECUTE (1 << 63)
#define PAGE_FLAGS_DEFAULTS \
(PAGE_FLAGS_PRESENT | PAGE_FLAGS_WRITABLE | PAGE_FLAGS_USER_ACCESSIBLE \
| PAGE_FLAGS_WRITE_THROUGH | PAGE_FLAGS_NO_CACHE | PAGE_FLAGS_GLOBAL)
#define PAGE_FLAGS_DEFAULTS \
(PAGE_FLAGS_PRESENT | PAGE_FLAGS_WRITABLE | PAGE_FLAGS_NO_CACHE)
#endif /* !ASM */
#endif