2008-12-17 17:50:37

by Jaswinder Singh Rajput

[permalink] [raw]
Subject: [PATCH] x86: tls.c declare sys_set_thread_area and sys_get_thread_area before they get used

Impact: cleanup

In asm/syscalls.h moved out sys_set_thread_area and sys_get_thread_area as it is common for both 32 and 64 bit.

Signed-off-by: Jaswinder Singh <[email protected]>
---
arch/x86/include/asm/syscalls.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/x86/include/asm/syscalls.h b/arch/x86/include/asm/syscalls.h
index 57dd724..9c6797c 100644
--- a/arch/x86/include/asm/syscalls.h
+++ b/arch/x86/include/asm/syscalls.h
@@ -22,6 +22,10 @@ asmlinkage long sys_ioperm(unsigned long, unsigned long, int);
/* kernel/ldt.c */
asmlinkage int sys_modify_ldt(int, void __user *, unsigned long);

+/* kernel/tls.c */
+asmlinkage int sys_set_thread_area(struct user_desc __user *);
+asmlinkage int sys_get_thread_area(struct user_desc __user *);
+
/* X86_32 only */
#ifdef CONFIG_X86_32
/* kernel/process_32.c */
@@ -54,10 +58,6 @@ asmlinkage int sys_uname(struct old_utsname __user *);
struct oldold_utsname;
asmlinkage int sys_olduname(struct oldold_utsname __user *);

-/* kernel/tls.c */
-asmlinkage int sys_set_thread_area(struct user_desc __user *);
-asmlinkage int sys_get_thread_area(struct user_desc __user *);
-
/* kernel/vm86_32.c */
asmlinkage int sys_vm86old(struct pt_regs);
asmlinkage int sys_vm86(struct pt_regs);
--
1.5.5.1



2008-12-18 12:37:23

by Ingo Molnar

[permalink] [raw]
Subject: Re: [PATCH] x86: tls.c declare sys_set_thread_area and sys_get_thread_area before they get used


* Jaswinder Singh <[email protected]> wrote:

> Impact: cleanup
>
> In asm/syscalls.h moved out sys_set_thread_area and sys_get_thread_area as it is common for both 32 and 64 bit.
>
> Signed-off-by: Jaswinder Singh <[email protected]>
> ---
> arch/x86/include/asm/syscalls.h | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)

applied to tip/x86/cleanups, thanks Jaswinder!

Ingo