From owner-p4-projects@FreeBSD.ORG Sat Feb 4 00:57:37 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 8006B16A423; Sat, 4 Feb 2006 00:57:37 +0000 (GMT) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4317D16A420 for ; Sat, 4 Feb 2006 00:57:37 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E91F943D46 for ; Sat, 4 Feb 2006 00:57:36 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k140vaXt059163 for ; Sat, 4 Feb 2006 00:57:36 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k140vamQ059160 for perforce@freebsd.org; Sat, 4 Feb 2006 00:57:36 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sat, 4 Feb 2006 00:57:36 GMT Message-Id: <200602040057.k140vamQ059160@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Cc: Subject: PERFORCE change 91022 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2006 00:57:38 -0000 http://perforce.freebsd.org/chv.cgi?CH=91022 Change 91022 by rwatson@rwatson_peppercorn on 2006/02/04 00:56:42 Correct spelling of audit event identifier. Regenerate. Affected files ... .. //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_proto.h#11 edit .. //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_syscall.h#11 edit .. //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_syscalls.c#11 edit .. //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_sysent.c#12 edit .. //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/syscalls.master#13 edit Differences ... ==== //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_proto.h#11 (text+ko) ==== ==== //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_syscall.h#11 (text+ko) ==== ==== //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_syscalls.c#11 (text+ko) ==== ==== //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/freebsd32_sysent.c#12 (text+ko) ==== @@ -337,7 +337,7 @@ { SYF_MPSAFE | AS(modfnext_args), (sy_call_t *)modfnext, AUE_NULL }, /* 302 = modfnext */ { SYF_MPSAFE | AS(modfind_args), (sy_call_t *)modfind, AUE_NULL }, /* 303 = modfind */ { SYF_MPSAFE | AS(kldload_args), (sy_call_t *)kldload, AUE_MODLOAD }, /* 304 = kldload */ - { SYF_MPSAFE | AS(kldunload_args), (sy_call_t *)kldunload, AUE_UNMODLOAD }, /* 305 = kldunload */ + { SYF_MPSAFE | AS(kldunload_args), (sy_call_t *)kldunload, AUE_MODUNLOAD }, /* 305 = kldunload */ { SYF_MPSAFE | AS(kldfind_args), (sy_call_t *)kldfind, AUE_NULL }, /* 306 = kldfind */ { SYF_MPSAFE | AS(kldnext_args), (sy_call_t *)kldnext, AUE_NULL }, /* 307 = kldnext */ { SYF_MPSAFE | AS(kldstat_args), (sy_call_t *)kldstat, AUE_NULL }, /* 308 = kldstat */ ==== //depot/projects/trustedbsd/audit3/sys/compat/freebsd32/syscalls.master#13 (text+ko) ==== @@ -521,7 +521,7 @@ 302 AUE_NULL MNOPROTO { int modfnext(int modid); } 303 AUE_NULL MNOPROTO { int modfind(const char *name); } 304 AUE_MODLOAD MNOPROTO { int kldload(const char *file); } -305 AUE_UNMODLOAD MNOPROTO { int kldunload(int fileid); } +305 AUE_MODUNLOAD MNOPROTO { int kldunload(int fileid); } 306 AUE_NULL MNOPROTO { int kldfind(const char *file); } 307 AUE_NULL MNOPROTO { int kldnext(int fileid); } 308 AUE_NULL MNOPROTO { int kldstat(int fileid, \