* Kyle Huey <[email protected]> wrote:
> --- a/include/linux/compat.h
> +++ b/include/linux/compat.h
> @@ -716,16 +716,18 @@ int __compat_save_altstack(compat_stack_t __user *,
> unsigned long);
> } while (0);
>
> asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
> struct compat_timespec __user
> *interval);
>
> asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32,
> int, const char __user *);
>
> +asmlinkage long compat_sys_arch_prctl(int, unsigned long);
Please always use prototypes with proper argument names spelled out, i.e.:
+asmlinkage long compat_sys_arch_prctl(int option, unsigned long arg2);
Thanks,
Ingo