From: Peter Xu <peterx@redhat.com>
To: Daniil Tatianin <d-tatianin@yandex-team.ru>
Cc: Paolo Bonzini <pbonzini@redhat.com>, Stefan Weil <sw@weilnetz.de>,
Fabiano Rosas <farosas@suse.de>,
qemu-devel@nongnu.org
Subject: Re: [PATCH 0/2] overcommit: introduce mem-lock-onfault
Date: Tue, 10 Dec 2024 11:48:45 -0500 [thread overview]
Message-ID: <Z1hw7dvTe4jMgXeq@x1n> (raw)
In-Reply-To: <779a4733-888b-4591-af5e-381572c84c20@yandex-team.ru>
On Mon, Dec 09, 2024 at 10:40:51AM +0300, Daniil Tatianin wrote:
> On 12/6/24 4:08 AM, Peter Xu wrote:
>
> > On Fri, Dec 06, 2024 at 02:19:06AM +0300, Daniil Tatianin wrote:
> > > Currently, passing mem-lock=on to QEMU causes memory usage to grow by
> > > huge amounts:
> > >
> > > no memlock:
> > > $ qemu-system-x86_64 -overcommit mem-lock=off
> > > $ ps -p $(pidof ./qemu-system-x86_64) -o rss=
> > > 45652
> > >
> > > $ ./qemu-system-x86_64 -overcommit mem-lock=off -enable-kvm
> > > $ ps -p $(pidof ./qemu-system-x86_64) -o rss=
> > > 39756
> > >
> > > memlock:
> > > $ qemu-system-x86_64 -overcommit mem-lock=on
> > > $ ps -p $(pidof ./qemu-system-x86_64) -o rss=
> > > 1309876
> > >
> > > $ ./qemu-system-x86_64 -overcommit mem-lock=on -enable-kvm
> > > $ ps -p $(pidof ./qemu-system-x86_64) -o rss=
> > > 259956
> > >
> > > This is caused by the fact that mlockall(2) automatically
> > > write-faults every existing and future anonymous mappings in the
> > > process right away.
> > >
> > > One of the reasons to enable mem-lock is to protect a QEMU process'
> > > pages from being compacted and migrated by kcompactd (which does so
> > > by messing with a live process page tables causing thousands of TLB
> > > flush IPIs per second) basically stealing all guest time while it's
> > > active.
> > >
> > > mem-lock=on helps against this (given compact_unevictable_allowed is 0),
> > > but the memory overhead it introduces is an undesirable side effect,
> > > which we can completely avoid by passing MCL_ONFAULT to mlockall, which
> > > is what this series allows to do with a new command line option called
> > > mem-lock-onfault.
> > IMHO it'll be always helpful to dig and provide information on why such
> > difference existed. E.g. guest mem should normally be the major mem sink
> > and that definitely won't be affected by either ON_FAULT or not.
> >
> > I had a quick look explicitly on tcg (as that really surprised me a bit..).
> > When you look at the mappings there's 1G constant shmem map that always got
> > locked and populated.
> >
> > It turns out to be tcg's jit buffer, alloc_code_gen_buffer_splitwx_memfd:
>
> Thanks for looking into this! I'd guessed it was something to do with JIT,
> makes sense.
>
> > buf_rw = qemu_memfd_alloc("tcg-jit", size, 0, &fd, errp);
> > if (buf_rw == NULL) {
> > goto fail;
> > }
> >
> > buf_rx = mmap(NULL, size, host_prot_read_exec(), MAP_SHARED, fd, 0);
> > if (buf_rx == MAP_FAILED) {
> > error_setg_errno(errp, errno,
> > "failed to map shared memory for execute");
> > goto fail;
> > }
> >
> > Looks like that's the major reason why tcg has mlockall bloated constantly
> > with roughly 1G size - that seems to be from tcg_init_machine(). I didn't
> > check kvm.
> >
> > Logically having a on-fault option won't ever hurt, so probably not an
> > issue to have it anyway. Still, share my finding above, as IIUC that's
> > mostly why it was bloated for tcg, so maybe there're other options too.
>
> Yeah, the situation with KVM is slightly better, although it's still a
> ~200MiB overhead with default Q35 and no extra devices (I haven't measured
> the difference with various devices).
>
> I think it's definitely nice to have an on-fault option for this, as
> optimizing every possible mmap caller for the rare mem-lock=on case might be
> too ambitious.
It really depends, IMHO, and that's why I didn't already ack the series.
It may be relevant to the trade-off here on allowing faults to happen later
even if mem-lock=on. The question is why, for example in your use case,
would like to lock the memory.
Take kvm-rt as example, I believe that's needed because RT apps (running in
the guest) would like to avoid page faults throughout the stack, so that
guest workload, especially on the latency part of things, is predictable.
Here if on-fault is enabled it could beat that purpose already.
Or if the current use case is making sure after QEMU boots the memory will
always present so that even if later the host faces memory stress it won't
affect anything running the VM as it pre-allocated everything (so that's
beyond memory-backend-*,prealloc=on, because it covers QEMU/KVM memory
too). Meanwhile locked pages won't swap out, so it's always there.
But then with on-fault, it means the pages will only be locked upon access.
Then it means the guarantee on "QEMU secures the memory on boot" is gone
too.
That's why I was thinking whether your specific use case really wants
on-fault, or you do want e.g. to have a limit on the tcg-jit buffer instead
(or same to whatever kvm was consuming), so you don't want that large a
buffer, however you still want to have all things locked up upfront. It
can be relevant to why your use case started to use mem-lock=on before this
on-fault flag.
OTOH, I believe on-fault cannot work with kvm-rt at all already, because of
its possible faults happening later on - even if the fault can happen in
KVM and even if it's not about accessing guest mem, it can still be part of
overhead later when running the rt application in the guest, hence it can
start to break RT deterministics.
Thanks,
--
Peter Xu
next prev parent reply other threads:[~2024-12-10 16:49 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-05 23:19 [PATCH 0/2] overcommit: introduce mem-lock-onfault Daniil Tatianin
2024-12-05 23:19 ` [PATCH 1/2] os: add an ability to lock memory on_fault Daniil Tatianin
2024-12-05 23:19 ` [PATCH 2/2] overcommit: introduce mem-lock-onfault Daniil Tatianin
2024-12-06 1:08 ` [PATCH 0/2] " Peter Xu
2024-12-09 7:40 ` Daniil Tatianin
2024-12-10 16:48 ` Peter Xu [this message]
2024-12-10 17:01 ` Daniil Tatianin
2024-12-10 17:20 ` Peter Xu
2024-12-10 17:23 ` Daniil Tatianin
2024-12-10 14:48 ` Vladimir Sementsov-Ogievskiy
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=Z1hw7dvTe4jMgXeq@x1n \
--to=peterx@redhat.com \
--cc=d-tatianin@yandex-team.ru \
--cc=farosas@suse.de \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=sw@weilnetz.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.