KVM: x86: SVM: Fix one redefine issue about VMCB_AVIC_APIC_BAR_MASK

Message ID 20230315083320.230000-1-korantwork@gmail.com
State New
Headers
Series KVM: x86: SVM: Fix one redefine issue about VMCB_AVIC_APIC_BAR_MASK |

Commit Message

Xinghui Li March 15, 2023, 8:33 a.m. UTC
  From: Xinghui Li <korantli@tencent.com>

VMCB_AVIC_APIC_BAR_MASK is defined twice with the same value in svm.h,
which is meaningless. Delete the duplicate one.

Fixes: 391503528257 ("KVM: x86: SVM: move avic definitions from AMD's spec to svm.h")
Signed-off-by: Xinghui Li <korantli@tencent.com>
---
 arch/x86/include/asm/svm.h | 1 -
 1 file changed, 1 deletion(-)
  

Patch

diff --git a/arch/x86/include/asm/svm.h b/arch/x86/include/asm/svm.h
index cb1ee53ad3b1..633f724d461a 100644
--- a/arch/x86/include/asm/svm.h
+++ b/arch/x86/include/asm/svm.h
@@ -276,7 +276,6 @@  enum avic_ipi_failure_cause {
 #define X2AVIC_MAX_PHYSICAL_ID		0x1FFUL
 
 #define AVIC_HPA_MASK	~((0xFFFULL << 52) | 0xFFF)
-#define VMCB_AVIC_APIC_BAR_MASK		0xFFFFFFFFFF000ULL
 
 
 struct vmcb_seg {