Am Dienstag 24 Mai 2011, 21:34:33 schrieb Andrew Morton:
> Please see the nice comment in printk.h
>
> /*
> * Please don't use printk_ratelimit(), because it shares ratelimiting
> state * with all other unrelated printk_ratelimit() callsites. Instead
> use * printk_ratelimited() or plain old __r
On Sun, 22 May 2011 16:48:34 +0200
Richard Weinberger wrote:
> +static void show_segv_info(struct uml_pt_regs *regs)
> +{
> + struct task_struct *tsk = current;
> + struct faultinfo *fi = UPT_FAULTINFO(regs);
> +
> + if (!unhandled_signal(tsk, SIGSEGV))
> + return;
> +
> +
Print a short info about fatal segfaults like other archs do.
Signed-off-by: Richard Weinberger
---
arch/um/kernel/trap.c | 24
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/arch/um/kernel/trap.c b/arch/um/kernel/trap.c
index 637c650..8c7b882 100644
-