diff options
author | Namhoon Kim <namhoonk@cs.unc.edu> | 2016-10-12 17:10:34 -0400 |
---|---|---|
committer | Namhoon Kim <namhoonk@cs.unc.edu> | 2016-10-12 17:10:34 -0400 |
commit | 2bed3116318647479e14aa22ff762bed16c066b4 (patch) | |
tree | a411ed894da2447c08d1134950049911a9edcaf9 /arch | |
parent | 4172fff1a3870af7d65675e05eb0b7aba3804ea8 (diff) |
RTAS 2017 with debug infomation.
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/kernel/irq.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/kernel/irq.c b/arch/arm/kernel/irq.c index 350f188c92d2..720b45e232f2 100644 --- a/arch/arm/kernel/irq.c +++ b/arch/arm/kernel/irq.c | |||
@@ -44,6 +44,8 @@ | |||
44 | #include <asm/mach/irq.h> | 44 | #include <asm/mach/irq.h> |
45 | #include <asm/mach/time.h> | 45 | #include <asm/mach/time.h> |
46 | 46 | ||
47 | #include <litmus/cache_proc.h> | ||
48 | |||
47 | unsigned long irq_err_count; | 49 | unsigned long irq_err_count; |
48 | 50 | ||
49 | int arch_show_interrupts(struct seq_file *p, int prec) | 51 | int arch_show_interrupts(struct seq_file *p, int prec) |
@@ -66,7 +68,9 @@ int arch_show_interrupts(struct seq_file *p, int prec) | |||
66 | */ | 68 | */ |
67 | void handle_IRQ(unsigned int irq, struct pt_regs *regs) | 69 | void handle_IRQ(unsigned int irq, struct pt_regs *regs) |
68 | { | 70 | { |
71 | enter_irq_mode(); | ||
69 | __handle_domain_irq(NULL, irq, false, regs); | 72 | __handle_domain_irq(NULL, irq, false, regs); |
73 | exit_irq_mode(); | ||
70 | } | 74 | } |
71 | 75 | ||
72 | /* | 76 | /* |