]> git.baikalelectronics.ru Git - kernel.git/commit
x86: kvm: hide the unused 'cpu' variable
authorArnd Bergmann <arnd@arndb.de>
Wed, 4 Apr 2018 10:44:14 +0000 (12:44 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 4 Apr 2018 16:57:40 +0000 (18:57 +0200)
commit7966352d2ae69f8be2872ada76aad4b5904e9216
treec4a73c5de76d4ce0bd459fe9ae61ca63687e971e
parent660a0d709a2b2b8bbba566e4159d6cddf7e1e7ec
x86: kvm: hide the unused 'cpu' variable

The local variable was newly introduced but is only accessed in one
place on x86_64, but not on 32-bit:

arch/x86/kvm/vmx.c: In function 'vmx_save_host_state':
arch/x86/kvm/vmx.c:2175:6: error: unused variable 'cpu' [-Werror=unused-variable]

This puts it into another #ifdef.

Fixes: c978faaaa04b ("x86/kvm/vmx: avoid expensive rdmsr for MSR_GS_BASE")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/vmx.c