net: netmap_poll must update both read/write poll state

Signed-off-by: Prasad Joshi <prasadjoshi.linux@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
Prasad Joshi 2014-03-23 14:58:43 +05:30 committed by Stefan Hajnoczi
parent 839a554757
commit 131e744a15

View file

@ -177,8 +177,8 @@ static void netmap_poll(NetClientState *nc, bool enable)
NetmapState *s = DO_UPCAST(NetmapState, nc, nc);
if (s->read_poll != enable || s->write_poll != enable) {
s->read_poll = enable;
s->read_poll = enable;
s->write_poll = enable;
s->read_poll = enable;
netmap_update_fd_handler(s);
}
}