Skip to content

Commit 1fd31ab

Browse files
committed
Merge branch 'aufs5.1/00base' into aufs5.2/00base
2 parents c7e6383 + 69d4996 commit 1fd31ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fs/aufs/xino.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1344,7 +1344,8 @@ static void au_xino_release(struct kref *kref)
13441344
hlist_bl_lock(hbl);
13451345
hlist_bl_for_each_entry_safe(p, pos, n, hbl, node) {
13461346
hlist_bl_del(&p->node);
1347-
au_kfree_rcu(p);
1347+
/* kmemleak reported au_kfree_rcu() doesn't free it */
1348+
kfree(p);
13481349
}
13491350
hlist_bl_unlock(hbl);
13501351
}

0 commit comments

Comments
 (0)