From 42796f74f42ea5b7d9f2d7df661a87d1425968bf Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Thu, 14 Apr 2022 20:30:30 -0400 Subject: bcachefs: Ensure sysfs show fns print a newline Signed-off-by: Kent Overstreet --- fs/bcachefs/sysfs.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'fs/bcachefs/sysfs.c') diff --git a/fs/bcachefs/sysfs.c b/fs/bcachefs/sysfs.c index c0cc6e9a3e05..24180d98fe81 100644 --- a/fs/bcachefs/sysfs.c +++ b/fs/bcachefs/sysfs.c @@ -55,6 +55,9 @@ static ssize_t fn ## _show(struct kobject *kobj, struct attribute *attr,\ struct printbuf out = PRINTBUF; \ ssize_t ret = fn ## _to_text(&out, kobj, attr); \ \ + if (out.pos && out.buf[out.pos - 1] != '\n') \ + pr_newline(&out); \ + \ if (!ret && out.allocation_failure) \ ret = -ENOMEM; \ \ -- cgit v1.2.3