diff options
author | Jeff Vander Stoep <jeffv@google.com> | 2015-08-18 20:50:10 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-01 12:07:29 +0200 |
commit | f828609ff36c1180c06e307d2c51d4ede337f7da (patch) | |
tree | c4b9d4b745333a7a29a2fdfe65f0d2e2e13562f7 /arch | |
parent | 957c0c65c71536c95d0cd92e9a4583272402567d (diff) | |
download | linux-stable-f828609ff36c1180c06e307d2c51d4ede337f7da.tar.gz linux-stable-f828609ff36c1180c06e307d2c51d4ede337f7da.tar.bz2 linux-stable-f828609ff36c1180c06e307d2c51d4ede337f7da.zip |
arm64: kconfig: Move LIST_POISON to a safe value
commit bf0c4e04732479f650ff59d1ee82de761c0071f0 upstream.
Move the poison pointer offset to 0xdead000000000000, a
recognized value that is not mappable by user-space exploits.
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Thierry Strudel <tstrudel@google.com>
Signed-off-by: Jeff Vander Stoep <jeffv@google.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index 0677ff4814fa..661ccf87b9ad 100644 --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig @@ -56,6 +56,10 @@ config NO_IOPORT config STACKTRACE_SUPPORT def_bool y +config ILLEGAL_POINTER_VALUE + hex + default 0xdead000000000000 + config LOCKDEP_SUPPORT def_bool y |