Skip to content
Snippets Groups Projects
Commit ac5e8acd authored by Paolo Bonzini's avatar Paolo Bonzini
Browse files

ipmi: do not take/drop iothread lock


This is not necessary and actually causes a hang; it was probably copied
and pasted from KVM code, that is one of the very few places that run
outside iothread lock.

Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 1d1cc4d0
No related branches found
No related tags found
No related merge requests found
......@@ -51,9 +51,7 @@ static int ipmi_do_hw_op(IPMIInterface *s, enum ipmi_op op, int checkonly)
if (checkonly) {
return 0;
}
qemu_mutex_lock_iothread();
qmp_inject_nmi(NULL);
qemu_mutex_unlock_iothread();
return 0;
case IPMI_POWERCYCLE_CHASSIS:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment