Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Feb 2018 10:51:39 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r329980 - stable/11/sys/compat/linuxkpi/common/include/linux
Message-ID:  <201802251051.w1PApdCQ025631@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Sun Feb 25 10:51:39 2018
New Revision: 329980
URL: https://svnweb.freebsd.org/changeset/base/329980

Log:
  MFC r329471:
  Implement BUILD_BUG_ON_INVALID() function macro in the LinuxKPI.
  
  Submitted by:	Johannes Lundberg <johalun0@gmail.com>
  Sponsored by:	Mellanox Technologies

Modified:
  stable/11/sys/compat/linuxkpi/common/include/linux/kernel.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/compat/linuxkpi/common/include/linux/kernel.h
==============================================================================
--- stable/11/sys/compat/linuxkpi/common/include/linux/kernel.h	Sun Feb 25 10:48:52 2018	(r329979)
+++ stable/11/sys/compat/linuxkpi/common/include/linux/kernel.h	Sun Feb 25 10:51:39 2018	(r329980)
@@ -89,6 +89,7 @@
 #define	BUILD_BUG_ON(x)			CTASSERT(!(x))
 #define	BUILD_BUG_ON_MSG(x, msg)	BUILD_BUG_ON(x)
 #define	BUILD_BUG_ON_NOT_POWER_OF_2(x)	BUILD_BUG_ON(!powerof2(x))
+#define	BUILD_BUG_ON_INVALID(expr)	while (0) { (void)(expr); }
 
 #define	BUG()			panic("BUG at %s:%d", __FILE__, __LINE__)
 #define	BUG_ON(cond)		do {				\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802251051.w1PApdCQ025631>