From: Tuo Chen Peng Date: Wed, 7 Jun 2017 06:42:44 +0000 (-0700) Subject: nfs: Fix fscache stat printing in nfs_show_stats() X-Git-Tag: v4.13-rc1~30^2~26 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ce85bd29210f2cd84dc1f762c3992d8e6db822c2;p=linux-2.6-block.git nfs: Fix fscache stat printing in nfs_show_stats() nfs_show_stats() was incorrectly reading statistics for bytes when printing that for fsc. It caused files like /proc/self/mountstats to report incorrect fsc statistics for NFS mounts. Signed-off-by: Tuo Chen Peng Signed-off-by: Anna Schumaker --- diff --git a/fs/nfs/super.c b/fs/nfs/super.c index eceb4eabb064..b4176393f049 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c @@ -879,7 +879,7 @@ int nfs_show_stats(struct seq_file *m, struct dentry *root) if (nfss->options & NFS_OPTION_FSCACHE) { seq_printf(m, "\n\tfsc:\t"); for (i = 0; i < __NFSIOS_FSCACHEMAX; i++) - seq_printf(m, "%Lu ", totals.bytes[i]); + seq_printf(m, "%Lu ", totals.fscache[i]); } #endif seq_printf(m, "\n");