From: KaiLong Wang Date: Thu, 28 Sep 2023 02:35:16 +0000 (+0800) Subject: NFSD: Clean up errors in stats.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0e5559ebe7f48d7957587e441abdaa331133d503;p=linux.git 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 Signed-off-by: Chuck Lever --- diff --git a/fs/nfsd/stats.c b/fs/nfsd/stats.c index 63797635e1c32..8914445dafb84 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)]));