From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754090Ab3KKOXD (ORCPT ); Mon, 11 Nov 2013 09:23:03 -0500 Received: from mail-ee0-f53.google.com ([74.125.83.53]:33536 "EHLO mail-ee0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753418Ab3KKOW6 (ORCPT ); Mon, 11 Nov 2013 09:22:58 -0500 Date: Mon, 11 Nov 2013 15:22:53 +0100 From: Ingo Molnar To: Felipe Contreras Cc: Linux Kernel Mailing List , Ingo Molnar , Linus Torvalds , Andrew Morton Subject: Re: [PATCH 1/3] panic: setup panic_timeout early Message-ID: <20131111142253.GA10129@gmail.com> References: <1383871600-3831-1-git-send-email-felipe.contreras@gmail.com> <1383871600-3831-2-git-send-email-felipe.contreras@gmail.com> <20131111134459.GA8781@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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: > On Mon, Nov 11, 2013 at 7:44 AM, Ingo Molnar wrote: > > > > * Felipe Contreras wrote: > > > >> Otherwise we might not reboot when the user needs it the most (early > >> on). > >> > >> Signed-off-by: Felipe Contreras > >> --- > >> 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); > >> + > > > > For simple integer parameters simple_strtol() is better and (a tiny bit) > > faster. > > simple_strtol() is deprecated in favor of kstrtol(). Yes, true - my main point is that get_option() isn't the right choice here, you need to use a single-integer parsing function. Thanks, Ingo