mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Zhenzhong Duan <zhenzhong.duan@oracle.com>
To: david.vrabel@citrix.com
Cc: Juergen Gross <jgross@suse.com>,
	LKML <linux-kernel@vger.kernel.org>,
	konrad.wilk@oracle.com, boris.ostrovsky@oracle.com
Subject: Re: [PATCH] xen: fix the check of e_pfn in xen_find_pfn_range
Date: Tue, 15 Sep 2015 10:02:56 +0800	[thread overview]
Message-ID: <55F77C50.5040702@oracle.com> (raw)
In-Reply-To: <55E6D7BA.9060206@suse.com>

Hi David

Konrad just ping me on this patch. I originally think I missed to cc you 
but I does.
Could you ack or nak it?

thanks
zduan

在 2015/9/2 19:04, Juergen Gross 写道:
> On 09/02/2015 12:51 PM, Zhenzhong Duan wrote:
>> On some numa system, after dom0 up, we see below warning even if 
>> there are
>> enough pfn ranges could be used for remapping.
>> "Unable to find available pfn range, not remapping identity pages"
>>
>> Fix it to avoid getting a memory region of zero size in 
>> xen_find_pfn_range.
>>
>> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
>
> Reviewed-by: Juergen Gross <jgross@suse.com>
>
>> ---
>>   arch/x86/xen/setup.c |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
>> index a3a7546..c11f6b2 100644
>> --- a/arch/x86/xen/setup.c
>> +++ b/arch/x86/xen/setup.c
>> @@ -178,7 +178,7 @@ static unsigned long __init xen_find_pfn_range(
>>           e_pfn = PFN_DOWN(entry->addr + entry->size);
>>
>>           /* We only care about E820 after this */
>> -        if (e_pfn < *min_pfn)
>> +        if (e_pfn <= *min_pfn)
>>               continue;
>>
>>           s_pfn = PFN_UP(entry->addr);
>


      reply	other threads:[~2015-09-15  2:02 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-02 10:51 Zhenzhong Duan
2015-09-02 11:04 ` Juergen Gross
2015-09-15  2:02   ` Zhenzhong Duan [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55F77C50.5040702@oracle.com \
    --to=zhenzhong.duan@oracle.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=david.vrabel@citrix.com \
    --cc=jgross@suse.com \
    --cc=konrad.wilk@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome