summaryrefslogtreecommitdiffstats
path: root/include/chardev
diff options
context:
space:
mode:
authorPeter Xu2017-09-21 08:35:54 +0200
committerPaolo Bonzini2017-09-22 21:07:27 +0200
commitbb86d05f4afab3ebfee2e897e295d61dbd8cc28e (patch)
treeee0c77875cfa2b30bb1db7a17563560b17153ad4 /include/chardev
parentchardev: use per-dev context for io_add_watch_poll (diff)
downloadqemu-bb86d05f4afab3ebfee2e897e295d61dbd8cc28e.tar.gz
qemu-bb86d05f4afab3ebfee2e897e295d61dbd8cc28e.tar.xz
qemu-bb86d05f4afab3ebfee2e897e295d61dbd8cc28e.zip
chardev: remove context in chr_update_read_handler
We had a per-chardev cache for context, then we don't need this parameter to be passed in every time when chr_update_read_handler() called. As long as we are calling chr_update_read_handler() using qemu_chr_be_update_read_handlers() we'll be fine. Signed-off-by: Peter Xu <peterx@redhat.com> Message-Id: <1505975754-21555-5-git-send-email-peterx@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/chardev')
-rw-r--r--include/chardev/char.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/chardev/char.h b/include/chardev/char.h
index 84fb773591..43aabccef5 100644
--- a/include/chardev/char.h
+++ b/include/chardev/char.h
@@ -238,7 +238,7 @@ typedef struct ChardevClass {
int (*chr_write)(Chardev *s, const uint8_t *buf, int len);
int (*chr_sync_read)(Chardev *s, const uint8_t *buf, int len);
GSource *(*chr_add_watch)(Chardev *s, GIOCondition cond);
- void (*chr_update_read_handler)(Chardev *s, GMainContext *context);
+ void (*chr_update_read_handler)(Chardev *s);
int (*chr_ioctl)(Chardev *s, int cmd, void *arg);
int (*get_msgfds)(Chardev *s, int* fds, int num);
int (*set_msgfds)(Chardev *s, int *fds, int num);