qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] Fwd: [DPDK-memory] how qemu waste such long time under


From: Daniel P. Berrange
Subject: Re: [Qemu-devel] Fwd: [DPDK-memory] how qemu waste such long time under dpdk huge page envriment?
Date: Mon, 19 Jun 2017 10:45:43 +0100
User-agent: Mutt/1.8.0 (2017-02-23)

On Mon, Jun 19, 2017 at 05:30:59PM +0800, Sam wrote:
> Hi all,
> 
> I'm running `QEMU_CMD ...` to create a vm under dpdk huge page envriment
> (which set huge page 1G). And I enable all events in qemu.

Please provide the full QEMU command line you are using.

> For qemu and ovs-dpdk(ovs-2.4.9 with dpdk-2.2.0) environment, detail log is:
> 
> > address@hidden:object_dynamic_cast_assert
> qemu:memory-region->qemu:memory-region (/home/hu
> > anghuai/cloud/contrib/qemu-2.6.0/memory.c:1076:memory_region_initfn)
> > address@hidden:object_dynamic_cast_assert
> qio-channel-socket->qio-channel-socket (io/chann
> > el-socket.c:389:qio_channel_socket_init)
> 
> 
> I don't know why qemu doing 'memory_region_initfn' function in this 10
> second, does anyone know this?

If memory initialization takes a long time, this is likely a result of
QEMU pre-allocating the memory pages, which is a fairly slow procedure,
that can have noticable startup time impact for guests with large RAM


> static void memory_region_initfn(Object *obj)
> > {
> >     MemoryRegion *mr = MEMORY_REGION(obj);
> >     ObjectProperty *op;
> >     mr->ops = &unassigned_mem_ops;
> >     mr->enabled = true;
> >     mr->romd_mode = true;
> >     mr->global_locking = true;
> >     mr->destructor = memory_region_destructor_none;
> >     QTAILQ_INIT(&mr->subregions);
> >     QTAILQ_INIT(&mr->coalesced);
> >     op = object_property_add(OBJECT(mr), "container",
> >                              "link<" TYPE_MEMORY_REGION ">",
> >                              memory_region_get_container,
> >                              NULL, /* memory_region_set_container */
> >                              NULL, NULL, &error_abort);
> >     op->resolve = memory_region_resolve_container;
> >     object_property_add(OBJECT(mr), "addr", "uint64",
> >                         memory_region_get_addr,
> >                         NULL, /* memory_region_set_addr */
> >                         NULL, NULL, &error_abort);
> >     object_property_add(OBJECT(mr), "priority", "uint32",
> >                         memory_region_get_priority,
> >                         NULL, /* memory_region_set_priority */
> >                         NULL, NULL, &error_abort);
> >     object_property_add_bool(OBJECT(mr), "may-overlap",
> >                              memory_region_get_may_overlap,
> >                              NULL, /* memory_region_set_may_overlap */
> >                              &error_abort);
> >     object_property_add(OBJECT(mr), "size", "uint64",
> >                         memory_region_get_size,
> >                         NULL, /* memory_region_set_size, */
> >                         NULL, NULL, &error_abort);
> > }
> 
> 
> I print all system call by `strace -f -T -tt -e trace=all -o output.txt
> $QEMU_CMD`, and I found this:
> 
> 5900  11:08:11.288701 nanosleep({0, 10000000}, 0x7ff103c13a80) = 0
> > <0.010171>
> > 5900  11:08:11.299052 futex(0x7ff10be24340, FUTEX_WAIT_PRIVATE, 2, NULL
> > <unfinished ...>
> > 5899  11:08:20.138492 rt_sigaction(SIGBUS, {0x7ff10b5b1040, [],
> > SA_RESTORER|SA_SIGINFO, 0x7ff1085fd100}, NULL, 8) = 0 <0.000012>
> > 5899  11:08:20.138598 rt_sigprocmask(SIG_SETMASK, [BUS USR1 ALRM IO],
> > NULL, 8) = 0 <0.000008>
> > 5899  11:08:20.138646 mmap(NULL, 266240, PROT_READ|PROT_WRITE,
> > MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ff10b380000 <0.000013>
> > 5899  11:08:20.138793 mmap(NULL, 266240, PROT_READ|PROT_WRITE,
> > MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ff10b33f000 <0.000009>
> 
> 
> I don't know who call `futex`, and why waste such long time.

This trace doesn't show enough info to say what is happening - a futex
is just the syscall used for mutex locking, so that just shows that
thread 5900 is waiting for some lock. This doesn't imply the time is
wasted, or really saying anything useful at all.

Meanwhile thread 5899 was doing some mmap calls. There's no obvious
relationship between the times in thread 5900 and 58909 in this trace.
The 9 second gap here is just coincidental.

Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



reply via email to

[Prev in Thread] Current Thread [Next in Thread]