summaryrefslogtreecommitdiffstats
path: root/fs/fscache/histogram.c
diff options
context:
space:
mode:
authorFabian Frederick2014-06-05 01:05:39 +0200
committerLinus Torvalds2014-06-05 01:53:52 +0200
commit3185a88ce37490938d56119c474aa48616d386e8 (patch)
tree65ed0d04be95c8a45f4a999120d42dae4dbf27a4 /fs/fscache/histogram.c
parentfs/fscache: convert printk to pr_foo() (diff)
downloadkernel-qcow2-linux-3185a88ce37490938d56119c474aa48616d386e8.tar.gz
kernel-qcow2-linux-3185a88ce37490938d56119c474aa48616d386e8.tar.xz
kernel-qcow2-linux-3185a88ce37490938d56119c474aa48616d386e8.zip
fs/fscache: replace seq_printf by seq_puts
Replace seq_printf where possible + coalesce formats from 2 existing seq_puts Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fscache/histogram.c')
-rw-r--r--fs/fscache/histogram.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/fscache/histogram.c b/fs/fscache/histogram.c
index bad496748a59..7d637e2335fd 100644
--- a/fs/fscache/histogram.c
+++ b/fs/fscache/histogram.c
@@ -31,12 +31,10 @@ static int fscache_histogram_show(struct seq_file *m, void *v)
switch ((unsigned long) v) {
case 1:
- seq_puts(m, "JIFS SECS OBJ INST OP RUNS OBJ RUNS "
- " RETRV DLY RETRIEVLS\n");
+ seq_puts(m, "JIFS SECS OBJ INST OP RUNS OBJ RUNS RETRV DLY RETRIEVLS\n");
return 0;
case 2:
- seq_puts(m, "===== ===== ========= ========= ========="
- " ========= =========\n");
+ seq_puts(m, "===== ===== ========= ========= ========= ========= =========\n");
return 0;
default:
index = (unsigned long) v - 3;