diff options
-rw-r--r-- | fs/cachefiles/interface.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/cachefiles/interface.c b/fs/cachefiles/interface.c index 9d3c426044ae..27089311fbea 100644 --- a/fs/cachefiles/interface.c +++ b/fs/cachefiles/interface.c | |||
@@ -147,8 +147,9 @@ static int cachefiles_lookup_object(struct fscache_object *_object) | |||
147 | cachefiles_attr_changed(&object->fscache); | 147 | cachefiles_attr_changed(&object->fscache); |
148 | 148 | ||
149 | if (ret < 0 && ret != -ETIMEDOUT) { | 149 | if (ret < 0 && ret != -ETIMEDOUT) { |
150 | printk(KERN_WARNING "CacheFiles: Lookup failed error %d\n", | 150 | if (ret != -ENOBUFS) |
151 | ret); | 151 | printk(KERN_WARNING |
152 | "CacheFiles: Lookup failed error %d\n", ret); | ||
152 | fscache_object_lookup_error(&object->fscache); | 153 | fscache_object_lookup_error(&object->fscache); |
153 | } | 154 | } |
154 | 155 | ||