/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASMARM_TRAP_H #define _ASMARM_TRAP_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; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rabin Vincent | 40 | 100.00% | 1 | 100.00% |
Total | 40 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 67 | 42.14% | 2 | 22.22% |
Rabin Vincent | 40 | 25.16% | 1 | 11.11% |
Catalin Marinas | 22 | 13.84% | 2 | 22.22% |
Will Deacon | 15 | 9.43% | 1 | 11.11% |
Jason Wessel | 8 | 5.03% | 1 | 11.11% |
Mikael Pettersson | 6 | 3.77% | 1 | 11.11% |
Greg Kroah-Hartman | 1 | 0.63% | 1 | 11.11% |
Total | 159 | 100.00% | 9 | 100.00% |