projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9ea1e7
)
um/arch_prctl: Fix fallout from x86 arch_prctl() rework
author
Kyle Huey
<
[email protected]
>
Mon, 20 Mar 2017 23:05:35 +0000
(16:05 -0700)
committer
Thomas Gleixner
<
[email protected]
>
Tue, 21 Mar 2017 09:08:29 +0000
(10:08 +0100)
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 <
[email protected]
>
Cc: Andy Lutomirski <
[email protected]
>
Cc:
[email protected]
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Thomas Gleixner <
[email protected]
>
arch/x86/um/syscalls_64.c
patch
|
blob
|
history
diff --git
a/arch/x86/um/syscalls_64.c
b/arch/x86/um/syscalls_64.c
index 81b9fe100f7c085b1fc04b14c758a16edde34321..58f51667e2e4beb82ec794cf618bf7026cfcb66c 100644
(file)
--- a/
arch/x86/um/syscalls_64.c
+++ b/
arch/x86/um/syscalls_64.c
@@
-12,7
+12,7
@@
#include <asm/prctl.h> /* XXX This should get the constants from libc */
#include <os.h>
-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;