lkml.org 
[lkml]   [2021]   [Oct]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [PATCH v5 13/13] KVM: Optimize overlapping memslots check
On Mon, Sep 20, 2021, Maciej S. Szmigiero wrote:
> From: "Maciej S. Szmigiero" <maciej.szmigiero@oracle.com>
>
> Do a quick lookup for possibly overlapping gfns when creating or moving
> a memslot instead of performing a linear scan of the whole memslot set.
>
> Signed-off-by: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
> ---
> virt/kvm/kvm_main.c | 36 +++++++++++++++++++++++++++---------
> 1 file changed, 27 insertions(+), 9 deletions(-)
>
> diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
> index 5fea467d6fec..78dad8c6376f 100644
> --- a/virt/kvm/kvm_main.c
> +++ b/virt/kvm/kvm_main.c
> @@ -1667,6 +1667,30 @@ static int kvm_delete_memslot(struct kvm *kvm,
> return kvm_set_memslot(kvm, mem, old, &new, as_id, KVM_MR_DELETE);
> }
>
> +static bool kvm_check_memslot_overlap(struct kvm_memslots *slots,
> + struct kvm_memory_slot *nslot)
> +{
> + int idx = slots->node_idx;
> + gfn_t nend = nslot->base_gfn + nslot->npages;
> + struct rb_node *node;
> +
> + kvm_for_each_memslot_in_gfn_range(node, slots, nslot->base_gfn, nend) {
> + struct kvm_memory_slot *cslot;
> + gfn_t cend;
> +
> + cslot = container_of(node, struct kvm_memory_slot, gfn_node[idx]);
> + cend = cslot->base_gfn + cslot->npages;
> + if (cslot->id == nslot->id)
> + continue;
> +
> + /* kvm_for_each_in_gfn_no_more() guarantees that cslot->base_gfn < nend */
> + if (cend > nslot->base_gfn)

Hmm, IMO the need for this check means that kvm_for_each_memslot_in_gfn_range()
is flawed. The user of kvm_for_each...() should not be responsible for skipping
memslots that do not actually overlap the requested range. I.e. this function
should be no more than:

static bool kvm_check_memslot_overlap(struct kvm_memslots *slots,
struct kvm_memory_slot *slot)
{
gfn_t start = slot->base_gfn;
gfn_t end = start + slot->npages;

kvm_for_each_memslot_in_gfn_range(&iter, slots, start, end) {
if (iter.slot->id != slot->id)
return true;
}

return false;
}


and I suspect kvm_zap_gfn_range() could be further simplified as well.

Looking back at the introduction of the helper, its comment's highlighting of
"possibily" now makes sense.

/* Iterate over each memslot *possibly* intersecting [start, end) range */
#define kvm_for_each_memslot_in_gfn_range(node, slots, start, end) \

That's an unnecessarily bad API. It's a very solvable problem for the iterator
helpers to advance until there's actually overlap, not doing so violates the
principle of least surprise, and unless I'm missing something, there's no use
case for an "approximate" iteration.

> + return true;
> + }
> +
> + return false;
> +}
> +
> /*
> * Allocate some memory and give it an address in the guest physical address
> * space.
> @@ -1752,16 +1776,10 @@ int __kvm_set_memory_region(struct kvm *kvm,
> }
>
> if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
> - int bkt;
> -
> /* Check for overlaps */

This comment can be dropped, the new function is fairly self-documenting.

> - kvm_for_each_memslot(tmp, bkt, __kvm_memslots(kvm, as_id)) {
> - if (tmp->id == id)
> - continue;
> - if (!((new.base_gfn + new.npages <= tmp->base_gfn) ||
> - (new.base_gfn >= tmp->base_gfn + tmp->npages)))
> - return -EEXIST;
> - }
> + if (kvm_check_memslot_overlap(__kvm_memslots(kvm, as_id),
> + &new))

And then with the comment dropped, the wrap can be avoided by folding the check
into the outer if statement, e.g.

if (((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) &&
kvm_check_memslot_overlap(__kvm_memslots(kvm, as_id), &new))
return -EEXIST;

> + return -EEXIST;
> }
>
> /* Allocate/free page dirty bitmap as needed */

\
 
 \ /
  Last update: 2021-10-26 21:01    [W:0.630 / U:0.296 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site