diff options
author | Dave Hansen <haveblue@us.ibm.com> | 2006-10-01 02:29:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:30 -0400 |
commit | ce71ec36840368b877fb63bd14c8e67ab62d08b1 (patch) | |
tree | 55ea3caaa339881dfd66d787b3dbbb964825d07a /fs/hfs | |
parent | 17ff785691503f63ec648df82a7fdaece7695561 (diff) |
[PATCH] r/o bind mounts: monitor zeroing of i_nlink
Some filesystems, instead of simply decrementing i_nlink, simply zero it
during an unlink operation. We need to catch these in addition to the
decrement operations.
Signed-off-by: Dave Hansen <haveblue@us.ibm.com>
Acked-by: Christoph Hellwig <hch@lst.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/hfs')
-rw-r--r-- | fs/hfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfs/dir.c b/fs/hfs/dir.c index cfef6ad529a7..37d681b4f216 100644 --- a/fs/hfs/dir.c +++ b/fs/hfs/dir.c | |||
@@ -273,7 +273,7 @@ static int hfs_rmdir(struct inode *dir, struct dentry *dentry) | |||
273 | res = hfs_cat_delete(inode->i_ino, dir, &dentry->d_name); | 273 | res = hfs_cat_delete(inode->i_ino, dir, &dentry->d_name); |
274 | if (res) | 274 | if (res) |
275 | return res; | 275 | return res; |
276 | inode->i_nlink = 0; | 276 | clear_nlink(inode); |
277 | inode->i_ctime = CURRENT_TIME_SEC; | 277 | inode->i_ctime = CURRENT_TIME_SEC; |
278 | hfs_delete_inode(inode); | 278 | hfs_delete_inode(inode); |
279 | mark_inode_dirty(inode); | 279 | mark_inode_dirty(inode); |