[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160107102041.1d99f70f@hananiah.suse.cz>
Date: Thu, 7 Jan 2016 10:20:41 +0100
From: Petr Tesarik <ptesarik@...e.cz>
To: Xunlei Pang <xlpang@...hat.com>
Cc: Minfei Huang <mhuang@...hat.com>, kexec@...ts.infradead.org,
linux-kernel@...r.kernel.org, ebiederm@...ssion.com,
akpm@...ux-foundation.org, Dave Young <dyoung@...hat.com>,
Vivek Goyal <vgoyal@...hat.com>
Subject: Re: [PATCH v2 2/2] kexec: Provide
arch_kexec_protect(unprotect)_crashkres()
On Thu, 7 Jan 2016 13:08:21 +0800
Xunlei Pang <xlpang@...hat.com> wrote:
> On 01/07/2016 at 10:36 AM, Minfei Huang wrote:
> > On 01/07/16 at 10:14am, Xunlei Pang wrote:
> >>>> +static int
> >>>> +kexec_mark_range(unsigned long start, unsigned long end, bool protect)
> >>>> +{
> >>>> + struct page *page;
> >>>> + unsigned int nr_pages;
> >>>> +
> >>>> + /* For physical range: [start, end] */
> >>>> + if (!start || !end || start > end)
> >>>> + return 0;
> >>> Hi, Xunlei.
> >>>
> >>> if (start > end)
> >>> return 0;
> >> If both start and end are zero, we want to return directly, so the two
> >> more check doesn't hurt.
> > How about if the start is equal to 0, and end is larger than 0? It is
> > better to make code more robust, although it never happen in currect
> > kexec code.
>
> Hmm, this will be better:
>
> if (!end || start > end)
> return 0;
>
> it handles the common case not using crash_low_res(start and end are 0).
Hm, if both start and end are 0, then what about using this condition:
if (start >= end)
return 0;
I think it's good enough, because if start is equal to end, then
there's nothing to protect anyway.
Regards,
Petr Tesarik
--
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