From: Aurelien Jarno Date: Sun, 23 Apr 2017 22:32:40 +0000 (+0200) Subject: s390x/misc_helper.c: wrap s390_virtio_hypercall in BQL X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2cf9953beebd194a432ebd567399807d9b1f6a4d;p=qemu.git s390x/misc_helper.c: wrap s390_virtio_hypercall in BQL s390_virtio_hypercall can trigger IO events and interrupts, most notably when using virtio-ccw devices. Reviewed-by: Alexander Graf Signed-off-by: Aurelien Jarno Reviewed-by: Philippe Mathieu-Daudé Fixes: 278f5e98c647 ("s390x/misc_helper.c: wrap IO instructions in BQL") Signed-off-by: Alexander Graf --- diff --git a/target/s390x/misc_helper.c b/target/s390x/misc_helper.c index 83d38944d7..eca82441d0 100644 --- a/target/s390x/misc_helper.c +++ b/target/s390x/misc_helper.c @@ -288,7 +288,9 @@ void HELPER(diag)(CPUS390XState *env, uint32_t r1, uint32_t r3, uint32_t num) switch (num) { case 0x500: /* KVM hypercall */ + qemu_mutex_lock_iothread(); r = s390_virtio_hypercall(env); + qemu_mutex_unlock_iothread(); break; case 0x44: /* yield */