[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] kvm: drop work around for kernel header typo.
From: |
Nan Wang |
Subject: |
[PATCH] kvm: drop work around for kernel header typo. |
Date: |
Mon, 7 Feb 2022 20:28:14 +0800 |
From: "wangnan.light" <wangnan.light@bytedance.com>
Kernel header once had a typo(linux commit caa057a2cad6), qemu have to work
around it with
hardcode macro(qemu commit 6f131f13e68d). Now kernel fix it(linux commit
766d3571d8e5),
so we can remove redundant code.
Signed-off-by: wangnan.light <wangnan.light@bytedance.com>
---
target/i386/kvm/kvm.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/target/i386/kvm/kvm.c b/target/i386/kvm/kvm.c
index 2c8feb4a6f..f65ed37591 100644
--- a/target/i386/kvm/kvm.c
+++ b/target/i386/kvm/kvm.c
@@ -2403,10 +2403,6 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
int disable_exits = kvm_check_extension(s, KVM_CAP_X86_DISABLE_EXITS);
int ret;
-/* Work around for kernel header with a typo. TODO: fix header and drop. */
-#if defined(KVM_X86_DISABLE_EXITS_HTL) && !defined(KVM_X86_DISABLE_EXITS_HLT)
-#define KVM_X86_DISABLE_EXITS_HLT KVM_X86_DISABLE_EXITS_HTL
-#endif
if (disable_exits) {
disable_exits &= (KVM_X86_DISABLE_EXITS_MWAIT |
KVM_X86_DISABLE_EXITS_HLT |
--
2.11.0
- [PATCH] kvm: drop work around for kernel header typo.,
Nan Wang <=