aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/s390')
-rw-r--r--drivers/s390/cio/qdio.h1
-rw-r--r--drivers/s390/cio/qdio_debug.c1
-rw-r--r--drivers/s390/cio/qdio_main.c3
3 files changed, 5 insertions, 0 deletions
diff --git a/drivers/s390/cio/qdio.h b/drivers/s390/cio/qdio.h
index a77aa9109cf..40ca0b9241e 100644
--- a/drivers/s390/cio/qdio.h
+++ b/drivers/s390/cio/qdio.h
@@ -202,6 +202,7 @@ struct qdio_dev_perf_stat {
202 unsigned int inbound_queue_full; 202 unsigned int inbound_queue_full;
203 unsigned int outbound_call; 203 unsigned int outbound_call;
204 unsigned int outbound_handler; 204 unsigned int outbound_handler;
205 unsigned int outbound_queue_full;
205 unsigned int fast_requeue; 206 unsigned int fast_requeue;
206 unsigned int target_full; 207 unsigned int target_full;
207 unsigned int eqbs; 208 unsigned int eqbs;
diff --git a/drivers/s390/cio/qdio_debug.c b/drivers/s390/cio/qdio_debug.c
index 28868e7471a..f8b03a636e4 100644
--- a/drivers/s390/cio/qdio_debug.c
+++ b/drivers/s390/cio/qdio_debug.c
@@ -151,6 +151,7 @@ static char *qperf_names[] = {
151 "Inbound queue full", 151 "Inbound queue full",
152 "Outbound calls", 152 "Outbound calls",
153 "Outbound handler", 153 "Outbound handler",
154 "Outbound queue full",
154 "Outbound fast_requeue", 155 "Outbound fast_requeue",
155 "Outbound target_full", 156 "Outbound target_full",
156 "QEBSM eqbs", 157 "QEBSM eqbs",
diff --git a/drivers/s390/cio/qdio_main.c b/drivers/s390/cio/qdio_main.c
index 4c0109900c7..af86875bede 100644
--- a/drivers/s390/cio/qdio_main.c
+++ b/drivers/s390/cio/qdio_main.c
@@ -1447,6 +1447,9 @@ static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1447 used = atomic_add_return(count, &q->nr_buf_used); 1447 used = atomic_add_return(count, &q->nr_buf_used);
1448 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q); 1448 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1449 1449
1450 if (used == QDIO_MAX_BUFFERS_PER_Q)
1451 qperf_inc(q, outbound_queue_full);
1452
1450 if (callflags & QDIO_FLAG_PCI_OUT) { 1453 if (callflags & QDIO_FLAG_PCI_OUT) {
1451 q->u.out.pci_out_enabled = 1; 1454 q->u.out.pci_out_enabled = 1;
1452 qperf_inc(q, pci_request_int); 1455 qperf_inc(q, pci_request_int);