mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 2/2] Staging: lustre: lproc_osc.c: used seq_puts() and seq_putc() instead of seq_printf()
@ 2014-12-17 19:27 Hariharan
  2014-12-17 19:45 ` Dan Carpenter
  0 siblings, 1 reply; 2+ messages in thread
From: Hariharan @ 2014-12-17 19:27 UTC (permalink / raw)
  To: oleg.drokin, andreas.dilger, gregkh; +Cc: devel, linux-kernel

>From 55d1ae4a440126e5befa9de4698a7aac57319885 Mon Sep 17 00:00:00 2001
From: Hariharan Rangasamy <rhariharan.cbe@gmail.com>
Date: Thu, 18 Dec 2014 00:04:24 +0530
Subject: [PATCH 2/2] Staging: lustre: lproc_osc.c: used seq_puts() and
 seq_putc() instead of seq_printf()

used seq_puts() and seq_putc() instead of seq_printf().

Signed-off-by: Hariharan Rangasamy <rhariharan.cbe@gmail.com>
---
 drivers/staging/lustre/lustre/osc/lproc_osc.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/lustre/lustre/osc/lproc_osc.c
b/drivers/staging/lustre/lustre/osc/lproc_osc.c
index f578b51..7cd9638 100644
--- a/drivers/staging/lustre/lustre/osc/lproc_osc.c
+++ b/drivers/staging/lustre/lustre/osc/lproc_osc.c
@@ -358,7 +358,7 @@ static int osc_checksum_type_seq_show(struct
seq_file *m, void *v)
 		else
 			seq_printf(m, "%s ", cksum_name[i]);
 	}
-	seq_printf(m, "\n");
+	seq_putc(m, '\n');
 	return 0;
 }
 
@@ -590,9 +590,9 @@ static int osc_rpc_stats_seq_show(struct seq_file
*seq, void *v)
 	seq_printf(seq, "pending read pages:   %d\n",
 		   atomic_read(&cli->cl_pending_r_pages));
 
-	seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
-	seq_printf(seq, "pages per rpc	 rpcs   %% cum %% |");
-	seq_printf(seq, "       rpcs   %% cum %%\n");
+	seq_puts(seq, "\n\t\t\tread\t\t\twrite\n");
+	seq_puts(seq, "pages per rpc	 rpcs   % cum % |");
+	seq_puts(seq, "       rpcs   % cum %\n");
 
 	read_tot = lprocfs_oh_sum(&cli->cl_read_page_hist);
 	write_tot = lprocfs_oh_sum(&cli->cl_write_page_hist);
@@ -613,9 +613,9 @@ static int osc_rpc_stats_seq_show(struct seq_file
*seq, void *v)
 			break;
 	}
 
-	seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
-	seq_printf(seq, "rpcs in flight	rpcs   %% cum %% |");
-	seq_printf(seq, "       rpcs   %% cum %%\n");
+	seq_puts(seq, "\n\t\t\tread\t\t\twrite\n");
+	seq_puts(seq, "rpcs in flight	rpcs   % cum % |");
+	seq_puts(seq, "       rpcs   % cum %\n");
 
 	read_tot = lprocfs_oh_sum(&cli->cl_read_rpc_hist);
 	write_tot = lprocfs_oh_sum(&cli->cl_write_rpc_hist);
@@ -636,9 +636,9 @@ static int osc_rpc_stats_seq_show(struct seq_file
*seq, void *v)
 			break;
 	}
 
-	seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
-	seq_printf(seq, "offset		rpcs   %% cum %% |");
-	seq_printf(seq, "       rpcs   %% cum %%\n");
+	seq_puts(seq, "\n\t\t\tread\t\t\twrite\n");
+	seq_puts(seq, "offset		rpcs   % cum % |");
+	seq_puts(seq, "       rpcs   % cum %\n");
 
 	read_tot = lprocfs_oh_sum(&cli->cl_read_offset_hist);
 	write_tot = lprocfs_oh_sum(&cli->cl_write_offset_hist);
-- 
1.9.1




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-17 19:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-17 19:27 [PATCH 2/2] Staging: lustre: lproc_osc.c: used seq_puts() and seq_putc() instead of seq_printf() Hariharan
2014-12-17 19:45 ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®