Unionfs: release special files on copyup
authorErez Zadok <ezk@cs.sunysb.edu>
Thu, 10 Jan 2008 11:55:01 +0000 (06:55 -0500)
committerRachita Kothiyal <rachita@dewey.fsl.cs.sunysb.edu>
Thu, 1 May 2008 23:03:29 +0000 (19:03 -0400)
If we copyup a special file (char, block, etc.), then dput the source
object.

Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/copyup.c

index 4b4dda4cfb647a7abdfe87dfe08be36dc864a023..96b3b950ddadf21e5464e66fc5b88aa3180e42ad 100644 (file)
@@ -511,13 +511,12 @@ out_unlock:
 
 out_free:
        /*
-        * If old_lower_dentry was a directory, we need to dput it.  If it
-        * was a file, then it was already dput indirectly by other
+        * If old_lower_dentry was not a file, then we need to dput it.  If
+        * it was a file, then it was already dput indirectly by other
         * functions we call above which operate on regular files.
         */
        if (old_lower_dentry && old_lower_dentry->d_inode &&
-           (S_ISDIR(old_lower_dentry->d_inode->i_mode) ||
-            S_ISLNK(old_lower_dentry->d_inode->i_mode)))
+           !S_ISREG(old_lower_dentry->d_inode->i_mode))
                dput(old_lower_dentry);
        kfree(symbuf);