qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] virtio-net: remove function calls from assert
@ 2014-02-11  0:12 Joel Stanley
  2014-02-11  5:03 ` Michael S. Tsirkin
  0 siblings, 1 reply; 4+ messages in thread
From: Joel Stanley @ 2014-02-11  0:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori, mst

peer_{de,at}tach were called from inside assert(). This will be a
problem for virtio-net if built with NDEBUG.

Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 hw/net/virtio-net.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index 3626608..535948d 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -401,12 +401,15 @@ static int peer_detach(VirtIONet *n, int index)
 static void virtio_net_set_queues(VirtIONet *n)
 {
     int i;
+    int r;
 
     for (i = 0; i < n->max_queues; i++) {
         if (i < n->curr_queues) {
-            assert(!peer_attach(n, i));
+            r = peer_attach(n, i);
+            assert(!r);
         } else {
-            assert(!peer_detach(n, i));
+            r = peer_detach(n, i);
+            assert(!r);
         }
     }
 }
-- 
1.9.rc1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-02-11  8:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-11  0:12 [Qemu-devel] [PATCH] virtio-net: remove function calls from assert Joel Stanley
2014-02-11  5:03 ` Michael S. Tsirkin
2014-02-11  5:10   ` Michael S. Tsirkin
2014-02-11  8:01     ` Joel Stanley

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).