]> git.proxmox.com Git - qemu.git/commit
async: Allow nested qemu_bh_poll calls
authorKevin Wolf <kwolf@redhat.com>
Thu, 1 Sep 2011 14:16:10 +0000 (16:16 +0200)
committerKevin Wolf <kwolf@redhat.com>
Tue, 6 Sep 2011 09:23:51 +0000 (11:23 +0200)
commit648fb0ea5e9d7f32c80ec23c3ece4321403dfecd
tree5b0c1010a027aa79139a0dd2bd205a7984effa57
parent0fa9131a44943cc14c931a23eee040da4cc0c454
async: Allow nested qemu_bh_poll calls

qemu may segfault when a BH handler first deletes a BH and then (possibly
indirectly) calls a nested qemu_bh_poll(). This is because the inner instance
frees the BH and deletes it from the list that the outer one processes.

This patch deletes BHs only in the outermost qemu_bh_poll instance.

Commit 7887f620 already tried to achieve the same, but it assumed that the BH
handler would only delete its own BH. With a nested qemu_bh_poll(), this isn't
guaranteed, so that commit wasn't enough. Hope this one fixes it for real.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
async.c