aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hfsplus
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2010-10-23 15:23:40 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2010-10-25 21:24:15 -0400
commit756acc2d61712a8cafe2aa6ad626c60a185d3645 (patch)
tree72473307f7789b2dafa4b7ca2facc6427f83a283 /fs/hfsplus
parent1d3382cbf02986e4833849f528d451367ea0b4cb (diff)
downloadkernel_samsung_smdk4412-756acc2d61712a8cafe2aa6ad626c60a185d3645.zip
kernel_samsung_smdk4412-756acc2d61712a8cafe2aa6ad626c60a185d3645.tar.gz
kernel_samsung_smdk4412-756acc2d61712a8cafe2aa6ad626c60a185d3645.tar.bz2
list.h: new helper - hlist_add_fake()
Make node look as if it was on hlist, with hlist_del() working correctly. Usable without any locking... Convert a couple of places where we want to do that to inode->i_hash. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfsplus')
-rw-r--r--fs/hfsplus/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfsplus/inode.c b/fs/hfsplus/inode.c
index 7844928..8afd7e8 100644
--- a/fs/hfsplus/inode.c
+++ b/fs/hfsplus/inode.c
@@ -211,7 +211,7 @@ static struct dentry *hfsplus_file_lookup(struct inode *dir, struct dentry *dent
* appear hashed, but do not put on any lists. hlist_del()
* will work fine and require no locking.
*/
- inode->i_hash.pprev = &inode->i_hash.next;
+ hlist_add_fake(&inode->i_hash);
mark_inode_dirty(inode);
out: