From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753978Ab3KKOQx (ORCPT ); Mon, 11 Nov 2013 09:16:53 -0500 Received: from mail-ee0-f54.google.com ([74.125.83.54]:64634 "EHLO mail-ee0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753646Ab3KKOQq (ORCPT ); Mon, 11 Nov 2013 09:16:46 -0500 Date: Mon, 11 Nov 2013 15:16:40 +0100 From: Ingo Molnar To: Felipe Contreras Cc: linux-kernel@vger.kernel.org, Ingo Molnar , Linus Torvalds , Andrew Morton Subject: Re: [PATCH try2] panic: setup panic_timeout early Message-ID: <20131111141640.GA10124@gmail.com> References: <1384177186-23716-1-git-send-email-felipe.contreras@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1384177186-23716-1-git-send-email-felipe.contreras@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Felipe Contreras wrote: > Otherwise we might not reboot when the user needs it the most (early > on). > > Signed-off-by: Felipe Contreras > --- > > This is exactly the same as in the previous try, but now alone since it was > mudded by largely irrelevant patches in the series. > > kernel/panic.c | 14 +++++++++++++- > 1 file changed, 13 insertions(+), 1 deletion(-) > > diff --git a/kernel/panic.c b/kernel/panic.c > index b6c482c..46e37ff 100644 > --- a/kernel/panic.c > +++ b/kernel/panic.c > @@ -468,9 +468,21 @@ EXPORT_SYMBOL(__stack_chk_fail); > > #endif > > -core_param(panic, panic_timeout, int, 0644); > core_param(pause_on_oops, pause_on_oops, int, 0644); > > +static int __init set_panic_timeout(char *str) > +{ > + int timeout; > + > + if (!get_option(&str, &timeout)) > + return -EINVAL; > + > + panic_timeout = timeout; > + return 0; > +} > + > +early_param("panic_timeout", set_panic_timeout); > + This still has the problem I pointed out for your v1 patch: for simple integer parameters simple_strtol() is better and (a tiny bit) faster. Thanks, Ingo