Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1598565
| From | Vegard Nossum <vegard.nossum@oracle.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] um: use KERN_CONT in stack dump |
| Date | 2017-03-12 10:50 +0100 |
| Message-ID | <tk8it-81C-3@gated-at.bofh.it> (permalink) |
| References | <tk88O-7Y2-13@gated-at.bofh.it> <tk8it-81C-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 12/03/2017 10:45, Richard Weinberger wrote:
> Am 12.03.2017 um 10:38 schrieb Vegard Nossum:
>> Without KERN_CONT, the symbol will appear on a new line, making stack
>> traces completely unreadable:
[snip]
> I think it is better to fix the root of the problem by using a single printk.
> i.e.
>
> diff --git a/arch/um/kernel/sysrq.c b/arch/um/kernel/sysrq.c
> index aa1b56f5ac68..18eddf677ec6 100644
> --- a/arch/um/kernel/sysrq.c
> +++ b/arch/um/kernel/sysrq.c
> @@ -17,10 +17,8 @@
>
> static void _print_addr(void *data, unsigned long address, int reliable)
> {
> - pr_info(" [<%08lx>]", address);
> - pr_cont(" %s", reliable ? "" : "? ");
> - print_symbol("%s", address);
> - pr_cont("\n");
> + pr_info(" [<%08lx>] %s%pB\n", address, reliable ? "" : "? ",
> + (void *)address);
> }
Your patch is better.
Tested-by: Vegard Nossum <vegard.nossum@oracle.com>
Thanks,
Vegard
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] um: use KERN_CONT in stack dump Vegard Nossum <vegard.nossum@oracle.com> - 2017-03-12 10:40 +0100 Re: [PATCH] um: use KERN_CONT in stack dump Vegard Nossum <vegard.nossum@oracle.com> - 2017-03-12 10:50 +0100 Re: [PATCH] um: use KERN_CONT in stack dump Richard Weinberger <richard@nod.at> - 2017-03-12 10:50 +0100
csiph-web