From owner-cvs-src@FreeBSD.ORG Thu Oct 25 12:34:14 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCF4116A41B; Thu, 25 Oct 2007 12:34:14 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D7D3013C4AA; Thu, 25 Oct 2007 12:34:14 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l9PCYELU005831; Thu, 25 Oct 2007 12:34:14 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l9PCYEAI005830; Thu, 25 Oct 2007 12:34:14 GMT (envelope-from rwatson) Message-Id: <200710251234.l9PCYEAI005830@repoman.freebsd.org> From: Robert Watson Date: Thu, 25 Oct 2007 12:34:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/nfsserver nfs_srvsock.c src/sys/security/mac mac_framework.h mac_policy.h mac_process.c mac_vfs.c src/sys/security/mac_biba mac_biba.c src/sys/security/mac_mls mac_mls.c src/sys/security/mac_stub mac_stub.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2007 12:34:15 -0000 rwatson 2007-10-25 12:34:14 UTC FreeBSD src repository Modified files: sys/nfsserver nfs_srvsock.c sys/security/mac mac_framework.h mac_policy.h mac_process.c mac_vfs.c sys/security/mac_biba mac_biba.c sys/security/mac_mls mac_mls.c sys/security/mac_stub mac_stub.c Log: Rename mac_associate_nfsd_label() to mac_proc_associate_nfsd(), and move from mac_vfs.c to mac_process.c to join other functions that setup up process labels for specific purposes. Unlike the two proc create calls, this call is intended to run after creation when a process registers as the NFS daemon, so remains an _associate_ call.. Obtained from: TrustedBSD Project Revision Changes Path 1.105 +1 -1 src/sys/nfsserver/nfs_srvsock.c 1.88 +1 -1 src/sys/security/mac/mac_framework.h 1.99 +2 -2 src/sys/security/mac/mac_policy.h 1.120 +16 -0 src/sys/security/mac/mac_process.c 1.125 +0 -16 src/sys/security/mac/mac_vfs.c 1.111 +12 -12 src/sys/security/mac_biba/mac_biba.c 1.92 +12 -12 src/sys/security/mac_mls/mac_mls.c 1.73 +7 -7 src/sys/security/mac_stub/mac_stub.c