diff options
author | Holger Dengler <hd@linux.vnet.ibm.com> | 2011-01-05 06:47:38 -0500 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2011-01-05 06:47:26 -0500 |
commit | 62d146ffe3adfed2747fc36138476c8417ce73a7 (patch) | |
tree | d5d27798a98fc7683e092ffb4a6cc208a64fb90a /drivers/s390 | |
parent | 85b81cdd0b038d580dedf6289df7de65826967d6 (diff) |
[S390] ap bus: add support for irq statistics
Add support for AP Bus I/O interrupt statistics in /proc/interrupts.
Signed-off-by: Holger Dengler <hd@linux.vnet.ibm.com>
Signed-off-by: Felix Beck <felix.beck@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/crypto/ap_bus.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/s390/crypto/ap_bus.c b/drivers/s390/crypto/ap_bus.c index a1ba52a09602..4f37c45ee114 100644 --- a/drivers/s390/crypto/ap_bus.c +++ b/drivers/s390/crypto/ap_bus.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #define KMSG_COMPONENT "ap" | 27 | #define KMSG_COMPONENT "ap" |
28 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt | 28 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
29 | 29 | ||
30 | #include <linux/kernel_stat.h> | ||
30 | #include <linux/module.h> | 31 | #include <linux/module.h> |
31 | #include <linux/init.h> | 32 | #include <linux/init.h> |
32 | #include <linux/delay.h> | 33 | #include <linux/delay.h> |
@@ -1042,6 +1043,7 @@ out: | |||
1042 | 1043 | ||
1043 | static void ap_interrupt_handler(void *unused1, void *unused2) | 1044 | static void ap_interrupt_handler(void *unused1, void *unused2) |
1044 | { | 1045 | { |
1046 | kstat_cpu(smp_processor_id()).irqs[IOINT_APB]++; | ||
1045 | tasklet_schedule(&ap_tasklet); | 1047 | tasklet_schedule(&ap_tasklet); |
1046 | } | 1048 | } |
1047 | 1049 | ||