Re: [PATCHv2] kernel/crash: make parse_crashkernel()'s return value more indicant
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
- To: Dave Young <dyoung@xxxxxxxxxx>
- Subject: Re: [PATCHv2] kernel/crash: make parse_crashkernel()'s return value more indicant
- From: Pingfan Liu <kernelfans@xxxxxxxxx>
- Date: Mon, 29 Apr 2019 11:04:49 +0800
- Cc: Matthias Brugger <mbrugger@xxxxxxxx>, LKML <linux-kernel@xxxxxxxxxxxxxxx>, Rich Felker <dalias@xxxxxxxx>, linux-ia64@xxxxxxxxxxxxxxx, Julien Thierry <julien.thierry@xxxxxxx>, Yangtao Li <tiny.windzz@xxxxxxxxx>, Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx>, Palmer Dabbelt <palmer@xxxxxxxxxx>, Heiko Carstens <heiko.carstens@xxxxxxxxxx>, x86@xxxxxxxxxx, linux-mips@xxxxxxxxxxxxxxx, Paul Mackerras <paulus@xxxxxxxxx>, "H. Peter Anvin" <hpa@xxxxxxxxx>, linux-s390@xxxxxxxxxxxxxxx, Florian Fainelli <f.fainelli@xxxxxxxxx>, Yoshinori Sato <ysato@xxxxxxxxxxxxxxxxxxxx>, linux-sh@xxxxxxxxxxxxxxx, Michael Ellerman <mpe@xxxxxxxxxxxxxx>, David Hildenbrand <david@xxxxxxxxxx>, Russell King <linux@xxxxxxxxxxxxxxx>, Ingo Molnar <mingo@xxxxxxxxxx>, linux-arm-kernel@xxxxxxxxxxxxxxxxxxx, Catalin Marinas <catalin.marinas@xxxxxxx>, James Hogan <jhogan@xxxxxxxxxx>, Fenghua Yu <fenghua.yu@xxxxxxxxx>, Will Deacon <will.deacon@xxxxxxx>, linuxppc-dev@xxxxxxxxxxxxxxxx, Ananth N Mavinakayanahalli <ananth@xxxxxxxxxxxxxxxxxx>, Borislav Petkov <bp@xxxxxxxxx>, Stefan Agner <stefan@xxxxxxxx>, Thomas Gleixner <tglx@xxxxxxxxxxxxx>, Hari Bathini <hbathini@xxxxxxxxxxxxx>, Jens Axboe <axboe@xxxxxxxxx>, Tony Luck <tony.luck@xxxxxxxxx>, Baoquan He <bhe@xxxxxxxxxx>, Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>, Robin Murphy <robin.murphy@xxxxxxx>, Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>, Ralf Baechle <ralf@xxxxxxxxxxxxxx>, Thomas Bogendoerfer <tbogendoerfer@xxxxxxx>, Paul Burton <paul.burton@xxxxxxxx>, Johannes Weiner <hannes@xxxxxxxxxxx>, Martin Schwidefsky <schwidefsky@xxxxxxxxxx>, Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>, Logan Gunthorpe <logang@xxxxxxxxxxxx>, Greg Hackmann <ghackmann@xxxxxxxxxxx>, kexec@xxxxxxxxxxxxxxxxxxx
- In-reply-to: <20190428083710.GA11981@dhcp-128-65.nay.redhat.com>
- References: <1556087581-14513-1-git-send-email-kernelfans@gmail.com> <10dc5468-6cd9-85c7-ba66-1dfa5aa922b7@suse.com> <CAFgQCTstd667wP6g+maxYekz4u3iBR2R=FHUiS1V=XxTs6MKUw@mail.gmail.com> <20190428083710.GA11981@dhcp-128-65.nay.redhat.com>
On Sun, Apr 28, 2019 at 4:37 PM Dave Young <dyoung@xxxxxxxxxx> wrote:
>
> On 04/25/19 at 04:20pm, Pingfan Liu wrote:
> > On Wed, Apr 24, 2019 at 4:31 PM Matthias Brugger <mbrugger@xxxxxxxx> wrote:
> > >
> > >
> > [...]
> > > > @@ -139,6 +141,8 @@ static int __init parse_crashkernel_simple(char *cmdline,
> > > > pr_warn("crashkernel: unrecognized char: %c\n", *cur);
> > > > return -EINVAL;
> > > > }
> > > > + if (*crash_size == 0)
> > > > + return -EINVAL;
> > >
> > > This covers the case where I pass an argument like "crashkernel=0M" ?
> > > Can't we fix that by using kstrtoull() in memparse and check if the return value
> > > is < 0? In that case we could return without updating the retptr and we will be
> > > fine.
> > >
> > It seems that kstrtoull() treats 0M as invalid parameter, while
> > simple_strtoull() does not.
> >
> > If changed like your suggestion, then all the callers of memparse()
> > will treats 0M as invalid parameter. This affects many components
> > besides kexec. Not sure this can be done or not.
>
> simple_strtoull is obsolete, move to kstrtoull is the right way.
>
> $ git grep memparse|wc
> 158 950 10479
>
> Except some documentation/tools etc there are still a log of callers
> which directly use the return value as the ull number without error
> checking.
>
> So it would be good to mark memparse as obsolete as well in
> lib/cmdline.c, and introduce a new function eg. kmemparse() to use
> kstrtoull, and return a real error code, and save the size in an
> argument like &size. Then update X86 crashkernel code to use it.
>
Thank for your good suggestion.
Regards,
Pingfan
[Index of Archives]
[Linux Kernel]
[Sparc Linux]
[DCCP]
[Linux ARM]
[Yosemite News]
[Linux SCSI]
[Linux x86_64]
[Linux for Ham Radio]