commit | 9064c9d544b906a63e359db5f908594bc07580e6 | [log] [tgz] |
---|---|---|
author | Paolo Bonzini <pbonzini@redhat.com> | Wed Jun 09 01:49:13 2021 -0400 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Wed Jun 16 12:01:46 2021 +0200 |
tree | 38b4c9d3505e3caea4b3c9955e8e0f2c0fe5b6f1 | |
parent | 351075bcfea996ce15b546c2cb80986736b917f4 [diff] |
kvm: fix previous commit for 32-bit builds commit 4422829e8053068e0225e4d0ef42dc41ea7c9ef5 upstream. 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>