[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20200305090355.88036-1-mimu@linux.ibm.com>
Date: Thu, 5 Mar 2020 10:03:55 +0100
From: Michael Mueller <mimu@...ux.ibm.com>
To: linux-s390@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, borntraeger@...ibm.com,
heiko.carstens@...ibm.com, gor@...ux.ibm.com,
Michael Mueller <mimu@...ux.ibm.com>
Subject: [PATCH] s390/diag: fix display of diagnose call statistics
Show the full diag statistic table and not just parts of it.
Signed-off-by: Michael Mueller <mimu@...ux.ibm.com>
---
arch/s390/kernel/diag.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/s390/kernel/diag.c b/arch/s390/kernel/diag.c
index e9dac9a24d3f..61f2b0412345 100644
--- a/arch/s390/kernel/diag.c
+++ b/arch/s390/kernel/diag.c
@@ -84,7 +84,7 @@ static int show_diag_stat(struct seq_file *m, void *v)
static void *show_diag_stat_start(struct seq_file *m, loff_t *pos)
{
- return *pos <= nr_cpu_ids ? (void *)((unsigned long) *pos + 1) : NULL;
+ return *pos <= NR_DIAG_STAT ? (void *)((unsigned long) *pos + 1) : NULL;
}
static void *show_diag_stat_next(struct seq_file *m, void *v, loff_t *pos)
--
2.17.1
Powered by blists - more mailing lists