summaryrefslogtreecommitdiffstats
path: root/kernel/printk
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-12-05 08:23:20 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-12-05 08:23:20 -0800
commitb7ad7ef742a99c148631d38a98da72e7db8f6fd0 (patch)
treef1220e5408f828782c884fc8612ad045f30b5fd4 /kernel/printk
parentfd6d2e506ce6f850d45342a15c896591291b77b5 (diff)
downloadop-kernel-dev-b7ad7ef742a99c148631d38a98da72e7db8f6fd0.zip
op-kernel-dev-b7ad7ef742a99c148631d38a98da72e7db8f6fd0.tar.gz
remove task and stack pointer printout from oops dump
Geert Uytterhoeven reported a NFS oops, and pointed out that some of the numbers were hashed and useless. We could just turn them from '%p' into '%px', but those numbers are really just legacy, and useless even when not hashed. So just remove them entirely. Reported-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/printk')
-rw-r--r--kernel/printk/printk.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index 5d81206..b900661 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -3141,9 +3141,6 @@ void dump_stack_print_info(const char *log_lvl)
void show_regs_print_info(const char *log_lvl)
{
dump_stack_print_info(log_lvl);
-
- printk("%stask: %p task.stack: %p\n",
- log_lvl, current, task_stack_page(current));
}
#endif
OpenPOWER on IntegriCloud