Implement BIT_ULL() macro in the LinuxKPI.

MFC after:		1 week
Sponsored by:		Mellanox Technologies
This commit is contained in:
Hans Petter Selasky 2017-02-24 14:23:46 +00:00
parent d7c2cc352e
commit 797046eebb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=314205

View File

@ -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