LinuxKPI: add kernel_ulong_t typedef in linux/kernel.h.

Sponsored by:	The FreeBSD Foundation
MFC after:	2 weeks
Reviewed by:	hselasky
Differential Revision: https://reviews.freebsd.org/D30438
This commit is contained in:
Bjoern A. Zeeb 2021-05-24 18:47:49 +00:00
parent cae1683120
commit 5878c7c7b0

View File

@ -72,6 +72,7 @@ typedef unsigned __poll_t;
typedef uint64_t phys_addr_t;
typedef size_t __kernel_size_t;
typedef unsigned long kernel_ulong_t;
#define DECLARE_BITMAP(n, bits) \
unsigned long n[howmany(bits, sizeof(long) * 8)]