Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 May 2002 09:23:41 -0700 (PDT)
From:      "Andrew R. Reiter" <arr@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 10581 for review
Message-ID:  <200205011623.g41GNf419684@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=10581

Change 10581 by arr@arr_shibby on 2002/05/01 09:23:39

	- Erm, this time actually nuke the uma zone constructor
		  function; accidental submit of only partially changed code.

Affected files ...

... //depot/projects/trustedbsd/audit/sys/kern/kern_audit.c#25 edit

Differences ...

==== //depot/projects/trustedbsd/audit/sys/kern/kern_audit.c#25 (text+ko) ====

@@ -80,20 +80,12 @@
 }
 
 void
-audit_uma_ctor(void *mem, int size)
-{
-
-	bzero(mem, size);
-}
-
-void
 audit_init(void)
 {
 	uma_zone_t zone;
 
 	zone = uma_zcreate("AUDIT", sizeof(audit_record_t),
-	    (uma_ctor)&audit_uma_ctor,
-	    NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
+	    NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
 	if (zone == NULL)
 		panic("audit_init: unable to init audit record zone");
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200205011623.g41GNf419684>