|
@@ -350,14 +350,9 @@ static inline void free_leaf(struct leaf *l)
|
|
|
call_rcu_bh(&l->rcu, __leaf_free_rcu);
|
|
|
}
|
|
|
|
|
|
-static void __leaf_info_free_rcu(struct rcu_head *head)
|
|
|
-{
|
|
|
- kfree(container_of(head, struct leaf_info, rcu));
|
|
|
-}
|
|
|
-
|
|
|
static inline void free_leaf_info(struct leaf_info *leaf)
|
|
|
{
|
|
|
- call_rcu(&leaf->rcu, __leaf_info_free_rcu);
|
|
|
+ kfree_rcu(leaf, rcu);
|
|
|
}
|
|
|
|
|
|
static struct tnode *tnode_alloc(size_t size)
|