diff options
author | Tejun Heo <tj@kernel.org> | 2009-02-09 08:17:40 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-09 18:41:58 -0500 |
commit | d9a89a26e02ef9ed03f74a755a8b4d8f3a066622 (patch) | |
tree | 35f3713bca4e6b815f6b9db92dc9d812ec7213ff /arch/x86/include/asm/system.h | |
parent | f0d96110f9fd98a1a22e03b8adba69508843d910 (diff) |
x86: add %gs accessors for x86_32
Impact: cleanup
On x86_32, %gs is handled lazily. It's not saved and restored on
kernel entry/exit but only when necessary which usually is during task
switch but there are few other places. Currently, it's done by
calling savesegment() and loadsegment() explicitly. Define
get_user_gs(), set_user_gs() and task_user_gs() and use them instead.
While at it, clean up register access macros in signal.c.
This cleans up code a bit and will help future changes.
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/system.h')
-rw-r--r-- | arch/x86/include/asm/system.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/include/asm/system.h b/arch/x86/include/asm/system.h index 2fcc70bc85f3..70c74b8db875 100644 --- a/arch/x86/include/asm/system.h +++ b/arch/x86/include/asm/system.h | |||
@@ -182,6 +182,15 @@ extern void native_load_gs_index(unsigned); | |||
182 | #define savesegment(seg, value) \ | 182 | #define savesegment(seg, value) \ |
183 | asm("mov %%" #seg ",%0":"=r" (value) : : "memory") | 183 | asm("mov %%" #seg ",%0":"=r" (value) : : "memory") |
184 | 184 | ||
185 | /* | ||
186 | * x86_32 user gs accessors. | ||
187 | */ | ||
188 | #ifdef CONFIG_X86_32 | ||
189 | #define get_user_gs(regs) (u16)({unsigned long v; savesegment(gs, v); v;}) | ||
190 | #define set_user_gs(regs, v) loadsegment(gs, (unsigned long)(v)) | ||
191 | #define task_user_gs(tsk) ((tsk)->thread.gs) | ||
192 | #endif | ||
193 | |||
185 | static inline unsigned long get_limit(unsigned long segment) | 194 | static inline unsigned long get_limit(unsigned long segment) |
186 | { | 195 | { |
187 | unsigned long __limit; | 196 | unsigned long __limit; |