Re: [PATCH] selftests/kvm: add set_boot_cpu_id test

2021-03-17 Thread Paolo Bonzini
On 17/03/21 08:44, Emanuele Giuseppe Esposito wrote: + printf("vcpu executing...\n"); + vcpu_run(vm, vcpuid); + printf("vcpu executed\n"); + + switch (get_ucall(vm, vcpuid, )) { + case UCALL_SYNC: + printf("stage %d sync %ld\n", stage, uc.args[1]); +

[PATCH] selftests/kvm: add set_boot_cpu_id test

2021-03-17 Thread Emanuele Giuseppe Esposito
Test for the KVM_SET_BOOT_CPU_ID ioctl. Check that it correctly allows to change the BSP vcpu. Signed-off-by: Emanuele Giuseppe Esposito --- tools/testing/selftests/kvm/.gitignore| 1 + tools/testing/selftests/kvm/Makefile | 1 + .../selftests/kvm/x86_64/set_boot_cpu_id.c