Commit 366932de authored by gorcunov@gmail.com's avatar gorcunov@gmail.com Committed by Ingo Molnar

x86: relocate_kernel - use predefined macroses for page attributes

Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent fd3af531
...@@ -10,14 +10,15 @@ ...@@ -10,14 +10,15 @@
#include <asm/page.h> #include <asm/page.h>
#include <asm/kexec.h> #include <asm/kexec.h>
#include <asm/processor-flags.h> #include <asm/processor-flags.h>
#include <asm/pgtable.h>
/* /*
* Must be relocatable PIC code callable as a C function * Must be relocatable PIC code callable as a C function
*/ */
#define PTR(x) (x << 2) #define PTR(x) (x << 2)
#define PAGE_ATTR 0x63 /* _PAGE_PRESENT|_PAGE_RW|_PAGE_ACCESSED|_PAGE_DIRTY */ #define PAGE_ATTR (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
#define PAE_PGD_ATTR 0x01 /* _PAGE_PRESENT */ #define PAE_PGD_ATTR (_PAGE_PRESENT)
.text .text
.align PAGE_SIZE .align PAGE_SIZE
......
...@@ -10,13 +10,14 @@ ...@@ -10,13 +10,14 @@
#include <asm/page.h> #include <asm/page.h>
#include <asm/kexec.h> #include <asm/kexec.h>
#include <asm/processor-flags.h> #include <asm/processor-flags.h>
#include <asm/pgtable.h>
/* /*
* Must be relocatable PIC code callable as a C function * Must be relocatable PIC code callable as a C function
*/ */
#define PTR(x) (x << 3) #define PTR(x) (x << 3)
#define PAGE_ATTR 0x63 /* _PAGE_PRESENT|_PAGE_RW|_PAGE_ACCESSED|_PAGE_DIRTY */ #define PAGE_ATTR (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
.text .text
.align PAGE_SIZE .align PAGE_SIZE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment