diff mbox series

[kvm-unit-tests] x86: Drop "enabled" field from "struct kvm_vcpu_pv_apf_data"

Message ID 20250221225744.2231975-1-seanjc@google.com (mailing list archive)
State New
Headers show
Series [kvm-unit-tests] x86: Drop "enabled" field from "struct kvm_vcpu_pv_apf_data" | expand

Commit Message

Sean Christopherson Feb. 21, 2025, 10:57 p.m. UTC
Remove the now-defunct (and never used in KVM-Unit-Tests) "enabled" field
from kvm_vcpu_pv_apf_data.  The field was removed from KVM by commit
ccb2280ec2f9 ("x86/kvm: Use separate percpu variable to track the enabling
of asyncpf").

Suggested-by: Xiaoyao Li <xiaoyao.li@intel.com>
Signed-off-by: Sean Christopherson <seanjc@google.com>
---
 x86/asyncpf.c | 1 -
 1 file changed, 1 deletion(-)


base-commit: f77fb696cfd0e4a5562cdca189be557946bf522f
diff mbox series

Patch

diff --git a/x86/asyncpf.c b/x86/asyncpf.c
index 6474fede..0e6eb6ff 100644
--- a/x86/asyncpf.c
+++ b/x86/asyncpf.c
@@ -50,7 +50,6 @@  struct kvm_vcpu_pv_apf_data {
       uint32_t  token;
 
       uint8_t  pad[56];
-      uint32_t  enabled;
 } apf_reason __attribute__((aligned(64)));
 
 char *buf;