Skip to content

Commit 8118f98

Browse files
committed
Additional AUFS fixes
Signed-off-by: Kevin Mihelich <kevin@archlinuxarm.org>
1 parent 195f620 commit 8118f98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fs/aufs/debug.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ void au_dpri_dalias(struct inode *inode)
156156
struct dentry *d;
157157

158158
spin_lock(&inode->i_lock);
159-
hlist_for_each_entry(d, &inode->i_dentry, d_alias)
159+
hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias)
160160
au_dpri_dentry(d);
161161
spin_unlock(&inode->i_lock);
162162
}

fs/aufs/hnotify.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ static int hn_gen_by_inode(char *name, unsigned int nlen, struct inode *inode,
198198
AuDebugOn(!name);
199199
au_iigen_dec(inode);
200200
spin_lock(&inode->i_lock);
201-
hlist_for_each_entry(d, &inode->i_dentry, d_alias) {
201+
hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias) {
202202
spin_lock(&d->d_lock);
203203
dname = &d->d_name;
204204
if (dname->len != nlen

0 commit comments

Comments
 (0)