qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [RFC v9 12/27] virtio-blk: Add workaround for BUG_ON() depe


From: Stefan Hajnoczi
Subject: [Qemu-devel] [RFC v9 12/27] virtio-blk: Add workaround for BUG_ON() dependency in virtio_ring.h
Date: Wed, 18 Jul 2012 16:07:39 +0100

Signed-off-by: Stefan Hajnoczi <address@hidden>
---
 hw/dataplane/vring.h |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/hw/dataplane/vring.h b/hw/dataplane/vring.h
index 3eab4b4..44ef4a9 100644
--- a/hw/dataplane/vring.h
+++ b/hw/dataplane/vring.h
@@ -1,6 +1,11 @@
 #ifndef VRING_H
 #define VRING_H
 
+/* Some virtio_ring.h files use BUG_ON() */
+#ifndef BUG_ON
+#define BUG_ON(x)
+#endif
+
 #include <linux/virtio_ring.h>
 #include "qemu-common.h"
 
-- 
1.7.10.4




reply via email to

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