summary refs log tree commit diff stats
path: root/accel/kvm/kvm-all.c
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2019-10-02 11:22:12 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2019-10-03 12:48:42 +0200
commit87287ac02c39a04041f727c633bb9cc7a0339d91 (patch)
tree1298073ce4728914dcd39b0ad066b9b0c4612ed9 /accel/kvm/kvm-all.c
parent7f21573c822805a8e6be379d9bcf3ad9effef3dc (diff)
downloadfocaccia-qemu-87287ac02c39a04041f727c633bb9cc7a0339d91.tar.gz
focaccia-qemu-87287ac02c39a04041f727c633bb9cc7a0339d91.zip
accel/kvm: ensure ret always set
Some of the cross compilers rightly complain there are cases where ret
may not be set. 0 seems to be the reasonable default unless particular
slot explicitly returns -1.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/kvm/kvm-all.c')
-rw-r--r--accel/kvm/kvm-all.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c
index aabe097c41..d2d96d73e8 100644
--- a/accel/kvm/kvm-all.c
+++ b/accel/kvm/kvm-all.c
@@ -712,11 +712,11 @@ static int kvm_physical_log_clear(KVMMemoryListener *kml,
     KVMState *s = kvm_state;
     uint64_t start, size, offset, count;
     KVMSlot *mem;
-    int ret, i;
+    int ret = 0, i;
 
     if (!s->manual_dirty_log_protect) {
         /* No need to do explicit clear */
-        return 0;
+        return ret;
     }
 
     start = section->offset_within_address_space;
@@ -724,7 +724,7 @@ static int kvm_physical_log_clear(KVMMemoryListener *kml,
 
     if (!size) {
         /* Nothing more we can do... */
-        return 0;
+        return ret;
     }
 
     kvm_slots_lock(kml);