diff options
author | Sage Weil <sage@newdream.net> | 2011-02-28 12:46:46 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2011-03-03 10:09:51 -0800 |
commit | b545cc1505eb49247071ce9f4092665de788ca00 (patch) | |
tree | 25bfbae54c086a1fdd0801efdd07aa4bdfdac951 /fs/ceph | |
parent | 9bde178d052418af0b8e0f12932cf02ab4764c9d (diff) | |
download | linux-3.10-b545cc1505eb49247071ce9f4092665de788ca00.tar.gz linux-3.10-b545cc1505eb49247071ce9f4092665de788ca00.tar.bz2 linux-3.10-b545cc1505eb49247071ce9f4092665de788ca00.zip |
ceph: do not set I_COMPLETE
Do not set the I_COMPLETE flag on directories until we resolve races with
dcache pruning.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/dir.c | 2 | ||||
-rw-r--r-- | fs/ceph/inode.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 0bc68de8edd..9b4f9d9947b 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c @@ -409,7 +409,7 @@ more: spin_lock(&inode->i_lock); if (ci->i_release_count == fi->dir_release_count) { dout(" marking %p complete\n", inode); - ci->i_ceph_flags |= CEPH_I_COMPLETE; + /* ci->i_ceph_flags |= CEPH_I_COMPLETE; */ ci->i_max_offset = filp->f_pos; } spin_unlock(&inode->i_lock); diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c index 5625463aa47..193bfa5e9cb 100644 --- a/fs/ceph/inode.c +++ b/fs/ceph/inode.c @@ -707,7 +707,7 @@ static int fill_inode(struct inode *inode, (issued & CEPH_CAP_FILE_EXCL) == 0 && (ci->i_ceph_flags & CEPH_I_COMPLETE) == 0) { dout(" marking %p complete (empty)\n", inode); - ci->i_ceph_flags |= CEPH_I_COMPLETE; + /* ci->i_ceph_flags |= CEPH_I_COMPLETE; */ ci->i_max_offset = 2; } break; |