Unionfs: d_parent related locking fixes
authorErez Zadok <ezk@cs.sunysb.edu>
Sat, 26 Jan 2008 01:21:07 +0000 (20:21 -0500)
committerErez Zadok <ezk@cs.sunysb.edu>
Sat, 26 Jan 2008 01:21:07 +0000 (20:21 -0500)
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/copyup.c
fs/unionfs/union.h

index b028908021bad60f7aacc19c7ee2c22a6b0c8c90..81f54319ad67391de8a9f743473f6bf7ee59adfb 100644 (file)
@@ -710,8 +710,7 @@ struct dentry *create_parents(struct inode *dir, struct dentry *dentry,
                child_dentry = parent_dentry;
 
                /* find the parent directory dentry in unionfs */
-               parent_dentry = child_dentry->d_parent;
-               dget(parent_dentry);
+               parent_dentry = dget_parent(child_dentry);
 
                /* find out the lower_parent_dentry in the given branch */
                lower_parent_dentry =
index bbcb310174f968a24822934e444d49d5c3757503..2adbea74cad1816fa9680c84712e6945f4423ccb 100644 (file)
@@ -492,13 +492,13 @@ extern int parse_branch_mode(const char *name, int *perms);
 /* locking helpers */
 static inline struct dentry *lock_parent(struct dentry *dentry)
 {
-       struct dentry *dir = dget(dentry->d_parent);
+       struct dentry *dir = dget_parent(dentry);
        mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
        return dir;
 }
 static inline struct dentry *lock_parent_wh(struct dentry *dentry)
 {
-       struct dentry *dir = dget(dentry->d_parent);
+       struct dentry *dir = dget_parent(dentry);
 
        mutex_lock_nested(&dir->d_inode->i_mutex, UNIONFS_DMUTEX_WHITEOUT);
        return dir;