[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v7 1/4] kvm: extract kvm_log_clear_one_slot
From: |
Christian Borntraeger |
Subject: |
Re: [PATCH v7 1/4] kvm: extract kvm_log_clear_one_slot |
Date: |
Mon, 30 Sep 2019 12:25:14 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 |
On 24.09.19 16:47, Igor Mammedov wrote:
> From: Paolo Bonzini <address@hidden>
>
> We may need to clear the dirty bitmap for more than one KVM memslot.
> First do some code movement with no semantic change.
>
> Signed-off-by: Paolo Bonzini <address@hidden>
> Signed-off-by: Igor Mammedov <address@hidden>
> Reviewed-by: Peter Xu <address@hidden>
> ---
> accel/kvm/kvm-all.c | 102 ++++++++++++++++++++++++--------------------
> 1 file changed, 56 insertions(+), 46 deletions(-)
>
> diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c
> index b09bad0804..e9e6086c09 100644
> --- a/accel/kvm/kvm-all.c
> +++ b/accel/kvm/kvm-all.c
> @@ -575,55 +575,13 @@ out:
> #define KVM_CLEAR_LOG_ALIGN (qemu_real_host_page_size <<
> KVM_CLEAR_LOG_SHIFT)
> #define KVM_CLEAR_LOG_MASK (-KVM_CLEAR_LOG_ALIGN)
>
> -/**
> - * kvm_physical_log_clear - Clear the kernel's dirty bitmap for range
> - *
> - * NOTE: this will be a no-op if we haven't enabled manual dirty log
> - * protection in the host kernel because in that case this operation
> - * will be done within log_sync().
> - *
> - * @kml: the kvm memory listener
> - * @section: the memory range to clear dirty bitmap
> - */
> -static int kvm_physical_log_clear(KVMMemoryListener *kml,
> - MemoryRegionSection *section)
> +static int kvm_log_clear_one_slot(KVMSlot *mem, int as_id, uint64_t start,
> uint64_t size)
When applying, I will split this to fit within 80 chars. ok?