On 15/04/20 00:12, Oliver Upton wrote: > nested_vmx_exit_reflected() returns a bool, not int. As such, refer to > the return values as true/false in the comment instead of 1/0. > > Signed-off-by: Oliver Upton <oupton@xxxxxxxxxx> > --- > arch/x86/kvm/vmx/nested.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/x86/kvm/vmx/nested.c b/arch/x86/kvm/vmx/nested.c > index cbc9ea2de28f9..2ca53dc362731 100644 > --- a/arch/x86/kvm/vmx/nested.c > +++ b/arch/x86/kvm/vmx/nested.c > @@ -5534,7 +5534,7 @@ static bool nested_vmx_exit_handled_vmcs_access(struct kvm_vcpu *vcpu, > } > > /* > - * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we > + * Return true if we should exit from L2 to L1 to handle an exit, or false if we > * should handle it ourselves in L0 (and then continue L2). Only call this > * when in is_guest_mode (L2). > */ > Queued, thanks. Paolo