This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / Documentation / RCU / listRCU.txt
index bda6ead..46950af 100644 (file)
@@ -82,7 +82,7 @@ lock might be used as follows for deletion and insertion:
                list_for_each_entry(e, list, list) {
                        if (!audit_compare_rule(rule, &e->rule)) {
                                list_del(&e->list);
-                               write_unlock(&auditsc_lock);
+                               call_rcu(&e->rcu, audit_free_rule, e);
                                return 0;
                        }
                }