|
@@ -93,16 +93,10 @@ static inline void get_tree(struct audit_tree *tree)
|
|
|
atomic_inc(&tree->count);
|
|
|
}
|
|
|
|
|
|
-static void __put_tree(struct rcu_head *rcu)
|
|
|
-{
|
|
|
- struct audit_tree *tree = container_of(rcu, struct audit_tree, head);
|
|
|
- kfree(tree);
|
|
|
-}
|
|
|
-
|
|
|
static inline void put_tree(struct audit_tree *tree)
|
|
|
{
|
|
|
if (atomic_dec_and_test(&tree->count))
|
|
|
- call_rcu(&tree->head, __put_tree);
|
|
|
+ kfree_rcu(tree, head);
|
|
|
}
|
|
|
|
|
|
/* to avoid bringing the entire thing in audit.h */
|