diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-12-18 12:10:00 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-12 20:02:46 -0500 |
commit | ba87167c06ed0049260d9ca36405c0f8af609e07 (patch) | |
tree | df31ff885587f6ad0751b60ea067ce6d51d45c2f /fs/ocfs2/export.c | |
parent | 41ced6dcf3dc6b901716fda0dc8de3536da4d39b (diff) | |
download | op-kernel-dev-ba87167c06ed0049260d9ca36405c0f8af609e07.zip op-kernel-dev-ba87167c06ed0049260d9ca36405c0f8af609e07.tar.gz |
switch ocfs2, close races
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ocfs2/export.c')
-rw-r--r-- | fs/ocfs2/export.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/ocfs2/export.c b/fs/ocfs2/export.c index 6adafa5..5dbc306 100644 --- a/fs/ocfs2/export.c +++ b/fs/ocfs2/export.c @@ -137,9 +137,7 @@ check_gen: } result = d_obtain_alias(inode); - if (!IS_ERR(result)) - d_set_d_op(result, &ocfs2_dentry_ops); - else + if (IS_ERR(result)) mlog_errno(PTR_ERR(result)); bail: @@ -175,8 +173,6 @@ static struct dentry *ocfs2_get_parent(struct dentry *child) } parent = d_obtain_alias(ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0)); - if (!IS_ERR(parent)) - d_set_d_op(parent, &ocfs2_dentry_ops); bail_unlock: ocfs2_inode_unlock(dir, 0); |