diff options
author | Richard Weinberger <richard@nod.at> | 2016-12-25 17:11:05 -0500 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2017-05-03 16:30:20 -0400 |
commit | ecb6c7435f25d6a11fa9d14f407d00286f9642b9 (patch) | |
tree | 5ba6086159ebdadb309d5650f50a8cf99a45fee6 | |
parent | a351e9b9fc24e982ec2f0e76379a49826036da12 (diff) |
um: Fix _print_addr()
Recent changes to printk() broke UML's stack trace
output. Kill the root of the problem by using a single
printk() statement.
Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r-- | arch/um/kernel/sysrq.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/um/kernel/sysrq.c b/arch/um/kernel/sysrq.c index a76295f7ede9..6b995e870d55 100644 --- a/arch/um/kernel/sysrq.c +++ b/arch/um/kernel/sysrq.c | |||
@@ -20,10 +20,8 @@ | |||
20 | 20 | ||
21 | static void _print_addr(void *data, unsigned long address, int reliable) | 21 | static void _print_addr(void *data, unsigned long address, int reliable) |
22 | { | 22 | { |
23 | pr_info(" [<%08lx>]", address); | 23 | pr_info(" [<%08lx>] %s%pF\n", address, reliable ? "" : "? ", |
24 | pr_cont(" %s", reliable ? "" : "? "); | 24 | (void *)address); |
25 | print_symbol("%s", address); | ||
26 | pr_cont("\n"); | ||
27 | } | 25 | } |
28 | 26 | ||
29 | static const struct stacktrace_ops stackops = { | 27 | static const struct stacktrace_ops stackops = { |