]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - kernel/audit_tree.c
panic: panic=-1 for immediate reboot
[karo-tx-linux.git] / kernel / audit_tree.c
index e99dda04b1268133f796f821af148bd4ed7bf722..5bf0790497e7779cf1001f6cb30c214de812ccd5 100644 (file)
@@ -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 */