summaryrefslogtreecommitdiff
path: root/built_in.h
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-05-30 18:11:08 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-05-30 18:11:08 +0200
commit9be74e71213ab2a8d449d1cc6cfa4d533fce0d0f (patch)
treeff2981355231f8f59917d1d5bab55a6f1e1ba5d1 /built_in.h
parentc3fec06db030445563d3945eec6320afa9a3db62 (diff)
ring: prepare setup_rx_ring_layout for support in v2/v3
Prepare setup_rx_ring_layout for both, v2 and v3. Also do some checks during compile time if offsets stay the same as we operate on different union mappings. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'built_in.h')
-rw-r--r--built_in.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/built_in.h b/built_in.h
index fa2f0c8..ea81257 100644
--- a/built_in.h
+++ b/built_in.h
@@ -153,6 +153,10 @@ typedef uint8_t u8;
# define build_bug_on_zero(e) (sizeof(char[1 - 2 * !!(e)]) - 1)
#endif
+#ifndef build_bug_on
+# define build_bug_on(e) ((void)sizeof(char[1 - 2*!!(e)]))
+#endif
+
#ifndef bug_on
# define bug_on(cond) assert(!(cond))
#endif