Contributors: 12
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Russell King |
104 |
40.31% |
5 |
27.78% |
Arnd Bergmann |
65 |
25.19% |
1 |
5.56% |
Catalin Marinas |
22 |
8.53% |
2 |
11.11% |
Rabin Vincent |
14 |
5.43% |
1 |
5.56% |
Will Deacon |
12 |
4.65% |
1 |
5.56% |
Dmitry Safonov |
10 |
3.88% |
1 |
5.56% |
Nico Pitre |
8 |
3.10% |
1 |
5.56% |
Jason Wessel |
7 |
2.71% |
1 |
5.56% |
Linus Torvalds (pre-git) |
6 |
2.33% |
2 |
11.11% |
Mikael Pettersson |
6 |
2.33% |
1 |
5.56% |
Masahiro Yamada |
3 |
1.16% |
1 |
5.56% |
Greg Kroah-Hartman |
1 |
0.39% |
1 |
5.56% |
Total |
258 |
|
18 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASMARM_TRAP_H
#define _ASMARM_TRAP_H
#include <linux/linkage.h>
#include <linux/list.h>
struct pt_regs;
struct task_struct;
struct undef_hook {
struct list_head node;
u32 instr_mask;
u32 instr_val;
u32 cpsr_mask;
u32 cpsr_val;
int (*fn)(struct pt_regs *regs, unsigned int instr);
};
void register_undef_hook(struct undef_hook *hook);
void unregister_undef_hook(struct undef_hook *hook);
static inline int __in_irqentry_text(unsigned long ptr)
{
extern char __irqentry_text_start[];
extern char __irqentry_text_end[];
return ptr >= (unsigned long)&__irqentry_text_start &&
ptr < (unsigned long)&__irqentry_text_end;
}
extern void early_trap_init(void *);
extern void dump_backtrace_entry(unsigned long where, unsigned long from,
unsigned long frame, const char *loglvl);
extern void ptrace_break(struct pt_regs *regs);
extern void *vectors_page;
asmlinkage void dump_backtrace_stm(u32 *stack, u32 instruction, const char *loglvl);
asmlinkage void do_undefinstr(struct pt_regs *regs);
asmlinkage void handle_fiq_as_nmi(struct pt_regs *regs);
asmlinkage void bad_mode(struct pt_regs *regs, int reason);
asmlinkage int arm_syscall(int no, struct pt_regs *regs);
asmlinkage void baddataabort(int code, unsigned long instr, struct pt_regs *regs);
asmlinkage void __div0(void);
asmlinkage void handle_bad_stack(struct pt_regs *regs);
#endif