提交 7421ab80 编写于 作者: S Sage Weil

ceph: fix open for write on clustered mds

Normally when we open a file we already have a cap, and simply update the
wanted set.  However, if we open a file for write, but don't have an auth
cap, that doesn't work; we need to open a new cap with the auth MDS.  Only
reuse existing caps if we are opening for read or the existing cap is auth.
Signed-off-by: NSage Weil <sage@newdream.net>
上级 d8b16b3d
...@@ -154,11 +154,13 @@ int ceph_open(struct inode *inode, struct file *file) ...@@ -154,11 +154,13 @@ int ceph_open(struct inode *inode, struct file *file)
} }
/* /*
* No need to block if we have any caps. Update wanted set * No need to block if we have caps on the auth MDS (for
* write) or any MDS (for read). Update wanted set
* asynchronously. * asynchronously.
*/ */
spin_lock(&inode->i_lock); spin_lock(&inode->i_lock);
if (__ceph_is_any_real_caps(ci)) { 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);
int issued = __ceph_caps_issued(ci, NULL); int issued = __ceph_caps_issued(ci, NULL);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册