diff options
author | Glauber de Oliveira Costa <gcosta@redhat.com> | 2008-01-30 07:31:14 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:31:14 -0500 |
commit | cc6978528cbd475d952e0eb5073375839dfb600e (patch) | |
tree | 96d07f0b08b08c0ebfaf8c73252316cb8c978652 /arch/x86/mm/fault_32.c | |
parent | 26048d75e8d6c840742468667f4a7ab8c2df74c9 (diff) |
x86: modify get_desc_base
This patch makes get_desc_base() receive a struct desc_struct,
and then uses its internal fields to compute the base address.
This is done at both i386 and x86_64, and then it is moved
to common header
Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm/fault_32.c')
-rw-r--r-- | arch/x86/mm/fault_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/fault_32.c b/arch/x86/mm/fault_32.c index 6056c6d71835..ef5ab2b925c4 100644 --- a/arch/x86/mm/fault_32.c +++ b/arch/x86/mm/fault_32.c | |||
@@ -115,7 +115,7 @@ static inline unsigned long get_segment_eip(struct pt_regs *regs, | |||
115 | } | 115 | } |
116 | 116 | ||
117 | /* Decode the code segment base from the descriptor */ | 117 | /* Decode the code segment base from the descriptor */ |
118 | base = get_desc_base((unsigned long *)desc); | 118 | base = get_desc_base((struct desc_struct *)desc); |
119 | 119 | ||
120 | if (seg & (1<<2)) { | 120 | if (seg & (1<<2)) { |
121 | mutex_unlock(¤t->mm->context.lock); | 121 | mutex_unlock(¤t->mm->context.lock); |