aboutsummaryrefslogtreecommitdiff
path: root/accel
diff options
context:
space:
mode:
authorShameer Kolothum <shameerali.kolothum.thodi@huawei.com>2023-09-05 10:12:46 +0100
committerPeter Maydell <peter.maydell@linaro.org>2023-09-08 16:41:36 +0100
commitc8f2eb5d414b788420b938f2ffdde891aa6c3ae8 (patch)
tree31e339b0f3f4c21d6961ade03485aa1ad9ad1d1e /accel
parentd03396a8bb19b77d4d0fa2ad2143999510f0d44e (diff)
downloadqemu-c8f2eb5d414b788420b938f2ffdde891aa6c3ae8.zip
qemu-c8f2eb5d414b788420b938f2ffdde891aa6c3ae8.tar.gz
qemu-c8f2eb5d414b788420b938f2ffdde891aa6c3ae8.tar.bz2
arm/kvm: Enable support for KVM_CAP_ARM_EAGER_SPLIT_CHUNK_SIZE
Now that we have Eager Page Split support added for ARM in the kernel, enable it in Qemu. This adds, -eager-split-size to -accel sub-options to set the eager page split chunk size. -enable KVM_CAP_ARM_EAGER_SPLIT_CHUNK_SIZE. The chunk size specifies how many pages to break at a time, using a single allocation. Bigger the chunk size, more pages need to be allocated ahead of time. Reviewed-by: Gavin Shan <gshan@redhat.com> Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> Message-id: 20230905091246.1931-1-shameerali.kolothum.thodi@huawei.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'accel')
-rw-r--r--accel/kvm/kvm-all.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c
index 2ba7521..ff1578b 100644
--- a/accel/kvm/kvm-all.c
+++ b/accel/kvm/kvm-all.c
@@ -3763,6 +3763,7 @@ static void kvm_accel_instance_init(Object *obj)
/* KVM dirty ring is by default off */
s->kvm_dirty_ring_size = 0;
s->kvm_dirty_ring_with_bitmap = false;
+ s->kvm_eager_split_size = 0;
s->notify_vmexit = NOTIFY_VMEXIT_OPTION_RUN;
s->notify_window = 0;
s->xen_version = 0;