From owner-p4-projects@FreeBSD.ORG Fri Apr 30 05:38:07 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B1C1B16A4D0; Fri, 30 Apr 2004 05:38:07 -0700 (PDT) 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 880B416A4CE for ; Fri, 30 Apr 2004 05:38:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5219343D2D for ; Fri, 30 Apr 2004 05:38:07 -0700 (PDT) (envelope-from areisse@nailabs.com) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3UCc6Ge022365 for ; Fri, 30 Apr 2004 05:38:06 -0700 (PDT) (envelope-from areisse@nailabs.com) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3UCc6Gv022362 for perforce@freebsd.org; Fri, 30 Apr 2004 05:38:06 -0700 (PDT) (envelope-from areisse@nailabs.com) Date: Fri, 30 Apr 2004 05:38:06 -0700 (PDT) Message-Id: <200404301238.i3UCc6Gv022362@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to areisse@nailabs.com using -f From: Andrew Reisse To: Perforce Change Reviews Subject: PERFORCE change 51965 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Apr 2004 12:38:08 -0000 http://perforce.freebsd.org/chv.cgi?CH=51965 Change 51965 by areisse@areisse_ibook on 2004/04/30 05:37:22 Move all functionality from kern_mac into several files in security. Affected files ... .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/conf/files#3 edit .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/kern/kern_mac.c#2 delete .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/Makefile#2 edit .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/conf/files#2 edit .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_base.c#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_internal.h#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_network.c#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_port.c#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_process.c#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_socket.c#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_system.c#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_task.c#1 add .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/mac_vfs.c#1 add Differences ... ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/conf/files#3 (text+ko) ==== @@ -470,7 +470,6 @@ bsd/kern/kern_fork.c standard bsd/kern/kern_ktrace.c standard bsd/kern/kern_lock.c optional cpus -bsd/kern/kern_mac.c standard bsd/kern/kern_malloc.c standard bsd/kern/kern_mman.c standard bsd/kern/kern_panicinfo.c standard ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/Makefile#2 (text+ko) ==== @@ -8,14 +8,12 @@ include $(MakeInc_def) INSTINC_SUBDIRS = \ - mac_test \ sebsd INSTINC_SUBDIRS_PPC = ${INSTINC_SUBDIRS} INSTINC_SUBDIRS_I386 = ${INSTINC_SUBDIRS} EXPINC_SUBDIRS = \ - mac_test \ sebsd EXPINC_SUBDIRS_PPC = ${EXPINC_SUBDIRS} ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/security/conf/files#2 (text+ko) ==== @@ -4,6 +4,14 @@ # security +security/mac_base.c standard +security/mac_task.c standard +security/mac_port.c standard +security/mac_process.c standard +security/mac_vfs.c standard +security/mac_system.c standard +security/mac_socket.c standard +security/mac_network.c standard security/mac_test/mac_test.c standard security/sebsd/sebsd.c standard security/sebsd/sebsd_syscall.c standard