Skip to content

Commit 0e5559e

Browse files
KaiLong Wangchucklever
authored andcommitted
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 <[email protected]> Signed-off-by: Chuck Lever <[email protected]>
1 parent bf32075 commit 0e5559e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/nfsd/stats.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static int nfsd_show(struct seq_file *seq, void *v)
6060
#ifdef CONFIG_NFSD_V4
6161
/* Show count for individual nfsv4 operations */
6262
/* Writing operation numbers 0 1 2 also for maintaining uniformity */
63-
seq_printf(seq,"proc4ops %u", LAST_NFS4_OP + 1);
63+
seq_printf(seq, "proc4ops %u", LAST_NFS4_OP + 1);
6464
for (i = 0; i <= LAST_NFS4_OP; i++) {
6565
seq_printf(seq, " %lld",
6666
percpu_counter_sum_positive(&nfsdstats.counter[NFSD_STATS_NFS4_OP(i)]));

0 commit comments

Comments
 (0)