diff options
Diffstat (limited to 'include/linux/restart_block.h')
-rw-r--r-- | include/linux/restart_block.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/restart_block.h b/include/linux/restart_block.h index bba2920e9c05..7e50bbc94e47 100644 --- a/include/linux/restart_block.h +++ b/include/linux/restart_block.h @@ -7,8 +7,8 @@ #include <linux/compiler.h> #include <linux/types.h> -#include <linux/time64.h> +struct __kernel_timespec; struct timespec; struct old_timespec32; struct pollfd; @@ -23,9 +23,10 @@ enum timespec_type { * System call restart block. */ struct restart_block { + unsigned long arch_data; long (*fn)(struct restart_block *); union { - /* For futex_wait and futex_wait_requeue_pi */ + /* For futex_wait() */ struct { u32 __user *uaddr; u32 val; |