From: Peter Xu <peterx@redhat.com>
To: David Hildenbrand <david@redhat.com>
Cc: qemu-devel@nongnu.org, Juraj Marcin <jmarcin@redhat.com>,
Prasad Pandit <ppandit@redhat.com>,
Julia Suvorova <jusual@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Fabiano Rosas <farosas@suse.de>,
Vitaly Kuznetsov <vkuznets@redhat.com>,
Zhiyi Guo <zhguo@redhat.com>
Subject: Re: [PATCH 3/4] KVM: Dynamic sized kvm memslots array
Date: Wed, 4 Sep 2024 17:34:38 -0400 [thread overview]
Message-ID: <ZtjSbnb-yFOEsq0R@x1n> (raw)
In-Reply-To: <ff6430ac-f7f4-49f3-a63b-76eae5b2f791@redhat.com>
On Wed, Sep 04, 2024 at 11:23:33PM +0200, David Hildenbrand wrote:
>
> > >
> > > Then, you can remove the parameter from kvm_slots_grow() completely and just call it
> > > kvm_slots_double() and simplify a bit:
> > >
> > > static bool kvm_slots_double(KVMMemoryListener *kml)
> > > {
> > > unsigned int i, nr_slots_new, cur = kml->nr_slots_allocated;
> > > KVMSlot *slots;
> > >
> > > nr_slots_new = MIN(cur * 2, kvm_state->nr_slots_max);
> > > if (nr_slots_new == kvm_state->nr_slots_max) {
> > > /* We reached the maximum */
> > > return false;
> > > }
> > >
> > > assert(kml->slots);
> > > slots = g_renew(KVMSlot, kml->slots, nr_slots_new);
> > > /*
> > > * g_renew() doesn't initialize extended buffers, however kvm
> > > * memslots require fields to be zero-initialized. E.g. pointers,
> > > * memory_size field, etc.
> > > */
> > > memset(&slots[cur], 0x0, sizeof(slots[0]) * (nr_slots_new - cur));
> > >
> > > for (i = cur; i < nr_slots_new; i++) {
> > > slots[i].slot = i;
> > > }
> > >
> > > kml->slots = slots;
> > > kml->nr_slots_allocated = nr_slots_new;
> > > trace_kvm_slots_grow(cur, nr_slots_new);
> > >
> > > return true;
> > > }
> >
> > Personally I still think it cleaner to allow setting whatever size.
>
> Why would one need that? If any, at some point we would want to shrink or
> rather "compact".
>
> >
> > We only have one place growing so far, which is pretty trivial to double
> > there, IMO. I'll wait for a second opinion, or let me know if you have
> > strong feelings..
>
> I think the simplicity of kvm_slots_double() speaks for itself, but I won't
> fight for it.
Using kvm_slots_double() won't be able to share the same code when
initialize (to e.g. avoid hard-coded initialize of "slots[i].slot").
Thanks,
--
Peter Xu
next prev parent reply other threads:[~2024-09-04 21:35 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-04 19:16 [PATCH 0/4] KVM: Dynamic sized memslots array Peter Xu
2024-09-04 19:16 ` [PATCH 1/4] KVM: Rename KVMState->nr_slots to nr_slots_max Peter Xu
2024-09-04 20:36 ` David Hildenbrand
2024-09-04 19:16 ` [PATCH 2/4] KVM: Define KVM_MEMSLOTS_NUM_MAX_DEFAULT Peter Xu
2024-09-04 20:39 ` David Hildenbrand
2024-09-04 20:56 ` Peter Xu
2024-09-04 19:16 ` [PATCH 3/4] KVM: Dynamic sized kvm memslots array Peter Xu
2024-09-04 20:43 ` David Hildenbrand
2024-09-04 20:51 ` David Hildenbrand
2024-09-04 20:55 ` Peter Xu
2024-09-04 21:07 ` David Hildenbrand
2024-09-04 21:20 ` Peter Xu
2024-09-04 21:23 ` David Hildenbrand
2024-09-04 21:34 ` Peter Xu [this message]
2024-09-04 21:38 ` David Hildenbrand
2024-09-04 21:46 ` Peter Xu
2024-09-04 21:58 ` Peter Xu
2024-09-04 19:16 ` [PATCH 4/4] KVM: Rename KVMMemoryListener.nr_used_slots to nr_slots_used Peter Xu
2024-09-04 20:40 ` David Hildenbrand
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=ZtjSbnb-yFOEsq0R@x1n \
--to=peterx@redhat.com \
--cc=david@redhat.com \
--cc=farosas@suse.de \
--cc=jmarcin@redhat.com \
--cc=jusual@redhat.com \
--cc=pbonzini@redhat.com \
--cc=ppandit@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=vkuznets@redhat.com \
--cc=zhguo@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).