]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
hfsplus: fix rename over directories
authorChristoph Hellwig <hch@tuxera.com>
Fri, 1 Oct 2010 07:12:08 +0000 (09:12 +0200)
committerChristoph Hellwig <hch@lst.de>
Fri, 1 Oct 2010 07:12:08 +0000 (09:12 +0200)
When renaming over a directory we need to use hfsplus_rmdir instead of
hfsplus_unlink to evict the victim.  This makes sure we properly error out
on non-empty directory as required by Posix (BZ #16571), and it also makes
sure we do the right thing in case i_nlink will every be set correctly for
directories on hfsplus.

Reported-by: Vlado Plaga <rechner@vlado-do.de>
Signed-off-by: Christoph Hellwig <hch@tuxera.com>
fs/hfsplus/dir.c

index 93fa45cc48103d6f01c45fe61da7f3df7461ffe7..33aab211695ad62d7f70bb26f290325cd9b6a4d2 100644 (file)
@@ -452,7 +452,10 @@ static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry,
 
        /* Unlink destination if it already exists */
        if (new_dentry->d_inode) {
-               res = hfsplus_unlink(new_dir, new_dentry);
+               if (S_ISDIR(new_dentry->d_inode->i_mode))
+                       res = hfsplus_rmdir(new_dir, new_dentry);
+               else
+                       res = hfsplus_unlink(new_dir, new_dentry);
                if (res)
                        return res;
        }