Consistently use audit_free() to free records, rather than
directly invoking uma_zfree(). Perforce change: 96652 Obtained from: TrustedBSD Project
This commit is contained in:
parent
590882238f
commit
97c0c78df7
@ -395,7 +395,7 @@ audit_commit(struct kaudit_record *ar, int error, int retval)
|
||||
mtx_lock(&audit_mtx);
|
||||
audit_pre_q_len--;
|
||||
mtx_unlock(&audit_mtx);
|
||||
uma_zfree(audit_record_zone, ar);
|
||||
audit_free(ar);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -421,7 +421,7 @@ audit_commit(struct kaudit_record *ar, int error, int retval)
|
||||
if (audit_suspended || !audit_enabled) {
|
||||
audit_pre_q_len--;
|
||||
mtx_unlock(&audit_mtx);
|
||||
uma_zfree(audit_record_zone, ar);
|
||||
audit_free(ar);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user