diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-11-28 21:43:40 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-11-30 14:45:31 +0000 |
commit | d8aa712c30148ba26fd89a5dc14de95d4c375184 (patch) | |
tree | 61f15d12929d3dd19dbf0589035777cb2751a476 /arch/arm/include/asm/pgtable.h | |
parent | 11a5aa32562e1e90ab2d0278748fe0fbecda1cbe (diff) | |
download | blackbird-obmc-linux-d8aa712c30148ba26fd89a5dc14de95d4c375184.tar.gz blackbird-obmc-linux-d8aa712c30148ba26fd89a5dc14de95d4c375184.zip |
ARM: fix booting low-vectors machines
Commit f6f91b0d9fd9 (ARM: allow kuser helpers to be removed from the
vector page) required two pages for the vectors code. Although the
code setting up the initial page tables was updated, the code which
allocates page tables for new processes wasn't, neither was the code
which tears down the mappings. Fix this.
Fixes: f6f91b0d9fd9 ("ARM: allow kuser helpers to be removed from the vector page")
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: <stable@vger.kernel.org>
Diffstat (limited to 'arch/arm/include/asm/pgtable.h')
-rw-r--r-- | arch/arm/include/asm/pgtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/pgtable.h b/arch/arm/include/asm/pgtable.h index be956dbf6bae..1571d126e9dd 100644 --- a/arch/arm/include/asm/pgtable.h +++ b/arch/arm/include/asm/pgtable.h @@ -61,7 +61,7 @@ extern void __pgd_error(const char *file, int line, pgd_t); * mapping to be mapped at. This is particularly important for * non-high vector CPUs. */ -#define FIRST_USER_ADDRESS PAGE_SIZE +#define FIRST_USER_ADDRESS (PAGE_SIZE * 2) /* * Use TASK_SIZE as the ceiling argument for free_pgtables() and |