qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 6/6] net: netmap_poll must update both read/write po


From: Prasad Joshi
Subject: [Qemu-devel] [PATCH 6/6] net: netmap_poll must update both read/write poll state
Date: Sun, 23 Mar 2014 14:58:43 +0530

Signed-off-by: Prasad Joshi <address@hidden>
---
 net/netmap.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/netmap.c b/net/netmap.c
index 8213304..0c1772b 100644
--- a/net/netmap.c
+++ b/net/netmap.c
@@ -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);
     }
 }
-- 
1.8.1.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]