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

Hans Petter Selasky hselasky at FreeBSD.org
Fri Oct 16 11:01:21 UTC 2020


Author: hselasky
Date: Fri Oct 16 11:01:21 2020
New Revision: 366751
URL: https://svnweb.freebsd.org/changeset/base/366751

Log:
  Remove ifdefs around IS_ALIGNED() definition in the LinuxKPI.
  
  Discussed with:		manu@
  MFC after:		1 week
  Sponsored by:		Mellanox Technologies // NVIDIA Networking

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	Fri Oct 16 10:44:48 2020	(r366750)
+++ head/sys/compat/linuxkpi/common/include/linux/kernel.h	Fri Oct 16 11:01:21 2020	(r366751)
@@ -135,10 +135,7 @@ extern const volatile int lkpi_build_bug_on_zero;
 #define	ALIGN(x, y)		roundup2((x), (y))
 #undef PTR_ALIGN
 #define	PTR_ALIGN(p, a)		((__typeof(p))ALIGN((uintptr_t)(p), (a)))
-#if defined(LINUXKPI_VERSION) && LINUXKPI_VERSION >= 50000
-/* Moved from linuxkpi_gplv2 */
 #define	IS_ALIGNED(x, a)	(((x) & ((__typeof(x))(a) - 1)) == 0)
-#endif
 #define	DIV_ROUND_UP(x, n)	howmany(x, n)
 #define	__KERNEL_DIV_ROUND_UP(x, n)	howmany(x, n)
 #define	DIV_ROUND_UP_ULL(x, n)	DIV_ROUND_UP((unsigned long long)(x), (n))


More information about the svn-src-head mailing list