diff options
-rw-r--r-- | arch/s390/include/asm/irq.h | 1 | ||||
-rw-r--r-- | arch/s390/kernel/irq.c | 1 | ||||
-rw-r--r-- | drivers/s390/net/ctcm_main.c | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/arch/s390/include/asm/irq.h b/arch/s390/include/asm/irq.h index 2d5943c1c6a1..8c79f9400a36 100644 --- a/arch/s390/include/asm/irq.h +++ b/arch/s390/include/asm/irq.h | |||
@@ -24,6 +24,7 @@ enum interruption_class { | |||
24 | IOINT_VMR, | 24 | IOINT_VMR, |
25 | IOINT_LCS, | 25 | IOINT_LCS, |
26 | IOINT_CLW, | 26 | IOINT_CLW, |
27 | IOINT_CTC, | ||
27 | NMI_NMI, | 28 | NMI_NMI, |
28 | NR_IRQS, | 29 | NR_IRQS, |
29 | }; | 30 | }; |
diff --git a/arch/s390/kernel/irq.c b/arch/s390/kernel/irq.c index 406b539f61a9..57ed2b55c2a1 100644 --- a/arch/s390/kernel/irq.c +++ b/arch/s390/kernel/irq.c | |||
@@ -41,6 +41,7 @@ static const struct irq_class intrclass_names[] = { | |||
41 | {.name = "VMR", .desc = "[I/O] Unit Record Devices" }, | 41 | {.name = "VMR", .desc = "[I/O] Unit Record Devices" }, |
42 | {.name = "LCS", .desc = "[I/O] LCS" }, | 42 | {.name = "LCS", .desc = "[I/O] LCS" }, |
43 | {.name = "CLW", .desc = "[I/O] CLAW" }, | 43 | {.name = "CLW", .desc = "[I/O] CLAW" }, |
44 | {.name = "CTC", .desc = "[I/O] CTC" }, | ||
44 | {.name = "NMI", .desc = "[NMI] Machine Check" }, | 45 | {.name = "NMI", .desc = "[NMI] Machine Check" }, |
45 | }; | 46 | }; |
46 | 47 | ||
diff --git a/drivers/s390/net/ctcm_main.c b/drivers/s390/net/ctcm_main.c index 2c7d2d9be4d0..4c2845985927 100644 --- a/drivers/s390/net/ctcm_main.c +++ b/drivers/s390/net/ctcm_main.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #define KMSG_COMPONENT "ctcm" | 24 | #define KMSG_COMPONENT "ctcm" |
25 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt | 25 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
26 | 26 | ||
27 | #include <linux/kernel_stat.h> | ||
27 | #include <linux/module.h> | 28 | #include <linux/module.h> |
28 | #include <linux/init.h> | 29 | #include <linux/init.h> |
29 | #include <linux/kernel.h> | 30 | #include <linux/kernel.h> |
@@ -1204,6 +1205,7 @@ static void ctcm_irq_handler(struct ccw_device *cdev, | |||
1204 | int cstat; | 1205 | int cstat; |
1205 | int dstat; | 1206 | int dstat; |
1206 | 1207 | ||
1208 | kstat_cpu(smp_processor_id()).irqs[IOINT_CTC]++; | ||
1207 | CTCM_DBF_TEXT_(TRACE, CTC_DBF_DEBUG, | 1209 | CTCM_DBF_TEXT_(TRACE, CTC_DBF_DEBUG, |
1208 | "Enter %s(%s)", CTCM_FUNTAIL, dev_name(&cdev->dev)); | 1210 | "Enter %s(%s)", CTCM_FUNTAIL, dev_name(&cdev->dev)); |
1209 | 1211 | ||