KVM: selftests: Keep track of memslots more efficiently
authorMaciej S. Szmigiero <maciej.szmigiero@oracle.com>
Tue, 13 Apr 2021 14:08:27 +0000 (16:08 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 27 May 2021 11:45:54 +0000 (07:45 -0400)
commit22721a56109940f15b673d0f01907b7a7202275e
treee9d63c4fa3a8c15bcf1fd051582dbcdecfb818b8
parenta13534d6676d2f2a9aa286e27e482b4896ff90e3
KVM: selftests: Keep track of memslots more efficiently

The KVM selftest framework was using a simple list for keeping track of
the memslots currently in use.
This resulted in lookups and adding a single memslot being O(n), the
later due to linear scanning of the existing memslot set to check for
the presence of any conflicting entries.

Before this change, benchmarking high count of memslots was more or less
impossible as pretty much all the benchmark time was spent in the
selftest framework code.

We can simply use a rbtree for keeping track of both of gfn and hva.
We don't need an interval tree for hva here as we can't have overlapping
memslots because we allocate a completely new memory chunk for each new
memslot.

Signed-off-by: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Message-Id: <b12749d47ee860468240cf027412c91b76dbe3db.1618253574.git.maciej.szmigiero@oracle.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tools/testing/selftests/kvm/Makefile
tools/testing/selftests/kvm/lib/kvm_util.c
tools/testing/selftests/kvm/lib/kvm_util_internal.h
tools/testing/selftests/kvm/lib/rbtree.c [new file with mode: 0644]