aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing
diff options
context:
space:
mode:
authorEric Auger <eric.auger@redhat.com>2020-02-07 15:27:13 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2020-02-12 20:09:45 +0100
commitff479025349cef3106e165a761281851fd018282 (patch)
tree1ff4eed1568e6161176b8d281b0524b9a1bd44ee /tools/testing
parentKVM: x86/mmu: Fix struct guest_walker arrays for 5-level paging (diff)
downloadlinux-dev-ff479025349cef3106e165a761281851fd018282.tar.xz
linux-dev-ff479025349cef3106e165a761281851fd018282.zip
selftests: KVM: Remove unused x86_register enum
x86_register enum is not used, let's remove it. Signed-off-by: Eric Auger <eric.auger@redhat.com> Suggested-by: Vitaly Kuznetsov <vkuznets@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/testing')
-rw-r--r--tools/testing/selftests/kvm/include/x86_64/processor.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/testing/selftests/kvm/include/x86_64/processor.h b/tools/testing/selftests/kvm/include/x86_64/processor.h
index 12475047869f..7428513a4c68 100644
--- a/tools/testing/selftests/kvm/include/x86_64/processor.h
+++ b/tools/testing/selftests/kvm/include/x86_64/processor.h
@@ -36,26 +36,6 @@
#define X86_CR4_SMAP (1ul << 21)
#define X86_CR4_PKE (1ul << 22)
-/* The enum values match the intruction encoding of each register */
-enum x86_register {
- RAX = 0,
- RCX,
- RDX,
- RBX,
- RSP,
- RBP,
- RSI,
- RDI,
- R8,
- R9,
- R10,
- R11,
- R12,
- R13,
- R14,
- R15,
-};
-
/* General Registers in 64-Bit Mode */
struct gpr64_regs {
u64 rax;