From owner-p4-projects Wed May 1 9:23:47 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 435C937B41A; Wed, 1 May 2002 09:23:42 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C86F37B417 for ; Wed, 1 May 2002 09:23:41 -0700 (PDT) Received: (from perforce@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g41GNf419684 for perforce@freebsd.org; Wed, 1 May 2002 09:23:41 -0700 (PDT) (envelope-from arr@freebsd.org) Date: Wed, 1 May 2002 09:23:41 -0700 (PDT) Message-Id: <200205011623.g41GNf419684@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to arr@freebsd.org using -f From: "Andrew R. Reiter" Subject: PERFORCE change 10581 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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