diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-28 09:32:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-28 09:32:05 -0700 |
commit | 11cc21f5f5575b9abd14d53a6055ccbf72b67573 (patch) | |
tree | d9a93174b25021748f11e4e797267f381bf4485b /fs/hfsplus/dir.c | |
parent | 19ef20143ff86c8012270c619ac7b6c3b389a8fa (diff) | |
parent | 85b8fe8cc47b0dc1068475ba95f29ddff10a8efc (diff) | |
download | op-kernel-dev-11cc21f5f5575b9abd14d53a6055ccbf72b67573.zip op-kernel-dev-11cc21f5f5575b9abd14d53a6055ccbf72b67573.tar.gz |
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/hch/hfsplus
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/hch/hfsplus:
hfsplus: free space correcly for files unlinked while open
hfsplus: fix double lock typo in ioctl
Diffstat (limited to 'fs/hfsplus/dir.c')
-rw-r--r-- | fs/hfsplus/dir.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c index e318bbc..9d59c05 100644 --- a/fs/hfsplus/dir.c +++ b/fs/hfsplus/dir.c @@ -317,8 +317,10 @@ static int hfsplus_unlink(struct inode *dir, struct dentry *dentry) res = hfsplus_rename_cat(inode->i_ino, dir, &dentry->d_name, sbi->hidden_dir, &str); - if (!res) + if (!res) { inode->i_flags |= S_DEAD; + drop_nlink(inode); + } goto out; } res = hfsplus_delete_cat(cnid, dir, &dentry->d_name); |