summaryrefslogtreecommitdiffstats
path: root/arch/arm64/mm/extable.c
blob: dba3d59f3eca1c174dc5200cb8481dfc48b12a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-License-Identifier: GPL-2.0
/*
 * Based on arch/arm/mm/extable.c
 */

#include <linux/extable.h>
#include <linux/uaccess.h>

bool fixup_exception(struct pt_regs *regs)
{
	const struct exception_table_entry *ex;

	ex = search_exception_tables(instruction_pointer(regs));
	if (!ex)
		return false;

	if (in_bpf_jit(regs))
		return arm64_bpf_fixup_exception(ex, regs);

	regs->pc = (unsigned long)&ex->fixup + ex->fixup;
	return true;
}