2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2003 PathScale, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2007-05-06 21:51:24 +00:00
|
|
|
#include "sysdep/ptrace.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-05-06 21:51:24 +00:00
|
|
|
/* These two are from asm-um/uaccess.h and linux/module.h, check them. */
|
|
|
|
struct exception_table_entry
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-05-06 21:51:24 +00:00
|
|
|
unsigned long insn;
|
|
|
|
unsigned long fixup;
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct exception_table_entry *search_exception_tables(unsigned long add);
|
2007-10-16 08:27:00 +00:00
|
|
|
|
2007-10-16 08:26:58 +00:00
|
|
|
int arch_fixup(unsigned long address, struct uml_pt_regs *regs)
|
2007-05-06 21:51:24 +00:00
|
|
|
{
|
|
|
|
const struct exception_table_entry *fixup;
|
|
|
|
|
|
|
|
fixup = search_exception_tables(address);
|
2007-10-16 08:27:00 +00:00
|
|
|
if (fixup != 0) {
|
2007-05-06 21:51:24 +00:00
|
|
|
UPT_IP(regs) = fixup->fixup;
|
2007-10-16 08:27:00 +00:00
|
|
|
return 1;
|
2007-05-06 21:51:24 +00:00
|
|
|
}
|
2007-10-16 08:27:00 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|