aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fscache-cache.h
diff options
context:
space:
mode:
authorYan, Zheng <zyan@redhat.com>2016-05-20 18:32:31 +0800
committerIlya Dryomov <idryomov@gmail.com>2016-06-01 10:29:39 +0200
commit480ce08a70e4179f34808a3bdbfe6627f624cf54 (patch)
tree7355b4c18651ff54653cede0a82a52c3631e535f /include/linux/fscache-cache.h
parentFS-Cache: wake write waiter after invalidating writes (diff)
downloadlinux-dev-480ce08a70e4179f34808a3bdbfe6627f624cf54.tar.xz
linux-dev-480ce08a70e4179f34808a3bdbfe6627f624cf54.zip
FS-Cache: make check_consistency callback return int
__fscache_check_consistency() calls check_consistency() callback and return the callback's return value. But the return type of check_consistency() is bool. So __fscache_check_consistency() return 1 if the cache is inconsistent. This is inconsistent with the document. Signed-off-by: Yan, Zheng <zyan@redhat.com> Acked-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'include/linux/fscache-cache.h')
-rw-r--r--include/linux/fscache-cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fscache-cache.h b/include/linux/fscache-cache.h
index 604e1526cd00..13ba552e6c09 100644
--- a/include/linux/fscache-cache.h
+++ b/include/linux/fscache-cache.h
@@ -241,7 +241,7 @@ struct fscache_cache_ops {
/* check the consistency between the backing cache and the FS-Cache
* cookie */
- bool (*check_consistency)(struct fscache_operation *op);
+ int (*check_consistency)(struct fscache_operation *op);
/* store the updated auxiliary data on an object */
void (*update_object)(struct fscache_object *object);