summaryrefslogtreecommitdiff
path: root/mm/vmstat.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2016-10-07 17:02:20 -0700
committerMichael Bestas <mkbestas@lineageos.org>2021-08-19 08:21:54 +0300
commite9e9735b9d1790be22b33ce5640e2768d3b7651e (patch)
tree6d742bbdb1ebfa8dcdb94ce767fb6e5bffdbd75d /mm/vmstat.c
parent15dc892e7584dd632fcdc816be410b2c155de188 (diff)
seq/proc: modify seq_put_decimal_[u]ll to take a const char *, not char
Allow some seq_puts removals by taking a string instead of a single char. [akpm@linux-foundation.org: update vmstat_show(), per Joe] Link: http://lkml.kernel.org/r/667e1cf3d436de91a5698170a1e98d882905e956.1470704995.git.joe@perches.com Signed-off-by: Joe Perches <joe@perches.com> Cc: Joe Perches <joe@perches.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Change-Id: Iff69c72cb3ed6a73fe0348f65f22bfe3d1ee00c7
Diffstat (limited to 'mm/vmstat.c')
-rw-r--r--mm/vmstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/vmstat.c b/mm/vmstat.c
index 891633c68971..c15e39e57006 100644
--- a/mm/vmstat.c
+++ b/mm/vmstat.c
@@ -1352,7 +1352,7 @@ static int vmstat_show(struct seq_file *m, void *arg)
unsigned long off = l - (unsigned long *)m->private;
seq_puts(m, vmstat_text[off]);
- seq_put_decimal_ull(m, ' ', *l);
+ seq_put_decimal_ull(m, " ", *l);
seq_putc(m, '\n');
return 0;
}