Symbol: exc_table
arch/xtensa/include/asm/traps.h
42
DECLARE_PER_CPU(struct exc_table, exc_table);
arch/xtensa/include/asm/traps.h
67
static struct exc_table init_exc_table __initdata = {
arch/xtensa/kernel/asm-offsets.c
143
DEFINE(EXC_TABLE_KSTK, offsetof(struct exc_table, kstk));
arch/xtensa/kernel/asm-offsets.c
144
DEFINE(EXC_TABLE_DOUBLE_SAVE, offsetof(struct exc_table, double_save));
arch/xtensa/kernel/asm-offsets.c
145
DEFINE(EXC_TABLE_FIXUP, offsetof(struct exc_table, fixup));
arch/xtensa/kernel/asm-offsets.c
146
DEFINE(EXC_TABLE_PARAM, offsetof(struct exc_table, fixup_param));
arch/xtensa/kernel/asm-offsets.c
149
offsetof(struct exc_table, coprocessor_owner));
arch/xtensa/kernel/asm-offsets.c
152
offsetof(struct exc_table, fast_user_handler));
arch/xtensa/kernel/asm-offsets.c
154
offsetof(struct exc_table, fast_kernel_handler));
arch/xtensa/kernel/asm-offsets.c
155
DEFINE(EXC_TABLE_DEFAULT, offsetof(struct exc_table, default_handler));
arch/xtensa/kernel/process.c
107
coprocessor_owner = this_cpu_ptr(&exc_table)->coprocessor_owner;
arch/xtensa/kernel/process.c
140
coprocessor_owner = this_cpu_ptr(&exc_table)->coprocessor_owner;
arch/xtensa/kernel/process.c
75
coprocessor_owner = this_cpu_ptr(&exc_table)->coprocessor_owner;
arch/xtensa/kernel/traps.c
168
DEFINE_PER_CPU(struct exc_table, exc_table);
arch/xtensa/kernel/traps.c
443
per_cpu(exc_table, cpu).type[cause] = (handler);\
arch/xtensa/kernel/traps.c
451
void *previous = per_cpu(exc_table, 0).default_handler[cause];
arch/xtensa/kernel/traps.c
460
xtensa_set_sr(this_cpu_ptr(&exc_table), excsave1);