Symbol: vcpu_thread
tools/testing/selftests/kvm/dirty_log_test.c
238
static pthread_t vcpu_thread;
tools/testing/selftests/kvm/dirty_log_test.c
697
pthread_create(&vcpu_thread, NULL, vcpu_worker, vcpu);
tools/testing/selftests/kvm/dirty_log_test.c
800
pthread_join(vcpu_thread, NULL);
tools/testing/selftests/kvm/lib/memstress.c
264
struct vcpu_thread *vcpu = data;
tools/testing/selftests/kvm/lib/memstress.c
296
struct vcpu_thread *vcpu = &vcpu_threads[i];
tools/testing/selftests/kvm/lib/memstress.c
33
static struct vcpu_thread vcpu_threads[KVM_MAX_VCPUS];
tools/testing/selftests/kvm/memslot_perf_test.c
368
pthread_create(&data->vcpu_thread, NULL, vcpu_worker, data);
tools/testing/selftests/kvm/memslot_perf_test.c
383
pthread_join(data->vcpu_thread, NULL);
tools/testing/selftests/kvm/memslot_perf_test.c
87
pthread_t vcpu_thread;
tools/testing/selftests/kvm/set_memory_region_test.c
110
static struct kvm_vm *spawn_vm(struct kvm_vcpu **vcpu, pthread_t *vcpu_thread,
tools/testing/selftests/kvm/set_memory_region_test.c
136
pthread_create(vcpu_thread, NULL, vcpu_worker, *vcpu);
tools/testing/selftests/kvm/set_memory_region_test.c
180
pthread_t vcpu_thread;
tools/testing/selftests/kvm/set_memory_region_test.c
185
vm = spawn_vm(&vcpu, &vcpu_thread, guest_code_move_memory_region);
tools/testing/selftests/kvm/set_memory_region_test.c
219
pthread_join(vcpu_thread, NULL);
tools/testing/selftests/kvm/set_memory_region_test.c
274
pthread_t vcpu_thread;
tools/testing/selftests/kvm/set_memory_region_test.c
280
vm = spawn_vm(&vcpu, &vcpu_thread, guest_code_delete_memory_region);
tools/testing/selftests/kvm/set_memory_region_test.c
305
pthread_join(vcpu_thread, NULL);
tools/testing/selftests/kvm/x86/hyperv_ipi.c
275
r = pthread_create(&threads[0], NULL, vcpu_thread, vcpu[1]);
tools/testing/selftests/kvm/x86/hyperv_ipi.c
278
r = pthread_create(&threads[1], NULL, vcpu_thread, vcpu[2]);
tools/testing/selftests/kvm/x86/hyperv_tlb_flush.c
646
r = pthread_create(&threads[0], NULL, vcpu_thread, vcpu[1]);
tools/testing/selftests/kvm/x86/hyperv_tlb_flush.c
649
r = pthread_create(&threads[1], NULL, vcpu_thread, vcpu[2]);
tools/testing/selftests/kvm/x86/xapic_ipi_test.c
431
r = pthread_create(&threads[0], NULL, vcpu_thread, &params[0]);
tools/testing/selftests/kvm/x86/xapic_ipi_test.c
450
r = pthread_create(&threads[1], NULL, vcpu_thread, &params[1]);