/* 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 |
Nico Pitre | 39 | 73.58% | 1 | 50.00% |
Rabin Vincent | 14 | 26.42% | 1 | 50.00% |
Total | 53 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 67 | 31.60% | 2 | 20.00% |
Rabin Vincent | 54 | 25.47% | 1 | 10.00% |
Nico Pitre | 39 | 18.40% | 1 | 10.00% |
Catalin Marinas | 22 | 10.38% | 2 | 20.00% |
Will Deacon | 15 | 7.08% | 1 | 10.00% |
Jason Wessel | 8 | 3.77% | 1 | 10.00% |
Mikael Pettersson | 6 | 2.83% | 1 | 10.00% |
Greg Kroah-Hartman | 1 | 0.47% | 1 | 10.00% |
Total | 212 | 100.00% | 10 | 100.00% |