diff options
author | Peter Xu <peterx@redhat.com> | 2017-09-21 14:35:54 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-09-22 21:07:27 +0200 |
commit | bb86d05f4afab3ebfee2e897e295d61dbd8cc28e (patch) | |
tree | ee0c77875cfa2b30bb1db7a17563560b17153ad4 /chardev/char-udp.c | |
parent | 6bbb6c0644f76b58012bd7ed4279d44c59bb43ab (diff) | |
download | qemu-bb86d05f4afab3ebfee2e897e295d61dbd8cc28e.zip qemu-bb86d05f4afab3ebfee2e897e295d61dbd8cc28e.tar.gz qemu-bb86d05f4afab3ebfee2e897e295d61dbd8cc28e.tar.bz2 |
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 'chardev/char-udp.c')
-rw-r--r-- | chardev/char-udp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chardev/char-udp.c b/chardev/char-udp.c index 106dee1..d46ff7a 100644 --- a/chardev/char-udp.c +++ b/chardev/char-udp.c @@ -100,8 +100,7 @@ static gboolean udp_chr_read(QIOChannel *chan, GIOCondition cond, void *opaque) return TRUE; } -static void udp_chr_update_read_handler(Chardev *chr, - GMainContext *context) +static void udp_chr_update_read_handler(Chardev *chr) { UdpChardev *s = UDP_CHARDEV(chr); |