Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

Replace seq_printf where possible.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Sage Weil <sage@inktank.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Fabian Frederick and committed by
Linus Torvalds
3364d113 f3ae1b97

+3 -3
+3 -3
fs/ceph/debugfs.c
··· 71 71 seq_printf(s, "%s", ceph_mds_op_name(req->r_op)); 72 72 73 73 if (req->r_got_unsafe) 74 - seq_printf(s, "\t(unsafe)"); 74 + seq_puts(s, "\t(unsafe)"); 75 75 else 76 - seq_printf(s, "\t"); 76 + seq_puts(s, "\t"); 77 77 78 78 if (req->r_inode) { 79 79 seq_printf(s, " #%llx", ceph_ino(req->r_inode)); ··· 119 119 seq_printf(s, " %s", req->r_path2); 120 120 } 121 121 122 - seq_printf(s, "\n"); 122 + seq_puts(s, "\n"); 123 123 } 124 124 mutex_unlock(&mdsc->mutex); 125 125