1 #include <linux/module.h>
2 #include <linux/spinlock.h>
3 #include <asm/uaccess.h>
6 int fixup_exception(struct pt_regs
*regs
)
8 const struct exception_table_entry
*fixup
;
11 if (unlikely(SEGMENT_IS_PNP_CODE(regs
->cs
))) {
12 extern u32 pnp_bios_fault_eip
, pnp_bios_fault_esp
;
13 extern u32 pnp_bios_is_utter_crap
;
14 pnp_bios_is_utter_crap
= 1;
15 printk(KERN_CRIT
"PNPBIOS fault.. attempting recovery.\n");
19 : : "g" (pnp_bios_fault_esp
), "g" (pnp_bios_fault_eip
));
20 panic("do_trap: can't hit this");
24 fixup
= search_exception_tables(regs
->ip
);
26 regs
->ip
= fixup
->fixup
;
35 * Need to defined our own search_extable on X86_64 to work around
36 * a B stepping K8 bug.
38 const struct exception_table_entry
*
39 search_extable(const struct exception_table_entry
*first
,
40 const struct exception_table_entry
*last
,
43 /* B stepping K8 bug */
44 if ((value
>> 32) == 0)
45 value
|= 0xffffffffUL
<< 32;
47 while (first
<= last
) {
48 const struct exception_table_entry
*mid
;
51 mid
= (last
- first
) / 2 + first
;
52 diff
= mid
->insn
- value
;