diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-04-06 03:02:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-06 03:02:57 -0400 |
commit | f541ae326fa120fa5c57433e4d9a133df212ce41 (patch) | |
tree | bdbd94ec72cfc601118051cb35e8617d55510177 /arch/powerpc/kernel/irq.c | |
parent | e255357764f92afcafafbd4879b222b8c752065a (diff) | |
parent | 0221c81b1b8eb0cbb6b30a0ced52ead32d2b4e4c (diff) |
Merge branch 'linus' into perfcounters/core-v2
Merge reason: we have gathered quite a few conflicts, need to merge upstream
Conflicts:
arch/powerpc/kernel/Makefile
arch/x86/ia32/ia32entry.S
arch/x86/include/asm/hardirq.h
arch/x86/include/asm/unistd_32.h
arch/x86/include/asm/unistd_64.h
arch/x86/kernel/cpu/common.c
arch/x86/kernel/irq.c
arch/x86/kernel/syscall_table_32.S
arch/x86/mm/iomap_32.c
include/linux/sched.h
kernel/Makefile
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/powerpc/kernel/irq.c')
-rw-r--r-- | arch/powerpc/kernel/irq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 7f8e6a92c5a1..0d2e37c57738 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c | |||
@@ -181,7 +181,7 @@ int show_interrupts(struct seq_file *p, void *v) | |||
181 | { | 181 | { |
182 | int i = *(loff_t *)v, j; | 182 | int i = *(loff_t *)v, j; |
183 | struct irqaction *action; | 183 | struct irqaction *action; |
184 | irq_desc_t *desc; | 184 | struct irq_desc *desc; |
185 | unsigned long flags; | 185 | unsigned long flags; |
186 | 186 | ||
187 | if (i == 0) { | 187 | if (i == 0) { |
@@ -200,7 +200,7 @@ int show_interrupts(struct seq_file *p, void *v) | |||
200 | seq_printf(p, "%3d: ", i); | 200 | seq_printf(p, "%3d: ", i); |
201 | #ifdef CONFIG_SMP | 201 | #ifdef CONFIG_SMP |
202 | for_each_online_cpu(j) | 202 | for_each_online_cpu(j) |
203 | seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]); | 203 | seq_printf(p, "%10u ", kstat_irqs_cpu(i, j)); |
204 | #else | 204 | #else |
205 | seq_printf(p, "%10u ", kstat_irqs(i)); | 205 | seq_printf(p, "%10u ", kstat_irqs(i)); |
206 | #endif /* CONFIG_SMP */ | 206 | #endif /* CONFIG_SMP */ |
@@ -1048,7 +1048,7 @@ arch_initcall(irq_late_init); | |||
1048 | static int virq_debug_show(struct seq_file *m, void *private) | 1048 | static int virq_debug_show(struct seq_file *m, void *private) |
1049 | { | 1049 | { |
1050 | unsigned long flags; | 1050 | unsigned long flags; |
1051 | irq_desc_t *desc; | 1051 | struct irq_desc *desc; |
1052 | const char *p; | 1052 | const char *p; |
1053 | char none[] = "none"; | 1053 | char none[] = "none"; |
1054 | int i; | 1054 | int i; |