diff options
author | Sebastian Ott <sebott@linux.vnet.ibm.com> | 2012-08-28 10:48:47 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2012-09-26 09:45:00 -0400 |
commit | 2e73c2cf78f797f3ff299ca39b210bceb40ab804 (patch) | |
tree | 22d4751c236bb57d0cff1f2cf5d5734f82e9afc5 /drivers/s390 | |
parent | eadb86ab80545d04a0ee576e92ba4447621cdb02 (diff) |
s390/eadm_sch: add support for irq statistics
Add support for EADM interrupt statistics in /proc/interrupts.
Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/cio/eadm_sch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/s390/cio/eadm_sch.c b/drivers/s390/cio/eadm_sch.c index 3fc882f66689..6c9673400464 100644 --- a/drivers/s390/cio/eadm_sch.c +++ b/drivers/s390/cio/eadm_sch.c | |||
@@ -5,6 +5,7 @@ | |||
5 | * Author(s): Sebastian Ott <sebott@linux.vnet.ibm.com> | 5 | * Author(s): Sebastian Ott <sebott@linux.vnet.ibm.com> |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <linux/kernel_stat.h> | ||
8 | #include <linux/workqueue.h> | 9 | #include <linux/workqueue.h> |
9 | #include <linux/spinlock.h> | 10 | #include <linux/spinlock.h> |
10 | #include <linux/device.h> | 11 | #include <linux/device.h> |
@@ -138,6 +139,8 @@ static void eadm_subchannel_irq(struct subchannel *sch) | |||
138 | EADM_LOG(6, "irq"); | 139 | EADM_LOG(6, "irq"); |
139 | EADM_LOG_HEX(6, irb, sizeof(*irb)); | 140 | EADM_LOG_HEX(6, irb, sizeof(*irb)); |
140 | 141 | ||
142 | kstat_cpu(smp_processor_id()).irqs[IOINT_ADM]++; | ||
143 | |||
141 | if ((scsw->stctl & (SCSW_STCTL_ALERT_STATUS | SCSW_STCTL_STATUS_PEND)) | 144 | if ((scsw->stctl & (SCSW_STCTL_ALERT_STATUS | SCSW_STCTL_STATUS_PEND)) |
142 | && scsw->eswf == 1 && irb->esw.eadm.erw.r) | 145 | && scsw->eswf == 1 && irb->esw.eadm.erw.r) |
143 | error = -EIO; | 146 | error = -EIO; |