diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2013-01-21 15:25:54 -0500 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-03-03 22:58:33 -0500 | 
| commit | 2cf0966683430b6468f36ca20515a33ca7f2403c (patch) | |
| tree | 902080486ebd7988d1250914c3809c4de472a22b /arch/x86/include | |
| parent | 22d1a35da0e247a006c286842a1846acb4ffed4f (diff) | |
| download | olio-linux-3.10-2cf0966683430b6468f36ca20515a33ca7f2403c.tar.xz olio-linux-3.10-2cf0966683430b6468f36ca20515a33ca7f2403c.zip  | |
make SYSCALL_DEFINE<n>-generated wrappers do asmlinkage_protect
... and switch i386 to HAVE_SYSCALL_WRAPPERS, killing open-coded
uses of asmlinkage_protect() in a bunch of syscalls.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/include')
| -rw-r--r-- | arch/x86/include/asm/syscalls.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/syscalls.h b/arch/x86/include/asm/syscalls.h index 6cf0a9cc60c..5f87b35fd2e 100644 --- a/arch/x86/include/asm/syscalls.h +++ b/arch/x86/include/asm/syscalls.h @@ -27,8 +27,8 @@ asmlinkage int sys_modify_ldt(int, void __user *, unsigned long);  long sys_rt_sigreturn(void);  /* kernel/tls.c */ -asmlinkage int sys_set_thread_area(struct user_desc __user *); -asmlinkage int sys_get_thread_area(struct user_desc __user *); +asmlinkage long sys_set_thread_area(struct user_desc __user *); +asmlinkage long sys_get_thread_area(struct user_desc __user *);  /* X86_32 only */  #ifdef CONFIG_X86_32  |