Skip to content

Commit

Permalink
kvm: selftests: ucall: improve ucall placement in memory, fix unsigne…
Browse files Browse the repository at this point in the history
…d comparison

Based on a patch by Andrew Jones.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Dec 14, 2018
1 parent b666a4b commit 5132411
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions tools/testing/selftests/kvm/lib/ucall.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void ucall_init(struct kvm_vm *vm, ucall_type_t type, void *arg)
return;

if (type == UCALL_MMIO) {
vm_paddr_t gpa, start, end, step;
vm_paddr_t gpa, start, end, step, offset;
bool ret;

if (arg) {
Expand All @@ -53,17 +53,15 @@ void ucall_init(struct kvm_vm *vm, ucall_type_t type, void *arg)
* KVM_EXIT_MMIO. Well, at least that's how it works for AArch64.
* Here we start with a guess that the addresses around two
* thirds of the VA space are unmapped and then work both down
* and up from there in 1/6 VA space sized steps.
* and up from there in 1/12 VA space sized steps.
*/
start = 1ul << (vm->va_bits * 2 / 3);
end = 1ul << vm->va_bits;
step = 1ul << (vm->va_bits / 6);
for (gpa = start; gpa >= 0; gpa -= step) {
if (ucall_mmio_init(vm, gpa & ~(vm->page_size - 1)))
step = 1ul << (vm->va_bits / 12);
for (offset = 0; offset < end - start; offset += step) {
if (ucall_mmio_init(vm, (gpa - offset) & ~(vm->page_size - 1)))
return;
}
for (gpa = start + step; gpa < end; gpa += step) {
if (ucall_mmio_init(vm, gpa & ~(vm->page_size - 1)))
if (ucall_mmio_init(vm, (gpa + offset) & ~(vm->page_size - 1)))
return;
}
TEST_ASSERT(false, "Can't find a ucall mmio address");
Expand Down

0 comments on commit 5132411

Please sign in to comment.