fs/locks.c: replace seq_printf by seq_puts
Replace seq_printf where possible Cc: Jeff Layton <jlayton@redhat.com> Cc: Alexander Viro <viro@zeniv.linux.org.uk> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Jeff Layton <jlayton@poochiereds.net>
This commit is contained in:
parent
130d1f956a
commit
5315c26a6c
22
fs/locks.c
22
fs/locks.c
|
@ -2425,31 +2425,31 @@ static void lock_get_status(struct seq_file *f, struct file_lock *fl,
|
||||||
seq_printf(f, "%lld:%s ", id, pfx);
|
seq_printf(f, "%lld:%s ", id, pfx);
|
||||||
if (IS_POSIX(fl)) {
|
if (IS_POSIX(fl)) {
|
||||||
if (fl->fl_flags & FL_ACCESS)
|
if (fl->fl_flags & FL_ACCESS)
|
||||||
seq_printf(f, "ACCESS");
|
seq_puts(f, "ACCESS");
|
||||||
else if (IS_OFDLCK(fl))
|
else if (IS_OFDLCK(fl))
|
||||||
seq_printf(f, "OFDLCK");
|
seq_puts(f, "OFDLCK");
|
||||||
else
|
else
|
||||||
seq_printf(f, "POSIX ");
|
seq_puts(f, "POSIX ");
|
||||||
|
|
||||||
seq_printf(f, " %s ",
|
seq_printf(f, " %s ",
|
||||||
(inode == NULL) ? "*NOINODE*" :
|
(inode == NULL) ? "*NOINODE*" :
|
||||||
mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
|
mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
|
||||||
} else if (IS_FLOCK(fl)) {
|
} else if (IS_FLOCK(fl)) {
|
||||||
if (fl->fl_type & LOCK_MAND) {
|
if (fl->fl_type & LOCK_MAND) {
|
||||||
seq_printf(f, "FLOCK MSNFS ");
|
seq_puts(f, "FLOCK MSNFS ");
|
||||||
} else {
|
} else {
|
||||||
seq_printf(f, "FLOCK ADVISORY ");
|
seq_puts(f, "FLOCK ADVISORY ");
|
||||||
}
|
}
|
||||||
} else if (IS_LEASE(fl)) {
|
} else if (IS_LEASE(fl)) {
|
||||||
seq_printf(f, "LEASE ");
|
seq_puts(f, "LEASE ");
|
||||||
if (lease_breaking(fl))
|
if (lease_breaking(fl))
|
||||||
seq_printf(f, "BREAKING ");
|
seq_puts(f, "BREAKING ");
|
||||||
else if (fl->fl_file)
|
else if (fl->fl_file)
|
||||||
seq_printf(f, "ACTIVE ");
|
seq_puts(f, "ACTIVE ");
|
||||||
else
|
else
|
||||||
seq_printf(f, "BREAKER ");
|
seq_puts(f, "BREAKER ");
|
||||||
} else {
|
} else {
|
||||||
seq_printf(f, "UNKNOWN UNKNOWN ");
|
seq_puts(f, "UNKNOWN UNKNOWN ");
|
||||||
}
|
}
|
||||||
if (fl->fl_type & LOCK_MAND) {
|
if (fl->fl_type & LOCK_MAND) {
|
||||||
seq_printf(f, "%s ",
|
seq_printf(f, "%s ",
|
||||||
|
@ -2481,7 +2481,7 @@ static void lock_get_status(struct seq_file *f, struct file_lock *fl,
|
||||||
else
|
else
|
||||||
seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
|
seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
|
||||||
} else {
|
} else {
|
||||||
seq_printf(f, "0 EOF\n");
|
seq_puts(f, "0 EOF\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue