Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU System Emulator |
| 3 | * |
| 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | * THE SOFTWARE. |
| 23 | */ |
| 24 | |
| 25 | /* Needed early for CONFIG_BSD etc. */ |
| 26 | #include "config-host.h" |
| 27 | |
Paolo Bonzini | 83c9089 | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 28 | #include "monitor/monitor.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 29 | #include "sysemu/sysemu.h" |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 30 | #include "exec/gdbstub.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 31 | #include "sysemu/dma.h" |
| 32 | #include "sysemu/kvm.h" |
Luiz Capitulino | de0b36b | 2011-09-21 16:38:35 -0300 | [diff] [blame] | 33 | #include "qmp-commands.h" |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 34 | |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 35 | #include "qemu/thread.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 36 | #include "sysemu/cpus.h" |
| 37 | #include "sysemu/qtest.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 38 | #include "qemu/main-loop.h" |
| 39 | #include "qemu/bitmap.h" |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 40 | #include "qemu/seqlock.h" |
Jan Kiszka | 0ff0fc1 | 2011-06-23 10:15:55 +0200 | [diff] [blame] | 41 | |
| 42 | #ifndef _WIN32 |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 43 | #include "qemu/compatfd.h" |
Jan Kiszka | 0ff0fc1 | 2011-06-23 10:15:55 +0200 | [diff] [blame] | 44 | #endif |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 45 | |
Jan Kiszka | 6d9cb73 | 2011-02-01 22:15:58 +0100 | [diff] [blame] | 46 | #ifdef CONFIG_LINUX |
| 47 | |
| 48 | #include <sys/prctl.h> |
| 49 | |
Marcelo Tosatti | c0532a7 | 2010-10-11 15:31:21 -0300 | [diff] [blame] | 50 | #ifndef PR_MCE_KILL |
| 51 | #define PR_MCE_KILL 33 |
| 52 | #endif |
| 53 | |
Jan Kiszka | 6d9cb73 | 2011-02-01 22:15:58 +0100 | [diff] [blame] | 54 | #ifndef PR_MCE_KILL_SET |
| 55 | #define PR_MCE_KILL_SET 1 |
| 56 | #endif |
| 57 | |
| 58 | #ifndef PR_MCE_KILL_EARLY |
| 59 | #define PR_MCE_KILL_EARLY 1 |
| 60 | #endif |
| 61 | |
| 62 | #endif /* CONFIG_LINUX */ |
| 63 | |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 64 | static CPUState *next_cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 65 | |
Tiejun Chen | 321bc0b | 2013-08-02 09:43:09 +0800 | [diff] [blame] | 66 | bool cpu_is_stopped(CPUState *cpu) |
| 67 | { |
| 68 | return cpu->stopped || !runstate_is_running(); |
| 69 | } |
| 70 | |
Andreas Färber | a98ae1d | 2013-05-26 23:21:08 +0200 | [diff] [blame] | 71 | static bool cpu_thread_is_idle(CPUState *cpu) |
Peter Maydell | ac873f1 | 2012-07-19 16:52:27 +0100 | [diff] [blame] | 72 | { |
Andreas Färber | c64ca81 | 2012-05-03 02:11:45 +0200 | [diff] [blame] | 73 | if (cpu->stop || cpu->queued_work_first) { |
Peter Maydell | ac873f1 | 2012-07-19 16:52:27 +0100 | [diff] [blame] | 74 | return false; |
| 75 | } |
Tiejun Chen | 321bc0b | 2013-08-02 09:43:09 +0800 | [diff] [blame] | 76 | if (cpu_is_stopped(cpu)) { |
Peter Maydell | ac873f1 | 2012-07-19 16:52:27 +0100 | [diff] [blame] | 77 | return true; |
| 78 | } |
Andreas Färber | 259186a | 2013-01-17 18:51:17 +0100 | [diff] [blame] | 79 | if (!cpu->halted || qemu_cpu_has_work(cpu) || |
Alexander Graf | 215e79c | 2013-04-24 22:24:12 +0200 | [diff] [blame] | 80 | kvm_halt_in_kernel()) { |
Peter Maydell | ac873f1 | 2012-07-19 16:52:27 +0100 | [diff] [blame] | 81 | return false; |
| 82 | } |
| 83 | return true; |
| 84 | } |
| 85 | |
| 86 | static bool all_cpu_threads_idle(void) |
| 87 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 88 | CPUState *cpu; |
Peter Maydell | ac873f1 | 2012-07-19 16:52:27 +0100 | [diff] [blame] | 89 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 90 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 91 | if (!cpu_thread_is_idle(cpu)) { |
Peter Maydell | ac873f1 | 2012-07-19 16:52:27 +0100 | [diff] [blame] | 92 | return false; |
| 93 | } |
| 94 | } |
| 95 | return true; |
| 96 | } |
| 97 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 98 | /***********************************************************/ |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 99 | /* guest cycle counter */ |
| 100 | |
| 101 | /* Conversion factor from emulated instructions to virtual clock ticks. */ |
| 102 | static int icount_time_shift; |
| 103 | /* Arbitrarily pick 1MIPS as the minimum allowable speed. */ |
| 104 | #define MAX_ICOUNT_SHIFT 10 |
| 105 | /* Compensate for varying guest execution speed. */ |
| 106 | static int64_t qemu_icount_bias; |
| 107 | static QEMUTimer *icount_rt_timer; |
| 108 | static QEMUTimer *icount_vm_timer; |
| 109 | static QEMUTimer *icount_warp_timer; |
| 110 | static int64_t vm_clock_warp_start; |
| 111 | static int64_t qemu_icount; |
| 112 | |
| 113 | typedef struct TimersState { |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 114 | /* Protected by BQL. */ |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 115 | int64_t cpu_ticks_prev; |
| 116 | int64_t cpu_ticks_offset; |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 117 | |
| 118 | /* cpu_clock_offset can be read out of BQL, so protect it with |
| 119 | * this lock. |
| 120 | */ |
| 121 | QemuSeqLock vm_clock_seqlock; |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 122 | int64_t cpu_clock_offset; |
| 123 | int32_t cpu_ticks_enabled; |
| 124 | int64_t dummy; |
| 125 | } TimersState; |
| 126 | |
Liu Ping Fan | d9cd400 | 2013-07-21 08:43:00 +0000 | [diff] [blame] | 127 | static TimersState timers_state; |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 128 | |
| 129 | /* Return the virtual CPU time, based on the instruction counter. */ |
| 130 | int64_t cpu_get_icount(void) |
| 131 | { |
| 132 | int64_t icount; |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 133 | CPUState *cpu = current_cpu; |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 134 | |
| 135 | icount = qemu_icount; |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 136 | if (cpu) { |
| 137 | CPUArchState *env = cpu->env_ptr; |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 138 | if (!can_do_io(env)) { |
| 139 | fprintf(stderr, "Bad clock read\n"); |
| 140 | } |
| 141 | icount -= (env->icount_decr.u16.low + env->icount_extra); |
| 142 | } |
| 143 | return qemu_icount_bias + (icount << icount_time_shift); |
| 144 | } |
| 145 | |
| 146 | /* return the host CPU cycle counter and handle stop/restart */ |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 147 | /* Caller must hold the BQL */ |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 148 | int64_t cpu_get_ticks(void) |
| 149 | { |
| 150 | if (use_icount) { |
| 151 | return cpu_get_icount(); |
| 152 | } |
| 153 | if (!timers_state.cpu_ticks_enabled) { |
| 154 | return timers_state.cpu_ticks_offset; |
| 155 | } else { |
| 156 | int64_t ticks; |
| 157 | ticks = cpu_get_real_ticks(); |
| 158 | if (timers_state.cpu_ticks_prev > ticks) { |
| 159 | /* Note: non increasing ticks may happen if the host uses |
| 160 | software suspend */ |
| 161 | timers_state.cpu_ticks_offset += timers_state.cpu_ticks_prev - ticks; |
| 162 | } |
| 163 | timers_state.cpu_ticks_prev = ticks; |
| 164 | return ticks + timers_state.cpu_ticks_offset; |
| 165 | } |
| 166 | } |
| 167 | |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 168 | static int64_t cpu_get_clock_locked(void) |
| 169 | { |
| 170 | int64_t ti; |
| 171 | |
| 172 | if (!timers_state.cpu_ticks_enabled) { |
| 173 | ti = timers_state.cpu_clock_offset; |
| 174 | } else { |
| 175 | ti = get_clock(); |
| 176 | ti += timers_state.cpu_clock_offset; |
| 177 | } |
| 178 | |
| 179 | return ti; |
| 180 | } |
| 181 | |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 182 | /* return the host CPU monotonic timer and handle stop/restart */ |
| 183 | int64_t cpu_get_clock(void) |
| 184 | { |
| 185 | int64_t ti; |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 186 | unsigned start; |
| 187 | |
| 188 | do { |
| 189 | start = seqlock_read_begin(&timers_state.vm_clock_seqlock); |
| 190 | ti = cpu_get_clock_locked(); |
| 191 | } while (seqlock_read_retry(&timers_state.vm_clock_seqlock, start)); |
| 192 | |
| 193 | return ti; |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 194 | } |
| 195 | |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 196 | /* enable cpu_get_ticks() |
| 197 | * Caller must hold BQL which server as mutex for vm_clock_seqlock. |
| 198 | */ |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 199 | void cpu_enable_ticks(void) |
| 200 | { |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 201 | /* Here, the really thing protected by seqlock is cpu_clock_offset. */ |
| 202 | seqlock_write_lock(&timers_state.vm_clock_seqlock); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 203 | if (!timers_state.cpu_ticks_enabled) { |
| 204 | timers_state.cpu_ticks_offset -= cpu_get_real_ticks(); |
| 205 | timers_state.cpu_clock_offset -= get_clock(); |
| 206 | timers_state.cpu_ticks_enabled = 1; |
| 207 | } |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 208 | seqlock_write_unlock(&timers_state.vm_clock_seqlock); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | /* disable cpu_get_ticks() : the clock is stopped. You must not call |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 212 | * cpu_get_ticks() after that. |
| 213 | * Caller must hold BQL which server as mutex for vm_clock_seqlock. |
| 214 | */ |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 215 | void cpu_disable_ticks(void) |
| 216 | { |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 217 | /* Here, the really thing protected by seqlock is cpu_clock_offset. */ |
| 218 | seqlock_write_lock(&timers_state.vm_clock_seqlock); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 219 | if (timers_state.cpu_ticks_enabled) { |
| 220 | timers_state.cpu_ticks_offset = cpu_get_ticks(); |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 221 | timers_state.cpu_clock_offset = cpu_get_clock_locked(); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 222 | timers_state.cpu_ticks_enabled = 0; |
| 223 | } |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 224 | seqlock_write_unlock(&timers_state.vm_clock_seqlock); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | /* Correlation between real and virtual time is always going to be |
| 228 | fairly approximate, so ignore small variation. |
| 229 | When the guest is idle real and virtual time will be aligned in |
| 230 | the IO wait loop. */ |
| 231 | #define ICOUNT_WOBBLE (get_ticks_per_sec() / 10) |
| 232 | |
| 233 | static void icount_adjust(void) |
| 234 | { |
| 235 | int64_t cur_time; |
| 236 | int64_t cur_icount; |
| 237 | int64_t delta; |
| 238 | static int64_t last_delta; |
Paolo Bonzini | 468cc7c | 2013-10-07 17:21:51 +0200 | [diff] [blame^] | 239 | |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 240 | /* If the VM is not running, then do nothing. */ |
| 241 | if (!runstate_is_running()) { |
| 242 | return; |
| 243 | } |
Paolo Bonzini | 468cc7c | 2013-10-07 17:21:51 +0200 | [diff] [blame^] | 244 | |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 245 | cur_time = cpu_get_clock(); |
Paolo Bonzini | 468cc7c | 2013-10-07 17:21:51 +0200 | [diff] [blame^] | 246 | cur_icount = cpu_get_icount(); |
| 247 | |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 248 | delta = cur_icount - cur_time; |
| 249 | /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */ |
| 250 | if (delta > 0 |
| 251 | && last_delta + ICOUNT_WOBBLE < delta * 2 |
| 252 | && icount_time_shift > 0) { |
| 253 | /* The guest is getting too far ahead. Slow time down. */ |
| 254 | icount_time_shift--; |
| 255 | } |
| 256 | if (delta < 0 |
| 257 | && last_delta - ICOUNT_WOBBLE > delta * 2 |
| 258 | && icount_time_shift < MAX_ICOUNT_SHIFT) { |
| 259 | /* The guest is getting too far behind. Speed time up. */ |
| 260 | icount_time_shift++; |
| 261 | } |
| 262 | last_delta = delta; |
| 263 | qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift); |
| 264 | } |
| 265 | |
| 266 | static void icount_adjust_rt(void *opaque) |
| 267 | { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 268 | timer_mod(icount_rt_timer, |
| 269 | qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 270 | icount_adjust(); |
| 271 | } |
| 272 | |
| 273 | static void icount_adjust_vm(void *opaque) |
| 274 | { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 275 | timer_mod(icount_vm_timer, |
| 276 | qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + |
| 277 | get_ticks_per_sec() / 10); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 278 | icount_adjust(); |
| 279 | } |
| 280 | |
| 281 | static int64_t qemu_icount_round(int64_t count) |
| 282 | { |
| 283 | return (count + (1 << icount_time_shift) - 1) >> icount_time_shift; |
| 284 | } |
| 285 | |
| 286 | static void icount_warp_rt(void *opaque) |
| 287 | { |
| 288 | if (vm_clock_warp_start == -1) { |
| 289 | return; |
| 290 | } |
| 291 | |
| 292 | if (runstate_is_running()) { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 293 | int64_t clock = qemu_clock_get_ns(QEMU_CLOCK_REALTIME); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 294 | int64_t warp_delta = clock - vm_clock_warp_start; |
| 295 | if (use_icount == 1) { |
| 296 | qemu_icount_bias += warp_delta; |
| 297 | } else { |
| 298 | /* |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 299 | * In adaptive mode, do not let QEMU_CLOCK_VIRTUAL run too |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 300 | * far ahead of real time. |
| 301 | */ |
| 302 | int64_t cur_time = cpu_get_clock(); |
Paolo Bonzini | 468cc7c | 2013-10-07 17:21:51 +0200 | [diff] [blame^] | 303 | int64_t cur_icount = cpu_get_icount(); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 304 | int64_t delta = cur_time - cur_icount; |
| 305 | qemu_icount_bias += MIN(warp_delta, delta); |
| 306 | } |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 307 | if (qemu_clock_expired(QEMU_CLOCK_VIRTUAL)) { |
| 308 | qemu_clock_notify(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 309 | } |
| 310 | } |
| 311 | vm_clock_warp_start = -1; |
| 312 | } |
| 313 | |
Paolo Bonzini | 8156be5 | 2012-03-28 15:42:04 +0200 | [diff] [blame] | 314 | void qtest_clock_warp(int64_t dest) |
| 315 | { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 316 | int64_t clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | 8156be5 | 2012-03-28 15:42:04 +0200 | [diff] [blame] | 317 | assert(qtest_enabled()); |
| 318 | while (clock < dest) { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 319 | int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | 8156be5 | 2012-03-28 15:42:04 +0200 | [diff] [blame] | 320 | int64_t warp = MIN(dest - clock, deadline); |
| 321 | qemu_icount_bias += warp; |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 322 | qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL); |
| 323 | clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | 8156be5 | 2012-03-28 15:42:04 +0200 | [diff] [blame] | 324 | } |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 325 | qemu_clock_notify(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | 8156be5 | 2012-03-28 15:42:04 +0200 | [diff] [blame] | 326 | } |
| 327 | |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 328 | void qemu_clock_warp(QEMUClockType type) |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 329 | { |
| 330 | int64_t deadline; |
| 331 | |
| 332 | /* |
| 333 | * There are too many global variables to make the "warp" behavior |
| 334 | * applicable to other clocks. But a clock argument removes the |
| 335 | * need for if statements all over the place. |
| 336 | */ |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 337 | if (type != QEMU_CLOCK_VIRTUAL || !use_icount) { |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 338 | return; |
| 339 | } |
| 340 | |
| 341 | /* |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 342 | * If the CPUs have been sleeping, advance QEMU_CLOCK_VIRTUAL timer now. |
| 343 | * This ensures that the deadline for the timer is computed correctly below. |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 344 | * This also makes sure that the insn counter is synchronized before the |
| 345 | * CPU starts running, in case the CPU is woken by an event other than |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 346 | * the earliest QEMU_CLOCK_VIRTUAL timer. |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 347 | */ |
| 348 | icount_warp_rt(NULL); |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 349 | if (!all_cpu_threads_idle() || !qemu_clock_has_timers(QEMU_CLOCK_VIRTUAL)) { |
| 350 | timer_del(icount_warp_timer); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 351 | return; |
| 352 | } |
| 353 | |
Paolo Bonzini | 8156be5 | 2012-03-28 15:42:04 +0200 | [diff] [blame] | 354 | if (qtest_enabled()) { |
| 355 | /* When testing, qtest commands advance icount. */ |
| 356 | return; |
| 357 | } |
| 358 | |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 359 | vm_clock_warp_start = qemu_clock_get_ns(QEMU_CLOCK_REALTIME); |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 360 | /* We want to use the earliest deadline from ALL vm_clocks */ |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 361 | deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL); |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 362 | |
| 363 | /* Maintain prior (possibly buggy) behaviour where if no deadline |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 364 | * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 365 | * INT32_MAX nanoseconds ahead, we still use INT32_MAX |
| 366 | * nanoseconds. |
| 367 | */ |
| 368 | if ((deadline < 0) || (deadline > INT32_MAX)) { |
| 369 | deadline = INT32_MAX; |
| 370 | } |
| 371 | |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 372 | if (deadline > 0) { |
| 373 | /* |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 374 | * Ensure QEMU_CLOCK_VIRTUAL proceeds even when the virtual CPU goes to |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 375 | * sleep. Otherwise, the CPU might be waiting for a future timer |
| 376 | * interrupt to wake it up, but the interrupt never comes because |
| 377 | * the vCPU isn't running any insns and thus doesn't advance the |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 378 | * QEMU_CLOCK_VIRTUAL. |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 379 | * |
| 380 | * An extreme solution for this problem would be to never let VCPUs |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 381 | * sleep in icount mode if there is a pending QEMU_CLOCK_VIRTUAL |
| 382 | * timer; rather time could just advance to the next QEMU_CLOCK_VIRTUAL |
| 383 | * event. Instead, we do stop VCPUs and only advance QEMU_CLOCK_VIRTUAL |
| 384 | * after some e"real" time, (related to the time left until the next |
| 385 | * event) has passed. The QEMU_CLOCK_REALTIME timer will do this. |
| 386 | * This avoids that the warps are visible externally; for example, |
| 387 | * you will not be sending network packets continuously instead of |
| 388 | * every 100ms. |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 389 | */ |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 390 | timer_mod(icount_warp_timer, vm_clock_warp_start + deadline); |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 391 | } else if (deadline == 0) { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 392 | qemu_clock_notify(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 393 | } |
| 394 | } |
| 395 | |
| 396 | static const VMStateDescription vmstate_timers = { |
| 397 | .name = "timer", |
| 398 | .version_id = 2, |
| 399 | .minimum_version_id = 1, |
| 400 | .minimum_version_id_old = 1, |
| 401 | .fields = (VMStateField[]) { |
| 402 | VMSTATE_INT64(cpu_ticks_offset, TimersState), |
| 403 | VMSTATE_INT64(dummy, TimersState), |
| 404 | VMSTATE_INT64_V(cpu_clock_offset, TimersState, 2), |
| 405 | VMSTATE_END_OF_LIST() |
| 406 | } |
| 407 | }; |
| 408 | |
| 409 | void configure_icount(const char *option) |
| 410 | { |
Liu Ping Fan | cb36564 | 2013-09-25 14:20:58 +0800 | [diff] [blame] | 411 | seqlock_init(&timers_state.vm_clock_seqlock, NULL); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 412 | vmstate_register(NULL, 0, &vmstate_timers, &timers_state); |
| 413 | if (!option) { |
| 414 | return; |
| 415 | } |
| 416 | |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 417 | icount_warp_timer = timer_new_ns(QEMU_CLOCK_REALTIME, |
| 418 | icount_warp_rt, NULL); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 419 | if (strcmp(option, "auto") != 0) { |
| 420 | icount_time_shift = strtol(option, NULL, 0); |
| 421 | use_icount = 1; |
| 422 | return; |
| 423 | } |
| 424 | |
| 425 | use_icount = 2; |
| 426 | |
| 427 | /* 125MIPS seems a reasonable initial guess at the guest speed. |
| 428 | It will be corrected fairly quickly anyway. */ |
| 429 | icount_time_shift = 3; |
| 430 | |
| 431 | /* Have both realtime and virtual time triggers for speed adjustment. |
| 432 | The realtime trigger catches emulated time passing too slowly, |
| 433 | the virtual time trigger catches emulated time passing too fast. |
| 434 | Realtime triggers occur even when idle, so use them less frequently |
| 435 | than VM triggers. */ |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 436 | icount_rt_timer = timer_new_ms(QEMU_CLOCK_REALTIME, |
| 437 | icount_adjust_rt, NULL); |
| 438 | timer_mod(icount_rt_timer, |
| 439 | qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000); |
| 440 | icount_vm_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, |
| 441 | icount_adjust_vm, NULL); |
| 442 | timer_mod(icount_vm_timer, |
| 443 | qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + |
| 444 | get_ticks_per_sec() / 10); |
Paolo Bonzini | 946fb27 | 2011-09-12 13:57:37 +0200 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | /***********************************************************/ |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 448 | void hw_error(const char *fmt, ...) |
| 449 | { |
| 450 | va_list ap; |
Andreas Färber | 55e5c28 | 2012-12-17 06:18:02 +0100 | [diff] [blame] | 451 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 452 | |
| 453 | va_start(ap, fmt); |
| 454 | fprintf(stderr, "qemu: hardware error: "); |
| 455 | vfprintf(stderr, fmt, ap); |
| 456 | fprintf(stderr, "\n"); |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 457 | CPU_FOREACH(cpu) { |
Andreas Färber | 55e5c28 | 2012-12-17 06:18:02 +0100 | [diff] [blame] | 458 | fprintf(stderr, "CPU #%d:\n", cpu->cpu_index); |
Andreas Färber | 878096e | 2013-05-27 01:33:50 +0200 | [diff] [blame] | 459 | cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_FPU); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 460 | } |
| 461 | va_end(ap); |
| 462 | abort(); |
| 463 | } |
| 464 | |
| 465 | void cpu_synchronize_all_states(void) |
| 466 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 467 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 468 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 469 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 470 | cpu_synchronize_state(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 471 | } |
| 472 | } |
| 473 | |
| 474 | void cpu_synchronize_all_post_reset(void) |
| 475 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 476 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 477 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 478 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 479 | cpu_synchronize_post_reset(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 480 | } |
| 481 | } |
| 482 | |
| 483 | void cpu_synchronize_all_post_init(void) |
| 484 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 485 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 486 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 487 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 488 | cpu_synchronize_post_init(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 489 | } |
| 490 | } |
| 491 | |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 492 | static int do_vm_stop(RunState state) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 493 | { |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 494 | int ret = 0; |
| 495 | |
Luiz Capitulino | 1354869 | 2011-07-29 15:36:43 -0300 | [diff] [blame] | 496 | if (runstate_is_running()) { |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 497 | cpu_disable_ticks(); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 498 | pause_all_vcpus(); |
Luiz Capitulino | f5bbfba | 2011-07-29 15:04:45 -0300 | [diff] [blame] | 499 | runstate_set(state); |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 500 | vm_state_notify(0, state); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 501 | monitor_protocol_event(QEVENT_STOP, NULL); |
| 502 | } |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 503 | |
Kevin Wolf | 594a45c | 2013-07-18 14:52:19 +0200 | [diff] [blame] | 504 | bdrv_drain_all(); |
| 505 | ret = bdrv_flush_all(); |
| 506 | |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 507 | return ret; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 508 | } |
| 509 | |
Andreas Färber | a1fcaa7 | 2012-05-02 23:42:26 +0200 | [diff] [blame] | 510 | static bool cpu_can_run(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 511 | { |
Andreas Färber | 4fdeee7 | 2012-05-02 23:10:09 +0200 | [diff] [blame] | 512 | if (cpu->stop) { |
Andreas Färber | a1fcaa7 | 2012-05-02 23:42:26 +0200 | [diff] [blame] | 513 | return false; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 514 | } |
Tiejun Chen | 321bc0b | 2013-08-02 09:43:09 +0800 | [diff] [blame] | 515 | if (cpu_is_stopped(cpu)) { |
Andreas Färber | a1fcaa7 | 2012-05-02 23:42:26 +0200 | [diff] [blame] | 516 | return false; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 517 | } |
Andreas Färber | a1fcaa7 | 2012-05-02 23:42:26 +0200 | [diff] [blame] | 518 | return true; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Andreas Färber | 9132504 | 2013-05-27 02:07:49 +0200 | [diff] [blame] | 521 | static void cpu_handle_guest_debug(CPUState *cpu) |
Jan Kiszka | 3c638d0 | 2010-06-25 16:56:56 +0200 | [diff] [blame] | 522 | { |
Andreas Färber | 64f6b34 | 2013-05-27 02:06:09 +0200 | [diff] [blame] | 523 | gdb_set_stop_cpu(cpu); |
Jan Kiszka | 8cf7171 | 2011-02-07 12:19:16 +0100 | [diff] [blame] | 524 | qemu_system_debug_request(); |
Andreas Färber | f324e76 | 2012-05-02 23:26:21 +0200 | [diff] [blame] | 525 | cpu->stopped = true; |
Jan Kiszka | 3c638d0 | 2010-06-25 16:56:56 +0200 | [diff] [blame] | 526 | } |
| 527 | |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 528 | static void cpu_signal(int sig) |
| 529 | { |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 530 | if (current_cpu) { |
| 531 | cpu_exit(current_cpu); |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 532 | } |
| 533 | exit_request = 1; |
| 534 | } |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 535 | |
Jan Kiszka | 6d9cb73 | 2011-02-01 22:15:58 +0100 | [diff] [blame] | 536 | #ifdef CONFIG_LINUX |
| 537 | static void sigbus_reraise(void) |
| 538 | { |
| 539 | sigset_t set; |
| 540 | struct sigaction action; |
| 541 | |
| 542 | memset(&action, 0, sizeof(action)); |
| 543 | action.sa_handler = SIG_DFL; |
| 544 | if (!sigaction(SIGBUS, &action, NULL)) { |
| 545 | raise(SIGBUS); |
| 546 | sigemptyset(&set); |
| 547 | sigaddset(&set, SIGBUS); |
| 548 | sigprocmask(SIG_UNBLOCK, &set, NULL); |
| 549 | } |
| 550 | perror("Failed to re-raise SIGBUS!\n"); |
| 551 | abort(); |
| 552 | } |
| 553 | |
| 554 | static void sigbus_handler(int n, struct qemu_signalfd_siginfo *siginfo, |
| 555 | void *ctx) |
| 556 | { |
| 557 | if (kvm_on_sigbus(siginfo->ssi_code, |
| 558 | (void *)(intptr_t)siginfo->ssi_addr)) { |
| 559 | sigbus_reraise(); |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | static void qemu_init_sigbus(void) |
| 564 | { |
| 565 | struct sigaction action; |
| 566 | |
| 567 | memset(&action, 0, sizeof(action)); |
| 568 | action.sa_flags = SA_SIGINFO; |
| 569 | action.sa_sigaction = (void (*)(int, siginfo_t*, void*))sigbus_handler; |
| 570 | sigaction(SIGBUS, &action, NULL); |
| 571 | |
| 572 | prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0); |
| 573 | } |
| 574 | |
Andreas Färber | 290adf3 | 2013-01-17 09:30:27 +0100 | [diff] [blame] | 575 | static void qemu_kvm_eat_signals(CPUState *cpu) |
Jan Kiszka | 1ab3c6c | 2011-03-15 12:26:12 +0100 | [diff] [blame] | 576 | { |
| 577 | struct timespec ts = { 0, 0 }; |
| 578 | siginfo_t siginfo; |
| 579 | sigset_t waitset; |
| 580 | sigset_t chkset; |
| 581 | int r; |
| 582 | |
| 583 | sigemptyset(&waitset); |
| 584 | sigaddset(&waitset, SIG_IPI); |
| 585 | sigaddset(&waitset, SIGBUS); |
| 586 | |
| 587 | do { |
| 588 | r = sigtimedwait(&waitset, &siginfo, &ts); |
| 589 | if (r == -1 && !(errno == EAGAIN || errno == EINTR)) { |
| 590 | perror("sigtimedwait"); |
| 591 | exit(1); |
| 592 | } |
| 593 | |
| 594 | switch (r) { |
| 595 | case SIGBUS: |
Andreas Färber | 290adf3 | 2013-01-17 09:30:27 +0100 | [diff] [blame] | 596 | if (kvm_on_sigbus_vcpu(cpu, siginfo.si_code, siginfo.si_addr)) { |
Jan Kiszka | 1ab3c6c | 2011-03-15 12:26:12 +0100 | [diff] [blame] | 597 | sigbus_reraise(); |
| 598 | } |
| 599 | break; |
| 600 | default: |
| 601 | break; |
| 602 | } |
| 603 | |
| 604 | r = sigpending(&chkset); |
| 605 | if (r == -1) { |
| 606 | perror("sigpending"); |
| 607 | exit(1); |
| 608 | } |
| 609 | } while (sigismember(&chkset, SIG_IPI) || sigismember(&chkset, SIGBUS)); |
Jan Kiszka | 1ab3c6c | 2011-03-15 12:26:12 +0100 | [diff] [blame] | 610 | } |
| 611 | |
Jan Kiszka | 6d9cb73 | 2011-02-01 22:15:58 +0100 | [diff] [blame] | 612 | #else /* !CONFIG_LINUX */ |
| 613 | |
| 614 | static void qemu_init_sigbus(void) |
| 615 | { |
| 616 | } |
Jan Kiszka | 1ab3c6c | 2011-03-15 12:26:12 +0100 | [diff] [blame] | 617 | |
Andreas Färber | 290adf3 | 2013-01-17 09:30:27 +0100 | [diff] [blame] | 618 | static void qemu_kvm_eat_signals(CPUState *cpu) |
Jan Kiszka | 1ab3c6c | 2011-03-15 12:26:12 +0100 | [diff] [blame] | 619 | { |
| 620 | } |
Jan Kiszka | 6d9cb73 | 2011-02-01 22:15:58 +0100 | [diff] [blame] | 621 | #endif /* !CONFIG_LINUX */ |
| 622 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 623 | #ifndef _WIN32 |
Jan Kiszka | 55f8d6a | 2011-02-01 22:15:52 +0100 | [diff] [blame] | 624 | static void dummy_signal(int sig) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 625 | { |
| 626 | } |
| 627 | |
Andreas Färber | 13618e0 | 2013-05-26 23:41:00 +0200 | [diff] [blame] | 628 | static void qemu_kvm_init_cpu_signals(CPUState *cpu) |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 629 | { |
| 630 | int r; |
| 631 | sigset_t set; |
| 632 | struct sigaction sigact; |
| 633 | |
| 634 | memset(&sigact, 0, sizeof(sigact)); |
| 635 | sigact.sa_handler = dummy_signal; |
| 636 | sigaction(SIG_IPI, &sigact, NULL); |
| 637 | |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 638 | pthread_sigmask(SIG_BLOCK, NULL, &set); |
| 639 | sigdelset(&set, SIG_IPI); |
| 640 | sigdelset(&set, SIGBUS); |
Andreas Färber | 491d6e8 | 2013-05-26 23:38:10 +0200 | [diff] [blame] | 641 | r = kvm_set_signal_mask(cpu, &set); |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 642 | if (r) { |
| 643 | fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(-r)); |
| 644 | exit(1); |
| 645 | } |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | static void qemu_tcg_init_cpu_signals(void) |
| 649 | { |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 650 | sigset_t set; |
| 651 | struct sigaction sigact; |
| 652 | |
| 653 | memset(&sigact, 0, sizeof(sigact)); |
| 654 | sigact.sa_handler = cpu_signal; |
| 655 | sigaction(SIG_IPI, &sigact, NULL); |
| 656 | |
| 657 | sigemptyset(&set); |
| 658 | sigaddset(&set, SIG_IPI); |
| 659 | pthread_sigmask(SIG_UNBLOCK, &set, NULL); |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 660 | } |
| 661 | |
Jan Kiszka | 55f8d6a | 2011-02-01 22:15:52 +0100 | [diff] [blame] | 662 | #else /* _WIN32 */ |
Andreas Färber | 13618e0 | 2013-05-26 23:41:00 +0200 | [diff] [blame] | 663 | static void qemu_kvm_init_cpu_signals(CPUState *cpu) |
Paolo Bonzini | 714bd04 | 2011-03-12 17:44:06 +0100 | [diff] [blame] | 664 | { |
| 665 | abort(); |
| 666 | } |
| 667 | |
| 668 | static void qemu_tcg_init_cpu_signals(void) |
| 669 | { |
| 670 | } |
Jan Kiszka | 55f8d6a | 2011-02-01 22:15:52 +0100 | [diff] [blame] | 671 | #endif /* _WIN32 */ |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 672 | |
Stefan Weil | b2532d8 | 2012-09-27 07:41:42 +0200 | [diff] [blame] | 673 | static QemuMutex qemu_global_mutex; |
Paolo Bonzini | 46daff1 | 2011-06-09 13:10:24 +0200 | [diff] [blame] | 674 | static QemuCond qemu_io_proceeded_cond; |
| 675 | static bool iothread_requesting_mutex; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 676 | |
| 677 | static QemuThread io_thread; |
| 678 | |
| 679 | static QemuThread *tcg_cpu_thread; |
| 680 | static QemuCond *tcg_halt_cond; |
| 681 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 682 | /* cpu creation */ |
| 683 | static QemuCond qemu_cpu_cond; |
| 684 | /* system init */ |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 685 | static QemuCond qemu_pause_cond; |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 686 | static QemuCond qemu_work_cond; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 687 | |
Paolo Bonzini | d3b12f5 | 2011-09-13 10:30:52 +0200 | [diff] [blame] | 688 | void qemu_init_cpu_loop(void) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 689 | { |
Jan Kiszka | 6d9cb73 | 2011-02-01 22:15:58 +0100 | [diff] [blame] | 690 | qemu_init_sigbus(); |
Anthony Liguori | ed94592 | 2011-02-08 18:18:18 +0100 | [diff] [blame] | 691 | qemu_cond_init(&qemu_cpu_cond); |
Anthony Liguori | ed94592 | 2011-02-08 18:18:18 +0100 | [diff] [blame] | 692 | qemu_cond_init(&qemu_pause_cond); |
| 693 | qemu_cond_init(&qemu_work_cond); |
Paolo Bonzini | 46daff1 | 2011-06-09 13:10:24 +0200 | [diff] [blame] | 694 | qemu_cond_init(&qemu_io_proceeded_cond); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 695 | qemu_mutex_init(&qemu_global_mutex); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 696 | |
Jan Kiszka | b7680cb | 2011-03-12 17:43:51 +0100 | [diff] [blame] | 697 | qemu_thread_get_self(&io_thread); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 698 | } |
| 699 | |
Andreas Färber | f100f0b | 2012-05-03 14:58:47 +0200 | [diff] [blame] | 700 | void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data) |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 701 | { |
| 702 | struct qemu_work_item wi; |
| 703 | |
Andreas Färber | 60e8257 | 2012-05-02 22:23:49 +0200 | [diff] [blame] | 704 | if (qemu_cpu_is_self(cpu)) { |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 705 | func(data); |
| 706 | return; |
| 707 | } |
| 708 | |
| 709 | wi.func = func; |
| 710 | wi.data = data; |
Chegu Vinod | 3c02270 | 2013-06-24 03:49:41 -0600 | [diff] [blame] | 711 | wi.free = false; |
Andreas Färber | c64ca81 | 2012-05-03 02:11:45 +0200 | [diff] [blame] | 712 | if (cpu->queued_work_first == NULL) { |
| 713 | cpu->queued_work_first = &wi; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 714 | } else { |
Andreas Färber | c64ca81 | 2012-05-03 02:11:45 +0200 | [diff] [blame] | 715 | cpu->queued_work_last->next = &wi; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 716 | } |
Andreas Färber | c64ca81 | 2012-05-03 02:11:45 +0200 | [diff] [blame] | 717 | cpu->queued_work_last = &wi; |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 718 | wi.next = NULL; |
| 719 | wi.done = false; |
| 720 | |
Andreas Färber | c08d742 | 2012-05-03 04:34:15 +0200 | [diff] [blame] | 721 | qemu_cpu_kick(cpu); |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 722 | while (!wi.done) { |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 723 | CPUState *self_cpu = current_cpu; |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 724 | |
| 725 | qemu_cond_wait(&qemu_work_cond, &qemu_global_mutex); |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 726 | current_cpu = self_cpu; |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 727 | } |
| 728 | } |
| 729 | |
Chegu Vinod | 3c02270 | 2013-06-24 03:49:41 -0600 | [diff] [blame] | 730 | void async_run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data) |
| 731 | { |
| 732 | struct qemu_work_item *wi; |
| 733 | |
| 734 | if (qemu_cpu_is_self(cpu)) { |
| 735 | func(data); |
| 736 | return; |
| 737 | } |
| 738 | |
| 739 | wi = g_malloc0(sizeof(struct qemu_work_item)); |
| 740 | wi->func = func; |
| 741 | wi->data = data; |
| 742 | wi->free = true; |
| 743 | if (cpu->queued_work_first == NULL) { |
| 744 | cpu->queued_work_first = wi; |
| 745 | } else { |
| 746 | cpu->queued_work_last->next = wi; |
| 747 | } |
| 748 | cpu->queued_work_last = wi; |
| 749 | wi->next = NULL; |
| 750 | wi->done = false; |
| 751 | |
| 752 | qemu_cpu_kick(cpu); |
| 753 | } |
| 754 | |
Andreas Färber | 6d45b10 | 2012-05-03 02:13:22 +0200 | [diff] [blame] | 755 | static void flush_queued_work(CPUState *cpu) |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 756 | { |
| 757 | struct qemu_work_item *wi; |
| 758 | |
Andreas Färber | c64ca81 | 2012-05-03 02:11:45 +0200 | [diff] [blame] | 759 | if (cpu->queued_work_first == NULL) { |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 760 | return; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 761 | } |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 762 | |
Andreas Färber | c64ca81 | 2012-05-03 02:11:45 +0200 | [diff] [blame] | 763 | while ((wi = cpu->queued_work_first)) { |
| 764 | cpu->queued_work_first = wi->next; |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 765 | wi->func(wi->data); |
| 766 | wi->done = true; |
Chegu Vinod | 3c02270 | 2013-06-24 03:49:41 -0600 | [diff] [blame] | 767 | if (wi->free) { |
| 768 | g_free(wi); |
| 769 | } |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 770 | } |
Andreas Färber | c64ca81 | 2012-05-03 02:11:45 +0200 | [diff] [blame] | 771 | cpu->queued_work_last = NULL; |
Marcelo Tosatti | e82bcec | 2010-05-04 09:45:22 -0300 | [diff] [blame] | 772 | qemu_cond_broadcast(&qemu_work_cond); |
| 773 | } |
| 774 | |
Andreas Färber | 509a0d7 | 2012-05-03 02:18:09 +0200 | [diff] [blame] | 775 | static void qemu_wait_io_event_common(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 776 | { |
Andreas Färber | 4fdeee7 | 2012-05-02 23:10:09 +0200 | [diff] [blame] | 777 | if (cpu->stop) { |
| 778 | cpu->stop = false; |
Andreas Färber | f324e76 | 2012-05-02 23:26:21 +0200 | [diff] [blame] | 779 | cpu->stopped = true; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 780 | qemu_cond_signal(&qemu_pause_cond); |
| 781 | } |
Andreas Färber | 6d45b10 | 2012-05-03 02:13:22 +0200 | [diff] [blame] | 782 | flush_queued_work(cpu); |
Andreas Färber | 216fc9a | 2012-05-02 17:49:49 +0200 | [diff] [blame] | 783 | cpu->thread_kicked = false; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 784 | } |
| 785 | |
Jan Kiszka | 6cabe1f | 2010-06-25 16:56:53 +0200 | [diff] [blame] | 786 | static void qemu_tcg_wait_io_event(void) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 787 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 788 | CPUState *cpu; |
Jan Kiszka | 6cabe1f | 2010-06-25 16:56:53 +0200 | [diff] [blame] | 789 | |
Jan Kiszka | 1640032 | 2011-02-09 16:29:37 +0100 | [diff] [blame] | 790 | while (all_cpu_threads_idle()) { |
Paolo Bonzini | ab33fcd | 2011-04-13 10:03:44 +0200 | [diff] [blame] | 791 | /* Start accounting real time to the virtual clock if the CPUs |
| 792 | are idle. */ |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 793 | qemu_clock_warp(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | 9705fbb | 2011-03-12 17:44:00 +0100 | [diff] [blame] | 794 | qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex); |
Jan Kiszka | 1640032 | 2011-02-09 16:29:37 +0100 | [diff] [blame] | 795 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 796 | |
Paolo Bonzini | 46daff1 | 2011-06-09 13:10:24 +0200 | [diff] [blame] | 797 | while (iothread_requesting_mutex) { |
| 798 | qemu_cond_wait(&qemu_io_proceeded_cond, &qemu_global_mutex); |
| 799 | } |
Jan Kiszka | 6cabe1f | 2010-06-25 16:56:53 +0200 | [diff] [blame] | 800 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 801 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 802 | qemu_wait_io_event_common(cpu); |
Jan Kiszka | 6cabe1f | 2010-06-25 16:56:53 +0200 | [diff] [blame] | 803 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 804 | } |
| 805 | |
Andreas Färber | fd529e8 | 2013-05-26 23:24:55 +0200 | [diff] [blame] | 806 | static void qemu_kvm_wait_io_event(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 807 | { |
Andreas Färber | a98ae1d | 2013-05-26 23:21:08 +0200 | [diff] [blame] | 808 | while (cpu_thread_is_idle(cpu)) { |
Andreas Färber | f5c121b | 2012-05-03 01:22:49 +0200 | [diff] [blame] | 809 | qemu_cond_wait(cpu->halt_cond, &qemu_global_mutex); |
Jan Kiszka | 1640032 | 2011-02-09 16:29:37 +0100 | [diff] [blame] | 810 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 811 | |
Andreas Färber | 290adf3 | 2013-01-17 09:30:27 +0100 | [diff] [blame] | 812 | qemu_kvm_eat_signals(cpu); |
Andreas Färber | 509a0d7 | 2012-05-03 02:18:09 +0200 | [diff] [blame] | 813 | qemu_wait_io_event_common(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 814 | } |
| 815 | |
Jan Kiszka | 7e97cd8 | 2011-02-07 12:19:12 +0100 | [diff] [blame] | 816 | static void *qemu_kvm_cpu_thread_fn(void *arg) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 817 | { |
Andreas Färber | 48a106b | 2013-05-27 02:20:39 +0200 | [diff] [blame] | 818 | CPUState *cpu = arg; |
Jan Kiszka | 84b4915 | 2011-02-01 22:15:50 +0100 | [diff] [blame] | 819 | int r; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 820 | |
Marcelo Tosatti | 6164e6d | 2010-03-23 13:37:13 -0300 | [diff] [blame] | 821 | qemu_mutex_lock(&qemu_global_mutex); |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 822 | qemu_thread_get_self(cpu->thread); |
Andreas Färber | 9f09e18 | 2012-05-03 06:59:07 +0200 | [diff] [blame] | 823 | cpu->thread_id = qemu_get_thread_id(); |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 824 | current_cpu = cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 825 | |
Andreas Färber | 504134d | 2012-12-17 06:38:45 +0100 | [diff] [blame] | 826 | r = kvm_init_vcpu(cpu); |
Jan Kiszka | 84b4915 | 2011-02-01 22:15:50 +0100 | [diff] [blame] | 827 | if (r < 0) { |
| 828 | fprintf(stderr, "kvm_init_vcpu failed: %s\n", strerror(-r)); |
| 829 | exit(1); |
| 830 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 831 | |
Andreas Färber | 13618e0 | 2013-05-26 23:41:00 +0200 | [diff] [blame] | 832 | qemu_kvm_init_cpu_signals(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 833 | |
| 834 | /* signal CPU creation */ |
Andreas Färber | 61a4621 | 2012-05-02 22:49:36 +0200 | [diff] [blame] | 835 | cpu->created = true; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 836 | qemu_cond_signal(&qemu_cpu_cond); |
| 837 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 838 | while (1) { |
Andreas Färber | a1fcaa7 | 2012-05-02 23:42:26 +0200 | [diff] [blame] | 839 | if (cpu_can_run(cpu)) { |
Andreas Färber | 1458c36 | 2013-05-26 23:46:55 +0200 | [diff] [blame] | 840 | r = kvm_cpu_exec(cpu); |
Jan Kiszka | 83f338f | 2011-02-07 12:19:17 +0100 | [diff] [blame] | 841 | if (r == EXCP_DEBUG) { |
Andreas Färber | 9132504 | 2013-05-27 02:07:49 +0200 | [diff] [blame] | 842 | cpu_handle_guest_debug(cpu); |
Jan Kiszka | 83f338f | 2011-02-07 12:19:17 +0100 | [diff] [blame] | 843 | } |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 844 | } |
Andreas Färber | fd529e8 | 2013-05-26 23:24:55 +0200 | [diff] [blame] | 845 | qemu_kvm_wait_io_event(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 846 | } |
| 847 | |
| 848 | return NULL; |
| 849 | } |
| 850 | |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 851 | static void *qemu_dummy_cpu_thread_fn(void *arg) |
| 852 | { |
| 853 | #ifdef _WIN32 |
| 854 | fprintf(stderr, "qtest is not supported under Windows\n"); |
| 855 | exit(1); |
| 856 | #else |
Andreas Färber | 10a9021 | 2013-05-27 02:24:35 +0200 | [diff] [blame] | 857 | CPUState *cpu = arg; |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 858 | sigset_t waitset; |
| 859 | int r; |
| 860 | |
| 861 | qemu_mutex_lock_iothread(); |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 862 | qemu_thread_get_self(cpu->thread); |
Andreas Färber | 9f09e18 | 2012-05-03 06:59:07 +0200 | [diff] [blame] | 863 | cpu->thread_id = qemu_get_thread_id(); |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 864 | |
| 865 | sigemptyset(&waitset); |
| 866 | sigaddset(&waitset, SIG_IPI); |
| 867 | |
| 868 | /* signal CPU creation */ |
Andreas Färber | 61a4621 | 2012-05-02 22:49:36 +0200 | [diff] [blame] | 869 | cpu->created = true; |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 870 | qemu_cond_signal(&qemu_cpu_cond); |
| 871 | |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 872 | current_cpu = cpu; |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 873 | while (1) { |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 874 | current_cpu = NULL; |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 875 | qemu_mutex_unlock_iothread(); |
| 876 | do { |
| 877 | int sig; |
| 878 | r = sigwait(&waitset, &sig); |
| 879 | } while (r == -1 && (errno == EAGAIN || errno == EINTR)); |
| 880 | if (r == -1) { |
| 881 | perror("sigwait"); |
| 882 | exit(1); |
| 883 | } |
| 884 | qemu_mutex_lock_iothread(); |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 885 | current_cpu = cpu; |
Andreas Färber | 509a0d7 | 2012-05-03 02:18:09 +0200 | [diff] [blame] | 886 | qemu_wait_io_event_common(cpu); |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | return NULL; |
| 890 | #endif |
| 891 | } |
| 892 | |
Jan Kiszka | bdb7ca6 | 2011-09-26 09:40:39 +0200 | [diff] [blame] | 893 | static void tcg_exec_all(void); |
| 894 | |
Jan Kiszka | 7e97cd8 | 2011-02-07 12:19:12 +0100 | [diff] [blame] | 895 | static void *qemu_tcg_cpu_thread_fn(void *arg) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 896 | { |
Andreas Färber | c3586ba | 2012-05-03 01:41:24 +0200 | [diff] [blame] | 897 | CPUState *cpu = arg; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 898 | |
Jan Kiszka | 55f8d6a | 2011-02-01 22:15:52 +0100 | [diff] [blame] | 899 | qemu_tcg_init_cpu_signals(); |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 900 | qemu_thread_get_self(cpu->thread); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 901 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 902 | qemu_mutex_lock(&qemu_global_mutex); |
Andreas Färber | 38fcbd3 | 2013-07-07 19:50:23 +0200 | [diff] [blame] | 903 | CPU_FOREACH(cpu) { |
| 904 | cpu->thread_id = qemu_get_thread_id(); |
| 905 | cpu->created = true; |
| 906 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 907 | qemu_cond_signal(&qemu_cpu_cond); |
| 908 | |
Jan Kiszka | fa7d186 | 2011-08-22 18:35:25 +0200 | [diff] [blame] | 909 | /* wait for initial kick-off after machine start */ |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 910 | while (QTAILQ_FIRST(&cpus)->stopped) { |
Jan Kiszka | fa7d186 | 2011-08-22 18:35:25 +0200 | [diff] [blame] | 911 | qemu_cond_wait(tcg_halt_cond, &qemu_global_mutex); |
Jan Kiszka | 8e564b4 | 2012-02-17 18:31:15 +0100 | [diff] [blame] | 912 | |
| 913 | /* process any pending work */ |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 914 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 915 | qemu_wait_io_event_common(cpu); |
Jan Kiszka | 8e564b4 | 2012-02-17 18:31:15 +0100 | [diff] [blame] | 916 | } |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 917 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 918 | |
| 919 | while (1) { |
Jan Kiszka | bdb7ca6 | 2011-09-26 09:40:39 +0200 | [diff] [blame] | 920 | tcg_exec_all(); |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 921 | |
| 922 | if (use_icount) { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 923 | int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL); |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 924 | |
| 925 | if (deadline == 0) { |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 926 | qemu_clock_notify(QEMU_CLOCK_VIRTUAL); |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 927 | } |
Paolo Bonzini | 3b2319a | 2011-04-13 10:03:43 +0200 | [diff] [blame] | 928 | } |
Jan Kiszka | 6cabe1f | 2010-06-25 16:56:53 +0200 | [diff] [blame] | 929 | qemu_tcg_wait_io_event(); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 930 | } |
| 931 | |
| 932 | return NULL; |
| 933 | } |
| 934 | |
Andreas Färber | 2ff09a4 | 2012-05-03 00:23:30 +0200 | [diff] [blame] | 935 | static void qemu_cpu_kick_thread(CPUState *cpu) |
Paolo Bonzini | cc015e9 | 2011-03-12 17:44:08 +0100 | [diff] [blame] | 936 | { |
| 937 | #ifndef _WIN32 |
| 938 | int err; |
| 939 | |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 940 | err = pthread_kill(cpu->thread->thread, SIG_IPI); |
Paolo Bonzini | cc015e9 | 2011-03-12 17:44:08 +0100 | [diff] [blame] | 941 | if (err) { |
| 942 | fprintf(stderr, "qemu:%s: %s", __func__, strerror(err)); |
| 943 | exit(1); |
| 944 | } |
| 945 | #else /* _WIN32 */ |
Andreas Färber | 60e8257 | 2012-05-02 22:23:49 +0200 | [diff] [blame] | 946 | if (!qemu_cpu_is_self(cpu)) { |
Olivier Hainque | ed9164a | 2013-04-09 18:06:53 +0200 | [diff] [blame] | 947 | CONTEXT tcgContext; |
| 948 | |
| 949 | if (SuspendThread(cpu->hThread) == (DWORD)-1) { |
Stefan Weil | 7f1721d | 2013-04-13 22:45:50 +0200 | [diff] [blame] | 950 | fprintf(stderr, "qemu:%s: GetLastError:%lu\n", __func__, |
Olivier Hainque | ed9164a | 2013-04-09 18:06:53 +0200 | [diff] [blame] | 951 | GetLastError()); |
| 952 | exit(1); |
| 953 | } |
| 954 | |
| 955 | /* On multi-core systems, we are not sure that the thread is actually |
| 956 | * suspended until we can get the context. |
| 957 | */ |
| 958 | tcgContext.ContextFlags = CONTEXT_CONTROL; |
| 959 | while (GetThreadContext(cpu->hThread, &tcgContext) != 0) { |
| 960 | continue; |
| 961 | } |
| 962 | |
Paolo Bonzini | cc015e9 | 2011-03-12 17:44:08 +0100 | [diff] [blame] | 963 | cpu_signal(0); |
Olivier Hainque | ed9164a | 2013-04-09 18:06:53 +0200 | [diff] [blame] | 964 | |
| 965 | if (ResumeThread(cpu->hThread) == (DWORD)-1) { |
Stefan Weil | 7f1721d | 2013-04-13 22:45:50 +0200 | [diff] [blame] | 966 | fprintf(stderr, "qemu:%s: GetLastError:%lu\n", __func__, |
Olivier Hainque | ed9164a | 2013-04-09 18:06:53 +0200 | [diff] [blame] | 967 | GetLastError()); |
| 968 | exit(1); |
| 969 | } |
Paolo Bonzini | cc015e9 | 2011-03-12 17:44:08 +0100 | [diff] [blame] | 970 | } |
| 971 | #endif |
| 972 | } |
| 973 | |
Andreas Färber | c08d742 | 2012-05-03 04:34:15 +0200 | [diff] [blame] | 974 | void qemu_cpu_kick(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 975 | { |
Andreas Färber | f5c121b | 2012-05-03 01:22:49 +0200 | [diff] [blame] | 976 | qemu_cond_broadcast(cpu->halt_cond); |
Andreas Färber | 216fc9a | 2012-05-02 17:49:49 +0200 | [diff] [blame] | 977 | if (!tcg_enabled() && !cpu->thread_kicked) { |
Andreas Färber | 2ff09a4 | 2012-05-03 00:23:30 +0200 | [diff] [blame] | 978 | qemu_cpu_kick_thread(cpu); |
Andreas Färber | 216fc9a | 2012-05-02 17:49:49 +0200 | [diff] [blame] | 979 | cpu->thread_kicked = true; |
Jan Kiszka | aa2c364 | 2011-02-01 22:15:42 +0100 | [diff] [blame] | 980 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 981 | } |
| 982 | |
Jan Kiszka | 46d62fa | 2011-02-01 22:15:59 +0100 | [diff] [blame] | 983 | void qemu_cpu_kick_self(void) |
| 984 | { |
Paolo Bonzini | b55c22c | 2011-03-12 17:44:07 +0100 | [diff] [blame] | 985 | #ifndef _WIN32 |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 986 | assert(current_cpu); |
Jan Kiszka | 46d62fa | 2011-02-01 22:15:59 +0100 | [diff] [blame] | 987 | |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 988 | if (!current_cpu->thread_kicked) { |
| 989 | qemu_cpu_kick_thread(current_cpu); |
| 990 | current_cpu->thread_kicked = true; |
Jan Kiszka | 46d62fa | 2011-02-01 22:15:59 +0100 | [diff] [blame] | 991 | } |
Paolo Bonzini | b55c22c | 2011-03-12 17:44:07 +0100 | [diff] [blame] | 992 | #else |
| 993 | abort(); |
| 994 | #endif |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 995 | } |
| 996 | |
Andreas Färber | 60e8257 | 2012-05-02 22:23:49 +0200 | [diff] [blame] | 997 | bool qemu_cpu_is_self(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 998 | { |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 999 | return qemu_thread_is_self(cpu->thread); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1000 | } |
| 1001 | |
Juan Quintela | aa723c2 | 2012-09-18 16:30:11 +0200 | [diff] [blame] | 1002 | static bool qemu_in_vcpu_thread(void) |
| 1003 | { |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 1004 | return current_cpu && qemu_cpu_is_self(current_cpu); |
Juan Quintela | aa723c2 | 2012-09-18 16:30:11 +0200 | [diff] [blame] | 1005 | } |
| 1006 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1007 | void qemu_mutex_lock_iothread(void) |
| 1008 | { |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 1009 | if (!tcg_enabled()) { |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1010 | qemu_mutex_lock(&qemu_global_mutex); |
Marcelo Tosatti | 1a28cac | 2010-05-04 09:45:20 -0300 | [diff] [blame] | 1011 | } else { |
Paolo Bonzini | 46daff1 | 2011-06-09 13:10:24 +0200 | [diff] [blame] | 1012 | iothread_requesting_mutex = true; |
Marcelo Tosatti | 1a28cac | 2010-05-04 09:45:20 -0300 | [diff] [blame] | 1013 | if (qemu_mutex_trylock(&qemu_global_mutex)) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1014 | qemu_cpu_kick_thread(first_cpu); |
Marcelo Tosatti | 1a28cac | 2010-05-04 09:45:20 -0300 | [diff] [blame] | 1015 | qemu_mutex_lock(&qemu_global_mutex); |
| 1016 | } |
Paolo Bonzini | 46daff1 | 2011-06-09 13:10:24 +0200 | [diff] [blame] | 1017 | iothread_requesting_mutex = false; |
| 1018 | qemu_cond_broadcast(&qemu_io_proceeded_cond); |
Marcelo Tosatti | 1a28cac | 2010-05-04 09:45:20 -0300 | [diff] [blame] | 1019 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | void qemu_mutex_unlock_iothread(void) |
| 1023 | { |
| 1024 | qemu_mutex_unlock(&qemu_global_mutex); |
| 1025 | } |
| 1026 | |
| 1027 | static int all_vcpus_paused(void) |
| 1028 | { |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1029 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1030 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1031 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1032 | if (!cpu->stopped) { |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1033 | return 0; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 1034 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
| 1037 | return 1; |
| 1038 | } |
| 1039 | |
| 1040 | void pause_all_vcpus(void) |
| 1041 | { |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1042 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1043 | |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 1044 | qemu_clock_enable(QEMU_CLOCK_VIRTUAL, false); |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1045 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1046 | cpu->stop = true; |
| 1047 | qemu_cpu_kick(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1048 | } |
| 1049 | |
Juan Quintela | aa723c2 | 2012-09-18 16:30:11 +0200 | [diff] [blame] | 1050 | if (qemu_in_vcpu_thread()) { |
Jan Kiszka | d798e97 | 2012-02-17 18:31:16 +0100 | [diff] [blame] | 1051 | cpu_stop_current(); |
| 1052 | if (!kvm_enabled()) { |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1053 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1054 | cpu->stop = false; |
| 1055 | cpu->stopped = true; |
Jan Kiszka | d798e97 | 2012-02-17 18:31:16 +0100 | [diff] [blame] | 1056 | } |
| 1057 | return; |
| 1058 | } |
| 1059 | } |
| 1060 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1061 | while (!all_vcpus_paused()) { |
Paolo Bonzini | be7d6c5 | 2011-03-12 17:44:02 +0100 | [diff] [blame] | 1062 | qemu_cond_wait(&qemu_pause_cond, &qemu_global_mutex); |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1063 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1064 | qemu_cpu_kick(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1065 | } |
| 1066 | } |
| 1067 | } |
| 1068 | |
Igor Mammedov | 2993683 | 2013-04-23 10:29:37 +0200 | [diff] [blame] | 1069 | void cpu_resume(CPUState *cpu) |
| 1070 | { |
| 1071 | cpu->stop = false; |
| 1072 | cpu->stopped = false; |
| 1073 | qemu_cpu_kick(cpu); |
| 1074 | } |
| 1075 | |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1076 | void resume_all_vcpus(void) |
| 1077 | { |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1078 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1079 | |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 1080 | qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true); |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1081 | CPU_FOREACH(cpu) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1082 | cpu_resume(cpu); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1083 | } |
| 1084 | } |
| 1085 | |
Andreas Färber | e5ab30a | 2012-05-03 01:50:44 +0200 | [diff] [blame] | 1086 | static void qemu_tcg_init_vcpu(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1087 | { |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1088 | /* share a single thread for all cpus with TCG */ |
| 1089 | if (!tcg_cpu_thread) { |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 1090 | cpu->thread = g_malloc0(sizeof(QemuThread)); |
Andreas Färber | f5c121b | 2012-05-03 01:22:49 +0200 | [diff] [blame] | 1091 | cpu->halt_cond = g_malloc0(sizeof(QemuCond)); |
| 1092 | qemu_cond_init(cpu->halt_cond); |
| 1093 | tcg_halt_cond = cpu->halt_cond; |
Andreas Färber | c3586ba | 2012-05-03 01:41:24 +0200 | [diff] [blame] | 1094 | qemu_thread_create(cpu->thread, qemu_tcg_cpu_thread_fn, cpu, |
Paolo Bonzini | 1ecf47b | 2011-12-13 13:43:52 +0100 | [diff] [blame] | 1095 | QEMU_THREAD_JOINABLE); |
| 1096 | #ifdef _WIN32 |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 1097 | cpu->hThread = qemu_thread_get_handle(cpu->thread); |
Paolo Bonzini | 1ecf47b | 2011-12-13 13:43:52 +0100 | [diff] [blame] | 1098 | #endif |
Andreas Färber | 61a4621 | 2012-05-02 22:49:36 +0200 | [diff] [blame] | 1099 | while (!cpu->created) { |
Paolo Bonzini | 18a8572 | 2011-03-12 17:44:03 +0100 | [diff] [blame] | 1100 | qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex); |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 1101 | } |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 1102 | tcg_cpu_thread = cpu->thread; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1103 | } else { |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 1104 | cpu->thread = tcg_cpu_thread; |
Andreas Färber | f5c121b | 2012-05-03 01:22:49 +0200 | [diff] [blame] | 1105 | cpu->halt_cond = tcg_halt_cond; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1106 | } |
| 1107 | } |
| 1108 | |
Andreas Färber | 48a106b | 2013-05-27 02:20:39 +0200 | [diff] [blame] | 1109 | static void qemu_kvm_start_vcpu(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1110 | { |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 1111 | cpu->thread = g_malloc0(sizeof(QemuThread)); |
Andreas Färber | f5c121b | 2012-05-03 01:22:49 +0200 | [diff] [blame] | 1112 | cpu->halt_cond = g_malloc0(sizeof(QemuCond)); |
| 1113 | qemu_cond_init(cpu->halt_cond); |
Andreas Färber | 48a106b | 2013-05-27 02:20:39 +0200 | [diff] [blame] | 1114 | qemu_thread_create(cpu->thread, qemu_kvm_cpu_thread_fn, cpu, |
Paolo Bonzini | 1ecf47b | 2011-12-13 13:43:52 +0100 | [diff] [blame] | 1115 | QEMU_THREAD_JOINABLE); |
Andreas Färber | 61a4621 | 2012-05-02 22:49:36 +0200 | [diff] [blame] | 1116 | while (!cpu->created) { |
Paolo Bonzini | 18a8572 | 2011-03-12 17:44:03 +0100 | [diff] [blame] | 1117 | qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex); |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 1118 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1119 | } |
| 1120 | |
Andreas Färber | 10a9021 | 2013-05-27 02:24:35 +0200 | [diff] [blame] | 1121 | static void qemu_dummy_start_vcpu(CPUState *cpu) |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 1122 | { |
Andreas Färber | 814e612 | 2012-05-02 17:00:37 +0200 | [diff] [blame] | 1123 | cpu->thread = g_malloc0(sizeof(QemuThread)); |
Andreas Färber | f5c121b | 2012-05-03 01:22:49 +0200 | [diff] [blame] | 1124 | cpu->halt_cond = g_malloc0(sizeof(QemuCond)); |
| 1125 | qemu_cond_init(cpu->halt_cond); |
Andreas Färber | 10a9021 | 2013-05-27 02:24:35 +0200 | [diff] [blame] | 1126 | qemu_thread_create(cpu->thread, qemu_dummy_cpu_thread_fn, cpu, |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 1127 | QEMU_THREAD_JOINABLE); |
Andreas Färber | 61a4621 | 2012-05-02 22:49:36 +0200 | [diff] [blame] | 1128 | while (!cpu->created) { |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 1129 | qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex); |
| 1130 | } |
| 1131 | } |
| 1132 | |
Andreas Färber | c643bed | 2013-05-27 03:23:24 +0200 | [diff] [blame] | 1133 | void qemu_init_vcpu(CPUState *cpu) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1134 | { |
Andreas Färber | ce3960e | 2012-12-17 03:27:07 +0100 | [diff] [blame] | 1135 | cpu->nr_cores = smp_cores; |
| 1136 | cpu->nr_threads = smp_threads; |
Andreas Färber | f324e76 | 2012-05-02 23:26:21 +0200 | [diff] [blame] | 1137 | cpu->stopped = true; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 1138 | if (kvm_enabled()) { |
Andreas Färber | 48a106b | 2013-05-27 02:20:39 +0200 | [diff] [blame] | 1139 | qemu_kvm_start_vcpu(cpu); |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 1140 | } else if (tcg_enabled()) { |
Andreas Färber | e5ab30a | 2012-05-03 01:50:44 +0200 | [diff] [blame] | 1141 | qemu_tcg_init_vcpu(cpu); |
Anthony Liguori | c7f0f3b | 2012-03-28 15:42:02 +0200 | [diff] [blame] | 1142 | } else { |
Andreas Färber | 10a9021 | 2013-05-27 02:24:35 +0200 | [diff] [blame] | 1143 | qemu_dummy_start_vcpu(cpu); |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 1144 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Jan Kiszka | b4a3d96 | 2011-02-01 22:15:43 +0100 | [diff] [blame] | 1147 | void cpu_stop_current(void) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1148 | { |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 1149 | if (current_cpu) { |
| 1150 | current_cpu->stop = false; |
| 1151 | current_cpu->stopped = true; |
| 1152 | cpu_exit(current_cpu); |
Paolo Bonzini | 67bb172 | 2011-03-12 17:43:59 +0100 | [diff] [blame] | 1153 | qemu_cond_signal(&qemu_pause_cond); |
Jan Kiszka | b4a3d96 | 2011-02-01 22:15:43 +0100 | [diff] [blame] | 1154 | } |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1155 | } |
| 1156 | |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 1157 | int vm_stop(RunState state) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1158 | { |
Juan Quintela | aa723c2 | 2012-09-18 16:30:11 +0200 | [diff] [blame] | 1159 | if (qemu_in_vcpu_thread()) { |
Luiz Capitulino | 1dfb4dd | 2011-07-29 14:26:33 -0300 | [diff] [blame] | 1160 | qemu_system_vmstop_request(state); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1161 | /* |
| 1162 | * FIXME: should not return to device code in case |
| 1163 | * vm_stop() has been requested. |
| 1164 | */ |
Jan Kiszka | b4a3d96 | 2011-02-01 22:15:43 +0100 | [diff] [blame] | 1165 | cpu_stop_current(); |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 1166 | return 0; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1167 | } |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 1168 | |
| 1169 | return do_vm_stop(state); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1170 | } |
| 1171 | |
Luiz Capitulino | 8a9236f | 2011-10-14 11:18:09 -0300 | [diff] [blame] | 1172 | /* does a state transition even if the VM is already stopped, |
| 1173 | current state is forgotten forever */ |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 1174 | int vm_stop_force_state(RunState state) |
Luiz Capitulino | 8a9236f | 2011-10-14 11:18:09 -0300 | [diff] [blame] | 1175 | { |
| 1176 | if (runstate_is_running()) { |
Kevin Wolf | 5698346 | 2013-07-05 13:49:54 +0200 | [diff] [blame] | 1177 | return vm_stop(state); |
Luiz Capitulino | 8a9236f | 2011-10-14 11:18:09 -0300 | [diff] [blame] | 1178 | } else { |
| 1179 | runstate_set(state); |
Kevin Wolf | 594a45c | 2013-07-18 14:52:19 +0200 | [diff] [blame] | 1180 | /* Make sure to return an error if the flush in a previous vm_stop() |
| 1181 | * failed. */ |
| 1182 | return bdrv_flush_all(); |
Luiz Capitulino | 8a9236f | 2011-10-14 11:18:09 -0300 | [diff] [blame] | 1183 | } |
| 1184 | } |
| 1185 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1186 | static int tcg_cpu_exec(CPUArchState *env) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1187 | { |
| 1188 | int ret; |
| 1189 | #ifdef CONFIG_PROFILER |
| 1190 | int64_t ti; |
| 1191 | #endif |
| 1192 | |
| 1193 | #ifdef CONFIG_PROFILER |
| 1194 | ti = profile_getclock(); |
| 1195 | #endif |
| 1196 | if (use_icount) { |
| 1197 | int64_t count; |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 1198 | int64_t deadline; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1199 | int decr; |
| 1200 | qemu_icount -= (env->icount_decr.u16.low + env->icount_extra); |
| 1201 | env->icount_decr.u16.low = 0; |
| 1202 | env->icount_extra = 0; |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 1203 | deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL); |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 1204 | |
| 1205 | /* Maintain prior (possibly buggy) behaviour where if no deadline |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 1206 | * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than |
Alex Bligh | ac70aaf | 2013-08-21 16:02:57 +0100 | [diff] [blame] | 1207 | * INT32_MAX nanoseconds ahead, we still use INT32_MAX |
| 1208 | * nanoseconds. |
| 1209 | */ |
| 1210 | if ((deadline < 0) || (deadline > INT32_MAX)) { |
| 1211 | deadline = INT32_MAX; |
| 1212 | } |
| 1213 | |
| 1214 | count = qemu_icount_round(deadline); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1215 | qemu_icount += count; |
| 1216 | decr = (count > 0xffff) ? 0xffff : count; |
| 1217 | count -= decr; |
| 1218 | env->icount_decr.u16.low = decr; |
| 1219 | env->icount_extra = count; |
| 1220 | } |
| 1221 | ret = cpu_exec(env); |
| 1222 | #ifdef CONFIG_PROFILER |
| 1223 | qemu_time += profile_getclock() - ti; |
| 1224 | #endif |
| 1225 | if (use_icount) { |
| 1226 | /* Fold pending instructions back into the |
| 1227 | instruction counter, and clear the interrupt flag. */ |
| 1228 | qemu_icount -= (env->icount_decr.u16.low |
| 1229 | + env->icount_extra); |
| 1230 | env->icount_decr.u32 = 0; |
| 1231 | env->icount_extra = 0; |
| 1232 | } |
| 1233 | return ret; |
| 1234 | } |
| 1235 | |
Jan Kiszka | bdb7ca6 | 2011-09-26 09:40:39 +0200 | [diff] [blame] | 1236 | static void tcg_exec_all(void) |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1237 | { |
Jan Kiszka | 9a36085 | 2011-02-01 22:15:55 +0100 | [diff] [blame] | 1238 | int r; |
| 1239 | |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 1240 | /* Account partial waits to QEMU_CLOCK_VIRTUAL. */ |
| 1241 | qemu_clock_warp(QEMU_CLOCK_VIRTUAL); |
Paolo Bonzini | ab33fcd | 2011-04-13 10:03:44 +0200 | [diff] [blame] | 1242 | |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 1243 | if (next_cpu == NULL) { |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1244 | next_cpu = first_cpu; |
Jan Kiszka | 0ab07c6 | 2011-02-07 12:19:14 +0100 | [diff] [blame] | 1245 | } |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1246 | for (; next_cpu != NULL && !exit_request; next_cpu = CPU_NEXT(next_cpu)) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1247 | CPUState *cpu = next_cpu; |
| 1248 | CPUArchState *env = cpu->env_ptr; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1249 | |
Alex Bligh | 40daca5 | 2013-08-21 16:03:02 +0100 | [diff] [blame] | 1250 | qemu_clock_enable(QEMU_CLOCK_VIRTUAL, |
Andreas Färber | ed2803d | 2013-06-21 20:20:45 +0200 | [diff] [blame] | 1251 | (cpu->singlestep_enabled & SSTEP_NOTIMER) == 0); |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1252 | |
Andreas Färber | a1fcaa7 | 2012-05-02 23:42:26 +0200 | [diff] [blame] | 1253 | if (cpu_can_run(cpu)) { |
Jan Kiszka | bdb7ca6 | 2011-09-26 09:40:39 +0200 | [diff] [blame] | 1254 | r = tcg_cpu_exec(env); |
Jan Kiszka | 9a36085 | 2011-02-01 22:15:55 +0100 | [diff] [blame] | 1255 | if (r == EXCP_DEBUG) { |
Andreas Färber | 9132504 | 2013-05-27 02:07:49 +0200 | [diff] [blame] | 1256 | cpu_handle_guest_debug(cpu); |
Jan Kiszka | 3c638d0 | 2010-06-25 16:56:56 +0200 | [diff] [blame] | 1257 | break; |
| 1258 | } |
Andreas Färber | f324e76 | 2012-05-02 23:26:21 +0200 | [diff] [blame] | 1259 | } else if (cpu->stop || cpu->stopped) { |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1260 | break; |
| 1261 | } |
| 1262 | } |
Jan Kiszka | c629a4b | 2010-06-25 16:56:52 +0200 | [diff] [blame] | 1263 | exit_request = 0; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | void set_numa_modes(void) |
| 1267 | { |
Andreas Färber | 1b1ed8d | 2012-12-17 04:22:03 +0100 | [diff] [blame] | 1268 | CPUState *cpu; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1269 | int i; |
| 1270 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1271 | CPU_FOREACH(cpu) { |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1272 | for (i = 0; i < nb_numa_nodes; i++) { |
Andreas Färber | 55e5c28 | 2012-12-17 06:18:02 +0100 | [diff] [blame] | 1273 | if (test_bit(cpu->cpu_index, node_cpumask[i])) { |
Andreas Färber | 1b1ed8d | 2012-12-17 04:22:03 +0100 | [diff] [blame] | 1274 | cpu->numa_node = i; |
Blue Swirl | 296af7c | 2010-03-29 19:23:50 +0000 | [diff] [blame] | 1275 | } |
| 1276 | } |
| 1277 | } |
| 1278 | } |
| 1279 | |
Stefan Weil | 9a78eea | 2010-10-22 23:03:33 +0200 | [diff] [blame] | 1280 | void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg) |
Blue Swirl | 262353c | 2010-05-04 19:55:35 +0000 | [diff] [blame] | 1281 | { |
| 1282 | /* XXX: implement xxx_cpu_list for targets that still miss it */ |
Peter Maydell | e916cbf | 2012-09-05 17:41:08 -0300 | [diff] [blame] | 1283 | #if defined(cpu_list) |
| 1284 | cpu_list(f, cpu_fprintf); |
Blue Swirl | 262353c | 2010-05-04 19:55:35 +0000 | [diff] [blame] | 1285 | #endif |
| 1286 | } |
Luiz Capitulino | de0b36b | 2011-09-21 16:38:35 -0300 | [diff] [blame] | 1287 | |
| 1288 | CpuInfoList *qmp_query_cpus(Error **errp) |
| 1289 | { |
| 1290 | CpuInfoList *head = NULL, *cur_item = NULL; |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1291 | CPUState *cpu; |
Luiz Capitulino | de0b36b | 2011-09-21 16:38:35 -0300 | [diff] [blame] | 1292 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1293 | CPU_FOREACH(cpu) { |
Luiz Capitulino | de0b36b | 2011-09-21 16:38:35 -0300 | [diff] [blame] | 1294 | CpuInfoList *info; |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1295 | #if defined(TARGET_I386) |
| 1296 | X86CPU *x86_cpu = X86_CPU(cpu); |
| 1297 | CPUX86State *env = &x86_cpu->env; |
| 1298 | #elif defined(TARGET_PPC) |
| 1299 | PowerPCCPU *ppc_cpu = POWERPC_CPU(cpu); |
| 1300 | CPUPPCState *env = &ppc_cpu->env; |
| 1301 | #elif defined(TARGET_SPARC) |
| 1302 | SPARCCPU *sparc_cpu = SPARC_CPU(cpu); |
| 1303 | CPUSPARCState *env = &sparc_cpu->env; |
| 1304 | #elif defined(TARGET_MIPS) |
| 1305 | MIPSCPU *mips_cpu = MIPS_CPU(cpu); |
| 1306 | CPUMIPSState *env = &mips_cpu->env; |
| 1307 | #endif |
Luiz Capitulino | de0b36b | 2011-09-21 16:38:35 -0300 | [diff] [blame] | 1308 | |
Andreas Färber | cb446ec | 2013-05-01 14:24:52 +0200 | [diff] [blame] | 1309 | cpu_synchronize_state(cpu); |
Luiz Capitulino | de0b36b | 2011-09-21 16:38:35 -0300 | [diff] [blame] | 1310 | |
| 1311 | info = g_malloc0(sizeof(*info)); |
| 1312 | info->value = g_malloc0(sizeof(*info->value)); |
Andreas Färber | 55e5c28 | 2012-12-17 06:18:02 +0100 | [diff] [blame] | 1313 | info->value->CPU = cpu->cpu_index; |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1314 | info->value->current = (cpu == first_cpu); |
Andreas Färber | 259186a | 2013-01-17 18:51:17 +0100 | [diff] [blame] | 1315 | info->value->halted = cpu->halted; |
Andreas Färber | 9f09e18 | 2012-05-03 06:59:07 +0200 | [diff] [blame] | 1316 | info->value->thread_id = cpu->thread_id; |
Luiz Capitulino | de0b36b | 2011-09-21 16:38:35 -0300 | [diff] [blame] | 1317 | #if defined(TARGET_I386) |
| 1318 | info->value->has_pc = true; |
| 1319 | info->value->pc = env->eip + env->segs[R_CS].base; |
| 1320 | #elif defined(TARGET_PPC) |
| 1321 | info->value->has_nip = true; |
| 1322 | info->value->nip = env->nip; |
| 1323 | #elif defined(TARGET_SPARC) |
| 1324 | info->value->has_pc = true; |
| 1325 | info->value->pc = env->pc; |
| 1326 | info->value->has_npc = true; |
| 1327 | info->value->npc = env->npc; |
| 1328 | #elif defined(TARGET_MIPS) |
| 1329 | info->value->has_PC = true; |
| 1330 | info->value->PC = env->active_tc.PC; |
| 1331 | #endif |
| 1332 | |
| 1333 | /* XXX: waiting for the qapi to support GSList */ |
| 1334 | if (!cur_item) { |
| 1335 | head = cur_item = info; |
| 1336 | } else { |
| 1337 | cur_item->next = info; |
| 1338 | cur_item = info; |
| 1339 | } |
| 1340 | } |
| 1341 | |
| 1342 | return head; |
| 1343 | } |
Luiz Capitulino | 0cfd6a9 | 2011-11-22 16:32:37 -0200 | [diff] [blame] | 1344 | |
| 1345 | void qmp_memsave(int64_t addr, int64_t size, const char *filename, |
| 1346 | bool has_cpu, int64_t cpu_index, Error **errp) |
| 1347 | { |
| 1348 | FILE *f; |
| 1349 | uint32_t l; |
Andreas Färber | 55e5c28 | 2012-12-17 06:18:02 +0100 | [diff] [blame] | 1350 | CPUState *cpu; |
Luiz Capitulino | 0cfd6a9 | 2011-11-22 16:32:37 -0200 | [diff] [blame] | 1351 | uint8_t buf[1024]; |
| 1352 | |
| 1353 | if (!has_cpu) { |
| 1354 | cpu_index = 0; |
| 1355 | } |
| 1356 | |
Andreas Färber | 151d132 | 2013-02-15 15:41:49 +0100 | [diff] [blame] | 1357 | cpu = qemu_get_cpu(cpu_index); |
| 1358 | if (cpu == NULL) { |
Luiz Capitulino | 0cfd6a9 | 2011-11-22 16:32:37 -0200 | [diff] [blame] | 1359 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index", |
| 1360 | "a CPU number"); |
| 1361 | return; |
| 1362 | } |
| 1363 | |
| 1364 | f = fopen(filename, "wb"); |
| 1365 | if (!f) { |
Luiz Capitulino | 618da85 | 2013-06-07 14:35:06 -0400 | [diff] [blame] | 1366 | error_setg_file_open(errp, errno, filename); |
Luiz Capitulino | 0cfd6a9 | 2011-11-22 16:32:37 -0200 | [diff] [blame] | 1367 | return; |
| 1368 | } |
| 1369 | |
| 1370 | while (size != 0) { |
| 1371 | l = sizeof(buf); |
| 1372 | if (l > size) |
| 1373 | l = size; |
Andreas Färber | f17ec44 | 2013-06-29 19:40:58 +0200 | [diff] [blame] | 1374 | cpu_memory_rw_debug(cpu, addr, buf, l, 0); |
Luiz Capitulino | 0cfd6a9 | 2011-11-22 16:32:37 -0200 | [diff] [blame] | 1375 | if (fwrite(buf, 1, l, f) != l) { |
| 1376 | error_set(errp, QERR_IO_ERROR); |
| 1377 | goto exit; |
| 1378 | } |
| 1379 | addr += l; |
| 1380 | size -= l; |
| 1381 | } |
| 1382 | |
| 1383 | exit: |
| 1384 | fclose(f); |
| 1385 | } |
Luiz Capitulino | 6d3962b | 2011-11-22 17:26:46 -0200 | [diff] [blame] | 1386 | |
| 1387 | void qmp_pmemsave(int64_t addr, int64_t size, const char *filename, |
| 1388 | Error **errp) |
| 1389 | { |
| 1390 | FILE *f; |
| 1391 | uint32_t l; |
| 1392 | uint8_t buf[1024]; |
| 1393 | |
| 1394 | f = fopen(filename, "wb"); |
| 1395 | if (!f) { |
Luiz Capitulino | 618da85 | 2013-06-07 14:35:06 -0400 | [diff] [blame] | 1396 | error_setg_file_open(errp, errno, filename); |
Luiz Capitulino | 6d3962b | 2011-11-22 17:26:46 -0200 | [diff] [blame] | 1397 | return; |
| 1398 | } |
| 1399 | |
| 1400 | while (size != 0) { |
| 1401 | l = sizeof(buf); |
| 1402 | if (l > size) |
| 1403 | l = size; |
| 1404 | cpu_physical_memory_rw(addr, buf, l, 0); |
| 1405 | if (fwrite(buf, 1, l, f) != l) { |
| 1406 | error_set(errp, QERR_IO_ERROR); |
| 1407 | goto exit; |
| 1408 | } |
| 1409 | addr += l; |
| 1410 | size -= l; |
| 1411 | } |
| 1412 | |
| 1413 | exit: |
| 1414 | fclose(f); |
| 1415 | } |
Luiz Capitulino | ab49ab5 | 2011-11-23 12:55:53 -0200 | [diff] [blame] | 1416 | |
| 1417 | void qmp_inject_nmi(Error **errp) |
| 1418 | { |
| 1419 | #if defined(TARGET_I386) |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1420 | CPUState *cs; |
Luiz Capitulino | ab49ab5 | 2011-11-23 12:55:53 -0200 | [diff] [blame] | 1421 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1422 | CPU_FOREACH(cs) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1423 | X86CPU *cpu = X86_CPU(cs); |
| 1424 | CPUX86State *env = &cpu->env; |
| 1425 | |
Jan Kiszka | 02c0919 | 2011-10-18 00:00:06 +0800 | [diff] [blame] | 1426 | if (!env->apic_state) { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 1427 | cpu_interrupt(cs, CPU_INTERRUPT_NMI); |
Jan Kiszka | 02c0919 | 2011-10-18 00:00:06 +0800 | [diff] [blame] | 1428 | } else { |
| 1429 | apic_deliver_nmi(env->apic_state); |
| 1430 | } |
Luiz Capitulino | ab49ab5 | 2011-11-23 12:55:53 -0200 | [diff] [blame] | 1431 | } |
Eugene (jno) Dvurechenski | 7f7f975 | 2012-12-05 15:50:07 +0100 | [diff] [blame] | 1432 | #elif defined(TARGET_S390X) |
| 1433 | CPUState *cs; |
| 1434 | S390CPU *cpu; |
| 1435 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1436 | CPU_FOREACH(cs) { |
Eugene (jno) Dvurechenski | 7f7f975 | 2012-12-05 15:50:07 +0100 | [diff] [blame] | 1437 | cpu = S390_CPU(cs); |
| 1438 | if (cpu->env.cpu_num == monitor_get_cpu_index()) { |
| 1439 | if (s390_cpu_restart(S390_CPU(cs)) == -1) { |
| 1440 | error_set(errp, QERR_UNSUPPORTED); |
| 1441 | return; |
| 1442 | } |
| 1443 | break; |
| 1444 | } |
| 1445 | } |
Luiz Capitulino | ab49ab5 | 2011-11-23 12:55:53 -0200 | [diff] [blame] | 1446 | #else |
| 1447 | error_set(errp, QERR_UNSUPPORTED); |
| 1448 | #endif |
| 1449 | } |