diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-06 17:37:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:14 -0400 |
commit | 0227d6abb378454e10d385da6a0f8b79a5b02c27 (patch) | |
tree | e85a3019e054d8cbbaa20f0b98a30653a0432701 /fs/cachefiles/interface.c | |
parent | 4e1eb88305135248ad0e927449e457df95d8d9b3 (diff) |
fs/cachefiles: replace kerror by pr_err
Also add pr_fmt in internal.h
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/cachefiles/interface.c')
-rw-r--r-- | fs/cachefiles/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cachefiles/interface.c b/fs/cachefiles/interface.c index e47a8d87852f..584743d456c3 100644 --- a/fs/cachefiles/interface.c +++ b/fs/cachefiles/interface.c | |||
@@ -146,7 +146,7 @@ static int cachefiles_lookup_object(struct fscache_object *_object) | |||
146 | 146 | ||
147 | if (ret < 0 && ret != -ETIMEDOUT) { | 147 | if (ret < 0 && ret != -ETIMEDOUT) { |
148 | if (ret != -ENOBUFS) | 148 | if (ret != -ENOBUFS) |
149 | pr_warn("CacheFiles: Lookup failed error %d\n", ret); | 149 | pr_warn("Lookup failed error %d\n", ret); |
150 | fscache_object_lookup_error(&object->fscache); | 150 | fscache_object_lookup_error(&object->fscache); |
151 | } | 151 | } |
152 | 152 | ||