Add support for VMUR I/O interrupt statistics in /proc/interrupts.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
        IOINT_C15,
        IOINT_C70,
        IOINT_TAP,
+       IOINT_VMR,
        NMI_NMI,
        NR_IRQS,
 };
 
        {.name = "C15", .desc = "[I/O] 3215" },
        {.name = "C70", .desc = "[I/O] 3270" },
        {.name = "TAP", .desc = "[I/O] Tape" },
+       {.name = "VMR", .desc = "[I/O] Unit Record Devices" },
        {.name = "NMI", .desc = "[NMI] Machine Check" },
 };
 
 
 #define KMSG_COMPONENT "vmur"
 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
 
+#include <linux/kernel_stat.h>
 #include <linux/cdev.h>
 #include <linux/slab.h>
 
 {
        struct urdev *urd;
 
+       kstat_cpu(smp_processor_id()).irqs[IOINT_VMR]++;
        TRACE("ur_int_handler: intparm=0x%lx cstat=%02x dstat=%02x res=%u\n",
              intparm, irb->scsw.cmd.cstat, irb->scsw.cmd.dstat,
              irb->scsw.cmd.count);