kvm: fix previous commit for 32-bit builds
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 9 Jun 2021 05:49:13 +0000 (01:49 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 9 Jun 2021 05:49:13 +0000 (01:49 -0400)
commit4422829e8053068e0225e4d0ef42dc41ea7c9ef5
tree4604b6646782e727dc5d16b506d12e282eded269
parentda27a83fd6cc7780fea190e1f5c19e87019da65c
kvm: fix previous commit for 32-bit builds

array_index_nospec does not work for uint64_t on 32-bit builds.
However, the size of a memory slot must be less than 20 bits wide
on those system, since the memory slot must fit in the user
address space.  So just store it in an unsigned long.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
include/linux/kvm_host.h