projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3ae1b9
)
fs/ceph/debugfs.c: replace seq_printf by seq_puts
author
Fabian Frederick
<
[email protected]
>
Fri, 6 Jun 2014 21:35:38 +0000
(14:35 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 6 Jun 2014 23:08:06 +0000
(16:08 -0700)
Replace seq_printf where possible.
Signed-off-by: Fabian Frederick <
[email protected]
>
Cc: Sage Weil <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
fs/ceph/debugfs.c
patch
|
blob
|
history
diff --git
a/fs/ceph/debugfs.c
b/fs/ceph/debugfs.c
index 16b54aa31f08ef801f2aa852b9f00c81aeffe9ce..5a743ac141ab1e745063ba09974c098703c9b5b7 100644
(file)
--- a/
fs/ceph/debugfs.c
+++ b/
fs/ceph/debugfs.c
@@
-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_p
rintf
(s, "\t(unsafe)");
+ seq_p
uts
(s, "\t(unsafe)");
else
- seq_p
rintf
(s, "\t");
+ seq_p
uts
(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_p
rintf
(s, "\n");
+ seq_p
uts
(s, "\n");
}
mutex_unlock(&mdsc->mutex);