Unionfs: release special files on copyup
authorErez Zadok <ezk@cs.sunysb.edu>
Tue, 25 Dec 2007 22:08:50 +0000 (17:08 -0500)
committerErez Zadok <ezk@cs.sunysb.edu>
Tue, 25 Dec 2007 22:08:50 +0000 (17:08 -0500)
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 85619c6e0296c05be141d41ea8d87904c0e563a4..048e3f760feada3fd0283f7e214e0a53c5709a03 100644 (file)
@@ -499,13 +499,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);