Commit bfda0e84 authored by Kevin Mulvey's avatar Kevin Mulvey Committed by Marcelo Tosatti

KVM: white space formatting in kvm_main.c

Better alignment of loop using tabs rather than spaces, this
makes checkpatch.pl happier.
Signed-off-by: default avatarKevin Mulvey <kmulvey@linux.com>
Signed-off-by: default avatarMarcelo Tosatti <mtosatti@redhat.com>
parent 668f198f
......@@ -1742,7 +1742,7 @@ int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
int offset = offset_in_page(gpa);
int ret;
while ((seg = next_segment(len, offset)) != 0) {
while ((seg = next_segment(len, offset)) != 0) {
ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
if (ret < 0)
return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment