From owner-cvs-all@FreeBSD.ORG Sat Sep 2 12:48:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7618A16A4DD; Sat, 2 Sep 2006 12:48:50 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45EFA43D4C; Sat, 2 Sep 2006 12:48:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k82Cmo4T014428; Sat, 2 Sep 2006 12:48:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k82CmoSj014427; Sat, 2 Sep 2006 12:48:50 GMT (envelope-from rwatson) Message-Id: <200609021248.k82CmoSj014427@repoman.freebsd.org> From: Robert Watson Date: Sat, 2 Sep 2006 12:48:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys proc.h src/sys/kern kern_thread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 12:48:50 -0000 rwatson 2006-09-02 12:48:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys proc.h sys/kern kern_thread.c Log: Merge proc.h:1.449 and kern_thread.:1.225 from HEAD to RELENG_6: Add new fields to process-related data structures: - td_ar to struct thread, which holds the in-progress audit record during a system call. - p_au to struct proc, which holds per-process audit state, such as the audit identifier, audit terminal, and process audit masks. In the earlier implementation, td_ar was added to the zero'd section of struct thread. In order to facilitate merging to RELENG_6, it has been moved to the end of the data structure, requiring explicit initalization in the thread constructor. Obtained from: TrustedBSD Project Revision Changes Path 1.216.2.5 +6 -0 src/sys/kern/kern_thread.c 1.432.2.6 +4 -0 src/sys/sys/proc.h