]> git.ipfire.org Git - thirdparty/qemu.git/commit
io: Remove redundant read/write_coroutine assignments
authorKevin Wolf <kwolf@redhat.com>
Wed, 20 Feb 2019 17:00:07 +0000 (18:00 +0100)
committerKevin Wolf <kwolf@redhat.com>
Mon, 25 Feb 2019 14:03:19 +0000 (15:03 +0100)
commit2a239e6e03ee188f69f159bb5d8baf648a54c9c1
tree6e7e5a4eb4e691baf42b9767c0835989f95fd49b
parent6886ceaf61c2399419258246a064485e9b1e51ac
io: Remove redundant read/write_coroutine assignments

qio_channel_yield() now updates ioc->read_write/coroutine and calls
qio_channel_set_aio_fd_handlers(), so the code in the handlers has
become redundant and can be removed.

This does not make a difference in intermediate states because
aio_co_wake() really enters the coroutine immediately here: These
handlers are never run in coroutine context, and we're in the right
AioContext because qio_channel_attach_aio_context() asserts that the
handlers are inactive.

To make these conditions more obvious, assert the right AioContext.

Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
io/channel.c