svn commit: r279736 - stable/9/sys/ofed/include/linux
Hans Petter Selasky
hselasky at FreeBSD.org
Sat Mar 7 18:46:22 UTC 2015
Author: hselasky
Date: Sat Mar 7 18:46:21 2015
New Revision: 279736
URL: https://svnweb.freebsd.org/changeset/base/279736
Log:
MFC r279587:
Define PTR_ALIGN() macro which will be needed coming Mellanox driver
releases.
Sponsored by: Mellanox Technologies
Modified:
stable/9/sys/ofed/include/linux/kernel.h
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/ofed/include/linux/kernel.h
==============================================================================
--- stable/9/sys/ofed/include/linux/kernel.h Sat Mar 7 18:44:52 2015 (r279735)
+++ stable/9/sys/ofed/include/linux/kernel.h Sat Mar 7 18:46:21 2015 (r279736)
@@ -63,6 +63,8 @@
#undef ALIGN
#define ALIGN(x, y) roundup2((x), (y))
+#undef PTR_ALIGN
+#define PTR_ALIGN(p, a) ((__typeof(p))ALIGN((uintptr_t)(p), (a)))
#define DIV_ROUND_UP howmany
#define printk(X...) printf(X)
More information about the svn-src-stable-9
mailing list