diff options
Diffstat (limited to 'arch/um/kernel/skas/mmu.c')
-rw-r--r-- | arch/um/kernel/skas/mmu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/um/kernel/skas/mmu.c b/arch/um/kernel/skas/mmu.c index ae79888cf520..f859ec306cd5 100644 --- a/arch/um/kernel/skas/mmu.c +++ b/arch/um/kernel/skas/mmu.c | |||
@@ -7,6 +7,7 @@ | |||
7 | #include "linux/sched.h" | 7 | #include "linux/sched.h" |
8 | #include "asm/pgalloc.h" | 8 | #include "asm/pgalloc.h" |
9 | #include "asm/pgtable.h" | 9 | #include "asm/pgtable.h" |
10 | #include "as-layout.h" | ||
10 | #include "os.h" | 11 | #include "os.h" |
11 | #include "skas.h" | 12 | #include "skas.h" |
12 | 13 | ||
@@ -83,12 +84,12 @@ int init_new_context(struct task_struct *task, struct mm_struct *mm) | |||
83 | */ | 84 | */ |
84 | mm->pgd[USER_PTRS_PER_PGD] = __pgd(0); | 85 | mm->pgd[USER_PTRS_PER_PGD] = __pgd(0); |
85 | 86 | ||
86 | ret = init_stub_pte(mm, CONFIG_STUB_CODE, | 87 | ret = init_stub_pte(mm, STUB_CODE, |
87 | (unsigned long) &__syscall_stub_start); | 88 | (unsigned long) &__syscall_stub_start); |
88 | if (ret) | 89 | if (ret) |
89 | goto out_free; | 90 | goto out_free; |
90 | 91 | ||
91 | ret = init_stub_pte(mm, CONFIG_STUB_DATA, stack); | 92 | ret = init_stub_pte(mm, STUB_DATA, stack); |
92 | if (ret) | 93 | if (ret) |
93 | goto out_free; | 94 | goto out_free; |
94 | 95 | ||