qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kurz <groug@kaod.org>
To: Thomas Huth <thuth@redhat.com>
Cc: David Gibson <david@gibson.dropbear.id.au>,
	qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH] ppc: Yet another fix for the huge page support detection mechanism
Date: Mon, 18 Jul 2016 12:44:09 +0200	[thread overview]
Message-ID: <20160718124409.62e06fb2@bahia.lan> (raw)
In-Reply-To: <928de718-79e1-9c8a-a05d-ed51e1e31a05@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 3711 bytes --]

On Mon, 18 Jul 2016 11:33:16 +0200
Thomas Huth <thuth@redhat.com> wrote:

> On 18.07.2016 11:26, Greg Kurz wrote:
> > On Mon, 18 Jul 2016 11:04:39 +0200
> > Thomas Huth <thuth@redhat.com> wrote:
> >   
> >> On 18.07.2016 10:59, Greg Kurz wrote:  
> >>> On Mon, 18 Jul 2016 10:52:36 +1000
> >>> David Gibson <david@gibson.dropbear.id.au> wrote:
> >>>     
> >>>> On Fri, Jul 15, 2016 at 10:10:25AM +0200, Thomas Huth wrote:    
> >>>>> Commit 86b50f2e1bef ("Disable huge page support if it is not available
> >>>>> for main RAM") already made sure that huge page support is not announced
> >>>>> to the guest if the normal RAM of non-NUMA configurations is not backed
> >>>>> by a huge page filesystem. However, there is one more case that can go
> >>>>> wrong: NUMA is enabled, but the RAM of the NUMA nodes are not configured
> >>>>> with huge page support (and only the memory of a DIMM is configured with
> >>>>> it). When QEMU is started with the following command line for example,
> >>>>> the Linux guest currently crashes because it is trying to use huge pages
> >>>>> on a memory region that does not support huge pages:
> >>>>>
> >>>>>  qemu-system-ppc64 -enable-kvm ... -m 1G,slots=4,maxmem=32G -object \
> >>>>>    memory-backend-file,policy=default,mem-path=/hugepages,size=1G,id=mem-mem1 \
> >>>>>    -device pc-dimm,id=dimm-mem1,memdev=mem-mem1 -smp 2 \
> >>>>>    -numa node,nodeid=0 -numa node,nodeid=1
> >>>>>
> >>>>> To fix this issue, we've got to make sure to disable huge page support,
> >>>>> too, when there is a NUMA node that is not using a memory backend with
> >>>>> huge page support.
> >>>>>
> >>>>> Fixes: 86b50f2e1befc33407bdfeb6f45f7b0d2439a740
> >>>>> Signed-off-by: Thomas Huth <thuth@redhat.com>
> >>>>> ---
> >>>>>  target-ppc/kvm.c | 10 +++++++---
> >>>>>  1 file changed, 7 insertions(+), 3 deletions(-)      
> >>>>
> >>>> Applied to ppc-for-2.7, thanks.
> >>>>    
> >>>
> >>> It looks like my replies to this patch were ignored... no big deal though :)    
> >>
> >> I'll try to come up with an additional patch that fixes the remaining
> >> problem that you've found... Meanwhile, did you find out why you get
> >> that assertion that I was not able to recreate? Could you maybe post the
> >> exact command line to trigger that assertion?
> >>  
> > 
> > I hit the assertion when I specify pc-dimm devices on the command line:
> > 
> > qemu-system-ppc64 -enable-kvm ... -m 2G,slots=4,maxmem=32G \
> >  -object memory-backend-file,policy=default,mem-path=/mnt/kvm_hugepage,size=1G,id=mem-mem1 \
> >  -device pc-dimm,id=dimm-mem1,memdev=mem-mem1 \
> >  -object memory-backend-file,policy=default,mem-path=/mnt,size=1G,id=mem-mem2 \
> >  -device pc-dimm,id=dimm-mem2,memdev=mem-mem2 \
> >  -smp 2 -numa node,nodeid=0,memdev=mem-mem1 \
> >  -numa node,nodeid=1,memdev=mem-mem2  
> 
> FWIW, with that command line, I still don't get an assertion but a
> normal error message:
> 
> qemu-system-ppc64: -device pc-dimm,id=dimm-mem1,memdev=mem-mem1: can't
> use already busy memdev: mem-mem1
> 
>  Thomas
> 

I hit the assertion with this exact command line:

qemu-system-ppc64 -machine pseries,accel=kvm \
-m 1G,slots=4,maxmem=32G \
-object memory-backend-file,policy=default,mem-path=/dev/hugepages,size=1G,id=mem-mem1 \
-device pc-dimm,id=dimm-mem1,memdev=mem-mem1 \
-numa node,nodeid=0,memdev=mem-mem1 \
-S

QEMU was built against David's ppc-for-2.7 branch (commit 159d2e39a).

But I get the very same error as you with QEMU 2.6... regression ?

And BTW, I'm not sure to understand why it is wrong to specify both pc-dimm and
numa pointing to the same memory backend.

Cheers.

--
Greg

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

  reply	other threads:[~2016-07-18 10:44 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-15  8:10 [Qemu-devel] [PATCH] ppc: Yet another fix for the huge page support detection mechanism Thomas Huth
2016-07-15  8:35 ` David Gibson
2016-07-15 12:28   ` Thomas Huth
2016-07-15 15:18     ` Greg Kurz
2016-07-15 15:54       ` Thomas Huth
2016-07-15 16:31         ` Greg Kurz
2016-07-15  9:28 ` Greg Kurz
2016-07-18  9:21   ` Thomas Huth
2016-07-18  9:36     ` Greg Kurz
2016-07-18  0:52 ` David Gibson
2016-07-18  8:59   ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2016-07-18  9:04     ` Thomas Huth
2016-07-18  9:26       ` Greg Kurz
2016-07-18  9:33         ` Thomas Huth
2016-07-18 10:44           ` Greg Kurz [this message]
2016-07-18 13:16             ` [Qemu-devel] assert in memory.c line 1934 (was: Yet another fix for the huge page support detection mechanism) Thomas Huth
2016-07-18 13:23             ` [Qemu-devel] [Qemu-ppc] [PATCH] ppc: Yet another fix for the huge page support detection mechanism Greg Kurz
2016-07-18  9:21     ` David Gibson
2016-07-18 10:01       ` Greg Kurz

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=20160718124409.62e06fb2@bahia.lan \
    --to=groug@kaod.org \
    --cc=david@gibson.dropbear.id.au \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=thuth@redhat.com \
    /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;
as well as URLs for NNTP newsgroup(s).