From owner-p4-projects@FreeBSD.ORG Thu Jul 8 17:12:10 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id EDABC16A4D2; Thu, 8 Jul 2004 17:12:09 +0000 (GMT) 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 B420816A4D8 for ; Thu, 8 Jul 2004 17:12:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A106043D6B for ; Thu, 8 Jul 2004 17:12:09 +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.12.11/8.12.11) with ESMTP id i68HC9Dq020971 for ; Thu, 8 Jul 2004 17:12:09 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i68HC9pq020968 for perforce@freebsd.org; Thu, 8 Jul 2004 17:12:09 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Thu, 8 Jul 2004 17:12:09 GMT Message-Id: <200407081712.i68HC9pq020968@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 Subject: PERFORCE change 56786 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: Thu, 08 Jul 2004 17:12:10 -0000 http://perforce.freebsd.org/chv.cgi?CH=56786 Change 56786 by rwatson@rwatson_tislabs on 2004/07/08 17:11:46 Sync structure layout to CVS version, clean up white space. Affected files ... .. //depot/projects/trustedbsd/mac/sys/sys/msg_msg.h#3 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/sys/msg_msg.h#3 (text+ko) ==== @@ -25,22 +25,20 @@ #ifdef _KERNEL - -/* +/* * Pull out the msg structure from kern/sysv_msg.c. This file is used * throughout the MAC framework. A separate header file was required as - * it wansn't a good idea to add the structure with such a common name to + * it wansn't a good idea to add the structure with such a common name to * the sys/msg.h */ - struct msg { - struct msg *msg_next; /* next msg in the chain */ - long msg_type; /* type of this message */ - /* >0 -> type of this message */ - /* 0 -> free header */ - unsigned short msg_ts; /* size of this message */ - short msg_spot; /* location of start of msg in buffer */ - struct label *label; /* MAC Framework label */ + struct msg *msg_next; /* next msg in the chain */ + long msg_type; /* type of this message */ + /* >0 -> type of this message */ + /* 0 -> free header */ + u_short msg_ts; /* size of this message */ + short msg_spot; /* location of start of msg in buffer */ + struct label *label; /* MAC Framework label */ }; #endif /* _KERNEL */