Skip to content

Commit

Permalink
Merge pull request #107 from kmihelich/c1_aufs
Browse files Browse the repository at this point in the history
Additional AUFS fixes for odroidc-3.10.y
  • Loading branch information
mdrjr committed Jun 17, 2015
2 parents 5fd2c0a + 8118f98 commit a2838e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fs/aufs/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void au_dpri_dalias(struct inode *inode)
struct dentry *d;

spin_lock(&inode->i_lock);
hlist_for_each_entry(d, &inode->i_dentry, d_alias)
hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias)
au_dpri_dentry(d);
spin_unlock(&inode->i_lock);
}
Expand Down
2 changes: 1 addition & 1 deletion fs/aufs/hnotify.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ static int hn_gen_by_inode(char *name, unsigned int nlen, struct inode *inode,
AuDebugOn(!name);
au_iigen_dec(inode);
spin_lock(&inode->i_lock);
hlist_for_each_entry(d, &inode->i_dentry, d_alias) {
hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias) {
spin_lock(&d->d_lock);
dname = &d->d_name;
if (dname->len != nlen
Expand Down

0 comments on commit a2838e6

Please sign in to comment.