From: Takuya Yoshikawa Date: Fri, 13 Dec 2013 06:08:38 +0000 (+0900) Subject: KVM: x86: Add comment on vcpu_enter_guest()'s return value X-Git-Tag: v3.14-rc1~127^2~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9357d93952143b178fa9d1f5095b8f273b01a1f1;p=platform%2Fkernel%2Flinux-stable.git KVM: x86: Add comment on vcpu_enter_guest()'s return value Giving proper names to the 0 and 1 was once suggested. But since 0 is returned to the userspace, giving it another name can introduce extra confusion. This patch just explains the meanings instead. Signed-off-by: Takuya Yoshikawa Signed-off-by: Paolo Bonzini --- diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 4fb1ee6..1dc0359 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -5865,6 +5865,11 @@ static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu) kvm_apic_update_tmr(vcpu, tmr); } +/* + * Returns 1 to let __vcpu_run() continue the guest execution loop without + * exiting to the userspace. Otherwise, the value will be returned to the + * userspace. + */ static int vcpu_enter_guest(struct kvm_vcpu *vcpu) { int r;