/* SPDX-License-Identifier: GPL-2.0 */1#ifndef __ASM_GENERIC_EXTABLE_H2#define __ASM_GENERIC_EXTABLE_H34/*5* The exception table consists of pairs of addresses: the first is the6* address of an instruction that is allowed to fault, and the second is7* the address at which the program should continue. No registers are8* modified, so it is entirely up to the continuation code to figure out9* what to do.10*11* All the routines below use bits of fixup code that are out of line12* with the main instruction path. This means when everything is well,13* we don't even have to jump over them. Further, they do not intrude14* on our cache or tlb entries.15*/1617struct exception_table_entry18{19unsigned long insn, fixup;20};212223struct pt_regs;24extern int fixup_exception(struct pt_regs *regs);2526#endif272829