From: Frediano Ziglio <fziglio@redhat.com>
To: kraxel@redhat.com
Cc: qemu-devel@nongnu.org, Frediano Ziglio <fziglio@redhat.com>
Subject: [Qemu-devel] [PATCH 3/4] spice: remove only written event_mask field
Date: Wed, 22 Nov 2017 13:56:24 +0000 [thread overview]
Message-ID: <20171122135625.16625-3-fziglio@redhat.com> (raw)
In-Reply-To: <20171122135625.16625-1-fziglio@redhat.com>
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
---
ui/spice-core.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/ui/spice-core.c b/ui/spice-core.c
index 85b9ea2127..6d579faaae 100644
--- a/ui/spice-core.c
+++ b/ui/spice-core.c
@@ -89,7 +89,6 @@ static void timer_remove(SpiceTimer *timer)
struct SpiceWatch {
int fd;
- int event_mask;
SpiceWatchFunc func;
void *opaque;
};
@@ -111,11 +110,10 @@ static void watch_update_mask(SpiceWatch *watch, int event_mask)
IOHandler *on_read = NULL;
IOHandler *on_write = NULL;
- watch->event_mask = event_mask;
- if (watch->event_mask & SPICE_WATCH_EVENT_READ) {
+ if (event_mask & SPICE_WATCH_EVENT_READ) {
on_read = watch_read;
}
- if (watch->event_mask & SPICE_WATCH_EVENT_WRITE) {
+ if (event_mask & SPICE_WATCH_EVENT_WRITE) {
on_write = watch_write;
}
qemu_set_fd_handler(watch->fd, on_read, on_write, watch);
--
2.14.3
next prev parent reply other threads:[~2017-11-22 13:56 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-22 13:56 [Qemu-devel] [PATCH 1/4] spice: remove QXLWorker interface field Frediano Ziglio
2017-11-22 13:56 ` [Qemu-devel] [PATCH 2/4] spice: remove unused watch list Frediano Ziglio
2017-11-22 13:56 ` Frediano Ziglio [this message]
2017-11-22 13:56 ` [Qemu-devel] [PATCH 4/4] spice: remove unused timer list Frediano Ziglio
2017-12-07 9:05 ` [Qemu-devel] [PATCH 1/4] spice: remove QXLWorker interface field Frediano Ziglio
2017-12-19 11:20 ` Frediano Ziglio
2017-12-31 10:17 ` Frediano Ziglio
2018-01-08 10:51 ` Gerd Hoffmann
2018-01-09 20:34 ` Frediano Ziglio
2018-01-12 13:37 ` Gerd Hoffmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171122135625.16625-3-fziglio@redhat.com \
--to=fziglio@redhat.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).