aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2021-05-24 18:47:49 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2021-05-25 18:01:46 +0000
commit5878c7c7b090c8579316ae4479e962684d49a499 (patch)
tree0886f0ae1dee1d98eab5c9f722a8fff995142e05
parentcae1683120e2bf8e39901d29a17c473401653985 (diff)
downloadsrc-5878c7c7b090c8579316ae4479e962684d49a499.tar.gz
src-5878c7c7b090c8579316ae4479e962684d49a499.zip
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
-rw-r--r--sys/compat/linuxkpi/common/include/linux/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/types.h b/sys/compat/linuxkpi/common/include/linux/types.h
index aa3580c81a27..db362c388573 100644
--- a/sys/compat/linuxkpi/common/include/linux/types.h
+++ b/sys/compat/linuxkpi/common/include/linux/types.h
@@ -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)]