2019-03-18 16:28:45

by J. Neuschäfer

[permalink] [raw]
Subject: [PATCH RESEND] tools/virtio/ringtest: Remove bogus definition of BUG_ON()

BUG_ON(x) should raise an error if x is true, but assert(x) raises an
error if x is false. Remove this bogus definition of BUG_ON(), which
isn't used anyway.

Signed-off-by: Jonathan Neuschäfer <[email protected]>
---

Previous copy of v1:
https://lore.kernel.org/lkml/[email protected]/
---
tools/virtio/ringtest/ptr_ring.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/tools/virtio/ringtest/ptr_ring.c b/tools/virtio/ringtest/ptr_ring.c
index 2d566fbd236b..c9b26335f891 100644
--- a/tools/virtio/ringtest/ptr_ring.c
+++ b/tools/virtio/ringtest/ptr_ring.c
@@ -18,7 +18,6 @@
#define ALIGN(x, a) (((x) + (a) - 1) / (a) * (a))
#define SIZE_MAX (~(size_t)0)
#define KMALLOC_MAX_SIZE SIZE_MAX
-#define BUG_ON(x) assert(x)

typedef pthread_spinlock_t spinlock_t;

--
2.20.1