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/operation.c | |
parent | 8fe6929cfd43c44834858a53e129ffdc7c166298 (diff) | |
download | linux-36dfd116edd48fa6174d5694c143f1d4bd81aba8.tar.bz2 |
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/operation.c')
-rw-r--r-- | fs/fscache/operation.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fscache/operation.c b/fs/fscache/operation.c index 318071aca217..e7b87a0e5185 100644 --- a/fs/fscache/operation.c +++ b/fs/fscache/operation.c @@ -51,8 +51,7 @@ void fscache_enqueue_operation(struct fscache_operation *op) _debug("queue for caller's attention"); break; default: - printk(KERN_ERR "FS-Cache: Unexpected op type %lx", - op->flags); + pr_err("Unexpected op type %lx", op->flags); BUG(); break; } |