summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorHardik Garg <hargar@linux.microsoft.com>2023-05-26 16:21:36 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-05-30 12:42:14 +0100
commit28378208c3d3e5d22497da86017befc9a2f00f56 (patch)
tree58073992f89c1c38fec40ebdb8da87484cadbed7 /tools
parent4d19f7698681c59b4c1f25dc343a025d91cc4827 (diff)
downloadlinux-stable-28378208c3d3e5d22497da86017befc9a2f00f56.tar.gz
linux-stable-28378208c3d3e5d22497da86017befc9a2f00f56.tar.bz2
linux-stable-28378208c3d3e5d22497da86017befc9a2f00f56.zip
selftests/memfd: Fix unknown type name build failure
Partially backport v6.3 commit 11f75a01448f ("selftests/memfd: add tests for MFD_NOEXEC_SEAL MFD_EXEC") to fix an unknown type name build error. In some systems, the __u64 typedef is not present due to differences in system headers, causing compilation errors like this one: fuse_test.c:64:8: error: unknown type name '__u64' 64 | static __u64 mfd_assert_get_seals(int fd) This header includes the __u64 typedef which increases the likelihood of successful compilation on a wider variety of systems. Signed-off-by: Hardik Garg <hargar@linux.microsoft.com> Reviewed-by: Tyler Hicks (Microsoft) <code@tyhicks.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/memfd/fuse_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/memfd/fuse_test.c b/tools/testing/selftests/memfd/fuse_test.c
index b018e835737d..cda63164d9d3 100644
--- a/tools/testing/selftests/memfd/fuse_test.c
+++ b/tools/testing/selftests/memfd/fuse_test.c
@@ -22,6 +22,7 @@
#include <linux/falloc.h>
#include <linux/fcntl.h>
#include <linux/memfd.h>
+#include <linux/types.h>
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>