Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35489
b: refs/heads/master
c: 1ba9da2
h: refs/heads/master
i:
  35487: 3e5ed5c
v: v3
  • Loading branch information
Mark Fasheh committed Sep 24, 2006
1 parent 124147c commit cb6f6f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 349457ccf2592c14bdf13b6706170ae2e94931b1
refs/heads/master: 1ba9da2ffa54b56a6346746248bfa38124d499a6
5 changes: 4 additions & 1 deletion trunk/fs/ocfs2/dcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ void ocfs2_dentry_move(struct dentry *dentry, struct dentry *target,
* XXX: Is there any advantage to dropping the lock here?
*/
if (old_dir == new_dir)
return;
goto out_move;

ocfs2_dentry_lock_put(osb, dentry->d_fsdata);

Expand All @@ -423,6 +423,9 @@ void ocfs2_dentry_move(struct dentry *dentry, struct dentry *target,
OCFS2_I(new_dir)->ip_blkno, 0);
if (ret)
mlog_errno(ret);

out_move:
d_move(dentry, target);
}

struct dentry_operations ocfs2_dentry_ops = {
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/ocfs2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ static struct file_system_type ocfs2_fs_type = {
.kill_sb = kill_block_super, /* set to the generic one
* right now, but do we
* need to change that? */
.fs_flags = FS_REQUIRES_DEV,
.fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
.next = NULL
};

Expand Down

0 comments on commit cb6f6f2

Please sign in to comment.