diff options
Diffstat (limited to 'cpus-common.c')
-rw-r--r-- | cpus-common.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cpus-common.c b/cpus-common.c index 7d935fd3dd..115f3d45df 100644 --- a/cpus-common.c +++ b/cpus-common.c @@ -153,11 +153,6 @@ void async_run_on_cpu(CPUState *cpu, run_on_cpu_func func, void *data) { struct qemu_work_item *wi; - if (qemu_cpu_is_self(cpu)) { - func(cpu, data); - return; - } - wi = g_malloc0(sizeof(struct qemu_work_item)); wi->func = func; wi->data = data; |