diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-04 16:05:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 16:53:51 -0700 |
commit | 36dfd116edd48fa6174d5694c143f1d4bd81aba8 (patch) | |
tree | 140446c2260c5d3a6c49b1102f15ce9cef431448 /fs/fscache/cookie.c | |
parent | 8fe6929cfd43c44834858a53e129ffdc7c166298 (diff) | |
download | talos-obmc-linux-36dfd116edd48fa6174d5694c143f1d4bd81aba8.tar.gz talos-obmc-linux-36dfd116edd48fa6174d5694c143f1d4bd81aba8.zip |
fs/fscache: convert printk to pr_foo()
All printk converted to pr_foo() except internal.h: printk(KERN_DEBUG
Coalesce formats.
Add pr_fmt
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fscache/cookie.c')
-rw-r--r-- | fs/fscache/cookie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fscache/cookie.c b/fs/fscache/cookie.c index 29d7feb62cf7..aec01be91b0a 100644 --- a/fs/fscache/cookie.c +++ b/fs/fscache/cookie.c @@ -519,7 +519,7 @@ void __fscache_disable_cookie(struct fscache_cookie *cookie, bool invalidate) ASSERTCMP(atomic_read(&cookie->n_active), >, 0); if (atomic_read(&cookie->n_children) != 0) { - printk(KERN_ERR "FS-Cache: Cookie '%s' still has children\n", + pr_err("Cookie '%s' still has children\n", cookie->def->name); BUG(); } |