|
@@ -327,10 +327,25 @@ static inline void write_trace_idt_entry(int entry, const gate_desc *gate)
|
|
|
{
|
|
|
write_idt_entry(trace_idt_table, entry, gate);
|
|
|
}
|
|
|
+
|
|
|
+static inline void _trace_set_gate(int gate, unsigned type, void *addr,
|
|
|
+ unsigned dpl, unsigned ist, unsigned seg)
|
|
|
+{
|
|
|
+ gate_desc s;
|
|
|
+
|
|
|
+ pack_gate(&s, type, (unsigned long)addr, dpl, ist, seg);
|
|
|
+ /*
|
|
|
+ * does not need to be atomic because it is only done once at
|
|
|
+ * setup time
|
|
|
+ */
|
|
|
+ write_trace_idt_entry(gate, &s);
|
|
|
+}
|
|
|
#else
|
|
|
static inline void write_trace_idt_entry(int entry, const gate_desc *gate)
|
|
|
{
|
|
|
}
|
|
|
+
|
|
|
+#define _trace_set_gate(gate, type, addr, dpl, ist, seg)
|
|
|
#endif
|
|
|
|
|
|
static inline void _set_gate(int gate, unsigned type, void *addr,
|
|
@@ -353,11 +368,14 @@ static inline void _set_gate(int gate, unsigned type, void *addr,
|
|
|
* Pentium F0 0F bugfix can have resulted in the mapped
|
|
|
* IDT being write-protected.
|
|
|
*/
|
|
|
-static inline void set_intr_gate(unsigned int n, void *addr)
|
|
|
-{
|
|
|
- BUG_ON((unsigned)n > 0xFF);
|
|
|
- _set_gate(n, GATE_INTERRUPT, addr, 0, 0, __KERNEL_CS);
|
|
|
-}
|
|
|
+#define set_intr_gate(n, addr) \
|
|
|
+ do { \
|
|
|
+ BUG_ON((unsigned)n > 0xFF); \
|
|
|
+ _set_gate(n, GATE_INTERRUPT, (void *)addr, 0, 0, \
|
|
|
+ __KERNEL_CS); \
|
|
|
+ _trace_set_gate(n, GATE_INTERRUPT, (void *)trace_##addr,\
|
|
|
+ 0, 0, __KERNEL_CS); \
|
|
|
+ } while (0)
|
|
|
|
|
|
extern int first_system_vector;
|
|
|
/* used_vectors is BITMAP for irq is not managed by percpu vector_irq */
|
|
@@ -374,37 +392,10 @@ static inline void alloc_system_vector(int vector)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_TRACING
|
|
|
-static inline void trace_set_intr_gate(unsigned int gate, void *addr)
|
|
|
-{
|
|
|
- gate_desc s;
|
|
|
-
|
|
|
- pack_gate(&s, GATE_INTERRUPT, (unsigned long)addr, 0, 0, __KERNEL_CS);
|
|
|
- write_idt_entry(trace_idt_table, gate, &s);
|
|
|
-}
|
|
|
-
|
|
|
-static inline void __trace_alloc_intr_gate(unsigned int n, void *addr)
|
|
|
-{
|
|
|
- trace_set_intr_gate(n, addr);
|
|
|
-}
|
|
|
-#else
|
|
|
-static inline void trace_set_intr_gate(unsigned int gate, void *addr)
|
|
|
-{
|
|
|
-}
|
|
|
-
|
|
|
-#define __trace_alloc_intr_gate(n, addr)
|
|
|
-#endif
|
|
|
-
|
|
|
-static inline void __alloc_intr_gate(unsigned int n, void *addr)
|
|
|
-{
|
|
|
- set_intr_gate(n, addr);
|
|
|
-}
|
|
|
-
|
|
|
#define alloc_intr_gate(n, addr) \
|
|
|
do { \
|
|
|
alloc_system_vector(n); \
|
|
|
- __alloc_intr_gate(n, addr); \
|
|
|
- __trace_alloc_intr_gate(n, trace_##addr); \
|
|
|
+ set_intr_gate(n, addr); \
|
|
|
} while (0)
|
|
|
|
|
|
/*
|