| .. | .. |
|---|
| 44 | 44 | |
|---|
| 45 | 45 | seq_printf(p, "%*s: ", prec, "NMI"); |
|---|
| 46 | 46 | for_each_online_cpu(j) |
|---|
| 47 | | - seq_printf(p, "%10u ", nmi_count(j)); |
|---|
| 47 | + seq_printf(p, "%10u ", per_cpu(irq_stat.__nmi_count, j)); |
|---|
| 48 | 48 | seq_printf(p, " Non-maskable interrupts\n"); |
|---|
| 49 | 49 | |
|---|
| 50 | 50 | seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count)); |
|---|
| .. | .. |
|---|
| 148 | 148 | hardirq_ctx[cpu] = NULL; |
|---|
| 149 | 149 | } |
|---|
| 150 | 150 | |
|---|
| 151 | | -#ifndef CONFIG_PREEMPT_RT_FULL |
|---|
| 151 | +#ifndef CONFIG_PREEMPT_RT |
|---|
| 152 | 152 | void do_softirq_own_stack(void) |
|---|
| 153 | 153 | { |
|---|
| 154 | 154 | struct thread_info *curctx; |
|---|