From: Erez Zadok Date: Tue, 25 Dec 2007 20:41:08 +0000 (-0500) Subject: Unionfs: remove unnecessary parent lock in create X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=ec085dde2b5fd0e45319f0e206590324828bfbf7;p=unionfs-3.2.y.git Unionfs: remove unnecessary parent lock in create Signed-off-by: Erez Zadok --- diff --git a/fs/unionfs/inode.c b/fs/unionfs/inode.c index 7ec9c1b76470..3df9b190d042 100644 --- a/fs/unionfs/inode.c +++ b/fs/unionfs/inode.c @@ -32,13 +32,6 @@ static int unionfs_create(struct inode *parent, struct dentry *dentry, unionfs_read_lock(dentry->d_sb); unionfs_lock_dentry(dentry); - unionfs_lock_dentry(dentry->d_parent); - valid = __unionfs_d_revalidate_chain(dentry->d_parent, nd, false); - unionfs_unlock_dentry(dentry->d_parent); - if (unlikely(!valid)) { - err = -ESTALE; /* same as what real_lookup does */ - goto out; - } valid = __unionfs_d_revalidate_chain(dentry, nd, false); /* * It's only a bug if this dentry was not negative and couldn't be