[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CACBanvp9-Q4qOzAZZ04uWKfJN2cP6-k8APG+9PR2mnVRqhmU8w@mail.gmail.com>
Date: Fri, 15 Jul 2011 15:56:08 -0700
From: Mandeep Singh Baines <msb@...omium.org>
To: linux-kernel@...r.kernel.org
Cc: Hugh Dickins <hughd@...omium.org>,
Mandeep Singh Baines <msb@...omium.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Huang Ying <ying.huang@...el.com>,
Andi Kleen <ak@...ux.intel.com>,
Hugh Dickins <hughd@...gle.com>, Olaf Hering <olaf@...fle.de>,
Jesse Barnes <jbarnes@...tuousgeek.org>,
Dave Airlie <airlied@...il.com>,
Greg Kroah-Hartman <gregkh@...e.de>,
Alan Cox <alan@...rguk.ukuu.org.uk>
Subject: Re: [PATCH 1/2] panic: panic=-1 for immediate reboot
On Fri, Jul 15, 2011 at 3:39 PM, Mandeep Singh Baines <msb@...omium.org> wrote:
> From: Hugh Dickins <hughd@...omium.org>
>
> When kernel BUG or oops occurs, ChromeOS intends to panic and immediately
> reboot, with stacktrace and other messages preserved in RAM across reboot.
> But the longer we delay, the more likely the user is to poweroff and lose
> the info.
>
> panic_timeout (seconds before rebooting) is set by panic= boot option
> or sysctl or /proc/sys/kernel/panic; but 0 means wait forever, so at
> present we have to delay at least 1 second.
>
> Let a negative number mean reboot immediately (with the small cosmetic
> benefit of suppressing that newline-less "Rebooting in %d seconds.."
> message).
>
Ignore this patch. I re-posted the series with documentation updates:
http://lkml.kernel.org/r/1310770401-10739-1-git-send-email-msb@chromium.org
> Signed-off-by: Hugh Dickins <hughd@...omium.org>
> Signed-off-by: Mandeep Singh Baines <msb@...omium.org>
> Cc: Andrew Morton <akpm@...ux-foundation.org>
> Cc: Huang Ying <ying.huang@...el.com>
> Cc: Andi Kleen <ak@...ux.intel.com>
> Cc: Hugh Dickins <hughd@...gle.com>
> Cc: Olaf Hering <olaf@...fle.de>
> Cc: Jesse Barnes <jbarnes@...tuousgeek.org>
> Cc: Dave Airlie <airlied@...il.com>
> Cc: Greg Kroah-Hartman <gregkh@...e.de>
> Cc: Alan Cox <alan@...rguk.ukuu.org.uk>
> ---
> kernel/panic.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/kernel/panic.c b/kernel/panic.c
> index 6923167..d7bb697 100644
> --- a/kernel/panic.c
> +++ b/kernel/panic.c
> @@ -119,6 +119,8 @@ NORET_TYPE void panic(const char * fmt, ...)
> }
> mdelay(PANIC_TIMER_STEP);
> }
> + }
> + if (panic_timeout != 0) {
> /*
> * This will not be a clean reboot, with everything
> * shutting down. But if there is a chance of
> --
> 1.7.3.1
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists