]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
KVM: VMX: Fix comment of handle_vmx_instruction()
authorGao Shiyuan <gaoshiyuan@baidu.com>
Fri, 3 Jan 2025 15:38:14 +0000 (23:38 +0800)
committerSean Christopherson <seanjc@google.com>
Wed, 8 Jan 2025 22:12:31 +0000 (14:12 -0800)
Fix a goof in handle_vmx_instruction()'s comment where it references the
non-existent nested_vmx_setup(); the function that overwrites the exit
handlers is nested_vmx_hardware_setup().

Note, this isn't a case of a stale comment, e.g. due to the function being
renamed.  The comment has always been wrong.

Fixes: e4027cfafd78 ("KVM: nVMX: Set callbacks for nested functions during hardware setup")
Signed-off-by: Gao Shiyuan <gaoshiyuan@baidu.com>
Link: https://lore.kernel.org/r/20250103153814.73903-1-gaoshiyuan@baidu.com
[sean: massage changelog]
Signed-off-by: Sean Christopherson <seanjc@google.com>
arch/x86/kvm/vmx/vmx.c

index a5dbd8f51eedf452b28ad88e46ed2c0a4725f204..edbed8ef2fe4a087a11fb727505f79873ddc6052 100644 (file)
@@ -6050,7 +6050,7 @@ static int handle_preemption_timer(struct kvm_vcpu *vcpu)
 
 /*
  * When nested=0, all VMX instruction VM Exits filter here.  The handlers
- * are overwritten by nested_vmx_setup() when nested=1.
+ * are overwritten by nested_vmx_hardware_setup() when nested=1.
  */
 static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
 {