aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/syscall_user_dispatch_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/syscall_user_dispatch_types.h')
-rw-r--r--include/linux/syscall_user_dispatch_types.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/linux/syscall_user_dispatch_types.h b/include/linux/syscall_user_dispatch_types.h
new file mode 100644
index 00000000000000..3be36b06c7d709
--- /dev/null
+++ b/include/linux/syscall_user_dispatch_types.h
@@ -0,0 +1,22 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _SYSCALL_USER_DISPATCH_TYPES_H
+#define _SYSCALL_USER_DISPATCH_TYPES_H
+
+#include <linux/types.h>
+
+#ifdef CONFIG_GENERIC_ENTRY
+
+struct syscall_user_dispatch {
+ char __user *selector;
+ unsigned long offset;
+ unsigned long len;
+ bool on_dispatch;
+};
+
+#else
+
+struct syscall_user_dispatch {};
+
+#endif
+
+#endif /* _SYSCALL_USER_DISPATCH_TYPES_H */