2019-05-23 09:14:57 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-07-11 01:03:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
|
|
|
|
* Lennox Wu <lennox.wu@sunplusct.com>
|
|
|
|
* Chen Liqin <liqin.chen@sunplusct.com>
|
|
|
|
* Copyright (C) 2013 Regents of the University of California
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <linux/extable.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
|
|
|
|
int fixup_exception(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
const struct exception_table_entry *fixup;
|
|
|
|
|
2019-10-28 12:10:32 +00:00
|
|
|
fixup = search_exception_tables(regs->epc);
|
2017-07-11 01:03:49 +00:00
|
|
|
if (fixup) {
|
2019-10-28 12:10:32 +00:00
|
|
|
regs->epc = fixup->fixup;
|
2017-07-11 01:03:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|