diff options
author | KaiLong Wang <wangkailong@jari.cn> | 2023-09-28 10:35:16 +0800 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2023-10-16 12:44:38 -0400 |
commit | 0e5559ebe7f48d7957587e441abdaa331133d503 (patch) | |
tree | e4336ae63df5124ac2de56062df2a7ab120bec04 /fs/nfsd | |
parent | bf32075256e9dd9c6b736859e2c5813981339908 (diff) | |
download | linux-0e5559ebe7f48d7957587e441abdaa331133d503.tar.gz linux-0e5559ebe7f48d7957587e441abdaa331133d503.tar.bz2 linux-0e5559ebe7f48d7957587e441abdaa331133d503.zip |
NFSD: Clean up errors in stats.c
Fix the following errors reported by checkpatch:
ERROR: space required after that ',' (ctx:VxV)
Signed-off-by: KaiLong Wang <wangkailong@jari.cn>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/stats.c b/fs/nfsd/stats.c index 63797635e1c3..8914445dafb8 100644 --- a/fs/nfsd/stats.c +++ b/fs/nfsd/stats.c @@ -60,7 +60,7 @@ static int nfsd_show(struct seq_file *seq, void *v) #ifdef CONFIG_NFSD_V4 /* Show count for individual nfsv4 operations */ /* Writing operation numbers 0 1 2 also for maintaining uniformity */ - seq_printf(seq,"proc4ops %u", LAST_NFS4_OP + 1); + seq_printf(seq, "proc4ops %u", LAST_NFS4_OP + 1); for (i = 0; i <= LAST_NFS4_OP; i++) { seq_printf(seq, " %lld", percpu_counter_sum_positive(&nfsdstats.counter[NFSD_STATS_NFS4_OP(i)])); |