diff options
author | Ard Biesheuvel | 2015-10-26 04:53:17 +0100 |
---|---|---|
committer | Catalin Marinas | 2015-10-28 19:51:13 +0100 |
commit | 6e4a0f2b5c56af6be43b546df16b1ece7df537d8 (patch) | |
tree | 8d50eda6b6659a7a19d291142ad018e4662c1a3a /arch/arm64/include/asm | |
parent | arm64: make Timer Interrupt Frequency selectable (diff) | |
download | kernel-qcow2-linux-6e4a0f2b5c56af6be43b546df16b1ece7df537d8.tar.gz kernel-qcow2-linux-6e4a0f2b5c56af6be43b546df16b1ece7df537d8.tar.xz kernel-qcow2-linux-6e4a0f2b5c56af6be43b546df16b1ece7df537d8.zip |
arm64: remove bogus TASK_SIZE_64 check
The comparison between TASK_SIZE_64 and MODULES_VADDR does not
make any sense on arm64, it is simply something that has been
carried over from the ARM port which arm64 is based on. So drop it.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/include/asm')
-rw-r--r-- | arch/arm64/include/asm/memory.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm64/include/asm/memory.h b/arch/arm64/include/asm/memory.h index 11ccf6c09533..37f3538a2924 100644 --- a/arch/arm64/include/asm/memory.h +++ b/arch/arm64/include/asm/memory.h @@ -70,10 +70,6 @@ #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 4)) -#if TASK_SIZE_64 > MODULES_VADDR -#error Top of 64-bit user space clashes with start of module space -#endif - /* * Physical vs virtual RAM address space conversion. These are * private definitions which should NOT be used outside memory.h |