aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/caps.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ceph/caps.c')
-rw-r--r--fs/ceph/caps.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/ceph/caps.c b/fs/ceph/caps.c
index 9afa8d37a6e3..06f197983be6 100644
--- a/fs/ceph/caps.c
+++ b/fs/ceph/caps.c
@@ -1923,14 +1923,17 @@ static int try_get_cap_refs(struct ceph_inode_info *ci, int need, int want,
1923 struct inode *inode = &ci->vfs_inode; 1923 struct inode *inode = &ci->vfs_inode;
1924 int ret = 0; 1924 int ret = 0;
1925 int have, implemented; 1925 int have, implemented;
1926 int file_wanted;
1926 1927
1927 dout("get_cap_refs %p need %s want %s\n", inode, 1928 dout("get_cap_refs %p need %s want %s\n", inode,
1928 ceph_cap_string(need), ceph_cap_string(want)); 1929 ceph_cap_string(need), ceph_cap_string(want));
1929 spin_lock(&inode->i_lock); 1930 spin_lock(&inode->i_lock);
1930 1931
1931 /* make sure we _have_ some caps! */ 1932 /* make sure file is actually open */
1932 if (!__ceph_is_any_caps(ci)) { 1933 file_wanted = __ceph_caps_file_wanted(ci);
1933 dout("get_cap_refs %p no real caps\n", inode); 1934 if ((file_wanted & need) == 0) {
1935 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
1936 ceph_cap_string(need), ceph_cap_string(file_wanted));
1934 *err = -EBADF; 1937 *err = -EBADF;
1935 ret = 1; 1938 ret = 1;
1936 goto out; 1939 goto out;