|
@@ -147,8 +147,9 @@ static int cachefiles_lookup_object(struct fscache_object *_object)
|
|
cachefiles_attr_changed(&object->fscache);
|
|
cachefiles_attr_changed(&object->fscache);
|
|
|
|
|
|
if (ret < 0 && ret != -ETIMEDOUT) {
|
|
if (ret < 0 && ret != -ETIMEDOUT) {
|
|
- printk(KERN_WARNING "CacheFiles: Lookup failed error %d\n",
|
|
|
|
- ret);
|
|
|
|
|
|
+ if (ret != -ENOBUFS)
|
|
|
|
+ printk(KERN_WARNING
|
|
|
|
+ "CacheFiles: Lookup failed error %d\n", ret);
|
|
fscache_object_lookup_error(&object->fscache);
|
|
fscache_object_lookup_error(&object->fscache);
|
|
}
|
|
}
|
|
|
|
|