diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-04 16:05:39 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 16:53:52 -0700 |
commit | 3185a88ce37490938d56119c474aa48616d386e8 (patch) | |
tree | 65ed0d04be95c8a45f4a999120d42dae4dbf27a4 /fs/fscache/histogram.c | |
parent | 36dfd116edd48fa6174d5694c143f1d4bd81aba8 (diff) | |
download | linux-3185a88ce37490938d56119c474aa48616d386e8.tar.gz linux-3185a88ce37490938d56119c474aa48616d386e8.tar.bz2 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.c | 6 |
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; |