]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
x86: kvm: avoid unused variable warning
authorArnd Bergmann <arnd@arndb.de>
Mon, 20 Aug 2018 21:37:50 +0000 (23:37 +0200)
committerBen Hutchings <ben@decadent.org.uk>
Fri, 22 May 2020 20:19:31 +0000 (21:19 +0100)
commitf70e3cd5460ba1d7d2c3133bbea8176e4ec5c6b6
tree7d82a0f3091d7531dd73cf370f7a9c4bb8427f65
parent36f73419847a5e2b79a85552faaf7e673f794bb7
x86: kvm: avoid unused variable warning

commit 7288bde1f9df6c1475675419bdd7725ce84dec56 upstream.

Removing one of the two accesses of the maxphyaddr variable led to
a harmless warning:

arch/x86/kvm/x86.c: In function 'kvm_set_mmio_spte_mask':
arch/x86/kvm/x86.c:6563:6: error: unused variable 'maxphyaddr' [-Werror=unused-variable]

Removing the #ifdef seems to be the nicest workaround, as it
makes the code look cleaner than adding another #ifdef.

Fixes: 28a1f3ac1d0c ("kvm: x86: Set highest physical address bits in non-present/reserved SPTEs")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
arch/x86/kvm/x86.c