X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lib%2Fbug.h;h=3de40ca906cc56ab7954395ad363ba5a0e1c4e25;hb=d7e90fd0161de91cd1bf98af5c1fc354588b976f;hp=ecd492866a92c15668f416ca47c06ad8db7cd9aa;hpb=103c35ac4067997fd1324f078cf4a813f48142a6;p=lttng-modules.git diff --git a/lib/bug.h b/lib/bug.h index ecd49286..3de40ca9 100644 --- a/lib/bug.h +++ b/lib/bug.h @@ -21,6 +21,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)) +#define LTTNG_BUILD_BUG_ON(cond) BUILD_BUG_ON(cond) +#else +#define LTTNG_BUILD_BUG_ON(cond) MAYBE_BUILD_BUG_ON(cond) +#endif + /** * BUILD_RUNTIME_BUG_ON - check condition at build (if constant) or runtime * @condition: the condition which should be false. @@ -33,7 +41,7 @@ #define BUILD_RUNTIME_BUG_ON(condition) \ do { \ if (__builtin_constant_p(condition)) \ - BUILD_BUG_ON(condition); \ + LTTNG_BUILD_BUG_ON(condition); \ else \ BUG_ON(condition); \ } while (0)