Author: hselasky Date: Fri Feb 24 14:23:46 2017 New Revision: 314205 URL: https://svnweb.freebsd.org/changeset/base/314205
Log: Implement BIT_ULL() macro in the LinuxKPI. MFC after: 1 week Sponsored by: Mellanox Technologies Modified: head/sys/compat/linuxkpi/common/include/linux/bitops.h Modified: head/sys/compat/linuxkpi/common/include/linux/bitops.h ============================================================================== --- head/sys/compat/linuxkpi/common/include/linux/bitops.h Fri Feb 24 12:12:30 2017 (r314204) +++ head/sys/compat/linuxkpi/common/include/linux/bitops.h Fri Feb 24 14:23:46 2017 (r314205) @@ -37,6 +37,7 @@ #include <sys/errno.h> #define BIT(nr) (1UL << (nr)) +#define BIT_ULL(nr) (1ULL << (nr)) #ifdef __LP64__ #define BITS_PER_LONG 64 #else _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"