svn commit: r330392 - head/sys/compat/linuxkpi/common/include/linux

Hans Petter Selasky hselasky at FreeBSD.org
Sun Mar 4 18:19:45 UTC 2018


Author: hselasky
Date: Sun Mar  4 18:19:44 2018
New Revision: 330392
URL: https://svnweb.freebsd.org/changeset/base/330392

Log:
  Implement BUILD_BUG() function macro in the LinuxKPI.
  
  MFC after:	1 week
  Submitted by:	Johannes Lundberg <johalun0 at gmail.com>
  Sponsored by:	Mellanox Technologies
  Sponsored by:	Limelight Networks

Modified:
  head/sys/compat/linuxkpi/common/include/linux/kernel.h

Modified: head/sys/compat/linuxkpi/common/include/linux/kernel.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/kernel.h	Sun Mar  4 18:17:54 2018	(r330391)
+++ head/sys/compat/linuxkpi/common/include/linux/kernel.h	Sun Mar  4 18:19:44 2018	(r330392)
@@ -86,6 +86,7 @@
 #define	S64_C(x) x ## LL
 #define	U64_C(x) x ## ULL
 
+#define	BUILD_BUG()			CTASSERT(0)
 #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))


More information about the svn-src-all mailing list