diff options
author | 2021-05-18 09:45:08 +0300 | |
---|---|---|
committer | 2021-05-18 09:45:08 +0300 | |
commit | 85ebe5aeef9b0bf4c91ff91652b32f9c54f71d34 (patch) | |
tree | dc6b176404218efac28a4a1a0c240cb36f1e9173 /fs/cachefiles/interface.c | |
parent | Merge branch 'omap-for-v5.13/ti-sysc' into fixes (diff) | |
parent | ARM: OMAP2+: Fix build warning when mmc_omap is not built (diff) | |
download | wireguard-linux-85ebe5aeef9b0bf4c91ff91652b32f9c54f71d34.tar.xz wireguard-linux-85ebe5aeef9b0bf4c91ff91652b32f9c54f71d34.zip |
Merge branch 'fixes-rc1' into fixes
Diffstat (limited to 'fs/cachefiles/interface.c')
-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 5efa6a3702c0..da3948fdb615 100644 --- a/fs/cachefiles/interface.c +++ b/fs/cachefiles/interface.c @@ -319,8 +319,8 @@ static void cachefiles_drop_object(struct fscache_object *_object) /* * dispose of a reference to an object */ -static void cachefiles_put_object(struct fscache_object *_object, - enum fscache_obj_ref_trace why) +void cachefiles_put_object(struct fscache_object *_object, + enum fscache_obj_ref_trace why) { struct cachefiles_object *object; struct fscache_cache *cache; @@ -568,4 +568,5 @@ const struct fscache_cache_ops cachefiles_cache_ops = { .uncache_page = cachefiles_uncache_page, .dissociate_pages = cachefiles_dissociate_pages, .check_consistency = cachefiles_check_consistency, + .begin_read_operation = cachefiles_begin_read_operation, }; |