aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2016-07-14 15:06:53 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-07-15 01:54:27 -0400
commit2ba78056acfe8d63a29565f91dae4678ed6b81ca (patch)
treef4453e78ddc48214be0d7380deb0121aa6d910ce /arch/x86/mm
parenta46cbf3bc53b6a93fb84a5ffb288c354fa807954 (diff)
kasan: add newline to messages
Currently GPF messages with KASAN look as follows: kasan: GPF could be caused by NULL-ptr deref or user memory accessgeneral protection fault: 0000 [#1] SMP DEBUG_PAGEALLOC KASAN Add newlines. Link: http://lkml.kernel.org/r/1467294357-98002-1-git-send-email-dvyukov@google.com Signed-off-by: Dmitry Vyukov <dvyukov@google.com> Acked-by: Andrey Ryabinin <aryabinin@virtuozzo.com> Cc: Alexander Potapenko <glider@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/mm')
-rw-r--r--arch/x86/mm/kasan_init_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/kasan_init_64.c b/arch/x86/mm/kasan_init_64.c
index 1b1110fa0057..0493c17b8a51 100644
--- a/arch/x86/mm/kasan_init_64.c
+++ b/arch/x86/mm/kasan_init_64.c
@@ -54,8 +54,8 @@ static int kasan_die_handler(struct notifier_block *self,
54 void *data) 54 void *data)
55{ 55{
56 if (val == DIE_GPF) { 56 if (val == DIE_GPF) {
57 pr_emerg("CONFIG_KASAN_INLINE enabled"); 57 pr_emerg("CONFIG_KASAN_INLINE enabled\n");
58 pr_emerg("GPF could be caused by NULL-ptr deref or user memory access"); 58 pr_emerg("GPF could be caused by NULL-ptr deref or user memory access\n");
59 } 59 }
60 return NOTIFY_OK; 60 return NOTIFY_OK;
61} 61}