qga/commands-posix: Send CCW address on s390x with the fsinfo data
[qemu/ar7.git] / accel / kvm / kvm-cpus.c
blobd809b1e74c94c10200bf37e2daf534346f3af8b4
1 /*
2 * QEMU KVM support
4 * Copyright IBM, Corp. 2008
5 * Red Hat, Inc. 2008
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Glauber Costa <gcosta@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
16 #include "qemu/osdep.h"
17 #include "qemu/error-report.h"
18 #include "qemu/main-loop.h"
19 #include "sysemu/kvm_int.h"
20 #include "sysemu/runstate.h"
21 #include "sysemu/cpus.h"
22 #include "qemu/guest-random.h"
23 #include "qapi/error.h"
25 #include "kvm-cpus.h"
27 static void *kvm_vcpu_thread_fn(void *arg)
29 CPUState *cpu = arg;
30 int r;
32 rcu_register_thread();
34 qemu_mutex_lock_iothread();
35 qemu_thread_get_self(cpu->thread);
36 cpu->thread_id = qemu_get_thread_id();
37 cpu->can_do_io = 1;
38 current_cpu = cpu;
40 r = kvm_init_vcpu(cpu, &error_fatal);
41 kvm_init_cpu_signals(cpu);
43 /* signal CPU creation */
44 cpu_thread_signal_created(cpu);
45 qemu_guest_random_seed_thread_part2(cpu->random_seed);
47 do {
48 if (cpu_can_run(cpu)) {
49 r = kvm_cpu_exec(cpu);
50 if (r == EXCP_DEBUG) {
51 cpu_handle_guest_debug(cpu);
54 qemu_wait_io_event(cpu);
55 } while (!cpu->unplug || cpu_can_run(cpu));
57 kvm_destroy_vcpu(cpu);
58 cpu_thread_signal_destroyed(cpu);
59 qemu_mutex_unlock_iothread();
60 rcu_unregister_thread();
61 return NULL;
64 static void kvm_start_vcpu_thread(CPUState *cpu)
66 char thread_name[VCPU_THREAD_NAME_SIZE];
68 cpu->thread = g_malloc0(sizeof(QemuThread));
69 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
70 qemu_cond_init(cpu->halt_cond);
71 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/KVM",
72 cpu->cpu_index);
73 qemu_thread_create(cpu->thread, thread_name, kvm_vcpu_thread_fn,
74 cpu, QEMU_THREAD_JOINABLE);
77 const CpusAccel kvm_cpus = {
78 .create_vcpu_thread = kvm_start_vcpu_thread,
80 .synchronize_post_reset = kvm_cpu_synchronize_post_reset,
81 .synchronize_post_init = kvm_cpu_synchronize_post_init,
82 .synchronize_state = kvm_cpu_synchronize_state,
83 .synchronize_pre_loadvm = kvm_cpu_synchronize_pre_loadvm,