Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3364d113 authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds
Browse files

fs/ceph/debugfs.c: replace seq_printf by seq_puts



Replace seq_printf where possible.

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Cc: Sage Weil <sage@inktank.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f3ae1b97
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -71,9 +71,9 @@ static int mdsc_show(struct seq_file *s, void *p)
		seq_printf(s, "%s", ceph_mds_op_name(req->r_op));

		if (req->r_got_unsafe)
			seq_printf(s, "\t(unsafe)");
			seq_puts(s, "\t(unsafe)");
		else
			seq_printf(s, "\t");
			seq_puts(s, "\t");

		if (req->r_inode) {
			seq_printf(s, " #%llx", ceph_ino(req->r_inode));
@@ -119,7 +119,7 @@ static int mdsc_show(struct seq_file *s, void *p)
				seq_printf(s, " %s", req->r_path2);
		}

		seq_printf(s, "\n");
		seq_puts(s, "\n");
	}
	mutex_unlock(&mdsc->mutex);