Commit 0e79e96a authored by J. R. Okajima's avatar J. R. Okajima
Browse files

aufs: bugfix, no nested RCU for kfree()


Signed-off-by: default avatarJ. R. Okajima <hooanon05g@gmail.com>
(cherry picked from commit 4596850541ed7144f7fea951d02f0f6251c4a997)
parent 01a1817a
...@@ -101,7 +101,7 @@ static void dy_free_rcu(struct rcu_head *rcu) ...@@ -101,7 +101,7 @@ static void dy_free_rcu(struct rcu_head *rcu)
key = container_of(rcu, struct au_dykey, dk_rcu); key = container_of(rcu, struct au_dykey, dk_rcu);
DyPrSym(key); DyPrSym(key);
au_kfree_rcu(key); kfree(key);
} }
static void dy_free(struct kref *kref) static void dy_free(struct kref *kref)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment