From: Kyle Huey Date: Mon, 20 Mar 2017 23:05:35 +0000 (-0700) Subject: um/arch_prctl: Fix fallout from x86 arch_prctl() rework X-Git-Tag: v4.12-rc1~153^2~1 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=d582799fe5de1c1ca127d7f364db12a660cf46d4;p=linux.git um/arch_prctl: Fix fallout from x86 arch_prctl() rework The recent arch_prctl rework added a bracket instead of a comma. Fix it. Fixes: 17a6e1b8e8e8 ("x86/arch_prctl/64: Rename do_arch_prctl() to do_arch_prctl_64()") Signed-off-by: Kyle Huey Cc: Andy Lutomirski Cc: kbuild-all@01.org Link: http://lkml.kernel.org/r/20170320230535.11281-1-khuey@kylehuey.com Signed-off-by: Thomas Gleixner --- diff --git a/arch/x86/um/syscalls_64.c b/arch/x86/um/syscalls_64.c index 81b9fe100f7c..58f51667e2e4 100644 --- a/arch/x86/um/syscalls_64.c +++ b/arch/x86/um/syscalls_64.c @@ -12,7 +12,7 @@ #include /* XXX This should get the constants from libc */ #include -long arch_prctl(struct task_struct *task, int option) +long arch_prctl(struct task_struct *task, int option, unsigned long __user *arg2) { unsigned long *ptr = arg2, tmp;