From c7a757b151fd204e0bea8bc34e9e0c4e76445ba1 Mon Sep 17 00:00:00 2001 From: Steve Guminski Date: Tue, 18 Oct 2016 15:38:13 -0400 Subject: [PATCH] LU-8186 llite: Typo in ll_rw_extents_stats_pp_seq_show Add a missing quote character to ll_rw_extents_stats_pp_seq_show. Also correct leading whitespace to match coding guidelines. This corrects the text displayed on clients in /proc/fs/lustre/llite/.../extents_stats_per_process Test-Parameters: trivial Signed-off-by: Steve Guminski Change-Id: I3046836372182925ea0f3b0f5909ae7f8dc5efd1 Reviewed-on: http://review.whamcloud.com/23248 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Nathaniel Clark Reviewed-by: Bob Glossman Reviewed-by: James Simmons Reviewed-by: Oleg Drokin --- lustre/llite/lproc_llite.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lustre/llite/lproc_llite.c b/lustre/llite/lproc_llite.c index b44e077..7f1639b 100644 --- a/lustre/llite/lproc_llite.c +++ b/lustre/llite/lproc_llite.c @@ -1380,9 +1380,9 @@ static int ll_rw_extents_stats_pp_seq_show(struct seq_file *seq, void *v) do_gettimeofday(&now); if (!sbi->ll_rw_stats_on) { - seq_puts(seq, "disabled\n write anything in this file to activate, then 0 or \[D/d]isabled\" to deactivate\n"); - return 0; - } + seq_puts(seq, "disabled\n write anything in this file to activate, then 0 or \"[D/d]isabled\" to deactivate\n"); + return 0; + } seq_printf(seq, "snapshot_time: %lu.%lu (secs.usecs)\n", now.tv_sec, now.tv_usec); seq_printf(seq, "%15s %19s | %20s\n", " ", "read", "write"); -- 1.8.3.1