diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-06-09 13:51:19 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-14 08:32:55 -0400 |
commit | b3d9b7a3c752dc4b6976a4ff7b8298887a5b734d (patch) | |
tree | ce0d4c84328890dd63c9c4cb3e281b6b3476f85f /fs/ocfs2 | |
parent | 9f713878f22e0b2d34d62df0ca55f65166375634 (diff) |
vfs: switch i_dentry/d_alias to hlist
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/dcache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ocfs2/dcache.c b/fs/ocfs2/dcache.c index a40edc1e1d86..af4488268e49 100644 --- a/fs/ocfs2/dcache.c +++ b/fs/ocfs2/dcache.c | |||
@@ -170,10 +170,11 @@ struct dentry *ocfs2_find_local_alias(struct inode *inode, | |||
170 | u64 parent_blkno, | 170 | u64 parent_blkno, |
171 | int skip_unhashed) | 171 | int skip_unhashed) |
172 | { | 172 | { |
173 | struct hlist_node *p; | ||
173 | struct dentry *dentry; | 174 | struct dentry *dentry; |
174 | 175 | ||
175 | spin_lock(&inode->i_lock); | 176 | spin_lock(&inode->i_lock); |
176 | list_for_each_entry(dentry, &inode->i_dentry, d_alias) { | 177 | hlist_for_each_entry(dentry, p, &inode->i_dentry, d_alias) { |
177 | spin_lock(&dentry->d_lock); | 178 | spin_lock(&dentry->d_lock); |
178 | if (ocfs2_match_dentry(dentry, parent_blkno, skip_unhashed)) { | 179 | if (ocfs2_match_dentry(dentry, parent_blkno, skip_unhashed)) { |
179 | trace_ocfs2_find_local_alias(dentry->d_name.len, | 180 | trace_ocfs2_find_local_alias(dentry->d_name.len, |