Skip to content

Commit

Permalink
KVM: Return an error code only as a constant in kvm_get_dirty_log()
Browse files Browse the repository at this point in the history
* Return an error code without storing it in an intermediate variable.

* Delete the local variable "r" and the jump label "out" which became
  unnecessary with this refactoring.

Signed-off-by: Markus Elfring <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
  • Loading branch information
elfring authored and bonzini committed Feb 17, 2017
1 parent 58d6db3 commit 843574a
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions virt/kvm/kvm_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1102,37 +1102,31 @@ int kvm_get_dirty_log(struct kvm *kvm,
{
struct kvm_memslots *slots;
struct kvm_memory_slot *memslot;
int r, i, as_id, id;
int i, as_id, id;
unsigned long n;
unsigned long any = 0;

r = -EINVAL;
as_id = log->slot >> 16;
id = (u16)log->slot;
if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
goto out;
return -EINVAL;

slots = __kvm_memslots(kvm, as_id);
memslot = id_to_memslot(slots, id);
r = -ENOENT;
if (!memslot->dirty_bitmap)
goto out;
return -ENOENT;

n = kvm_dirty_bitmap_bytes(memslot);

for (i = 0; !any && i < n/sizeof(long); ++i)
any = memslot->dirty_bitmap[i];

r = -EFAULT;
if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
goto out;
return -EFAULT;

if (any)
*is_dirty = 1;

r = 0;
out:
return r;
return 0;
}
EXPORT_SYMBOL_GPL(kvm_get_dirty_log);

Expand Down

0 comments on commit 843574a

Please sign in to comment.