mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
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>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user