1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 #ifndef __ASM_EXTABLE_H 3 #define __ASM_EXTABLE_H 4 /* 5 * The exception table consists of pairs of ad 6 * address of an instruction that is allowed t 7 * the address at which the program should con 8 * modified, so it is entirely up to the conti 9 * what to do. 10 * 11 * All the routines below use bits of fixup co 12 * with the main instruction path. This means 13 * we don't even have to jump over them. Furt 14 * on our cache or tlb entries. 15 */ 16 17 struct exception_table_entry { 18 unsigned int insn, fixup; 19 }; 20 21 #endif 22
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.