aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/desc_32.h
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-01-30 07:31:14 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:14 -0500
commit507f90c9f92592e7630b1c1e87bf92d2c9858cc6 (patch)
tree23e011c11bc221e1c51702ca7dc748d2b241005d /include/asm-x86/desc_32.h
parent54cd0eac7286b83ef1a657d2dddd74e0556209e7 (diff)
x86: move _set_gate and its users to a common location
This patch moves _set_gate and its users to desc.h. We can now use common code for x86_64 and i386. [ mingo@elte.hu: set_system_gate() fixes for nasty crashes. ] 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 'include/asm-x86/desc_32.h')
-rw-r--r--include/asm-x86/desc_32.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/asm-x86/desc_32.h b/include/asm-x86/desc_32.h
index 4bf20b7dd741..3b112ec186a0 100644
--- a/include/asm-x86/desc_32.h
+++ b/include/asm-x86/desc_32.h
@@ -10,22 +10,6 @@
10#include <linux/preempt.h> 10#include <linux/preempt.h>
11#include <linux/percpu.h> 11#include <linux/percpu.h>
12 12
13extern void set_intr_gate(unsigned int irq, void * addr);
14
15static inline void pack_gate(gate_desc *gate,
16 unsigned long base, unsigned short seg, unsigned char type, unsigned char flags)
17{
18 gate->a = (seg << 16) | (base & 0xffff);
19 gate->b = (base & 0xffff0000) | ((type & 0xff) << 8) | (flags & 0xff);
20}
21
22static inline void _set_gate(int gate, unsigned int type, void *addr, unsigned short seg)
23{
24 gate_desc g;
25 pack_gate(&g, (unsigned long)addr, seg, type, 0);
26 write_idt_entry(idt_table, gate, &g);
27}
28
29static inline void __set_tss_desc(unsigned int cpu, unsigned int entry, const void *addr) 13static inline void __set_tss_desc(unsigned int cpu, unsigned int entry, const void *addr)
30{ 14{
31 tss_desc tss; 15 tss_desc tss;