summaryrefslogtreecommitdiffstats
path: root/fs/cachefiles
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 /fs/cachefiles
parentd2138455286f9db8fbff9b50b53b51766f6c1f92 (diff)
downloadop-kernel-dev-480ce08a70e4179f34808a3bdbfe6627f624cf54.zip
op-kernel-dev-480ce08a70e4179f34808a3bdbfe6627f624cf54.tar.gz
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 'fs/cachefiles')
-rw-r--r--fs/cachefiles/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cachefiles/interface.c b/fs/cachefiles/interface.c
index 861d611..ce5f345 100644
--- a/fs/cachefiles/interface.c
+++ b/fs/cachefiles/interface.c
@@ -380,7 +380,7 @@ static void cachefiles_sync_cache(struct fscache_cache *_cache)
* check if the backing cache is updated to FS-Cache
* - called by FS-Cache when evaluates if need to invalidate the cache
*/
-static bool cachefiles_check_consistency(struct fscache_operation *op)
+static int cachefiles_check_consistency(struct fscache_operation *op)
{
struct cachefiles_object *object;
struct cachefiles_cache *cache;
OpenPOWER on IntegriCloud