]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ceph: don't trim auth cap when there are cap snaps
authorYan, Zheng <zyan@redhat.com>
Thu, 7 May 2015 02:59:47 +0000 (10:59 +0800)
committerIlya Dryomov <idryomov@gmail.com>
Thu, 25 Jun 2015 08:49:28 +0000 (11:49 +0300)
Signed-off-by: Yan, Zheng <zyan@redhat.com>
fs/ceph/mds_client.c

index f125e06dacb842ced42d5431bb45adc0cdad3174..88010f9a254da69d08c0801674afa42c627a9ea0 100644 (file)
@@ -1371,7 +1371,8 @@ static int trim_caps_cb(struct inode *inode, struct ceph_cap *cap, void *arg)
             inode, cap, ceph_cap_string(mine), ceph_cap_string(oissued),
             ceph_cap_string(used), ceph_cap_string(wanted));
        if (cap == ci->i_auth_cap) {
-               if (ci->i_dirty_caps | ci->i_flushing_caps)
+               if (ci->i_dirty_caps || ci->i_flushing_caps ||
+                   !list_empty(&ci->i_cap_snaps))
                        goto out;
                if ((used | wanted) & CEPH_CAP_ANY_WR)
                        goto out;