diff options
author | zhanghailiang <zhang.zhanghailiang@huawei.com> | 2017-02-17 10:53:13 +0800 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2017-03-06 11:46:02 +0800 |
commit | 8487ce45f890cab208541f01e79579d7b25e1615 (patch) | |
tree | 0013e431aa3a34e0da0e3a9c5eb898e11314d619 /chardev/char-io.h | |
parent | dfd917a9c2bed578c31043126c9f558190bf21e4 (diff) | |
download | qemu-8487ce45f890cab208541f01e79579d7b25e1615.zip |
char: remove the right fd been watched in qemu_chr_fe_set_handlers()
We can call qemu_chr_fe_set_handlers() to add/remove fd been watched
in 'context' which can be either default main context or other explicit
context. But the original logic is not correct, we didn't remove
the right fd because we call g_main_context_find_source_by_id(NULL, tag)
which always try to find the Gsource from default context.
Fix it by passing the right context to g_main_context_find_source_by_id().
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'chardev/char-io.h')
-rw-r--r-- | chardev/char-io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chardev/char-io.h b/chardev/char-io.h index d7ae5f1585..842be56bda 100644 --- a/chardev/char-io.h +++ b/chardev/char-io.h @@ -36,7 +36,7 @@ guint io_add_watch_poll(Chardev *chr, gpointer user_data, GMainContext *context); -void remove_fd_in_watch(Chardev *chr); +void remove_fd_in_watch(Chardev *chr, GMainContext *context); int io_channel_send(QIOChannel *ioc, const void *buf, size_t len); |