diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2011-10-30 10:17:19 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-10-30 10:16:47 -0400 |
commit | 2a3a2d66aa4e5abaf8f9222d21735321f02a00dc (patch) | |
tree | 92606986642a9cee1561f532c53f4b7ca956ef2f /arch/s390/kernel/smp.c | |
parent | e1c4d0142d32f97706b752d94c9e20c3f21901f8 (diff) |
[S390] irqstats: split IPI interrupt accounting
We use both the external call and emergency call IPIs to signal remote
cpus. Therefore it makes sense to account them differently withing
/proc/irqstats so we actually know what happened.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/smp.c')
-rw-r--r-- | arch/s390/kernel/smp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index 3bde5688ceb5..3ea872890da2 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
@@ -187,7 +187,10 @@ static void do_ext_call_interrupt(unsigned int ext_int_code, | |||
187 | { | 187 | { |
188 | unsigned long bits; | 188 | unsigned long bits; |
189 | 189 | ||
190 | kstat_cpu(smp_processor_id()).irqs[EXTINT_IPI]++; | 190 | if (ext_int_code == 0x1202) |
191 | kstat_cpu(smp_processor_id()).irqs[EXTINT_EXC]++; | ||
192 | else | ||
193 | kstat_cpu(smp_processor_id()).irqs[EXTINT_EMS]++; | ||
191 | /* | 194 | /* |
192 | * handle bit signal external calls | 195 | * handle bit signal external calls |
193 | */ | 196 | */ |