summaryrefslogtreecommitdiffstats
path: root/fs/ceph/file.c
diff options
context:
space:
mode:
authorYan, Zheng2017-01-29 15:15:47 +0100
committerIlya Dryomov2017-02-20 12:16:07 +0100
commitc1944fedd8c492ce1c1a99ca9064dcc7bafa80e9 (patch)
tree391d043097c793dacc36aae7c9c9e354d80553bb /fs/ceph/file.c
parentceph: make sure flushing inode in proper session's cap_flushing list (diff)
downloadkernel-qcow2-linux-c1944fedd8c492ce1c1a99ca9064dcc7bafa80e9.tar.gz
kernel-qcow2-linux-c1944fedd8c492ce1c1a99ca9064dcc7bafa80e9.tar.xz
kernel-qcow2-linux-c1944fedd8c492ce1c1a99ca9064dcc7bafa80e9.zip
ceph: avoid calling ceph_renew_caps() infinitely
__ceph_caps_mds_wanted() ignores caps from stale session. So the return value of __ceph_caps_mds_wanted() can keep the same across ceph_renew_caps(). This causes try_get_cap_refs() to keep calling ceph_renew_caps(). The fix is ignore the session valid check for the try_get_cap_refs() case. If session is stale, just let the caps requester sleep. Signed-off-by: Yan, Zheng <zyan@redhat.com>
Diffstat (limited to 'fs/ceph/file.c')
-rw-r--r--fs/ceph/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index 045d30d26624..beb24f8bb917 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -283,7 +283,7 @@ int ceph_open(struct inode *inode, struct file *file)
spin_lock(&ci->i_ceph_lock);
if (__ceph_is_any_real_caps(ci) &&
(((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
- int mds_wanted = __ceph_caps_mds_wanted(ci);
+ int mds_wanted = __ceph_caps_mds_wanted(ci, true);
int issued = __ceph_caps_issued(ci, NULL);
dout("open %p fmode %d want %s issued %s using existing\n",