]> git.itanic.dy.fi Git - linux-stable/commitdiff
ceph: fix fscache invalidation
authorJeff Layton <jlayton@kernel.org>
Thu, 21 Jan 2021 23:05:37 +0000 (18:05 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 May 2021 09:43:49 +0000 (11:43 +0200)
[ Upstream commit 10a7052c7868bc7bc72d947f5aac6f768928db87 ]

Ensure that we invalidate the fscache whenever we invalidate the
pagecache.

Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/ceph/caps.c
fs/ceph/inode.c

index 570731c4d019d406b9ce90fafe00cb54f02c55c2..d405ba801492ff73bf95fa468cadb5a053ee71d3 100644 (file)
@@ -1867,6 +1867,7 @@ static int try_nonblocking_invalidate(struct inode *inode)
        u32 invalidating_gen = ci->i_rdcache_gen;
 
        spin_unlock(&ci->i_ceph_lock);
+       ceph_fscache_invalidate(inode);
        invalidate_mapping_pages(&inode->i_data, 0, -1);
        spin_lock(&ci->i_ceph_lock);
 
index 156f849f5385674804246f3ccee2ccd0fcdf4d28..4418d4be2907bc808a4b8d01496ff8387fc87ba6 100644 (file)
@@ -1863,6 +1863,7 @@ static void ceph_do_invalidate_pages(struct inode *inode)
        orig_gen = ci->i_rdcache_gen;
        spin_unlock(&ci->i_ceph_lock);
 
+       ceph_fscache_invalidate(inode);
        if (invalidate_inode_pages2(inode->i_mapping) < 0) {
                pr_err("invalidate_pages %p fails\n", inode);
        }