From owner-cvs-src@FreeBSD.ORG Sun Apr 8 00:04:29 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6203D16A404; Sun, 8 Apr 2007 00:04:29 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id C7C5B13C46C; Sun, 8 Apr 2007 00:02:31 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l3802SoG002041; Sat, 7 Apr 2007 18:02:28 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <46183104.6080904@samsco.org> Date: Sat, 07 Apr 2007 18:02:12 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: mjacob@freebsd.org References: <200704071940.l37Jew2t013708@repoman.freebsd.org> <20070407131228.L71232@ns1.feral.com> In-Reply-To: <20070407131228.L71232@ns1.feral.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Sat, 07 Apr 2007 18:02:28 -0600 (MDT) X-Spam-Status: No, score=-0.8 required=5.5 tests=ALL_TRUSTED,SUBJ_HAS_SPACES autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Scott Long , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/modules/cam Makefile src/sys/conf NOTES files src/sys/compat/linux linux_ioctl.c linux_ioctl.h 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: Sun, 08 Apr 2007 00:04:29 -0000 To tell you the truth, the SG device has one of the worst programming interfaces that I've ever seen. Even the various official docs on it complain about how bad it is. I've written apps for CAM, including a swiss-army-knife java-based management app, and CAM is vastly superior. I tried porting the app to linux and gave up due to how limited and unpleasant it was. From the kernel side, it's even scarier. But beyond that, the work I committed here was about opening up FreeBSD to more storage management opportunities. So I'm happy with whatever anyone wants to do with it that furthers that goal. I'd like to see the native interface be used as a bridge to help introduce programmers to FreeBSD and CAM; if the sg3_utils package is a step in that direction or if it provides tools that camcontrol doesn't, then go for it. Scott mjacob@freebsd.org wrote: > > Cool- does this mean we should commit sg3_utils to ports then? > > On Sat, 7 Apr 2007, Scott Long wrote: > >> scottl 2007-04-07 19:40:58 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/modules/cam Makefile >> sys/conf files NOTES >> sys/compat/linux linux_ioctl.c linux_ioctl.h >> Added files: >> sys/cam/scsi scsi_sg.c scsi_sg.h >> Log: >> Add the CAM 'SG' peripheral device. This device implements a subset >> of the >> Linux SCSI SG passthrough device API. The intention is to allow for >> both >> running of Linux apps that want to talk to /dev/sg* nodes, and to >> facilitate >> porting of apps from Linux to FreeBSD. As such, both native and >> linuxolator >> entry points and definitions are provided. >> >> Caveats: >> - This does not support the procfs and sysfs nodes that the Linux SG >> driver provides. Some Linux apps may rely on these for operation, >> others may only use them for informational purposes. >> - More ioctls need to be implemented. >> - Linux uses a naming scheme of "sg[a-z]" for devices, while FreeBSD >> uses a >> scheme of "sg[0-9]". Devfs aliasis (symlinks) are automatically >> created >> to link the two together. However, tools like camcontrol only see >> the >> native names. >> - Some operations were originally designed to return byte counts or >> other >> data directly as the syscall return value. The linuxolator >> doesn't appear >> to support this well, so this driver just punts for these cases. >> >> Now that the driver is in place, others are welcome to add missing >> functionality. Thanks to Roman Divacky for pushing this work along. >> >> Revision Changes Path >> 1.1 +987 -0 src/sys/cam/scsi/scsi_sg.c (new) >> 1.1 +139 -0 src/sys/cam/scsi/scsi_sg.h (new) >> 1.138 +27 -0 src/sys/compat/linux/linux_ioctl.c >> 1.25 +34 -0 src/sys/compat/linux/linux_ioctl.h >> 1.1419 +5 -0 src/sys/conf/NOTES >> 1.1191 +1 -0 src/sys/conf/files >> 1.15 +1 -0 src/sys/modules/cam/Makefile >> From owner-cvs-src@FreeBSD.ORG Sun Apr 8 00:37:26 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F3E5F16A401; Sun, 8 Apr 2007 00:37:25 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [192.147.25.65]) by mx1.freebsd.org (Postfix) with ESMTP id 981D813C46A; Sun, 8 Apr 2007 00:37:25 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org ([192.147.25.65]:58468) by thebighonker.lerctr.org with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HaKyk-000DKz-Gk; Sat, 07 Apr 2007 19:10:03 -0500 Date: Sat, 7 Apr 2007 19:09:56 -0500 (CDT) From: Larry Rosenman To: Scott Long In-Reply-To: <46183104.6080904@samsco.org> Message-ID: <20070407190859.N51247@thebighonker.lerctr.org> References: <200704071940.l37Jew2t013708@repoman.freebsd.org> <20070407131228.L71232@ns1.feral.com> <46183104.6080904@samsco.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Score: -4.4 (----) X-LERCTR-Spam-Score: -4.4 (----) X-Spam-Report: SpamScore (-4.4/5.0) ALL_TRUSTED=-1.8,BAYES_00=-2.599 X-LERCTR-Spam-Report: SpamScore (-4.4/5.0) ALL_TRUSTED=-1.8,BAYES_00=-2.599 DomainKey-Status: no signature Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Scott Long , mjacob@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/modules/cam Makefile src/sys/conf NOTES files src/sys/compat/linux linux_ioctl.c linux_ioctl.h 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: Sun, 08 Apr 2007 00:37:26 -0000 On Sat, 7 Apr 2007, Scott Long wrote: > To tell you the truth, the SG device has one of the worst programming > interfaces that I've ever seen. Even the various official docs on it > complain about how bad it is. I've written apps for CAM, including a > swiss-army-knife java-based management app, and CAM is vastly superior. > I tried porting the app to linux and gave up due to how limited and > unpleasant it was. From the kernel side, it's even scarier. > > But beyond that, the work I committed here was about opening up FreeBSD > to more storage management opportunities. So I'm happy with whatever > anyone wants to do with it that furthers that goal. I'd like to see > the native interface be used as a bridge to help introduce programmers > to FreeBSD and CAM; if the sg3_utils package is a step in that > direction or if it provides tools that camcontrol doesn't, then go for > it. > > Scott > I assume that this is NOT a MFC candidate? (Since I think I may have been at least part of the genesis of the request from Roman). [snip] -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 512-248-2683 E-Mail: ler@lerctr.org US Mail: 430 Valona Loop, Round Rock, TX 78681-3893 From owner-cvs-src@FreeBSD.ORG Sun Apr 8 01:01:21 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8274A16A405; Sun, 8 Apr 2007 01:01:21 +0000 (UTC) (envelope-from mjacob@freebsd.org) Received: from ns1.feral.com (ns1.feral.com [192.67.166.1]) by mx1.freebsd.org (Postfix) with ESMTP id 45A8F13C465; Sun, 8 Apr 2007 01:01:21 +0000 (UTC) (envelope-from mjacob@freebsd.org) Received: from ns1.feral.com (localhost [127.0.0.1]) by ns1.feral.com (8.13.8/8.13.8) with ESMTP id l3811CCp072471; Sat, 7 Apr 2007 18:01:20 -0700 (PDT) (envelope-from mjacob@freebsd.org) Received: from localhost (mjacob@localhost) by ns1.feral.com (8.13.8/8.13.8/Submit) with ESMTP id l3811CiQ072468; Sat, 7 Apr 2007 18:01:12 -0700 (PDT) (envelope-from mjacob@freebsd.org) X-Authentication-Warning: ns1.feral.com: mjacob owned process doing -bs Date: Sat, 7 Apr 2007 18:01:12 -0700 (PDT) From: mjacob@freebsd.org To: Scott Long In-Reply-To: <46183104.6080904@samsco.org> Message-ID: <20070407175932.A72446@ns1.feral.com> References: <200704071940.l37Jew2t013708@repoman.freebsd.org> <20070407131228.L71232@ns1.feral.com> <46183104.6080904@samsco.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Scott Long , mjacob@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/modules/cam Makefile src/sys/conf NOTES files src/sys/compat/linux linux_ioctl.c linux_ioctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mjacob@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Apr 2007 01:01:21 -0000 Oh, agreed that it's unpleasant. Better than Solaris tho. By doing this you may have made FreeBSD a viable choice with respect to storagse. There are a lot of management tools for linux storage that use the sg interfaces. Bravo. > To tell you the truth, the SG device has one of the worst programming > interfaces that I've ever seen. Even the various official docs on it > complain about how bad it is. I've written apps for CAM, including a > swiss-army-knife java-based management app, and CAM is vastly superior. > I tried porting the app to linux and gave up due to how limited and > unpleasant it was. From the kernel side, it's even scarier. > > But beyond that, the work I committed here was about opening up FreeBSD > to more storage management opportunities. So I'm happy with whatever > anyone wants to do with it that furthers that goal. I'd like to see > the native interface be used as a bridge to help introduce programmers > to FreeBSD and CAM; if the sg3_utils package is a step in that > direction or if it provides tools that camcontrol doesn't, then go for > it. > > Scott > > > mjacob@freebsd.org wrote: >> >> Cool- does this mean we should commit sg3_utils to ports then? >> >> On Sat, 7 Apr 2007, Scott Long wrote: >> >>> scottl 2007-04-07 19:40:58 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/modules/cam Makefile >>> sys/conf files NOTES >>> sys/compat/linux linux_ioctl.c linux_ioctl.h >>> Added files: >>> sys/cam/scsi scsi_sg.c scsi_sg.h >>> Log: >>> Add the CAM 'SG' peripheral device. This device implements a subset of >>> the >>> Linux SCSI SG passthrough device API. The intention is to allow for both >>> running of Linux apps that want to talk to /dev/sg* nodes, and to >>> facilitate >>> porting of apps from Linux to FreeBSD. As such, both native and >>> linuxolator >>> entry points and definitions are provided. >>> >>> Caveats: >>> - This does not support the procfs and sysfs nodes that the Linux SG >>> driver provides. Some Linux apps may rely on these for operation, >>> others may only use them for informational purposes. >>> - More ioctls need to be implemented. >>> - Linux uses a naming scheme of "sg[a-z]" for devices, while FreeBSD >>> uses a >>> scheme of "sg[0-9]". Devfs aliasis (symlinks) are automatically >>> created >>> to link the two together. However, tools like camcontrol only see the >>> native names. >>> - Some operations were originally designed to return byte counts or >>> other >>> data directly as the syscall return value. The linuxolator doesn't >>> appear >>> to support this well, so this driver just punts for these cases. >>> >>> Now that the driver is in place, others are welcome to add missing >>> functionality. Thanks to Roman Divacky for pushing this work along. >>> >>> Revision Changes Path >>> 1.1 +987 -0 src/sys/cam/scsi/scsi_sg.c (new) >>> 1.1 +139 -0 src/sys/cam/scsi/scsi_sg.h (new) >>> 1.138 +27 -0 src/sys/compat/linux/linux_ioctl.c >>> 1.25 +34 -0 src/sys/compat/linux/linux_ioctl.h >>> 1.1419 +5 -0 src/sys/conf/NOTES >>> 1.1191 +1 -0 src/sys/conf/files >>> 1.15 +1 -0 src/sys/modules/cam/Makefile >>> > > From owner-cvs-src@FreeBSD.ORG Sun Apr 8 01:37:51 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A72E16A402; Sun, 8 Apr 2007 01:37:51 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id A479813C43E; Sun, 8 Apr 2007 01:37:50 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l381bkAY002520; Sat, 7 Apr 2007 19:37:47 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4618475A.7090202@samsco.org> Date: Sat, 07 Apr 2007 19:37:30 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: Larry Rosenman References: <200704071940.l37Jew2t013708@repoman.freebsd.org> <20070407131228.L71232@ns1.feral.com> <46183104.6080904@samsco.org> <20070407190859.N51247@thebighonker.lerctr.org> In-Reply-To: <20070407190859.N51247@thebighonker.lerctr.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Sat, 07 Apr 2007 19:37:47 -0600 (MDT) X-Spam-Status: No, score=-1.4 required=5.5 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Scott Long , mjacob@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/modules/cam Makefile src/sys/conf NOTES files src/sys/compat/linux linux_ioctl.c linux_ioctl.h 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: Sun, 08 Apr 2007 01:37:51 -0000 Larry Rosenman wrote: > On Sat, 7 Apr 2007, Scott Long wrote: > >> To tell you the truth, the SG device has one of the worst programming >> interfaces that I've ever seen. Even the various official docs on it >> complain about how bad it is. I've written apps for CAM, including a >> swiss-army-knife java-based management app, and CAM is vastly superior. >> I tried porting the app to linux and gave up due to how limited and >> unpleasant it was. From the kernel side, it's even scarier. >> >> But beyond that, the work I committed here was about opening up FreeBSD >> to more storage management opportunities. So I'm happy with whatever >> anyone wants to do with it that furthers that goal. I'd like to see >> the native interface be used as a bridge to help introduce programmers >> to FreeBSD and CAM; if the sg3_utils package is a step in that >> direction or if it provides tools that camcontrol doesn't, then go for >> it. >> >> Scott >> > I assume that this is NOT a MFC candidate? (Since I think I may have been > at least part of the genesis of the request from Roman). > > [snip] There's no reason not to merge it to 6.x; it doesn't change any existing functionality or interfaces. What I'd like is for people to play with it for a few weeks and help fill in some of the pieces that are still missing. Once it's a little more mature, it can be merged back. Scott From owner-cvs-src@FreeBSD.ORG Sun Apr 8 02:13:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8534416A407; Sun, 8 Apr 2007 02:13:33 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5F10013C4AD; Sun, 8 Apr 2007 02:13:33 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l382DXcr000620; Sun, 8 Apr 2007 02:13:33 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l382DXqU000619; Sun, 8 Apr 2007 02:13:33 GMT (envelope-from pjd) Message-Id: <200704080213.l382DXqU000619@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 02:13:33 +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/kern kern_jail.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: Sun, 08 Apr 2007 02:13:33 -0000 pjd 2007-04-08 02:13:33 UTC FreeBSD src repository Modified files: sys/kern kern_jail.c Log: pr_list is protected by the allprison_lock. Revision Changes Path 1.66 +1 -1 src/sys/kern/kern_jail.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 03:02:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F303116A401; Sun, 8 Apr 2007 03:02:08 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C227913C44B; Sun, 8 Apr 2007 03:02:08 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38328xG007739; Sun, 8 Apr 2007 03:02:08 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38328Lx007737; Sun, 8 Apr 2007 03:02:08 GMT (envelope-from pjd) Message-Id: <200704080302.l38328Lx007737@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 03:02:08 +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/contrib/opensolaris/lib/libzfs/common libzfs_util.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: Sun, 08 Apr 2007 03:02:09 -0000 pjd 2007-04-08 03:02:08 UTC FreeBSD src repository Modified files: contrib/opensolaris/lib/libzfs/common libzfs_util.c Log: If we cannot open /dev/zfs try to load zfs.ko automatically and reopen. Revision Changes Path 1.2 +21 -2 src/contrib/opensolaris/lib/libzfs/common/libzfs_util.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 05:10:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68A0216A402; Sun, 8 Apr 2007 05:10:37 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4248413C46C; Sun, 8 Apr 2007 05:10:37 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l385AbOi039261; Sun, 8 Apr 2007 05:10:37 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l385AbL9039260; Sun, 8 Apr 2007 05:10:37 GMT (envelope-from alc) Message-Id: <200704080510.l385AbL9039260@repoman.freebsd.org> From: Alan Cox Date: Sun, 8 Apr 2007 05:10:36 +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/arm/arm pmap.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: Sun, 08 Apr 2007 05:10:37 -0000 alc 2007-04-08 05:10:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/arm/arm pmap.c Log: MFC revision 1.47 Retire pmap_track_modified(). Revision Changes Path 1.36.2.4 +10 -24 src/sys/arm/arm/pmap.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 06:42:07 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58C8216A403 for ; Sun, 8 Apr 2007 06:42:07 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id 1612413C457 for ; Sun, 8 Apr 2007 06:42:06 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by py-out-1112.google.com with SMTP id f31so721077pyh for ; Sat, 07 Apr 2007 23:42:06 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=dPA0BBxk1Cvj/GqBoDNzLWCuB+v8P9LSO675ZHIvrcNQ1Qisg0rm8Vq/bsC/8QmfvEUFuFvnxEWppAKT/TDnKT+LnCMrW0pxL+Krf5H/1b+wVuBd2bX/QTSQb3MD0Tpo/RPYLO6GbKS6/5iG29OELmUWoR9KnorFvPCgqpFshlU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rdr/1FMsfY4aC32X8H6y6VwW2J9h1JC07abyS1CChXt/FI+xAn0NWFZj5lEyL75fXFBsB3AeCZwpd3chC/suF5GHwd92eMB6ZtExREGZlbGLv2u1u3T2CuyJdLB6XtWP5AGVmwmVjzGui660iPLODiquzv9sGdaw70C72SwaxCM= Received: by 10.65.215.14 with SMTP id s14mr9139779qbq.1176014526085; Sat, 07 Apr 2007 23:42:06 -0700 (PDT) Received: by 10.65.244.16 with HTTP; Sat, 7 Apr 2007 23:42:06 -0700 (PDT) Message-ID: Date: Sat, 7 Apr 2007 23:42:06 -0700 From: "Kip Macy" To: "=?ISO-8859-1?Q?S=F8ren_Schmidt?=" In-Reply-To: <200704061619.l36GJ0u1060539@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200704061619.l36GJ0u1060539@repoman.freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.h ata-chipset.c ata-dma.c ata-lowlevel.c ata_if.m 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: Sun, 08 Apr 2007 06:42:07 -0000 I have a machine that I spent the afternoon looking for file system regressions because it couldn't mount root with today's HEAD. mountroot succeeds for me after backing out this change. -Kip On 4/6/07, S=F8ren Schmidt wrote: > sos 2007-04-06 16:18:59 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.h ata-chipset.c ata-dma.c > ata-lowlevel.c ata_if.m > Log: > Add support for 64bit addressing to AHCI and Marvell controllers. > Munged into ATA shape and Marvell specifics my yours truely. > > Submitted by: jhb > > Revision Changes Path > 1.122 +1 -0 src/sys/dev/ata/ata-all.h > 1.193 +20 -11 src/sys/dev/ata/ata-chipset.c > 1.144 +6 -4 src/sys/dev/ata/ata-dma.c > 1.79 +1 -0 src/sys/dev/ata/ata-lowlevel.c > 1.7 +1 -1 src/sys/dev/ata/ata_if.m > From owner-cvs-src@FreeBSD.ORG Sun Apr 8 07:52:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C0C716A402; Sun, 8 Apr 2007 07:52:29 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DEF9613C44B; Sun, 8 Apr 2007 07:52:28 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l387qSkU070493; Sun, 8 Apr 2007 07:52:28 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l387qSsE070491; Sun, 8 Apr 2007 07:52:28 GMT (envelope-from ariff) Message-Id: <200704080752.l387qSsE070491@repoman.freebsd.org> From: Ariff Abdullah Date: Sun, 8 Apr 2007 07:52:28 +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/dev/sound/pci cmi.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: Sun, 08 Apr 2007 07:52:29 -0000 ariff 2007-04-08 07:52:28 UTC FreeBSD src repository Modified files: sys/dev/sound/pci cmi.c Log: Disable cmi_midiattach(). The implementation is incomplete, and causing various interesting memory leak issues. Revision Changes Path 1.41 +2 -1 src/sys/dev/sound/pci/cmi.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 10:21:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1321C16A400; Sun, 8 Apr 2007 10:21:39 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E05D713C46C; Sun, 8 Apr 2007 10:21:38 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38ALcG0015097; Sun, 8 Apr 2007 10:21:38 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38ALcDe015096; Sun, 8 Apr 2007 10:21:38 GMT (envelope-from pjd) Message-Id: <200704081021.l38ALcDe015096@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 10:21:38 +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/kern kern_jail.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: Sun, 08 Apr 2007 10:21:39 -0000 pjd 2007-04-08 10:21:38 UTC FreeBSD src repository Modified files: sys/kern kern_jail.c Log: Only use prison mutex to protect the fields that need to be protected by it. Revision Changes Path 1.67 +2 -2 src/sys/kern/kern_jail.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 10:29:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9363116A401; Sun, 8 Apr 2007 10:29:14 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6C34D13C484; Sun, 8 Apr 2007 10:29:14 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38ATEiV016016; Sun, 8 Apr 2007 10:29:14 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38ATEVH016015; Sun, 8 Apr 2007 10:29:14 GMT (envelope-from pjd) Message-Id: <200704081029.l38ATEVH016015@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 10:29: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/contrib/opensolaris/uts/common/fs/zfs zfs_znode.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: Sun, 08 Apr 2007 10:29:14 -0000 pjd 2007-04-08 10:29:14 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_znode.c Log: Take vnode pointer and hold it under znode lock, so we won't race with zfs_reclaim(). This may or may not fix problem reported by kris, but it's definiatelly better that way. Revision Changes Path 1.2 +3 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 10:46:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C42216A403; Sun, 8 Apr 2007 10:46:24 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 558D413C45A; Sun, 8 Apr 2007 10:46:24 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38AkOFT019445; Sun, 8 Apr 2007 10:46:24 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38AkOjE019444; Sun, 8 Apr 2007 10:46:24 GMT (envelope-from pjd) Message-Id: <200704081046.l38AkOjE019444@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 10:46:24 +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/kern kern_jail.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: Sun, 08 Apr 2007 10:46:24 -0000 pjd 2007-04-08 10:46:24 UTC FreeBSD src repository Modified files: sys/kern kern_jail.c Log: prison_free() can be called with a mutex held. This wasn't a problem until I converted allprison_mtx mutex to allprison_lock sx lock. To fix this LOR, move prison removal to prison_complete() entirely. To ensure that noone will reference this prison before it's beeing removed from the list skip prisons with 'pr_ref == 0' in prison_find() and assert that pr_ref has to greater than 0 in prison_hold(). Reported by: kris OK'ed by: rwatson Revision Changes Path 1.68 +16 -11 src/sys/kern/kern_jail.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 10:48:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DCB216A400; Sun, 8 Apr 2007 10:48:06 +0000 (UTC) (envelope-from sos@deepcore.dk) Received: from spider.deepcore.dk (cpe.atm2-0-53484.0x50a6c9a6.abnxx9.customer.tele.dk [80.166.201.166]) by mx1.freebsd.org (Postfix) with ESMTP id A134213C4B9; Sun, 8 Apr 2007 10:48:05 +0000 (UTC) (envelope-from sos@deepcore.dk) Received: from [194.192.25.137] (ws.deepcore.dk [194.192.25.137]) by spider.deepcore.dk (8.13.8/8.13.8) with ESMTP id l38Am4Dj040913; Sun, 8 Apr 2007 12:48:04 +0200 (CEST) (envelope-from sos@deepcore.dk) Message-ID: <4618C864.8020209@deepcore.dk> Date: Sun, 08 Apr 2007 12:48:04 +0200 From: =?ISO-8859-1?Q?S=F8ren_Schmidt?= User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Kip Macy References: <200704061619.l36GJ0u1060539@repoman.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/ata ata-all.h ata-chipset.c ata-dma.c ata-lowlevel.c ata_if.m 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: Sun, 08 Apr 2007 10:48:06 -0000 Kip Macy wrote: > I have a machine that I spent the afternoon looking for file system > regressions because it couldn't mount root with today's HEAD. > mountroot succeeds for me after backing out this change. Well, thats not supposed to happen :) Could you mail me the dmesg from that system please so I have a chance=20 to tell whats going on ? If possible also from the failed boot so diffs=20 can be searched for. -S=F8ren > > -Kip > > On 4/6/07, S=F8ren Schmidt wrote: >> sos 2007-04-06 16:18:59 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/dev/ata ata-all.h ata-chipset.c ata-dma.c >> ata-lowlevel.c ata_if.m >> Log: >> Add support for 64bit addressing to AHCI and Marvell controllers. >> Munged into ATA shape and Marvell specifics my yours truely. >> >> Submitted by: jhb >> >> Revision Changes Path >> 1.122 +1 -0 src/sys/dev/ata/ata-all.h >> 1.193 +20 -11 src/sys/dev/ata/ata-chipset.c >> 1.144 +6 -4 src/sys/dev/ata/ata-dma.c >> 1.79 +1 -0 src/sys/dev/ata/ata-lowlevel.c >> 1.7 +1 -1 src/sys/dev/ata/ata_if.m >> > > > . > From owner-cvs-src@FreeBSD.ORG Sun Apr 8 14:12:07 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B835F16A403 for ; Sun, 8 Apr 2007 14:12:07 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by mx1.freebsd.org (Postfix) with ESMTP id 6C3CA13C459 for ; Sun, 8 Apr 2007 14:12:07 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by py-out-1112.google.com with SMTP id f31so773275pyh for ; Sun, 08 Apr 2007 07:12:07 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=p9nXdfmxS+fCXX+VaT9CZw+BtnAKlWrQHzrCrvqnR5CPwf+bCaRiE4Ph0gO+ytodTrJxCMwquJXXvwRFfti/uWLQLV5zT6wZO2KEeNWB8/xNkYk44iQwR1wNK0EPgHz/YfkQmbHPoEmlSjSJ/wzXXSSa71qeRhAmlIrkSMBuxF4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=sbAK3LdeLsWdGEbcyziHi64AmUDbT9KM/7Pr4civgJRLer2XKx3Hb3tHFjSsWzLVKfKWFEHFeWdrmOXJh8TVbDHlVfw/k/ycmxiN1tFZpwXzHfySb2fRId7s1iKiU1ZKXaAVHEGxv3d7yyx6kGrw3PeZvUS6twXYZHu91WzCWQE= Received: by 10.65.160.7 with SMTP id m7mr9668618qbo.1176041526136; Sun, 08 Apr 2007 07:12:06 -0700 (PDT) Received: by 10.65.244.16 with HTTP; Sun, 8 Apr 2007 07:12:06 -0700 (PDT) Message-ID: Date: Sun, 8 Apr 2007 07:12:06 -0700 From: "Kip Macy" To: "=?ISO-8859-1?Q?S=F8ren_Schmidt?=" , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org In-Reply-To: <4618C864.8020209@deepcore.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200704061619.l36GJ0u1060539@repoman.freebsd.org> <4618C864.8020209@deepcore.dk> Cc: Subject: Re: cvs commit: src/sys/dev/ata ata-all.h ata-chipset.c ata-dma.c ata-lowlevel.c ata_if.m 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: Sun, 08 Apr 2007 14:12:07 -0000 - Original message - Well, thats not supposed to happen :) Could you mail me t... I will do that. Just to add some important info: This machine has 4GB and several 10GigE ports (which cause a measurable amount of PA to show up above 4GB), I have an identical machine that has 2GB and still boots with this change. It isn't the install because the drives from both systems boot on the machine with 2GB. Thanks. -Kip On 4/8/07, S=F8ren Schmidt wrote: > Kip Macy wrote: > > I have a machine that I spent the afternoon looking for file system > > regressions because it couldn't mount root with today's HEAD. > > mountroot succeeds for me after backing out this change. > Well, thats not supposed to happen :) > Could you mail me the dmesg from that system please so I have a chance > to tell whats going on ? If possible also from the failed boot so diffs > can be searched for. > > > -S=F8ren > > > > -Kip > > > > On 4/6/07, S=F8ren Schmidt wrote: > >> sos 2007-04-06 16:18:59 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> sys/dev/ata ata-all.h ata-chipset.c ata-dma.c > >> ata-lowlevel.c ata_if.m > >> Log: > >> Add support for 64bit addressing to AHCI and Marvell controllers. > >> Munged into ATA shape and Marvell specifics my yours truely. > >> > >> Submitted by: jhb > >> > >> Revision Changes Path > >> 1.122 +1 -0 src/sys/dev/ata/ata-all.h > >> 1.193 +20 -11 src/sys/dev/ata/ata-chipset.c > >> 1.144 +6 -4 src/sys/dev/ata/ata-dma.c > >> 1.79 +1 -0 src/sys/dev/ata/ata-lowlevel.c > >> 1.7 +1 -1 src/sys/dev/ata/ata_if.m > >> > > > > > > . > > > > > From owner-cvs-src@FreeBSD.ORG Sun Apr 8 14:56:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B026D16A405; Sun, 8 Apr 2007 14:56:16 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 898AB13C46E; Sun, 8 Apr 2007 14:56:16 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38EuGTE097382; Sun, 8 Apr 2007 14:56:16 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38EuGVJ097381; Sun, 8 Apr 2007 14:56:16 GMT (envelope-from kmacy) Message-Id: <200704081456.l38EuGVJ097381@repoman.freebsd.org> From: Kip Macy Date: Sun, 8 Apr 2007 14:56:16 +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/dev/cxgb/sys mvec.h uipc_mvec.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: Sun, 08 Apr 2007 14:56:16 -0000 kmacy 2007-04-08 14:56:16 UTC FreeBSD src repository Added files: sys/dev/cxgb/sys mvec.h uipc_mvec.c Log: Add driver private mbuf iovec support routines Revision Changes Path 1.1 +135 -0 src/sys/dev/cxgb/sys/mvec.h (new) 1.1 +228 -0 src/sys/dev/cxgb/sys/uipc_mvec.c (new) From owner-cvs-src@FreeBSD.ORG Sun Apr 8 15:04:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AE5916A400; Sun, 8 Apr 2007 15:04:19 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6402013C48A; Sun, 8 Apr 2007 15:04:19 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38F4J4R000253; Sun, 8 Apr 2007 15:04:19 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38F4JXq000252; Sun, 8 Apr 2007 15:04:19 GMT (envelope-from kmacy) Message-Id: <200704081504.l38F4JXq000252@repoman.freebsd.org> From: Kip Macy Date: Sun, 8 Apr 2007 15:04:19 +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/dev/cxgb cxgb_adapter.h cxgb_lro.c cxgb_osdep.h cxgb_sge.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: Sun, 08 Apr 2007 15:04:19 -0000 kmacy 2007-04-08 15:04:19 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_adapter.h cxgb_lro.c cxgb_osdep.h cxgb_sge.c Log: Convert driver RX path over to using mbuf iovec Revision Changes Path 1.8 +3 -3 src/sys/dev/cxgb/cxgb_adapter.h 1.2 +57 -66 src/sys/dev/cxgb/cxgb_lro.c 1.8 +0 -5 src/sys/dev/cxgb/cxgb_osdep.h 1.7 +47 -49 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 15:18:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CAA016A401; Sun, 8 Apr 2007 15:18:03 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5646E13C48A; Sun, 8 Apr 2007 15:18:03 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38FI3NK002088; Sun, 8 Apr 2007 15:18:03 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38FI3fJ002087; Sun, 8 Apr 2007 15:18:03 GMT (envelope-from kmacy) Message-Id: <200704081518.l38FI3fJ002087@repoman.freebsd.org> From: Kip Macy Date: Sun, 8 Apr 2007 15:18:03 +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/conf files src/sys/modules/cxgb Makefile 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: Sun, 08 Apr 2007 15:18:03 -0000 kmacy 2007-04-08 15:18:03 UTC FreeBSD src repository Modified files: sys/conf files sys/modules/cxgb Makefile Log: hook uipc_mvec.c into build Revision Changes Path 1.1192 +1 -0 src/sys/conf/files 1.5 +2 -1 src/sys/modules/cxgb/Makefile From owner-cvs-src@FreeBSD.ORG Sun Apr 8 15:31:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BEE616A406; Sun, 8 Apr 2007 15:31:40 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 15DB713C457; Sun, 8 Apr 2007 15:31:40 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38FVdX8004544; Sun, 8 Apr 2007 15:31:39 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38FVdpF004543; Sun, 8 Apr 2007 15:31:39 GMT (envelope-from sos) Message-Id: <200704081531.l38FVdpF004543@repoman.freebsd.org> From: Søren Schmidt Date: Sun, 8 Apr 2007 15:31:39 +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/dev/ata ata-dma.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: Sun, 08 Apr 2007 15:31:40 -0000 sos 2007-04-08 15:31:39 UTC FreeBSD src repository Modified files: sys/dev/ata ata-dma.c Log: Dont zero out 64BIT flag on DMA ops. Revision Changes Path 1.145 +3 -2 src/sys/dev/ata/ata-dma.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 15:55:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 860B016A403; Sun, 8 Apr 2007 15:55:48 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5FCB313C45A; Sun, 8 Apr 2007 15:55:48 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38Ftmng008438; Sun, 8 Apr 2007 15:55:48 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38FtmSM008437; Sun, 8 Apr 2007 15:55:48 GMT (envelope-from pjd) Message-Id: <200704081555.l38FtmSM008437@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 15:55:48 +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/contrib/opensolaris/uts/common/fs/zfs zfs_fm.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: Sun, 08 Apr 2007 15:55:48 -0000 pjd 2007-04-08 15:55:48 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_fm.c Log: - Use 'name=value' so it can be properly recognized by devd(8). - Use only subclass as devd's type. Revision Changes Path 1.2 +30 -32 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_fm.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 15:56:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E22DF16A402; Sun, 8 Apr 2007 15:56:49 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BC0B313C448; Sun, 8 Apr 2007 15:56:49 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38FunRB008501; Sun, 8 Apr 2007 15:56:49 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38Fundu008500; Sun, 8 Apr 2007 15:56:49 GMT (envelope-from pjd) Message-Id: <200704081556.l38Fundu008500@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 15:56:49 +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/etc devd.conf 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: Sun, 08 Apr 2007 15:56:50 -0000 pjd 2007-04-08 15:56:49 UTC FreeBSD src repository Modified files: etc devd.conf Log: Provide sample entries to handle ZFS problem reports. It'd be nice to send them via e-mail... Revision Changes Path 1.36 +31 -0 src/etc/devd.conf From owner-cvs-src@FreeBSD.ORG Sun Apr 8 15:59:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CC5C16A402; Sun, 8 Apr 2007 15:59:08 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EA79C13C458; Sun, 8 Apr 2007 15:59:07 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38Fx7kv010380; Sun, 8 Apr 2007 15:59:07 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38Fx7eC010376; Sun, 8 Apr 2007 15:59:07 GMT (envelope-from kmacy) Message-Id: <200704081559.l38Fx7eC010376@repoman.freebsd.org> From: Kip Macy Date: Sun, 8 Apr 2007 15:59:07 +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/dev/cxgb/sys mvec.h uipc_mvec.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: Sun, 08 Apr 2007 15:59:08 -0000 kmacy 2007-04-08 15:59:07 UTC FreeBSD src repository Modified files: sys/dev/cxgb/sys mvec.h uipc_mvec.c Log: add busdma function for mapping mbuf iovecs change m_collapse to return an error code Revision Changes Path 1.2 +19 -8 src/sys/dev/cxgb/sys/mvec.h 1.2 +102 -6 src/sys/dev/cxgb/sys/uipc_mvec.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 16:05:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BB9616A401; Sun, 8 Apr 2007 16:05:24 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 05DA113C46C; Sun, 8 Apr 2007 16:05:24 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38G5Nsg014331; Sun, 8 Apr 2007 16:05:23 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38G5NqN014330; Sun, 8 Apr 2007 16:05:23 GMT (envelope-from pjd) Message-Id: <200704081605.l38G5NqN014330@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 16:05:23 +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/etc devd.conf 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: Sun, 08 Apr 2007 16:05:24 -0000 pjd 2007-04-08 16:05:23 UTC FreeBSD src repository Modified files: etc devd.conf Log: There can be many reasons of VDEV failures, so log type as well. Revision Changes Path 1.37 +1 -1 src/etc/devd.conf From owner-cvs-src@FreeBSD.ORG Sun Apr 8 16:29:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 529F616A403; Sun, 8 Apr 2007 16:29:26 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 40BE113C487; Sun, 8 Apr 2007 16:29:26 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38GTQM1017970; Sun, 8 Apr 2007 16:29:26 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38GTQkL017969; Sun, 8 Apr 2007 16:29:26 GMT (envelope-from pjd) Message-Id: <200704081629.l38GTQkL017969@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 16:29:25 +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/compat/opensolaris/kern opensolaris_misc.c src/sys/compat/opensolaris/sys misc.h src/contrib/opensolaris/cmd/zpool zpool_main.c src/contrib/opensolaris/cmd/ztest ztest.c src/contrib/opensolaris/lib/libzfs/common libzfs.h libzfs_import.c libzfs_status.c libzfs_util.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: Sun, 08 Apr 2007 16:29:26 -0000 pjd 2007-04-08 16:29:25 UTC FreeBSD src repository Modified files: contrib/opensolaris/cmd/zpool zpool_main.c contrib/opensolaris/cmd/ztest ztest.c contrib/opensolaris/lib/libzfs/common libzfs.h libzfs_import.c libzfs_status.c libzfs_util.c contrib/opensolaris/lib/libzpool/common kernel.c contrib/opensolaris/lib/libzpool/common/sys zfs_context.h sys/contrib/opensolaris/uts/common/fs/zfs dmu_objset.c dsl_dataset.c dsl_dir.c spa.c spa_config.c sys/contrib/opensolaris/uts/common/fs/zfs/sys dsl_dir.h zfs_context.h sys/contrib/opensolaris/uts/common/sys/fs zfs.h sys/modules/zfs Makefile Added files: sys/compat/opensolaris/kern opensolaris_misc.c sys/compat/opensolaris/sys misc.h Log: MFp4: Synchronize with recent OpenSolaris changes. Revision Changes Path 1.2 +39 -4 src/contrib/opensolaris/cmd/zpool/zpool_main.c 1.2 +32 -14 src/contrib/opensolaris/cmd/ztest/ztest.c 1.2 +2 -0 src/contrib/opensolaris/lib/libzfs/common/libzfs.h 1.2 +32 -1 src/contrib/opensolaris/lib/libzfs/common/libzfs_import.c 1.2 +21 -7 src/contrib/opensolaris/lib/libzfs/common/libzfs_status.c 1.3 +7 -0 src/contrib/opensolaris/lib/libzfs/common/libzfs_util.c 1.2 +19 -0 src/contrib/opensolaris/lib/libzpool/common/kernel.c 1.2 +8 -0 src/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h 1.1 +55 -0 src/sys/compat/opensolaris/kern/opensolaris_misc.c (new) 1.1 +40 -0 src/sys/compat/opensolaris/sys/misc.h (new) 1.2 +12 -9 src/sys/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c 1.2 +33 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c 1.2 +24 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c 1.2 +24 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/spa.c 1.2 +7 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/spa_config.c 1.2 +2 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h 1.2 +1 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_context.h 1.2 +3 -0 src/sys/contrib/opensolaris/uts/common/sys/fs/zfs.h 1.3 +1 -0 src/sys/modules/zfs/Makefile From owner-cvs-src@FreeBSD.ORG Sun Apr 8 18:02:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B44B916A400; Sun, 8 Apr 2007 18:02:38 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8E20F13C468; Sun, 8 Apr 2007 18:02:38 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38I2cCV042971; Sun, 8 Apr 2007 18:02:38 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38I2csA042970; Sun, 8 Apr 2007 18:02:38 GMT (envelope-from kmacy) Message-Id: <200704081802.l38I2csA042970@repoman.freebsd.org> From: Kip Macy Date: Sun, 8 Apr 2007 18:02:38 +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/dev/cxgb cxgb_lro.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: Sun, 08 Apr 2007 18:02:38 -0000 kmacy 2007-04-08 18:02:38 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_lro.c Log: remove stale variable reference Revision Changes Path 1.3 +2 -2 src/sys/dev/cxgb/cxgb_lro.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 19:18:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 52ADB16A4CE; Sun, 8 Apr 2007 19:18:52 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2A5B513C44B; Sun, 8 Apr 2007 19:18:52 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38JIqtV002639; Sun, 8 Apr 2007 19:18:52 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38JIqT1002635; Sun, 8 Apr 2007 19:18:52 GMT (envelope-from sos) Message-Id: <200704081918.l38JIqT1002635@repoman.freebsd.org> From: Søren Schmidt Date: Sun, 8 Apr 2007 19:18:51 +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/dev/ata ata-all.h ata-chipset.c ata-dma.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: Sun, 08 Apr 2007 19:18:52 -0000 sos 2007-04-08 19:18:51 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.h ata-chipset.c ata-dma.c Log: Hopefully unbreak the 64bit DMA support this time. Revision Changes Path 1.123 +1 -1 src/sys/dev/ata/ata-all.h 1.196 +3 -4 src/sys/dev/ata/ata-chipset.c 1.146 +5 -6 src/sys/dev/ata/ata-dma.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 19:20:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A885816A401; Sun, 8 Apr 2007 19:20:49 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 82C9913C4C7; Sun, 8 Apr 2007 19:20:49 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38JKnnT004257; Sun, 8 Apr 2007 19:20:49 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38JKnVj004253; Sun, 8 Apr 2007 19:20:49 GMT (envelope-from alc) Message-Id: <200704081920.l38JKnVj004253@repoman.freebsd.org> From: Alan Cox Date: Sun, 8 Apr 2007 19:20: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/arm/arm pmap.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: Sun, 08 Apr 2007 19:20:49 -0000 alc 2007-04-08 19:20:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/arm/arm pmap.c Log: MFC revisions 1.52 and 1.53 Introduce the function pmap_enter_object(). Revision Changes Path 1.36.2.5 +46 -12 src/sys/arm/arm/pmap.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 21:18:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61E1816A403; Sun, 8 Apr 2007 21:18:16 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 52E4513C487; Sun, 8 Apr 2007 21:18:16 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38LIGta010026; Sun, 8 Apr 2007 21:18:16 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38LIGoZ010019; Sun, 8 Apr 2007 21:18:16 GMT (envelope-from sam) Message-Id: <200704082118.l38LIGoZ010019@repoman.freebsd.org> From: Sam Leffler Date: Sun, 8 Apr 2007 21:18:15 +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/tools/tools/net80211/wesside/wesside Makefile aircrack-ptw-lib.c aircrack-ptw-lib.h wesside.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: Sun, 08 Apr 2007 21:18:16 -0000 sam 2007-04-08 21:18:15 UTC FreeBSD src repository Modified files: tools/tools/net80211/wesside/wesside Makefile wesside.c Added files: tools/tools/net80211/wesside/wesside aircrack-ptw-lib.c aircrack-ptw-lib.h Log: Due to the recent "aircrack-ptw" WEP cracking discovery, I thought that it might be worth fixing a couple of bugs in wesside and making it use the new cracking technique. I think this enhancement makes the tool quite usable. It is possible to recover keys in only a couple of minutes. * Fix ACKs. Firmware will ACK data [just set the MAC addr correctly]. * Fix RX routines. Process all packets read(). * Use aircrack-ptw [built-in] rather than external aircrack. * Log data in pcap format so that it may be used by others [e.g. aircrack-ng]. Submitted by: Andrea Bittau Revision Changes Path 1.2 +1 -0 src/tools/tools/net80211/wesside/wesside/Makefile 1.1 +488 -0 src/tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c (new) 1.1 +83 -0 src/tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.h (new) 1.2 +337 -163 src/tools/tools/net80211/wesside/wesside/wesside.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 21:53:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D79816A401; Sun, 8 Apr 2007 21:53:52 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 77B7613C46E; Sun, 8 Apr 2007 21:53:52 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38LrqNc039458; Sun, 8 Apr 2007 21:53:52 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38LrqrP039457; Sun, 8 Apr 2007 21:53:52 GMT (envelope-from sos) Message-Id: <200704082153.l38LrqrP039457@repoman.freebsd.org> From: Søren Schmidt Date: Sun, 8 Apr 2007 21:53:52 +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/dev/ata ata-dma.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: Sun, 08 Apr 2007 21:53:52 -0000 sos 2007-04-08 21:53:52 UTC FreeBSD src repository Modified files: sys/dev/ata ata-dma.c Log: OK, this is not my day, fix the former fix :/ Revision Changes Path 1.147 +1 -2 src/sys/dev/ata/ata-dma.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 22:00:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C7D2616A407; Sun, 8 Apr 2007 22:00:06 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.freebsd.org (Postfix) with ESMTP id F021313C45D; Sun, 8 Apr 2007 22:00:05 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id B72922D4ACF; Sun, 8 Apr 2007 22:00:04 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id A821811424; Mon, 9 Apr 2007 00:00:04 +0200 (CEST) Date: Mon, 9 Apr 2007 00:00:04 +0200 From: "Simon L. Nielsen" To: =?iso-8859-1?Q?S=F8ren?= Schmidt Message-ID: <20070408220003.GI1024@zaphod.nitro.dk> References: <200704081918.l38JIqT1002635@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200704081918.l38JIqT1002635@repoman.freebsd.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.h ata-chipset.c ata-dma.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: Sun, 08 Apr 2007 22:00:07 -0000 On 2007.04.08 19:18:51 +0000, Søren Schmidt wrote: > sos 2007-04-08 19:18:51 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.h ata-chipset.c ata-dma.c > Log: > Hopefully unbreak the 64bit DMA support this time. Now things work a bit more than before. While I can now mount the root file system on sledge.FreeBSD.org (SMP amd64 with 8GB RAM) I get various write errors shortly after mounting root like: ad0: TIMEOUT - WRITE_DMA retrying (1 retry left) LBA=4415 ad0: TIMEOUT - WRITE_DMA retrying (0 retries left) LBA=4415 ad0: FAILURE - WRITE_DMA timed out LBA=4415 g_vfs_done():ad0s1a[WRITE(offset=2228224, length=2048)]error = 5 When booting on kernel from: "Fri Apr 6 14:23:30 UTC 2007" it works fine. When I bring sys/dev/ata back to '2007/04/06 14:00:00' it can boot normally again. Working config: [simon@sledge:~] ident /boot/kernel/kernel | grep ata $FreeBSD: src/sys/dev/ata/ata-all.c,v 1.279 2007/02/23 16:25:08 jhb Exp $ $FreeBSD: src/sys/dev/ata/ata-chipset.c,v 1.192 2007/03/12 15:34:08 sos Exp $ $FreeBSD: src/sys/dev/ata/ata-disk.c,v 1.201 2007/02/21 19:07:18 sos Exp $ $FreeBSD: src/sys/dev/ata/ata-dma.c,v 1.143 2007/02/21 19:07:18 sos Exp $ $FreeBSD: src/sys/dev/ata/ata-isa.c,v 1.31 2007/02/21 19:07:18 sos Exp $ $FreeBSD: src/sys/dev/ata/ata-lowlevel.c,v 1.78 2007/02/21 19:07:18 sos Exp $ $FreeBSD: src/sys/dev/ata/ata-pci.c,v 1.121 2007/02/23 12:18:33 piso Exp $ $FreeBSD: src/sys/dev/ata/ata-queue.c,v 1.69 2007/03/13 20:31:56 thomas Exp $ dmesg: Copyright (c) 1992-2007 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.0-CURRENT #951: Sun Apr 8 20:23:09 UTC 2007 simon@sledge.freebsd.org:/h/src/sys/amd64/compile/SLEDGE ACPI APIC Table: Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Opteron(tm) Processor 244 (1804.10-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0xf51 Stepping = 1 Features=0x78bfbff AMD Features=0xe0500800 usable memory = 8514306048 (8119 MB) avail memory = 8250753024 (7868 MB) FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ACPI: RSDP @ 0x0xf6cb0/0x0024 (v 2 PTLTD ) ACPI: XSDT @ 0x0xfbf7388b/0x003C (v 1 PTLTD XSDT 0x06040000 LTP 0x00000000) ACPI: FACP @ 0x0xfbf75d7e/0x00F4 (v 3 AMD HAMMER 0x06040000 PTEC 0x000F4240) ACPI: DSDT @ 0x0xfbf738c7/0x2443 (v 1 AMD-K8 AMDACPI 0x06040000 MSFT 0x0100000E) ACPI: FACS @ 0x0xfbf7ffc0/0x0040 ACPI: SRAT @ 0x0xfbf75e72/0x0118 (v 1 AMD HAMMER 0x06040000 AMD 0x00000001) ACPI: APIC @ 0x0xfbf75f8a/0x0076 (v 1 PTLTD APIC 0x06040000 LTP 0x00000000) MADT: Forcing active-low polarity and level trigger for SCI ioapic0 irqs 0-23 on motherboard ioapic1 irqs 24-27 on motherboard ioapic2 irqs 28-31 on motherboard acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: Sleep Button (fixed) unknown: I/O range not supported unknown: I/O range not supported acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, fbf00000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x8008-0x800b on acpi0 cpu0: on acpi0 cpu1: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff,0x8000-0x807f,0x8080-0x80ff iomem 0xd8000-0xdbfff on acpi0 pci0: on pcib0 pcib1: at device 6.0 on pci0 pci1: on pcib1 ohci0: mem 0xfc100000-0xfc100fff irq 19 at device 0.0 on pci1 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 3 ports with 3 removable, self powered ohci1: mem 0xfc101000-0xfc101fff irq 19 at device 0.1 on pci1 ohci1: [GIANT-LOCKED] ohci1: [ITHREAD] usb1: OHCI version 1.0, legacy support usb1: SMM does not respond, resetting usb1: on ohci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 3 ports with 3 removable, self powered vgapci0: port 0x2000-0x20ff mem 0xfd000000-0xfdffffff,0xfc102000-0xfc102fff irq 18 at device 6.0 on pci1 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1020-0x102f at device 7.1 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] pci0: at device 7.3 (no driver attached) pcib2: at device 10.0 on pci0 pci2: on pcib2 pci2:3:0: bad VPD cksum, remain 14 bge0: mem 0xfe000000-0xfe00ffff irq 27 at device 3.0 on pci2 miibus0: on bge0 brgphy0: PHY 1 on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto bge0: Ethernet address: 00:50:45:00:aa:a2 bge0: [ITHREAD] pci2:4:0: bad VPD cksum, remain 14 bge1: mem 0xfe010000-0xfe01ffff irq 27 at device 4.0 on pci2 miibus1: on bge1 brgphy1: PHY 1 on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000baseTX-FDX, auto bge1: Ethernet address: 00:50:45:00:aa:a3 bge1: [ITHREAD] pcib3: at device 11.0 on pci0 pci3: on pcib3 atkbdc0: port 0x60,0x64 irq 1 on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A, console sio0: [FILTER] orm0: at iomem 0xc0000-0xc7fff,0xc8000-0xc97ff,0xc9800-0xcafff,0xdc000-0xdffff on isa0 ppc0: cannot reserve I/O port range sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounters tick every 1.000 msec ad0: 38166MB at ata0-master UDMA100 SMP: AP CPU #1 Launched! Trying to mount root from ufs:/dev/ad0s1a Loading configuration files. kernel dumps on /dev/ad0s1b Entropy harvesting: interrupts ethernet point_to_point kickstart. swapon: adding /dev/ad0s1b as swap device Starting file system checks: /dev/ad0s1a: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1a: clean, 62047 free (831 frags, 7652 blocks, 0.7% fragmentation) /dev/ad0s1d: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1d: clean, 1597566 free (14894 frags, 197834 blocks, 0.7% fragmentation) /dev/ad0s1e: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1e: clean, 234781 free (421 frags, 29295 blocks, 0.2% fragmentation) /dev/ad0s1f: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1f: clean, 253807 free (31 frags, 31722 blocks, 0.0% fragmentation) /dev/ad0s1g: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s1g: clean, 1046697 free (400161 frags, 80817 blocks, 3.4% fragmentation) ad0: TIMEOUT - WRITE_DMA retrying (1 retry left) LBA=4415 ad0: TIMEOUT - WRITE_DMA retrying (0 retries left) LBA=4415 ad0: FAILURE - WRITE_DMA timed out LBA=4415 g_vfs_done():ad0s1a[WRITE(offset=2228224, length=2048)]error = 5 mount: : Input/output error Mounting root filesystem rw failed, startup aborted Boot interrupted Enter full pathname of shell or RETURN for /bin/sh: ad0: TIMEOUT - WRITE_DMA retrying (1 retry left) LBA=4415 ad0: TIMEOUT - WRITE_DMA retrying (0 retries left) LBA=4415 ad0: FAILURE - WRITE_DMA timed out LBA=4415 g_vfs_done():ad0s1a[WRITE(offset=2228224, length=2048)]error = 5 ad0: TIMEOUT - WRITE_DMA retrying (1 retry left) LBA=4415 ad0: TIMEOUT - WRITE_DMA retrying (0 retries left) LBA=4415 ad0: FAILURE - WRITE_DMA timed out LBA=4415 -- Simon L. Nielsen From owner-cvs-src@FreeBSD.ORG Sun Apr 8 22:08:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C60A16A401; Sun, 8 Apr 2007 22:08:04 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.freebsd.org (Postfix) with ESMTP id 1118113C448; Sun, 8 Apr 2007 22:08:04 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 55A172D4916; Sun, 8 Apr 2007 22:08:03 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 49E0511424; Mon, 9 Apr 2007 00:08:03 +0200 (CEST) Date: Mon, 9 Apr 2007 00:08:03 +0200 From: "Simon L. Nielsen" To: =?iso-8859-1?Q?S=F8ren?= Schmidt Message-ID: <20070408220802.GJ1024@zaphod.nitro.dk> References: <200704082153.l38LrqrP039457@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200704082153.l38LrqrP039457@repoman.freebsd.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-dma.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: Sun, 08 Apr 2007 22:08:04 -0000 On 2007.04.08 21:53:52 +0000, Søren Schmidt wrote: > sos 2007-04-08 21:53:52 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-dma.c > Log: > OK, this is not my day, fix the former fix :/ Now sledge can boot again - thanks :-). -- Simon L. Nielsen From owner-cvs-src@FreeBSD.ORG Sun Apr 8 22:45:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B6BB16A404; Sun, 8 Apr 2007 22:45:21 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 75A7613C46E; Sun, 8 Apr 2007 22:45:21 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38MjLfo080898; Sun, 8 Apr 2007 22:45:21 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38MjLOi080894; Sun, 8 Apr 2007 22:45:21 GMT (envelope-from delphij) Message-Id: <200704082245.l38MjLOi080894@repoman.freebsd.org> From: Xin LI Date: Sun, 8 Apr 2007 22:45:21 +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/sys param.h 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: Sun, 08 Apr 2007 22:45:21 -0000 delphij 2007-04-08 22:45:21 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSDversion for CAM sg addition. Requested by: bsam Revision Changes Path 1.291 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Sun Apr 8 22:56:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A0BE16A403; Sun, 8 Apr 2007 22:56:19 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 642B813C487; Sun, 8 Apr 2007 22:56:19 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38MuJHq090202; Sun, 8 Apr 2007 22:56:19 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38MuJeA090198; Sun, 8 Apr 2007 22:56:19 GMT (envelope-from kmacy) Message-Id: <200704082256.l38MuJeA090198@repoman.freebsd.org> From: Kip Macy Date: Sun, 8 Apr 2007 22:56:19 +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/dev/cxgb cxgb_lro.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: Sun, 08 Apr 2007 22:56:19 -0000 kmacy 2007-04-08 22:56:19 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_lro.c Log: Add missing paren Revision Changes Path 1.4 +4 -4 src/sys/dev/cxgb/cxgb_lro.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 23:54:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F06216A402; Sun, 8 Apr 2007 23:54:02 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 387AB13C489; Sun, 8 Apr 2007 23:54:02 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38Ns2PO037486; Sun, 8 Apr 2007 23:54:02 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38Ns1YC037480; Sun, 8 Apr 2007 23:54:01 GMT (envelope-from pjd) Message-Id: <200704082354.l38Ns1YC037480@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 23:54:01 +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/sys systm.h src/sys/kern vfs_mount.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: Sun, 08 Apr 2007 23:54:02 -0000 pjd 2007-04-08 23:54:01 UTC FreeBSD src repository Modified files: sys/sys systm.h sys/kern vfs_mount.c Log: Add root_mounted() function that returns true if the root file system is already mounted. Revision Changes Path 1.254 +14 -0 src/sys/kern/vfs_mount.c 1.255 +1 -0 src/sys/sys/systm.h From owner-cvs-src@FreeBSD.ORG Sun Apr 8 23:54:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F0F216A407; Sun, 8 Apr 2007 23:54:23 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5904113C45E; Sun, 8 Apr 2007 23:54:23 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38NsNaK037759; Sun, 8 Apr 2007 23:54:23 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38NsNVP037758; Sun, 8 Apr 2007 23:54:23 GMT (envelope-from pjd) Message-Id: <200704082354.l38NsNVP037758@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 23:54:23 +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/geom/eli g_eli.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: Sun, 08 Apr 2007 23:54:23 -0000 pjd 2007-04-08 23:54:23 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c Log: Use root_mounted(). Revision Changes Path 1.37 +1 -1 src/sys/geom/eli/g_eli.c From owner-cvs-src@FreeBSD.ORG Sun Apr 8 23:57:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75FE916A401; Sun, 8 Apr 2007 23:57:09 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4EEED13C46A; Sun, 8 Apr 2007 23:57:09 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38Nv97x039928; Sun, 8 Apr 2007 23:57:09 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38Nv9t5039924; Sun, 8 Apr 2007 23:57:09 GMT (envelope-from pjd) Message-Id: <200704082357.l38Nv9t5039924@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 23:57:09 +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/compat/opensolaris/kern opensolaris_kobj.c src/sys/compat/opensolaris/sys kobj.h 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: Sun, 08 Apr 2007 23:57:09 -0000 pjd 2007-04-08 23:57:08 UTC FreeBSD src repository Modified files: sys/compat/opensolaris/kern opensolaris_kobj.c sys/compat/opensolaris/sys kobj.h Log: Extend kobj compatibility KPI to support operating on files before and after the root file system is mounted. This is one of the changes that will allow to put root file system on ZFS. Revision Changes Path 1.2 +94 -16 src/sys/compat/opensolaris/kern/opensolaris_kobj.c 1.2 +10 -2 src/sys/compat/opensolaris/sys/kobj.h From owner-cvs-src@FreeBSD.ORG Sun Apr 8 23:59:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BAC116A403; Sun, 8 Apr 2007 23:59:40 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 14F7513C465; Sun, 8 Apr 2007 23:59:40 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l38NxdDK042036; Sun, 8 Apr 2007 23:59:39 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l38Nxdv8042032; Sun, 8 Apr 2007 23:59:39 GMT (envelope-from pjd) Message-Id: <200704082359.l38Nxdv8042032@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 8 Apr 2007 23:59:39 +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/etc/mtree BSD.root.dist src/sys/contrib/opensolaris/uts/common/sys/fs zfs.h 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: Sun, 08 Apr 2007 23:59:40 -0000 pjd 2007-04-08 23:59:39 UTC FreeBSD src repository Modified files: etc/mtree BSD.root.dist sys/contrib/opensolaris/uts/common/sys/fs zfs.h Log: Move zpool.cache from /etc/zfs/ to /boot/zfs/, so we can keep it on dedicated /boot/ file system and use ZFS for the root file system. Revision Changes Path 1.79 +2 -0 src/etc/mtree/BSD.root.dist 1.3 +1 -1 src/sys/contrib/opensolaris/uts/common/sys/fs/zfs.h From owner-cvs-src@FreeBSD.ORG Mon Apr 9 00:02:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6877416A400; Mon, 9 Apr 2007 00:02:13 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7C5D613C43E; Mon, 9 Apr 2007 00:02:12 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3902CKF044369; Mon, 9 Apr 2007 00:02:12 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3902CnX044366; Mon, 9 Apr 2007 00:02:12 GMT (envelope-from pjd) Message-Id: <200704090002.l3902CnX044366@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 00:02:11 +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/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.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: Mon, 09 Apr 2007 00:02:13 -0000 pjd 2007-04-09 00:02:11 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.c Log: Drop the Giant lock before calling zfs_domount(), which is held when mounting root file system. Revision Changes Path 1.2 +4 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 00:03:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D886316A403; Mon, 9 Apr 2007 00:03:48 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 61ECF13C46A; Mon, 9 Apr 2007 00:03:45 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3903j4J046722; Mon, 9 Apr 2007 00:03:45 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3903jsG046721; Mon, 9 Apr 2007 00:03:45 GMT (envelope-from pjd) Message-Id: <200704090003.l3903jsG046721@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 00:03:45 +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/contrib/opensolaris/uts/common/fs/zfs spa_config.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: Mon, 09 Apr 2007 00:03:49 -0000 pjd 2007-04-09 00:03:45 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs spa_config.c Log: We don't have to wait for the root file system to be mounted anymore, now that kobj KPI supports operating on files loaded by the loader. Revision Changes Path 1.3 +0 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/spa_config.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 00:04:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BDD9B16A404; Mon, 9 Apr 2007 00:04:54 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 969A213C465; Mon, 9 Apr 2007 00:04:54 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3904sTj047785; Mon, 9 Apr 2007 00:04:54 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3904s9O047779; Mon, 9 Apr 2007 00:04:54 GMT (envelope-from pjd) Message-Id: <200704090004.l3904s9O047779@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 00:04:54 +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/boot/forth loader.conf 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: Mon, 09 Apr 2007 00:04:54 -0000 pjd 2007-04-09 00:04:54 UTC FreeBSD src repository Modified files: sys/boot/forth loader.conf Log: Always try to load zpool.cache instead of trying to find good place to document it. When there is no such file, it's invisible for the user. Revision Changes Path 1.119 +7 -0 src/sys/boot/forth/loader.conf From owner-cvs-src@FreeBSD.ORG Mon Apr 9 00:07:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5143616A403; Mon, 9 Apr 2007 00:07:55 +0000 (UTC) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2866613C4DD; Mon, 9 Apr 2007 00:07:55 +0000 (UTC) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3907sKK050344; Mon, 9 Apr 2007 00:07:54 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3907sYK050343; Mon, 9 Apr 2007 00:07:54 GMT (envelope-from rik) Message-Id: <200704090007.l3907sYK050343@repoman.freebsd.org> From: Roman Kurakin Date: Mon, 9 Apr 2007 00:07:54 +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/share/man/man4 if_bridge.4 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: Mon, 09 Apr 2007 00:07:55 -0000 rik 2007-04-09 00:07:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 if_bridge.4 Log: MFC: -j 1.26 -j 1.28 Log: Add description how the filter works in case of multiple interfaces with the same MAC. PR: kern/109815 MFC after: 7 days Submitted by: Eygene Ryabinkin Glanced by: rik (all pointy hats are mine) Discussed with: julian@, rik@ Log: s/if_vlan/vlan/ Noted by: brueffer Revision Changes Path 1.5.2.15 +92 -3 src/share/man/man4/if_bridge.4 From owner-cvs-src@FreeBSD.ORG Mon Apr 9 01:05:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FD6016A400; Mon, 9 Apr 2007 01:05:32 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ED24D13C45A; Mon, 9 Apr 2007 01:05:31 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3915Vd2006804; Mon, 9 Apr 2007 01:05:31 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3915V8i006800; Mon, 9 Apr 2007 01:05:31 GMT (envelope-from pjd) Message-Id: <200704090105.l3915V8i006800@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 01:05:31 +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/compat/opensolaris/sys lock.h mutex.h rwlock.h 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: Mon, 09 Apr 2007 01:05:32 -0000 pjd 2007-04-09 01:05:31 UTC FreeBSD src repository Modified files: sys/compat/opensolaris/sys mutex.h rwlock.h Added files: sys/compat/opensolaris/sys lock.h Log: Instead of detecting if lock is already initialized based on standard 1 bit check, use more accurate 13 bits check. We had too many false-positives with the standard check. Reported by: mlaier Revision Changes Path 1.1 +46 -0 src/sys/compat/opensolaris/sys/lock.h (new) 1.2 +4 -1 src/sys/compat/opensolaris/sys/mutex.h 1.2 +7 -3 src/sys/compat/opensolaris/sys/rwlock.h From owner-cvs-src@FreeBSD.ORG Mon Apr 9 01:39:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1393316A400; Mon, 9 Apr 2007 01:39:03 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0303113C448; Mon, 9 Apr 2007 01:39:03 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l391d27O030944; Mon, 9 Apr 2007 01:39:02 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l391d23U030943; Mon, 9 Apr 2007 01:39:02 GMT (envelope-from gshapiro) Message-Id: <200704090139.l391d23U030943@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Apr 2007 01:39:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: SENDMAIL Cc: Subject: cvs commit: src/contrib/sendmail - Imported sources 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: Mon, 09 Apr 2007 01:39:03 -0000 gshapiro 2007-04-09 01:39:02 UTC FreeBSD src repository src/contrib/sendmail - Imported sources Update of /home/ncvs/src/contrib/sendmail In directory repoman.freebsd.org:/tmp/cvs-serv30924 Log Message: Import sendmail 8.14.1 Status: Vendor Tag: SENDMAIL Release Tags: v8_14_1 U src/contrib/sendmail/KNOWNBUGS U src/contrib/sendmail/CACerts U src/contrib/sendmail/FAQ U src/contrib/sendmail/INSTALL U src/contrib/sendmail/Makefile U src/contrib/sendmail/LICENSE U src/contrib/sendmail/RELEASE_NOTES U src/contrib/sendmail/PGPKEYS U src/contrib/sendmail/README U src/contrib/sendmail/cf/sendmail.schema U src/contrib/sendmail/cf/README U src/contrib/sendmail/cf/cf/Makefile U src/contrib/sendmail/cf/cf/chez.cs.mc U src/contrib/sendmail/cf/cf/README U src/contrib/sendmail/cf/cf/clientproto.mc U src/contrib/sendmail/cf/cf/cs-hpux10.mc U src/contrib/sendmail/cf/cf/cs-hpux9.mc U src/contrib/sendmail/cf/cf/cs-osf1.mc U src/contrib/sendmail/cf/cf/cs-solaris2.mc U src/contrib/sendmail/cf/cf/cs-sunos4.1.mc U src/contrib/sendmail/cf/cf/cs-ultrix4.mc U src/contrib/sendmail/cf/cf/cyrusproto.mc U src/contrib/sendmail/cf/cf/generic-bsd4.4.mc U src/contrib/sendmail/cf/cf/generic-hpux10.mc U src/contrib/sendmail/cf/cf/generic-hpux9.mc U src/contrib/sendmail/cf/cf/generic-linux.mc U src/contrib/sendmail/cf/cf/generic-mpeix.mc U src/contrib/sendmail/cf/cf/generic-nextstep3.3.mc U src/contrib/sendmail/cf/cf/generic-osf1.mc U src/contrib/sendmail/cf/cf/generic-solaris.mc U src/contrib/sendmail/cf/cf/generic-sunos4.1.mc U src/contrib/sendmail/cf/cf/generic-ultrix4.mc U src/contrib/sendmail/cf/cf/huginn.cs.mc U src/contrib/sendmail/cf/cf/knecht.mc U src/contrib/sendmail/cf/cf/mail.cs.mc U src/contrib/sendmail/cf/cf/mail.eecs.mc U src/contrib/sendmail/cf/cf/mailspool.cs.mc U src/contrib/sendmail/cf/cf/python.cs.mc U src/contrib/sendmail/cf/cf/s2k-osf1.mc U src/contrib/sendmail/cf/cf/s2k-ultrix4.mc U src/contrib/sendmail/cf/cf/submit.cf U src/contrib/sendmail/cf/cf/submit.mc U src/contrib/sendmail/cf/cf/tcpproto.mc U src/contrib/sendmail/cf/cf/ucbarpa.mc U src/contrib/sendmail/cf/cf/ucbvax.mc U src/contrib/sendmail/cf/cf/uucpproto.mc U src/contrib/sendmail/cf/cf/vangogh.cs.mc U src/contrib/sendmail/cf/domain/CS.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/EECS.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/S2K.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/berkeley-only.m4 U src/contrib/sendmail/cf/domain/generic.m4 U src/contrib/sendmail/cf/feature/bestmx_is_local.m4 U src/contrib/sendmail/cf/feature/authinfo.m4 U src/contrib/sendmail/cf/feature/accept_unqualified_senders.m4 U src/contrib/sendmail/cf/feature/accept_unresolvable_domains.m4 U src/contrib/sendmail/cf/feature/access_db.m4 U src/contrib/sendmail/cf/feature/allmasquerade.m4 U src/contrib/sendmail/cf/feature/always_add_domain.m4 N src/contrib/sendmail/cf/feature/badmx.m4 U src/contrib/sendmail/cf/feature/blacklist_recipients.m4 U src/contrib/sendmail/cf/feature/bitdomain.m4 U src/contrib/sendmail/cf/feature/generics_entire_domain.m4 N src/contrib/sendmail/cf/feature/block_bad_helo.m4 U src/contrib/sendmail/cf/feature/compat_check.m4 U src/contrib/sendmail/cf/feature/conncontrol.m4 U src/contrib/sendmail/cf/feature/delay_checks.m4 U src/contrib/sendmail/cf/feature/dnsbl.m4 U src/contrib/sendmail/cf/feature/domaintable.m4 U src/contrib/sendmail/cf/feature/enhdnsbl.m4 U src/contrib/sendmail/cf/feature/limited_masquerade.m4 U src/contrib/sendmail/cf/feature/genericstable.m4 U src/contrib/sendmail/cf/feature/greet_pause.m4 U src/contrib/sendmail/cf/feature/ldap_routing.m4 U src/contrib/sendmail/cf/feature/local_no_masquerade.m4 U src/contrib/sendmail/cf/feature/local_lmtp.m4 U src/contrib/sendmail/cf/feature/loose_relay_check.m4 U src/contrib/sendmail/cf/feature/local_procmail.m4 U src/contrib/sendmail/cf/feature/lookupdotdomain.m4 U src/contrib/sendmail/cf/feature/masquerade_envelope.m4 U src/contrib/sendmail/cf/feature/mailertable.m4 U src/contrib/sendmail/cf/feature/mtamark.m4 U src/contrib/sendmail/cf/feature/msp.m4 U src/contrib/sendmail/cf/feature/masquerade_entire_domain.m4 U src/contrib/sendmail/cf/feature/nouucp.m4 U src/contrib/sendmail/cf/feature/preserve_luser_host.m4 U src/contrib/sendmail/cf/feature/no_default_msa.m4 U src/contrib/sendmail/cf/feature/nocanonify.m4 U src/contrib/sendmail/cf/feature/notsticky.m4 U src/contrib/sendmail/cf/feature/nullclient.m4 U src/contrib/sendmail/cf/feature/relay_hosts_only.m4 U src/contrib/sendmail/cf/feature/redirect.m4 U src/contrib/sendmail/cf/feature/preserve_local_plus_detail.m4 U src/contrib/sendmail/cf/feature/promiscuous_relay.m4 U src/contrib/sendmail/cf/feature/queuegroup.m4 U src/contrib/sendmail/cf/feature/ratecontrol.m4 U src/contrib/sendmail/cf/feature/virtusertable.m4 U src/contrib/sendmail/cf/feature/relay_based_on_MX.m4 U src/contrib/sendmail/cf/feature/relay_entire_domain.m4 U src/contrib/sendmail/cf/feature/relay_local_from.m4 U src/contrib/sendmail/cf/feature/relay_mail_from.m4 N src/contrib/sendmail/cf/feature/require_rdns.m4 U src/contrib/sendmail/cf/feature/smrsh.m4 U src/contrib/sendmail/cf/feature/stickyhost.m4 U src/contrib/sendmail/cf/feature/use_client_ptr.m4 U src/contrib/sendmail/cf/feature/use_ct_file.m4 U src/contrib/sendmail/cf/feature/use_cw_file.m4 U src/contrib/sendmail/cf/feature/uucpdomain.m4 U src/contrib/sendmail/cf/feature/virtuser_entire_domain.m4 U src/contrib/sendmail/cf/hack/cssubdomain.m4 U src/contrib/sendmail/cf/m4/cfhead.m4 U src/contrib/sendmail/cf/m4/cf.m4 U src/contrib/sendmail/cf/m4/proto.m4 U src/contrib/sendmail/cf/m4/version.m4 U src/contrib/sendmail/cf/mailer/cyrus.m4 U src/contrib/sendmail/cf/mailer/cyrusv2.m4 U src/contrib/sendmail/cf/mailer/fax.m4 U src/contrib/sendmail/cf/mailer/local.m4 U src/contrib/sendmail/cf/mailer/mail11.m4 U src/contrib/sendmail/cf/mailer/phquery.m4 U src/contrib/sendmail/cf/mailer/pop.m4 U src/contrib/sendmail/cf/mailer/procmail.m4 U src/contrib/sendmail/cf/mailer/qpage.m4 U src/contrib/sendmail/cf/mailer/smtp.m4 U src/contrib/sendmail/cf/mailer/usenet.m4 U src/contrib/sendmail/cf/mailer/uucp.m4 U src/contrib/sendmail/cf/ostype/altos.m4 U src/contrib/sendmail/cf/ostype/a-ux.m4 U src/contrib/sendmail/cf/ostype/aix3.m4 U src/contrib/sendmail/cf/ostype/aix4.m4 U src/contrib/sendmail/cf/ostype/aix5.m4 U src/contrib/sendmail/cf/ostype/riscos4.5.m4 U src/contrib/sendmail/cf/ostype/amdahl-uts.m4 U src/contrib/sendmail/cf/ostype/bsd4.3.m4 U src/contrib/sendmail/cf/ostype/bsd4.4.m4 U src/contrib/sendmail/cf/ostype/bsdi.m4 U src/contrib/sendmail/cf/ostype/bsdi1.0.m4 U src/contrib/sendmail/cf/ostype/bsdi2.0.m4 U src/contrib/sendmail/cf/ostype/darwin.m4 U src/contrib/sendmail/cf/ostype/dgux.m4 U src/contrib/sendmail/cf/ostype/domainos.m4 U src/contrib/sendmail/cf/ostype/dragonfly.m4 U src/contrib/sendmail/cf/ostype/dynix3.2.m4 U src/contrib/sendmail/cf/ostype/freebsd4.m4 U src/contrib/sendmail/cf/ostype/freebsd5.m4 U src/contrib/sendmail/cf/ostype/freebsd6.m4 U src/contrib/sendmail/cf/ostype/gnu.m4 U src/contrib/sendmail/cf/ostype/hpux10.m4 U src/contrib/sendmail/cf/ostype/hpux11.m4 U src/contrib/sendmail/cf/ostype/hpux9.m4 U src/contrib/sendmail/cf/ostype/irix4.m4 U src/contrib/sendmail/cf/ostype/irix5.m4 U src/contrib/sendmail/cf/ostype/irix6.m4 U src/contrib/sendmail/cf/ostype/isc4.1.m4 U src/contrib/sendmail/cf/ostype/linux.m4 U src/contrib/sendmail/cf/ostype/maxion.m4 U src/contrib/sendmail/cf/ostype/mklinux.m4 U src/contrib/sendmail/cf/ostype/mpeix.m4 U src/contrib/sendmail/cf/ostype/nextstep.m4 U src/contrib/sendmail/cf/ostype/openbsd.m4 U src/contrib/sendmail/cf/ostype/osf1.m4 U src/contrib/sendmail/cf/ostype/powerux.m4 U src/contrib/sendmail/cf/ostype/ptx2.m4 U src/contrib/sendmail/cf/ostype/qnx.m4 U src/contrib/sendmail/cf/ostype/solaris2.pre5.m4 U src/contrib/sendmail/cf/ostype/sco-uw-2.1.m4 U src/contrib/sendmail/cf/ostype/sco3.2.m4 U src/contrib/sendmail/cf/ostype/sinix.m4 U src/contrib/sendmail/cf/ostype/solaris2.m4 U src/contrib/sendmail/cf/ostype/solaris2.ml.m4 U src/contrib/sendmail/cf/ostype/unixware7.m4 U src/contrib/sendmail/cf/ostype/solaris8.m4 U src/contrib/sendmail/cf/ostype/sunos3.5.m4 U src/contrib/sendmail/cf/ostype/sunos4.1.m4 U src/contrib/sendmail/cf/ostype/svr4.m4 U src/contrib/sendmail/cf/ostype/ultrix4.m4 U src/contrib/sendmail/cf/ostype/unicos.m4 U src/contrib/sendmail/cf/ostype/unicosmk.m4 U src/contrib/sendmail/cf/ostype/unicosmp.m4 U src/contrib/sendmail/cf/ostype/unknown.m4 U src/contrib/sendmail/cf/ostype/uxpds.m4 U src/contrib/sendmail/cf/sh/makeinfo.sh U src/contrib/sendmail/cf/siteconfig/uucp.old.arpa.m4 U src/contrib/sendmail/cf/siteconfig/uucp.cogsci.m4 U src/contrib/sendmail/cf/siteconfig/uucp.ucbarpa.m4 U src/contrib/sendmail/cf/siteconfig/uucp.ucbvax.m4 U src/contrib/sendmail/contrib/bitdomain.c U src/contrib/sendmail/contrib/README U src/contrib/sendmail/contrib/re-mqueue.pl U src/contrib/sendmail/contrib/bounce-resender.pl U src/contrib/sendmail/contrib/bsdi.mc U src/contrib/sendmail/contrib/buildvirtuser U src/contrib/sendmail/contrib/cidrexpand U src/contrib/sendmail/contrib/dnsblaccess.m4 U src/contrib/sendmail/contrib/domainmap.m4 U src/contrib/sendmail/contrib/doublebounce.pl U src/contrib/sendmail/contrib/etrn.0 U src/contrib/sendmail/contrib/etrn.pl U src/contrib/sendmail/contrib/expn.pl U src/contrib/sendmail/contrib/link_hash.sh U src/contrib/sendmail/contrib/mail.local.linux U src/contrib/sendmail/contrib/mailprio U src/contrib/sendmail/contrib/mh.patch U src/contrib/sendmail/contrib/mmuegel U src/contrib/sendmail/contrib/movemail.conf U src/contrib/sendmail/contrib/movemail.pl U src/contrib/sendmail/contrib/passwd-to-alias.pl U src/contrib/sendmail/contrib/qtool.8 U src/contrib/sendmail/contrib/qtool.pl U src/contrib/sendmail/contrib/rmail.oldsys.patch U src/contrib/sendmail/contrib/smcontrol.pl U src/contrib/sendmail/contrib/socketmapClient.pl U src/contrib/sendmail/contrib/socketmapServer.pl U src/contrib/sendmail/src/Makefile U src/contrib/sendmail/src/Makefile.m4 U src/contrib/sendmail/src/README U src/contrib/sendmail/src/SECURITY U src/contrib/sendmail/src/TRACEFLAGS U src/contrib/sendmail/src/TUNING U src/contrib/sendmail/src/alias.c U src/contrib/sendmail/src/aliases U src/contrib/sendmail/src/aliases.5 U src/contrib/sendmail/src/arpadate.c U src/contrib/sendmail/src/bf.c U src/contrib/sendmail/src/bf.h U src/contrib/sendmail/src/collect.c C src/contrib/sendmail/src/conf.c C src/contrib/sendmail/src/conf.h U src/contrib/sendmail/src/control.c U src/contrib/sendmail/src/convtime.c U src/contrib/sendmail/src/daemon.c N src/contrib/sendmail/src/daemon.h U src/contrib/sendmail/src/deliver.c U src/contrib/sendmail/src/domain.c U src/contrib/sendmail/src/envelope.c C src/contrib/sendmail/src/err.c C src/contrib/sendmail/src/headers.c U src/contrib/sendmail/src/helpfile U src/contrib/sendmail/src/macro.c C src/contrib/sendmail/src/mailq.1 U src/contrib/sendmail/src/main.c U src/contrib/sendmail/src/milter.c U src/contrib/sendmail/src/map.c N src/contrib/sendmail/src/map.h C src/contrib/sendmail/src/mci.c U src/contrib/sendmail/src/mime.c U src/contrib/sendmail/src/newaliases.1 U src/contrib/sendmail/src/parseaddr.c U src/contrib/sendmail/src/queue.c U src/contrib/sendmail/src/ratectrl.c U src/contrib/sendmail/src/readcf.c U src/contrib/sendmail/src/recipient.c U src/contrib/sendmail/src/sasl.c C src/contrib/sendmail/src/savemail.c U src/contrib/sendmail/src/sendmail.8 U src/contrib/sendmail/src/sendmail.h U src/contrib/sendmail/src/sfsasl.c U src/contrib/sendmail/src/sfsasl.h U src/contrib/sendmail/src/shmticklib.c U src/contrib/sendmail/src/sm_resolve.c U src/contrib/sendmail/src/sm_resolve.h U src/contrib/sendmail/src/srvrsmtp.c U src/contrib/sendmail/src/stab.c U src/contrib/sendmail/src/stats.c U src/contrib/sendmail/src/sysexits.c U src/contrib/sendmail/src/statusd_shm.h U src/contrib/sendmail/src/timers.c U src/contrib/sendmail/src/timers.h U src/contrib/sendmail/src/tls.c U src/contrib/sendmail/src/trace.c U src/contrib/sendmail/src/udb.c U src/contrib/sendmail/src/usersmtp.c U src/contrib/sendmail/src/util.c U src/contrib/sendmail/src/version.c U src/contrib/sendmail/doc/op/Makefile U src/contrib/sendmail/doc/op/README U src/contrib/sendmail/doc/op/op.me U src/contrib/sendmail/editmap/Makefile U src/contrib/sendmail/editmap/Makefile.m4 U src/contrib/sendmail/editmap/editmap.8 U src/contrib/sendmail/editmap/editmap.c U src/contrib/sendmail/include/libmilter/milter.h U src/contrib/sendmail/include/libmilter/mfapi.h U src/contrib/sendmail/include/libmilter/mfdef.h U src/contrib/sendmail/include/libsmdb/smdb.h U src/contrib/sendmail/include/sendmail/mailstats.h U src/contrib/sendmail/include/sendmail/pathnames.h U src/contrib/sendmail/include/sendmail/sendmail.h U src/contrib/sendmail/include/sm/assert.h U src/contrib/sendmail/include/sm/bdb.h U src/contrib/sendmail/include/sm/bitops.h U src/contrib/sendmail/include/sm/cdefs.h U src/contrib/sendmail/include/sm/cf.h U src/contrib/sendmail/include/sm/clock.h U src/contrib/sendmail/include/sm/conf.h U src/contrib/sendmail/include/sm/config.h U src/contrib/sendmail/include/sm/debug.h U src/contrib/sendmail/include/sm/errstring.h U src/contrib/sendmail/include/sm/exc.h U src/contrib/sendmail/include/sm/fdset.h U src/contrib/sendmail/include/sm/gen.h U src/contrib/sendmail/include/sm/heap.h U src/contrib/sendmail/include/sm/io.h U src/contrib/sendmail/include/sm/ldap.h U src/contrib/sendmail/include/sm/limits.h U src/contrib/sendmail/include/sm/mbdb.h N src/contrib/sendmail/include/sm/misc.h U src/contrib/sendmail/include/sm/path.h U src/contrib/sendmail/include/sm/rpool.h U src/contrib/sendmail/include/sm/sem.h N src/contrib/sendmail/include/sm/sendmail.h U src/contrib/sendmail/include/sm/setjmp.h U src/contrib/sendmail/include/sm/shm.h U src/contrib/sendmail/include/sm/signal.h U src/contrib/sendmail/include/sm/string.h U src/contrib/sendmail/include/sm/sysexits.h N src/contrib/sendmail/include/sm/tailq.h U src/contrib/sendmail/include/sm/test.h U src/contrib/sendmail/include/sm/time.h U src/contrib/sendmail/include/sm/types.h U src/contrib/sendmail/include/sm/varargs.h U src/contrib/sendmail/include/sm/xtrap.h U src/contrib/sendmail/include/sm/os/sm_os_dragonfly.h U src/contrib/sendmail/include/sm/os/sm_os_aix.h U src/contrib/sendmail/include/sm/os/sm_os_openunix.h U src/contrib/sendmail/include/sm/os/sm_os_freebsd.h U src/contrib/sendmail/include/sm/os/sm_os_hp.h U src/contrib/sendmail/include/sm/os/sm_os_irix.h U src/contrib/sendmail/include/sm/os/sm_os_linux.h U src/contrib/sendmail/include/sm/os/sm_os_mpeix.h U src/contrib/sendmail/include/sm/os/sm_os_next.h U src/contrib/sendmail/include/sm/os/sm_os_openbsd.h U src/contrib/sendmail/include/sm/os/sm_os_unicosmk.h U src/contrib/sendmail/include/sm/os/sm_os_osf1.h N src/contrib/sendmail/include/sm/os/sm_os_qnx.h U src/contrib/sendmail/include/sm/os/sm_os_sunos.h U src/contrib/sendmail/include/sm/os/sm_os_ultrix.h U src/contrib/sendmail/include/sm/os/sm_os_unicos.h U src/contrib/sendmail/include/sm/os/sm_os_unicosmp.h U src/contrib/sendmail/include/sm/os/sm_os_unixware.h U src/contrib/sendmail/libmilter/Makefile U src/contrib/sendmail/libmilter/sm_gethost.c U src/contrib/sendmail/libmilter/Makefile.m4 U src/contrib/sendmail/libmilter/README U src/contrib/sendmail/libmilter/comm.c U src/contrib/sendmail/libmilter/engine.c N src/contrib/sendmail/libmilter/example.c U src/contrib/sendmail/libmilter/handler.c U src/contrib/sendmail/libmilter/libmilter.h U src/contrib/sendmail/libmilter/listener.c U src/contrib/sendmail/libmilter/main.c N src/contrib/sendmail/libmilter/monitor.c U src/contrib/sendmail/libmilter/signal.c N src/contrib/sendmail/libmilter/worker.c U src/contrib/sendmail/libmilter/smfi.c U src/contrib/sendmail/libmilter/docs/installation.html U src/contrib/sendmail/libmilter/docs/api.html U src/contrib/sendmail/libmilter/docs/design.html U src/contrib/sendmail/libmilter/docs/figure1.fig U src/contrib/sendmail/libmilter/docs/figure1.jpg U src/contrib/sendmail/libmilter/docs/figure1.ps U src/contrib/sendmail/libmilter/docs/figure2.fig U src/contrib/sendmail/libmilter/docs/figure2.jpg U src/contrib/sendmail/libmilter/docs/figure2.ps U src/contrib/sendmail/libmilter/docs/index.html U src/contrib/sendmail/libmilter/docs/overview.html U src/contrib/sendmail/libmilter/docs/other.html U src/contrib/sendmail/libmilter/docs/smfi_addheader.html U src/contrib/sendmail/libmilter/docs/sample.html N src/contrib/sendmail/libmilter/docs/smfi_addrcpt_par.html U src/contrib/sendmail/libmilter/docs/smfi_addrcpt.html U src/contrib/sendmail/libmilter/docs/smfi_opensocket.html N src/contrib/sendmail/libmilter/docs/smfi_chgfrom.html U src/contrib/sendmail/libmilter/docs/smfi_chgheader.html U src/contrib/sendmail/libmilter/docs/smfi_delrcpt.html U src/contrib/sendmail/libmilter/docs/smfi_getpriv.html U src/contrib/sendmail/libmilter/docs/smfi_getsymval.html U src/contrib/sendmail/libmilter/docs/smfi_insheader.html U src/contrib/sendmail/libmilter/docs/smfi_main.html U src/contrib/sendmail/libmilter/docs/smfi_quarantine.html U src/contrib/sendmail/libmilter/docs/smfi_progress.html U src/contrib/sendmail/libmilter/docs/smfi_replacebody.html U src/contrib/sendmail/libmilter/docs/smfi_register.html U src/contrib/sendmail/libmilter/docs/smfi_setbacklog.html U src/contrib/sendmail/libmilter/docs/smfi_setconn.html U src/contrib/sendmail/libmilter/docs/smfi_setdbg.html U src/contrib/sendmail/libmilter/docs/smfi_setmlreply.html U src/contrib/sendmail/libmilter/docs/smfi_setpriv.html U src/contrib/sendmail/libmilter/docs/smfi_setreply.html N src/contrib/sendmail/libmilter/docs/smfi_setsymlist.html U src/contrib/sendmail/libmilter/docs/smfi_settimeout.html U src/contrib/sendmail/libmilter/docs/smfi_stop.html N src/contrib/sendmail/libmilter/docs/smfi_version.html U src/contrib/sendmail/libmilter/docs/xxfi_abort.html U src/contrib/sendmail/libmilter/docs/xxfi_body.html U src/contrib/sendmail/libmilter/docs/xxfi_close.html U src/contrib/sendmail/libmilter/docs/xxfi_connect.html N src/contrib/sendmail/libmilter/docs/xxfi_data.html U src/contrib/sendmail/libmilter/docs/xxfi_envfrom.html U src/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html U src/contrib/sendmail/libmilter/docs/xxfi_eoh.html U src/contrib/sendmail/libmilter/docs/xxfi_eom.html U src/contrib/sendmail/libmilter/docs/xxfi_header.html U src/contrib/sendmail/libmilter/docs/xxfi_helo.html N src/contrib/sendmail/libmilter/docs/xxfi_negotiate.html N src/contrib/sendmail/libmilter/docs/xxfi_unknown.html U src/contrib/sendmail/libsm/Makefile U src/contrib/sendmail/libsm/fprintf.c U src/contrib/sendmail/libsm/Makefile.m4 U src/contrib/sendmail/libsm/README U src/contrib/sendmail/libsm/assert.c U src/contrib/sendmail/libsm/assert.html U src/contrib/sendmail/libsm/b-strcmp.c U src/contrib/sendmail/libsm/b-strl.c U src/contrib/sendmail/libsm/cdefs.html U src/contrib/sendmail/libsm/cf.c U src/contrib/sendmail/libsm/clock.c U src/contrib/sendmail/libsm/clrerr.c U src/contrib/sendmail/libsm/config.c U src/contrib/sendmail/libsm/debug.c U src/contrib/sendmail/libsm/debug.html U src/contrib/sendmail/libsm/errstring.c U src/contrib/sendmail/libsm/exc.c U src/contrib/sendmail/libsm/exc.html U src/contrib/sendmail/libsm/fclose.c U src/contrib/sendmail/libsm/feof.c U src/contrib/sendmail/libsm/ferror.c U src/contrib/sendmail/libsm/fflush.c U src/contrib/sendmail/libsm/fget.c U src/contrib/sendmail/libsm/findfp.c U src/contrib/sendmail/libsm/flags.c U src/contrib/sendmail/libsm/fopen.c U src/contrib/sendmail/libsm/fpos.c U src/contrib/sendmail/libsm/strcasecmp.c U src/contrib/sendmail/libsm/fpurge.c U src/contrib/sendmail/libsm/fput.c U src/contrib/sendmail/libsm/fread.c U src/contrib/sendmail/libsm/fscanf.c U src/contrib/sendmail/libsm/fseek.c U src/contrib/sendmail/libsm/fvwrite.c U src/contrib/sendmail/libsm/fvwrite.h U src/contrib/sendmail/libsm/fwalk.c U src/contrib/sendmail/libsm/fwrite.c U src/contrib/sendmail/libsm/gen.html U src/contrib/sendmail/libsm/get.c U src/contrib/sendmail/libsm/glue.h U src/contrib/sendmail/libsm/heap.c U src/contrib/sendmail/libsm/heap.html U src/contrib/sendmail/libsm/index.html U src/contrib/sendmail/libsm/io.html U src/contrib/sendmail/libsm/ldap.c U src/contrib/sendmail/libsm/local.h U src/contrib/sendmail/libsm/makebuf.c U src/contrib/sendmail/libsm/match.c U src/contrib/sendmail/libsm/mbdb.c U src/contrib/sendmail/libsm/memstat.c U src/contrib/sendmail/libsm/mpeix.c U src/contrib/sendmail/libsm/niprop.c U src/contrib/sendmail/libsm/path.c U src/contrib/sendmail/libsm/put.c U src/contrib/sendmail/libsm/refill.c U src/contrib/sendmail/libsm/rewind.c U src/contrib/sendmail/libsm/rpool.c U src/contrib/sendmail/libsm/rpool.html U src/contrib/sendmail/libsm/sem.c U src/contrib/sendmail/libsm/setvbuf.c U src/contrib/sendmail/libsm/shm.c U src/contrib/sendmail/libsm/signal.c U src/contrib/sendmail/libsm/smstdio.c U src/contrib/sendmail/libsm/snprintf.c U src/contrib/sendmail/libsm/sscanf.c U src/contrib/sendmail/libsm/stdio.c U src/contrib/sendmail/libsm/t-strrevcmp.c U src/contrib/sendmail/libsm/strdup.c U src/contrib/sendmail/libsm/strerror.c U src/contrib/sendmail/libsm/strexit.c U src/contrib/sendmail/libsm/string.c U src/contrib/sendmail/libsm/stringf.c U src/contrib/sendmail/libsm/strio.c U src/contrib/sendmail/libsm/strl.c U src/contrib/sendmail/libsm/strrevcmp.c U src/contrib/sendmail/libsm/strto.c U src/contrib/sendmail/libsm/syslogio.c U src/contrib/sendmail/libsm/t-cf.c U src/contrib/sendmail/libsm/t-event.c U src/contrib/sendmail/libsm/t-exc.c U src/contrib/sendmail/libsm/t-float.c U src/contrib/sendmail/libsm/t-fopen.c U src/contrib/sendmail/libsm/t-heap.c U src/contrib/sendmail/libsm/t-match.c U src/contrib/sendmail/libsm/t-memstat.c U src/contrib/sendmail/libsm/t-path.c N src/contrib/sendmail/libsm/t-qic.c U src/contrib/sendmail/libsm/t-rpool.c U src/contrib/sendmail/libsm/t-scanf.c U src/contrib/sendmail/libsm/t-sem.c U src/contrib/sendmail/libsm/t-shm.c U src/contrib/sendmail/libsm/t-smstdio.c U src/contrib/sendmail/libsm/t-string.c U src/contrib/sendmail/libsm/t-strio.c U src/contrib/sendmail/libsm/t-strl.c U src/contrib/sendmail/libsm/t-types.c U src/contrib/sendmail/libsm/test.c U src/contrib/sendmail/libsm/ungetc.c N src/contrib/sendmail/libsm/util.c U src/contrib/sendmail/libsm/vasprintf.c U src/contrib/sendmail/libsm/vfprintf.c U src/contrib/sendmail/libsm/vfscanf.c U src/contrib/sendmail/libsm/vprintf.c U src/contrib/sendmail/libsm/vsnprintf.c U src/contrib/sendmail/libsm/wbuf.c U src/contrib/sendmail/libsm/wsetup.c U src/contrib/sendmail/libsm/xtrap.c U src/contrib/sendmail/libsmdb/Makefile U src/contrib/sendmail/libsmdb/Makefile.m4 U src/contrib/sendmail/libsmdb/smdb.c U src/contrib/sendmail/libsmdb/smdb1.c U src/contrib/sendmail/libsmdb/smdb2.c U src/contrib/sendmail/libsmdb/smndbm.c U src/contrib/sendmail/libsmutil/Makefile U src/contrib/sendmail/libsmutil/Makefile.m4 U src/contrib/sendmail/libsmutil/cf.c U src/contrib/sendmail/libsmutil/debug.c U src/contrib/sendmail/libsmutil/err.c U src/contrib/sendmail/libsmutil/lockfile.c U src/contrib/sendmail/libsmutil/safefile.c U src/contrib/sendmail/libsmutil/snprintf.c U src/contrib/sendmail/mail.local/Makefile U src/contrib/sendmail/mail.local/Makefile.m4 U src/contrib/sendmail/mail.local/README U src/contrib/sendmail/mail.local/mail.local.8 C src/contrib/sendmail/mail.local/mail.local.c U src/contrib/sendmail/mailstats/Makefile U src/contrib/sendmail/mailstats/Makefile.m4 U src/contrib/sendmail/mailstats/mailstats.8 U src/contrib/sendmail/mailstats/mailstats.c U src/contrib/sendmail/makemap/Makefile U src/contrib/sendmail/makemap/Makefile.m4 U src/contrib/sendmail/makemap/makemap.8 U src/contrib/sendmail/makemap/makemap.c U src/contrib/sendmail/praliases/Makefile U src/contrib/sendmail/praliases/Makefile.m4 U src/contrib/sendmail/praliases/praliases.8 U src/contrib/sendmail/praliases/praliases.c U src/contrib/sendmail/rmail/Makefile U src/contrib/sendmail/rmail/Makefile.m4 U src/contrib/sendmail/rmail/rmail.8 U src/contrib/sendmail/rmail/rmail.c U src/contrib/sendmail/smrsh/Makefile U src/contrib/sendmail/smrsh/Makefile.m4 U src/contrib/sendmail/smrsh/README U src/contrib/sendmail/smrsh/smrsh.8 U src/contrib/sendmail/smrsh/smrsh.c U src/contrib/sendmail/test/Makefile U src/contrib/sendmail/test/t_exclopen.c U src/contrib/sendmail/test/Makefile.m4 U src/contrib/sendmail/test/README U src/contrib/sendmail/test/Results U src/contrib/sendmail/test/t_dropgid.c U src/contrib/sendmail/test/t_pathconf.c U src/contrib/sendmail/test/t_seteuid.c U src/contrib/sendmail/test/t_setgid.c U src/contrib/sendmail/test/t_setreuid.c U src/contrib/sendmail/test/t_setuid.c U src/contrib/sendmail/test/t_snprintf.c U src/contrib/sendmail/vacation/Makefile U src/contrib/sendmail/vacation/Makefile.m4 U src/contrib/sendmail/vacation/vacation.1 U src/contrib/sendmail/vacation/vacation.c 8 conflicts created by this import. Use the following command to help the merge: cvs checkout -jSENDMAIL:yesterday -jSENDMAIL src/contrib/sendmail From owner-cvs-src@FreeBSD.ORG Mon Apr 9 01:44:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7750F16A407; Mon, 9 Apr 2007 01:44:17 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 67A2813C45B; Mon, 9 Apr 2007 01:44:17 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l391iHoQ034991; Mon, 9 Apr 2007 01:44:17 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l391iHxi034987; Mon, 9 Apr 2007 01:44:17 GMT (envelope-from gshapiro) Message-Id: <200704090144.l391iHxi034987@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Apr 2007 01:44:17 +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/contrib/sendmail/mail.local mail.local.c src/contrib/sendmail/src conf.c conf.h err.c headers.c mailq.1 mci.c savemail.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: Mon, 09 Apr 2007 01:44:17 -0000 gshapiro 2007-04-09 01:44:17 UTC FreeBSD src repository Modified files: contrib/sendmail/mail.local mail.local.c contrib/sendmail/src conf.c conf.h err.c headers.c mailq.1 mci.c savemail.c Log: Resolve conflicts from sendmail 8.14.1 import Revision Changes Path 1.27 +4 -2 src/contrib/sendmail/mail.local/mail.local.c 1.31 +257 -298 src/contrib/sendmail/src/conf.c 1.25 +7 -6 src/contrib/sendmail/src/conf.h 1.14 +23 -25 src/contrib/sendmail/src/err.c 1.24 +210 -78 src/contrib/sendmail/src/headers.c 1.15 +23 -3 src/contrib/sendmail/src/mailq.1 1.23 +17 -17 src/contrib/sendmail/src/mci.c 1.20 +73 -67 src/contrib/sendmail/src/savemail.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 01:45:30 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8B4016A400; Mon, 9 Apr 2007 01:45:30 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A176A13C44B; Mon, 9 Apr 2007 01:45:30 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l391jUon036140; Mon, 9 Apr 2007 01:45:30 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l391jUN1036139; Mon, 9 Apr 2007 01:45:30 GMT (envelope-from gshapiro) Message-Id: <200704090145.l391jUN1036139@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Apr 2007 01:45:30 +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/lib/libmilter Makefile src/lib/libsm Makefile 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: Mon, 09 Apr 2007 01:45:30 -0000 gshapiro 2007-04-09 01:45:30 UTC FreeBSD src repository Modified files: lib/libmilter Makefile lib/libsm Makefile Log: New files in sendmail 8.14.1 Revision Changes Path 1.7 +2 -2 src/lib/libmilter/Makefile 1.12 +1 -1 src/lib/libsm/Makefile From owner-cvs-src@FreeBSD.ORG Mon Apr 9 01:45:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A5C616A403; Mon, 9 Apr 2007 01:45:53 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4C3F913C48C; Mon, 9 Apr 2007 01:45:53 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l391jrFk036400; Mon, 9 Apr 2007 01:45:53 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l391jr38036399; Mon, 9 Apr 2007 01:45:53 GMT (envelope-from gshapiro) Message-Id: <200704090145.l391jr38036399@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Apr 2007 01:45:52 +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/usr.sbin/sendmail Makefile 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: Mon, 09 Apr 2007 01:45:53 -0000 gshapiro 2007-04-09 01:45:52 UTC FreeBSD src repository Modified files: usr.sbin/sendmail Makefile Log: This FFR is no longer needed in sendmail 8.14 Revision Changes Path 1.55 +1 -1 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Mon Apr 9 01:46:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F63416A404; Mon, 9 Apr 2007 01:46:44 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6782A13C489; Mon, 9 Apr 2007 01:46:44 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l391kiiE036992; Mon, 9 Apr 2007 01:46:44 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l391kiB4036988; Mon, 9 Apr 2007 01:46:44 GMT (envelope-from gshapiro) Message-Id: <200704090146.l391kiB4036988@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Apr 2007 01:46:44 +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/contrib/sendmail FREEBSD-upgrade 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: Mon, 09 Apr 2007 01:46:44 -0000 gshapiro 2007-04-09 01:46:44 UTC FreeBSD src repository Modified files: contrib/sendmail FREEBSD-upgrade Log: Update for sendmail 8.14.1 Revision Changes Path 1.33 +4 -4 src/contrib/sendmail/FREEBSD-upgrade From owner-cvs-src@FreeBSD.ORG Mon Apr 9 01:47:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9FB9D16A403; Mon, 9 Apr 2007 01:47:59 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 78AFD13C45A; Mon, 9 Apr 2007 01:47:59 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l391lxGD038168; Mon, 9 Apr 2007 01:47:59 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l391lxRR038161; Mon, 9 Apr 2007 01:47:59 GMT (envelope-from gshapiro) Message-Id: <200704090147.l391lxRR038161@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Apr 2007 01:47:59 +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/release/doc/en_US.ISO8859-1/relnotes article.sgml 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: Mon, 09 Apr 2007 01:47:59 -0000 gshapiro 2007-04-09 01:47:59 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: sendmail upgraded to 8.14.1 Revision Changes Path 1.1012 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Mon Apr 9 02:19:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DA2416A401; Mon, 9 Apr 2007 02:19:38 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 76CB113C4AD; Mon, 9 Apr 2007 02:19:38 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l392Jcj9064728; Mon, 9 Apr 2007 02:19:38 GMT (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l392Jc1f064727; Mon, 9 Apr 2007 02:19:38 GMT (envelope-from grog) Message-Id: <200704090219.l392Jc1f064727@repoman.freebsd.org> From: Greg Lehey Date: Mon, 9 Apr 2007 02:19:38 +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/usr.bin/touch touch.1 touch.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: Mon, 09 Apr 2007 02:19:38 -0000 grog 2007-04-09 02:19:37 UTC FreeBSD src repository Modified files: usr.bin/touch touch.1 touch.c Log: Add -A flag to adjust existing time stamps. Print name by which program was started in usage() message. MFC after: 2 weeks Revision Changes Path 1.15 +78 -13 src/usr.bin/touch/touch.1 1.22 +52 -10 src/usr.bin/touch/touch.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 05:43:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60C1216A400; Mon, 9 Apr 2007 05:43:03 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 39B1613C44C; Mon, 9 Apr 2007 05:43:03 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l395h3FL048695; Mon, 9 Apr 2007 05:43:03 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l395h3eV048694; Mon, 9 Apr 2007 05:43:03 GMT (envelope-from scottl) Message-Id: <200704090543.l395h3eV048694@repoman.freebsd.org> From: Scott Long Date: Mon, 9 Apr 2007 05:43:02 +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/cam/scsi scsi_sg.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: Mon, 09 Apr 2007 05:43:03 -0000 scottl 2007-04-09 05:43:02 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_sg.c Log: Fix a logic bug that slipped in at the last minute and apparently escaped testing. Revision Changes Path 1.2 +3 -4 src/sys/cam/scsi/scsi_sg.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 05:47:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1716D16A400; Mon, 9 Apr 2007 05:47:33 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E410613C448; Mon, 9 Apr 2007 05:47:32 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l395lWG2052820; Mon, 9 Apr 2007 05:47:32 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l395lWfM052816; Mon, 9 Apr 2007 05:47:32 GMT (envelope-from scottl) Message-Id: <200704090547.l395lWfM052816@repoman.freebsd.org> From: Scott Long Date: Mon, 9 Apr 2007 05:47:32 +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/cam/scsi scsi_sg.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: Mon, 09 Apr 2007 05:47:33 -0000 scottl 2007-04-09 05:47:32 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_sg.c Log: Make use of M_ZERO in various malloc calls. Revision Changes Path 1.3 +4 -5 src/sys/cam/scsi/scsi_sg.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 06:28:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D774E16A402; Mon, 9 Apr 2007 06:28:39 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B02E013C45A; Mon, 9 Apr 2007 06:28:39 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l396SdMU087261; Mon, 9 Apr 2007 06:28:39 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l396SdTQ087257; Mon, 9 Apr 2007 06:28:39 GMT (envelope-from yongari) Message-Id: <200704090628.l396SdTQ087257@repoman.freebsd.org> From: Pyun YongHyeon Date: Mon, 9 Apr 2007 06:28:38 +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/dev/msk if_msk.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: Mon, 09 Apr 2007 06:28:39 -0000 yongari 2007-04-09 06:28:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/msk if_msk.c Log: MFC if_msk.c, rev. 1.12 to RELENG_6 If we've encountered unrecognized chipset don't access hardware anymore. Previously it tried to access interrupt register to disable interrupts which could result in hang if the hardware was not properly initialized by system BIOS/ACPI. Revision Changes Path 1.11.2.3 +2 -2 src/sys/dev/msk/if_msk.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 08:00:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 22B7516A401; Mon, 9 Apr 2007 08:00:35 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F032913C48A; Mon, 9 Apr 2007 08:00:34 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3980Y0h061254; Mon, 9 Apr 2007 08:00:34 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3980YeB061232; Mon, 9 Apr 2007 08:00:34 GMT (envelope-from glebius) Message-Id: <200704090800.l3980YeB061232@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 9 Apr 2007 08:00:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access 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: Mon, 09 Apr 2007 08:00:35 -0000 glebius 2007-04-09 08:00:34 UTC FreeBSD src repository Modified files: . access Log: Note that Paolo Pisati is now free from mentorship. Approved by: core (not truth) Revision Changes Path 1.820 +0 -0 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Mon Apr 9 08:22:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 110D116A401; Mon, 9 Apr 2007 08:22:35 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DE5ED13C457; Mon, 9 Apr 2007 08:22:34 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l398MYIm081001; Mon, 9 Apr 2007 08:22:34 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l398MYuU080997; Mon, 9 Apr 2007 08:22:34 GMT (envelope-from cperciva) Message-Id: <200704090822.l398MYuU080997@repoman.freebsd.org> From: Colin Percival Date: Mon, 9 Apr 2007 08:22:34 +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/usr.bin/tar write.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: Mon, 09 Apr 2007 08:22:35 -0000 cperciva 2007-04-09 08:22:34 UTC FreeBSD src repository Modified files: usr.bin/tar write.c Log: Clean up error handling in archive_append to match how errors are handled in write_hierarchy. Approved by: kientzle Revision Changes Path 1.61 +39 -19 src/usr.bin/tar/write.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 08:44:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38B9816A404; Mon, 9 Apr 2007 08:44:51 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 125CA13C43E; Mon, 9 Apr 2007 08:44:51 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l398io1K097942; Mon, 9 Apr 2007 08:44:50 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l398iooW097938; Mon, 9 Apr 2007 08:44:50 GMT (envelope-from des) Message-Id: <200704090844.l398iooW097938@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 9 Apr 2007 08:44:50 +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/etc/rc.d FILESYSTEMS 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: Mon, 09 Apr 2007 08:44:51 -0000 des 2007-04-09 08:44:50 UTC FreeBSD src repository Modified files: etc/rc.d FILESYSTEMS Log: Add zfs to REQUIRE. Revision Changes Path 1.2 +1 -1 src/etc/rc.d/FILESYSTEMS From owner-cvs-src@FreeBSD.ORG Mon Apr 9 08:53:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 255F316A400; Mon, 9 Apr 2007 08:53:41 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F2DB213C489; Mon, 9 Apr 2007 08:53:40 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l398re2O014125; Mon, 9 Apr 2007 08:53:40 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l398reGn014120; Mon, 9 Apr 2007 08:53:40 GMT (envelope-from des) Message-Id: <200704090853.l398reGn014120@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 9 Apr 2007 08:53:40 +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/etc/rc.d ipfilter ipsec kldxref mountcritremote pf pflog pfsync 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: Mon, 09 Apr 2007 08:53:41 -0000 des 2007-04-09 08:53:40 UTC FreeBSD src repository Modified files: etc/rc.d ipfilter ipsec kldxref mountcritremote pf pflog pfsync Log: FILESYSTEMS requires root, so requiring both of them is redundant. Revision Changes Path 1.28 +1 -1 src/etc/rc.d/ipfilter 1.18 +1 -1 src/etc/rc.d/ipsec 1.6 +1 -1 src/etc/rc.d/kldxref 1.16 +1 -1 src/etc/rc.d/mountcritremote 1.16 +1 -1 src/etc/rc.d/pf 1.12 +1 -1 src/etc/rc.d/pflog 1.4 +1 -1 src/etc/rc.d/pfsync From owner-cvs-src@FreeBSD.ORG Mon Apr 9 09:48:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E8C6316A402; Mon, 9 Apr 2007 09:48:39 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5EC8913C484; Mon, 9 Apr 2007 09:48:39 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from store.lan.Awfulhak.org (store.lan.Awfulhak.org [172.16.0.35]) by storm.uk.FreeBSD.org (8.13.8/8.13.8) with ESMTP id l399manQ084727; Mon, 9 Apr 2007 10:48:37 +0100 (BST) (envelope-from brian@FreeBSD.org) Received: from store.lan.Awfulhak.org (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with SMTP id 21C441957C6D; Mon, 9 Apr 2007 09:48:44 +0000 (GMT) Received: from gw.Awfulhak.org (gw.lan.Awfulhak.org [172.16.0.1]) by store.lan.Awfulhak.org (Postfix) with ESMTP id B6BD41957C74; Mon, 9 Apr 2007 09:48:37 +0000 (GMT) Received: from dev.lan.Awfulhak.org (brian@dev.lan.Awfulhak.org [172.16.0.5]) by gw.Awfulhak.org (8.13.8/8.13.8) with ESMTP id l399mRRS059076; Mon, 9 Apr 2007 02:48:27 -0700 (PDT) (envelope-from brian@FreeBSD.org) Date: Mon, 9 Apr 2007 02:48:26 -0700 From: Brian Somers To: Greg Lehey Message-ID: <20070409024826.553be564@dev.lan.Awfulhak.org> In-Reply-To: <20070409021942.C150B16A529@hub.freebsd.org> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <20070409021942.C150B16A529@hub.freebsd.org> X-Mailer: Claws Mail 2.8.1 (GTK+ 2.10.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=5.0 tests=ALL_TRUSTED,SPF_SOFTFAIL autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on gw.lan.Awfulhak.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Mon, 09 Apr 2007 09:48:40 -0000 On Mon, 9 Apr 2007 02:19:42 +0000 (UTC) Greg Lehey wrote: > grog 2007-04-09 02:19:37 UTC > > FreeBSD src repository > > Modified files: > usr.bin/touch touch.1 touch.c > Log: > Add -A flag to adjust existing time stamps. > Print name by which program was started in usage() message. This has got to be one of the strangest commits I've ever seen... see below. > MFC after: 2 weeks > > Revision Changes Path > 1.15 +78 -13 src/usr.bin/touch/touch.1 > 1.22 +52 -10 src/usr.bin/touch/touch.c > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > > > Index: src/usr.bin/touch/touch.1 > diff -u src/usr.bin/touch/touch.1:1.14 src/usr.bin/touch/touch.1:1.15 > --- src/usr.bin/touch/touch.1:1.14 Sun Feb 13 22:25:24 2005 > +++ src/usr.bin/touch/touch.1 Mon Apr 9 02:19:37 2007 > @@ -43,6 +43,7 @@ > .Nd change file access and modification times > .Sh SYNOPSIS > .Nm > +.Op Fl A Ar [-][[hh]mm]SS > .Op Fl acfhm > .Op Fl r Ar file > .Op Fl t Ar [[CC]YY]MMDDhhmm[.SS] > @@ -50,17 +51,79 @@ > .Sh DESCRIPTION > The > .Nm > -utility sets the modification and access times of files to the > -current time of day. > -If the file does not exist, it is created with default permissions. > +utility sets the modification and access times of files. > +If any file does not exist, it is created with default permissions. > +.Pp > +By default, > +.Nm > +changes both modification and access times. The > +.Fl a > +and > +.Fl m > +flags may be used to select the access time or the modification time > +individually. > +Selecting both is equivalent to the default. > +The base times for the modification are both set to the current time. > +The > +.Fl t > +flag explicitly specifies a single time for both values, and the > +.Fl r > +flag specifies to set the times from those of a different file. > +The > +.Fl A > +flag adjusts the values by a specified amount. > +This adjustment is done after first establishing the base times. > .Pp > The following options are available: > .Bl -tag -width Ds > +.It Fl A > +Adjust the access and modification time stamps for the file by the > +specified value. > +This flag is intended for use in modifying files with a time stamp > +relative to an incorrect time zone. I don't understand what this means. File times are in UTC aren't they? > +It always modifies both the access time and the modification time. > +.Pp > +The argument is of the form > +.Dq [-][[hh]mm]SS > +where each pair of letters represents the following: > +.Pp > +.Bl -tag -width Ds -compact -offset indent > +.It Ar - > +Make the adjustment negative: the new time stamp is set to be before > +the old one. > +.It Ar hh > +The hour of the day, from 00 to 23. > +.It Ar mm > +The minute of the hour, from 00 to 59. > +.It Ar SS > +The second of the minute, from 00 to 59. > +.El Why this format? My guess is that the delta is expected to be a DST difference, but if it is, I'm even more confused. > +.Pp > +When used in conjunction with the > +.Fl a > +flag only, the modification time is adjusted by the time specified as > +argument to the > +.Fl A > +flag, while the access time is modified from the base time described > +above. Wow. So -A changes both times in addition to the access-only time change. This is really unintuitive to me. I'd expect ``-A 000001 -a' to adjust the access time only (as -a previously meant). I wouldn't expect the modification time to be bumped by a second and the access time to be set to one second in the future. But again, I don't know why you'd want to do this... > +Similarly, when used in conjunction with the > +.Fl m > +flag only, the access time is adjusted by the time specified as > +argument to the > +.Fl A > +flag, while the access time is modified from the base time described > +above. Errum, you mean the modification time? > +.Pp > +If the file does not exist, and creation is allowed, > +.Fl A > +does not change its time stamps. So if I ``touch -A 000001 something'' where ``something'' doesn't already exist, the file is created and the time is left at now? That's also confusing. [.....] > Index: src/usr.bin/touch/touch.c > diff -u src/usr.bin/touch/touch.c:1.21 src/usr.bin/touch/touch.c:1.22 > --- src/usr.bin/touch/touch.c:1.21 Tue Jan 31 02:21:18 2006 > +++ src/usr.bin/touch/touch.c Mon Apr 9 02:19:37 2007 > @@ -62,7 +62,8 @@ > void stime_arg1(char *, struct timeval *); > void stime_arg2(char *, int, struct timeval *); > void stime_file(char *, struct timeval *); > -void usage(void); > +int timeoffset(char *); > +void usage(char *); > > int > main(int argc, char *argv[]) > @@ -71,17 +72,22 @@ > struct timeval tv[2]; > int (*stat_f)(const char *, struct stat *); > int (*utimes_f)(const char *, const struct timeval *); > - int aflag, cflag, fflag, mflag, ch, fd, len, rval, timeset; > + int Aflag, aflag, cflag, fflag, mflag, ch, fd, len, rval, timeset; > char *p; > + char *myname; > > - aflag = cflag = fflag = mflag = timeset = 0; > + myname = argv[0]; myname should be set to the base name, not the full argv[0]. [.....] I personally think this option is a mistake. I would think that something like this would be better: [-A adjust] - adjust the updated time(s) by the given ``adjust'' number of seconds. I would imagine this to be useful in (say) a test script that wanted to set up a bunch of files with time stamps set to specific relative values. But I'm clearly missing the point here...? -- Brian Somers Don't _EVER_ lose your sense of humour ! From owner-cvs-src@FreeBSD.ORG Mon Apr 9 10:09:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6CF2816A400; Mon, 9 Apr 2007 10:09:40 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 478C113C457; Mon, 9 Apr 2007 10:09:40 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39A9e4x075795; Mon, 9 Apr 2007 10:09:40 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39A9eUm075794; Mon, 9 Apr 2007 10:09:40 GMT (envelope-from des) Message-Id: <200704091009.l39A9eUm075794@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 9 Apr 2007 10:09:40 +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/etc/rc.d NETWORKING netoptions 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: Mon, 09 Apr 2007 10:09:40 -0000 des 2007-04-09 10:09:40 UTC FreeBSD src repository Modified files: etc/rc.d NETWORKING netoptions Log: Apply "additional TCP options" earlier. Requested by: andre@ MFC after: 1 week Revision Changes Path 1.12 +1 -1 src/etc/rc.d/NETWORKING 1.142 +0 -1 src/etc/rc.d/netoptions From owner-cvs-src@FreeBSD.ORG Mon Apr 9 10:16:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0518F16A412; Mon, 9 Apr 2007 10:16:53 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id B0EE413C4AD; Mon, 9 Apr 2007 10:16:52 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 8F2A22091; Mon, 9 Apr 2007 12:16:48 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id ED5922090; Mon, 9 Apr 2007 12:16:47 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id BFDAEA10AC; Mon, 9 Apr 2007 12:16:47 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Greg Lehey References: <200704090219.l392Jc1f064727@repoman.freebsd.org> Date: Mon, 09 Apr 2007 12:16:47 +0200 In-Reply-To: <200704090219.l392Jc1f064727@repoman.freebsd.org> (Greg Lehey's message of "Mon, 9 Apr 2007 02:19:38 +0000 (UTC)") Message-ID: <864pnpdf8w.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Mon, 09 Apr 2007 10:16:53 -0000 Greg Lehey writes: > Modified files: > usr.bin/touch touch.1 touch.c > Log: > Add -A flag to adjust existing time stamps. > Print name by which program was started in usage() message. The former part is, as Brian pointed out, very weird. The latter part is incorrect and should be reverted. Furthermore, usage() should be static. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Apr 9 12:51:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D230C16A401; Mon, 9 Apr 2007 12:51:29 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AD8A413C4C5; Mon, 9 Apr 2007 12:51:29 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39CpTEi016153; Mon, 9 Apr 2007 12:51:29 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39CpTi6016149; Mon, 9 Apr 2007 12:51:29 GMT (envelope-from andre) Message-Id: <200704091251.l39CpTi6016149@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 9 Apr 2007 12:51:29 +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/conf files 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: Mon, 09 Apr 2007 12:51:29 -0000 andre 2007-04-09 12:51:29 UTC FreeBSD src repository Modified files: sys/conf files Log: Sort sctp_*.c files. Revision Changes Path 1.1193 +8 -8 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Mon Apr 9 14:02:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0720416A407; Mon, 9 Apr 2007 14:02:19 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D738F13C4C3; Mon, 9 Apr 2007 14:02:18 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39E2IsC076143; Mon, 9 Apr 2007 14:02:18 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39E2IAC076142; Mon, 9 Apr 2007 14:02:18 GMT (envelope-from kan) Message-Id: <200704091402.l39E2IAC076142@repoman.freebsd.org> From: Alexander Kabaev Date: Mon, 9 Apr 2007 14:02:18 +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/conf files.ia64 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: Mon, 09 Apr 2007 14:02:19 -0000 kan 2007-04-09 14:02:18 UTC FreeBSD src repository Modified files: sys/conf files.ia64 Log: LINT on ia64 requires memset symbol too. Make fire it is present by adding it to libkern on this architecture. Revision Changes Path 1.91 +1 -0 src/sys/conf/files.ia64 From owner-cvs-src@FreeBSD.ORG Mon Apr 9 14:26:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 012A616A400; Mon, 9 Apr 2007 14:26:41 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D12EA13C465; Mon, 9 Apr 2007 14:26:40 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39EQecJ096220; Mon, 9 Apr 2007 14:26:40 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39EQewJ096210; Mon, 9 Apr 2007 14:26:40 GMT (envelope-from kevlo) Message-Id: <200704091426.l39EQewJ096210@repoman.freebsd.org> From: Kevin Lo Date: Mon, 9 Apr 2007 14:26:39 +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/share/misc committers-src.dot 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: Mon, 09 Apr 2007 14:26:41 -0000 kevlo 2007-04-09 14:26:39 UTC FreeBSD src repository Modified files: share/misc committers-src.dot Log: Add myself Revision Changes Path 1.56 +1 -0 src/share/misc/committers-src.dot From owner-cvs-src@FreeBSD.ORG Mon Apr 9 14:34:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D743016A403; Mon, 9 Apr 2007 14:34:18 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B395013C4D0; Mon, 9 Apr 2007 14:34:18 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39EYIab004141; Mon, 9 Apr 2007 14:34:18 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39EYILk004130; Mon, 9 Apr 2007 14:34:18 GMT (envelope-from kevlo) Message-Id: <200704091434.l39EYILk004130@repoman.freebsd.org> From: Kevin Lo Date: Mon, 9 Apr 2007 14:34:18 +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/share/misc committers-ports.dot 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: Mon, 09 Apr 2007 14:34:18 -0000 kevlo 2007-04-09 14:34:18 UTC FreeBSD src repository Modified files: share/misc committers-ports.dot Log: Add myself Revision Changes Path 1.41 +1 -0 src/share/misc/committers-ports.dot From owner-cvs-src@FreeBSD.ORG Mon Apr 9 14:56:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E6EA16A401; Mon, 9 Apr 2007 14:56:32 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4A73213C468; Mon, 9 Apr 2007 14:56:32 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39EuWiI021242; Mon, 9 Apr 2007 14:56:32 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39EuWA6021235; Mon, 9 Apr 2007 14:56:32 GMT (envelope-from emaste) Message-Id: <200704091456.l39EuWA6021235@repoman.freebsd.org> From: Ed Maste Date: Mon, 9 Apr 2007 14:56:31 +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/lib/libc/sys ptrace.2 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: Mon, 09 Apr 2007 14:56:32 -0000 emaste 2007-04-09 14:56:31 UTC FreeBSD src repository Modified files: lib/libc/sys ptrace.2 Log: Document PT_GETNUMLWPS. Revision Changes Path 1.40 +3 -0 src/lib/libc/sys/ptrace.2 From owner-cvs-src@FreeBSD.ORG Mon Apr 9 15:43:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A04B916A402; Mon, 9 Apr 2007 15:43:43 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7BB9113C455; Mon, 9 Apr 2007 15:43:43 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39FhhjF058523; Mon, 9 Apr 2007 15:43:43 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39FhhdJ058521; Mon, 9 Apr 2007 15:43:43 GMT (envelope-from sam) Message-Id: <200704091543.l39FhhdJ058521@repoman.freebsd.org> From: Sam Leffler Date: Mon, 9 Apr 2007 15:43:43 +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/tools/tools/net80211/wesside/wesside aircrack-ptw-lib.c aircrack-ptw-lib.h 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: Mon, 09 Apr 2007 15:43:43 -0000 sam 2007-04-09 15:43:43 UTC FreeBSD src repository Modified files: tools/tools/net80211/wesside/wesside aircrack-ptw-lib.c aircrack-ptw-lib.h Log: correct copyright attribution; there was no copyright in the patches from Andrea so I assigned him ownership; this corrects that Submitted by: Andrea Bittau Revision Changes Path 1.2 +2 -1 src/tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.c 1.2 +2 -1 src/tools/tools/net80211/wesside/wesside/aircrack-ptw-lib.h From owner-cvs-src@FreeBSD.ORG Mon Apr 9 17:01:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C06E16A406; Mon, 9 Apr 2007 17:01:24 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D4C0D13C45B; Mon, 9 Apr 2007 17:01:23 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39H1NCi031308; Mon, 9 Apr 2007 17:01:23 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39H1NIX031304; Mon, 9 Apr 2007 17:01:23 GMT (envelope-from kmacy) Message-Id: <200704091701.l39H1NIX031304@repoman.freebsd.org> From: Kip Macy Date: Mon, 9 Apr 2007 17:01:23 +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/dev/cxgb/sys uipc_mvec.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: Mon, 09 Apr 2007 17:01:24 -0000 kmacy 2007-04-09 17:01:23 UTC FreeBSD src repository Modified files: sys/dev/cxgb/sys uipc_mvec.c Log: busdma tags are opaque on all architectures except sparc64 for now simply don't compile/use on sparc64 Revision Changes Path 1.3 +2 -1 src/sys/dev/cxgb/sys/uipc_mvec.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 17:05:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C369116A421; Mon, 9 Apr 2007 17:05:54 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9F71D13C457; Mon, 9 Apr 2007 17:05:54 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39H5svl036947; Mon, 9 Apr 2007 17:05:54 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39H5seF036946; Mon, 9 Apr 2007 17:05:54 GMT (envelope-from kmacy) Message-Id: <200704091705.l39H5seF036946@repoman.freebsd.org> From: Kip Macy Date: Mon, 9 Apr 2007 17:05:54 +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/dev/cxgb/sys uipc_mvec.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: Mon, 09 Apr 2007 17:05:54 -0000 kmacy 2007-04-09 17:05:54 UTC FreeBSD src repository Modified files: sys/dev/cxgb/sys uipc_mvec.c Log: throw sun4v into the check while we're at it Revision Changes Path 1.4 +1 -1 src/sys/dev/cxgb/sys/uipc_mvec.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 17:08:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3014316A404; Mon, 9 Apr 2007 17:08:28 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0BDBC13C483; Mon, 9 Apr 2007 17:08:28 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39H8Rnw037708; Mon, 9 Apr 2007 17:08:27 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39H8Rar037707; Mon, 9 Apr 2007 17:08:27 GMT (envelope-from piso) Message-Id: <200704091708.l39H8Rar037707@repoman.freebsd.org> From: Paolo Pisati Date: Mon, 9 Apr 2007 17:08:27 +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/conf files src/sys/modules/libalias/libalias Makefile 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: Mon, 09 Apr 2007 17:08:28 -0000 piso 2007-04-09 17:08:27 UTC FreeBSD src repository Modified files: sys/conf files sys/modules/libalias/libalias Makefile Log: The old PacketAlias* API is not exported when libalias run in kernel land. Revision Changes Path 1.1194 +0 -1 src/sys/conf/files 1.2 +1 -1 src/sys/modules/libalias/libalias/Makefile From owner-cvs-src@FreeBSD.ORG Mon Apr 9 17:19:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B9FE16A401; Mon, 9 Apr 2007 17:19:19 +0000 (UTC) (envelope-from ken@nargothrond.kdm.org) Received: from nargothrond.kdm.org (nargothrond.kdm.org [70.56.43.81]) by mx1.freebsd.org (Postfix) with ESMTP id EF25413C455; Mon, 9 Apr 2007 17:19:18 +0000 (UTC) (envelope-from ken@nargothrond.kdm.org) Received: from nargothrond.kdm.org (localhost [127.0.0.1]) by nargothrond.kdm.org (8.13.6/8.13.6) with ESMTP id l39GoLTK097247; Mon, 9 Apr 2007 10:50:21 -0600 (MDT) (envelope-from ken@nargothrond.kdm.org) Received: (from ken@localhost) by nargothrond.kdm.org (8.13.6/8.13.6/Submit) id l39GoLAF097246; Mon, 9 Apr 2007 10:50:21 -0600 (MDT) (envelope-from ken) Date: Mon, 9 Apr 2007 10:50:21 -0600 From: "Kenneth D. Merry" To: Scott Long Message-ID: <20070409165021.GA96611@nargothrond.kdm.org> References: <200704071940.l37Jew2t013708@repoman.freebsd.org> <20070407131228.L71232@ns1.feral.com> <46183104.6080904@samsco.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46183104.6080904@samsco.org> User-Agent: Mutt/1.4.2i X-Virus-Scanned: ClamAV 0.88.1/3054/Mon Apr 9 08:31:59 2007 on nargothrond.kdm.org X-Virus-Status: Clean Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Scott Long , mjacob@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/modules/cam Makefile src/sys/conf NOTES files src/sys/compat/linux linux_ioctl.c linux_ioctl.h 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: Mon, 09 Apr 2007 17:19:19 -0000 That's a pretty neat trick! Thanks Scott! For what it's worth, Doug Gilbert already ported sg3_utils and sdparm to CAM a while back. I see a message from him to -scsi in March, 2006, announcing it. Ken On Sat, Apr 07, 2007 at 18:02:12 -0600, Scott Long wrote: > To tell you the truth, the SG device has one of the worst programming > interfaces that I've ever seen. Even the various official docs on it > complain about how bad it is. I've written apps for CAM, including a > swiss-army-knife java-based management app, and CAM is vastly superior. > I tried porting the app to linux and gave up due to how limited and > unpleasant it was. From the kernel side, it's even scarier. > > But beyond that, the work I committed here was about opening up FreeBSD > to more storage management opportunities. So I'm happy with whatever > anyone wants to do with it that furthers that goal. I'd like to see > the native interface be used as a bridge to help introduce programmers > to FreeBSD and CAM; if the sg3_utils package is a step in that > direction or if it provides tools that camcontrol doesn't, then go for > it. > > Scott > > > mjacob@freebsd.org wrote: > > > >Cool- does this mean we should commit sg3_utils to ports then? > > > >On Sat, 7 Apr 2007, Scott Long wrote: > > > >>scottl 2007-04-07 19:40:58 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> sys/modules/cam Makefile > >> sys/conf files NOTES > >> sys/compat/linux linux_ioctl.c linux_ioctl.h > >> Added files: > >> sys/cam/scsi scsi_sg.c scsi_sg.h > >> Log: > >> Add the CAM 'SG' peripheral device. This device implements a subset > >>of the > >> Linux SCSI SG passthrough device API. The intention is to allow for > >>both > >> running of Linux apps that want to talk to /dev/sg* nodes, and to > >>facilitate > >> porting of apps from Linux to FreeBSD. As such, both native and > >>linuxolator > >> entry points and definitions are provided. > >> > >> Caveats: > >> - This does not support the procfs and sysfs nodes that the Linux SG > >> driver provides. Some Linux apps may rely on these for operation, > >> others may only use them for informational purposes. > >> - More ioctls need to be implemented. > >> - Linux uses a naming scheme of "sg[a-z]" for devices, while FreeBSD > >>uses a > >> scheme of "sg[0-9]". Devfs aliasis (symlinks) are automatically > >>created > >> to link the two together. However, tools like camcontrol only see > >>the > >> native names. > >> - Some operations were originally designed to return byte counts or > >>other > >> data directly as the syscall return value. The linuxolator > >>doesn't appear > >> to support this well, so this driver just punts for these cases. > >> > >> Now that the driver is in place, others are welcome to add missing > >> functionality. Thanks to Roman Divacky for pushing this work along. > >> > >> Revision Changes Path > >> 1.1 +987 -0 src/sys/cam/scsi/scsi_sg.c (new) > >> 1.1 +139 -0 src/sys/cam/scsi/scsi_sg.h (new) > >> 1.138 +27 -0 src/sys/compat/linux/linux_ioctl.c > >> 1.25 +34 -0 src/sys/compat/linux/linux_ioctl.h > >> 1.1419 +5 -0 src/sys/conf/NOTES > >> 1.1191 +1 -0 src/sys/conf/files > >> 1.15 +1 -0 src/sys/modules/cam/Makefile > >> -- Kenneth Merry ken@kdm.org From owner-cvs-src@FreeBSD.ORG Mon Apr 9 17:44:57 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D4C616A403; Mon, 9 Apr 2007 17:44:57 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id D822713C4B0; Mon, 9 Apr 2007 17:44:56 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l39Hd5WM057912; Mon, 9 Apr 2007 11:39:06 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <461A7A27.7090609@samsco.org> Date: Mon, 09 Apr 2007 11:38:47 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: "Kenneth D. Merry" , Roman Divacky References: <200704071940.l37Jew2t013708@repoman.freebsd.org> <20070407131228.L71232@ns1.feral.com> <46183104.6080904@samsco.org> <20070409165021.GA96611@nargothrond.kdm.org> In-Reply-To: <20070409165021.GA96611@nargothrond.kdm.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Mon, 09 Apr 2007 11:39:06 -0600 (MDT) X-Spam-Status: No, score=-0.8 required=5.5 tests=ALL_TRUSTED,SUBJ_HAS_SPACES autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/modules/cam Makefile src/sys/conf NOTES files src/sys/compat/linux linux_ioctl.c linux_ioctl.h 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: Mon, 09 Apr 2007 17:44:57 -0000 I guess this work never got into ports? I'd like to see if there, even if it's augmented with other non-CAM versions. Scott Kenneth D. Merry wrote: > That's a pretty neat trick! Thanks Scott! > > For what it's worth, Doug Gilbert already ported sg3_utils and sdparm to > CAM a while back. I see a message from him to -scsi in March, 2006, > announcing it. > > Ken > > On Sat, Apr 07, 2007 at 18:02:12 -0600, Scott Long wrote: >> To tell you the truth, the SG device has one of the worst programming >> interfaces that I've ever seen. Even the various official docs on it >> complain about how bad it is. I've written apps for CAM, including a >> swiss-army-knife java-based management app, and CAM is vastly superior. >> I tried porting the app to linux and gave up due to how limited and >> unpleasant it was. From the kernel side, it's even scarier. >> >> But beyond that, the work I committed here was about opening up FreeBSD >> to more storage management opportunities. So I'm happy with whatever >> anyone wants to do with it that furthers that goal. I'd like to see >> the native interface be used as a bridge to help introduce programmers >> to FreeBSD and CAM; if the sg3_utils package is a step in that >> direction or if it provides tools that camcontrol doesn't, then go for >> it. >> >> Scott >> >> >> mjacob@freebsd.org wrote: >>> Cool- does this mean we should commit sg3_utils to ports then? >>> >>> On Sat, 7 Apr 2007, Scott Long wrote: >>> >>>> scottl 2007-04-07 19:40:58 UTC >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: >>>> sys/modules/cam Makefile >>>> sys/conf files NOTES >>>> sys/compat/linux linux_ioctl.c linux_ioctl.h >>>> Added files: >>>> sys/cam/scsi scsi_sg.c scsi_sg.h >>>> Log: >>>> Add the CAM 'SG' peripheral device. This device implements a subset >>>> of the >>>> Linux SCSI SG passthrough device API. The intention is to allow for >>>> both >>>> running of Linux apps that want to talk to /dev/sg* nodes, and to >>>> facilitate >>>> porting of apps from Linux to FreeBSD. As such, both native and >>>> linuxolator >>>> entry points and definitions are provided. >>>> >>>> Caveats: >>>> - This does not support the procfs and sysfs nodes that the Linux SG >>>> driver provides. Some Linux apps may rely on these for operation, >>>> others may only use them for informational purposes. >>>> - More ioctls need to be implemented. >>>> - Linux uses a naming scheme of "sg[a-z]" for devices, while FreeBSD >>>> uses a >>>> scheme of "sg[0-9]". Devfs aliasis (symlinks) are automatically >>>> created >>>> to link the two together. However, tools like camcontrol only see >>>> the >>>> native names. >>>> - Some operations were originally designed to return byte counts or >>>> other >>>> data directly as the syscall return value. The linuxolator >>>> doesn't appear >>>> to support this well, so this driver just punts for these cases. >>>> >>>> Now that the driver is in place, others are welcome to add missing >>>> functionality. Thanks to Roman Divacky for pushing this work along. >>>> >>>> Revision Changes Path >>>> 1.1 +987 -0 src/sys/cam/scsi/scsi_sg.c (new) >>>> 1.1 +139 -0 src/sys/cam/scsi/scsi_sg.h (new) >>>> 1.138 +27 -0 src/sys/compat/linux/linux_ioctl.c >>>> 1.25 +34 -0 src/sys/compat/linux/linux_ioctl.h >>>> 1.1419 +5 -0 src/sys/conf/NOTES >>>> 1.1191 +1 -0 src/sys/conf/files >>>> 1.15 +1 -0 src/sys/modules/cam/Makefile >>>> > From owner-cvs-src@FreeBSD.ORG Mon Apr 9 17:54:15 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1931016A403 for ; Mon, 9 Apr 2007 17:54:15 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id DE5B513C4B8 for ; Mon, 9 Apr 2007 17:54:14 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 12598 invoked from network); 9 Apr 2007 17:22:20 -0000 Received: from ppp-71-139-28-99.dsl.snfc21.pacbell.net (HELO ?10.0.0.235?) (nate-mail@71.139.28.99) by root.org with ESMTPA; 9 Apr 2007 17:22:20 -0000 Message-ID: <461A7647.10509@root.org> Date: Mon, 09 Apr 2007 10:22:15 -0700 From: Nate Lawson User-Agent: Thunderbird 1.5.0.7 (X11/20061027) MIME-Version: 1.0 To: Pawel Jakub Dawidek References: <20070408235405.1BD0616A506@hub.freebsd.org> In-Reply-To: <20070408235405.1BD0616A506@hub.freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/sys systm.h src/sys/kern vfs_mount.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: Mon, 09 Apr 2007 17:54:15 -0000 Pawel Jakub Dawidek wrote: > pjd 2007-04-08 23:54:01 UTC > > FreeBSD src repository > > Modified files: > sys/sys systm.h > sys/kern vfs_mount.c > Log: > Add root_mounted() function that returns true if the root file system is > already mounted. > > Revision Changes Path > 1.254 +14 -0 src/sys/kern/vfs_mount.c > 1.255 +1 -0 src/sys/sys/systm.h > > > Index: src/sys/kern/vfs_mount.c > diff -u src/sys/kern/vfs_mount.c:1.253 src/sys/kern/vfs_mount.c:1.254 > --- src/sys/kern/vfs_mount.c:1.253 Thu Apr 5 21:03:04 2007 > +++ src/sys/kern/vfs_mount.c Sun Apr 8 23:54:01 2007 > @@ -1383,6 +1383,20 @@ > mtx_unlock(&mountlist_mtx); > } > > + /* > + * Return true if root is already mounted. > + */ > +int > +root_mounted(void) > +{ > + int mounted; > + > + mtx_lock(&mountlist_mtx); > + mounted = root_mount_complete; > + mtx_unlock(&mountlist_mtx); > + return (mounted); > +} > + I don't think a mutex is needed here. Reading an integer should be atomic, and you can use the atomic_get_int() or whatever function instead. -- Nate From owner-cvs-src@FreeBSD.ORG Mon Apr 9 17:58:49 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A88216A402; Mon, 9 Apr 2007 17:58:49 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id C4BA313C484; Mon, 9 Apr 2007 17:58:48 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 70A1845CD9; Mon, 9 Apr 2007 19:58:46 +0200 (CEST) Received: from localhost (154.81.datacomsa.pl [195.34.81.154]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id C28A24569A; Mon, 9 Apr 2007 19:58:39 +0200 (CEST) Date: Mon, 9 Apr 2007 19:58:28 +0200 From: Pawel Jakub Dawidek To: Nate Lawson Message-ID: <20070409175828.GK76673@garage.freebsd.pl> References: <20070408235405.1BD0616A506@hub.freebsd.org> <461A7647.10509@root.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="08ATZu8fEq0x2T3M" Content-Disposition: inline In-Reply-To: <461A7647.10509@root.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-2.6 required=3.0 tests=BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/sys systm.h src/sys/kern vfs_mount.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: Mon, 09 Apr 2007 17:58:49 -0000 --08ATZu8fEq0x2T3M Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 09, 2007 at 10:22:15AM -0700, Nate Lawson wrote: > Pawel Jakub Dawidek wrote: > > pjd 2007-04-08 23:54:01 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sys/sys systm.h=20 > > sys/kern vfs_mount.c=20 > > Log: > > Add root_mounted() function that returns true if the root file system= is > > already mounted. > > =20 > > Revision Changes Path > > 1.254 +14 -0 src/sys/kern/vfs_mount.c > > 1.255 +1 -0 src/sys/sys/systm.h > >=20 > >=20 > > Index: src/sys/kern/vfs_mount.c > > diff -u src/sys/kern/vfs_mount.c:1.253 src/sys/kern/vfs_mount.c:1.254 > > --- src/sys/kern/vfs_mount.c:1.253 Thu Apr 5 21:03:04 2007 > > +++ src/sys/kern/vfs_mount.c Sun Apr 8 23:54:01 2007 > > @@ -1383,6 +1383,20 @@ > > mtx_unlock(&mountlist_mtx); > > } > > =20 > > + /* > > + * Return true if root is already mounted. > > + */ > > +int > > +root_mounted(void) > > +{ > > + int mounted; > > + > > + mtx_lock(&mountlist_mtx); > > + mounted =3D root_mount_complete; > > + mtx_unlock(&mountlist_mtx); > > + return (mounted); > > +} > > + >=20 > I don't think a mutex is needed here. Reading an integer should be > atomic, and you can use the atomic_get_int() or whatever function instead. Yes, I think so to, I more added it for consistency. If you think it can be read as bad example, feel free to remove it. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --08ATZu8fEq0x2T3M Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGGn7EForvXbEpPzQRApkZAKDKMpIgdl1enzsS1Mx5RydztRlCnQCbBDDW K3hOBhbepDUxX+Wi/RuQNvk= =g9o9 -----END PGP SIGNATURE----- --08ATZu8fEq0x2T3M-- From owner-cvs-src@FreeBSD.ORG Mon Apr 9 18:22:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CA5816A400; Mon, 9 Apr 2007 18:22:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 08E8413C4AE; Mon, 9 Apr 2007 18:22:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39IMBuR082847; Mon, 9 Apr 2007 18:22:11 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39IMB5k082846; Mon, 9 Apr 2007 18:22:11 GMT (envelope-from miwi) Message-Id: <200704091822.l39IMB5k082846@repoman.freebsd.org> From: Martin Wilke Date: Mon, 9 Apr 2007 18:22:11 +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/share/misc committers-ports.dot 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: Mon, 09 Apr 2007 18:22:12 -0000 miwi 2007-04-09 18:22:11 UTC FreeBSD src repository (ports committer) Modified files: share/misc committers-ports.dot Log: - Add my mentees, farrokhi@ and nox@ Reviewed by: flz Revision Changes Path 1.42 +5 -0 src/share/misc/committers-ports.dot From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:01:48 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9401416A406; Mon, 9 Apr 2007 19:01:48 +0000 (UTC) (envelope-from mjacob@freebsd.org) Received: from ns1.feral.com (ns1.feral.com [192.67.166.1]) by mx1.freebsd.org (Postfix) with ESMTP id 5738C13C46C; Mon, 9 Apr 2007 19:01:48 +0000 (UTC) (envelope-from mjacob@freebsd.org) Received: from ns1.feral.com (localhost [127.0.0.1]) by ns1.feral.com (8.13.8/8.13.8) with ESMTP id l39J1dJP090962; Mon, 9 Apr 2007 12:01:47 -0700 (PDT) (envelope-from mjacob@freebsd.org) Received: from localhost (mjacob@localhost) by ns1.feral.com (8.13.8/8.13.8/Submit) with ESMTP id l39J1cXa090959; Mon, 9 Apr 2007 12:01:39 -0700 (PDT) (envelope-from mjacob@freebsd.org) X-Authentication-Warning: ns1.feral.com: mjacob owned process doing -bs Date: Mon, 9 Apr 2007 12:01:38 -0700 (PDT) From: mjacob@freebsd.org To: Scott Long In-Reply-To: <461A7A27.7090609@samsco.org> Message-ID: <20070409120124.M90950@ns1.feral.com> References: <200704071940.l37Jew2t013708@repoman.freebsd.org> <20070407131228.L71232@ns1.feral.com> <46183104.6080904@samsco.org> <20070409165021.GA96611@nargothrond.kdm.org> <461A7A27.7090609@samsco.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, Roman Divacky , "Kenneth D. Merry" , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/modules/cam Makefile src/sys/conf NOTES files src/sys/compat/linux linux_ioctl.c linux_ioctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mjacob@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Apr 2007 19:01:48 -0000 I didn't have the time- Doug is kinda pissed at me because of that. On Mon, 9 Apr 2007, Scott Long wrote: > I guess this work never got into ports? I'd like to see if there, even if > it's augmented with other non-CAM versions. > > Scott > > > Kenneth D. Merry wrote: >> That's a pretty neat trick! Thanks Scott! >> >> For what it's worth, Doug Gilbert already ported sg3_utils and sdparm to >> CAM a while back. I see a message from him to -scsi in March, 2006, >> announcing it. >> >> Ken >> >> On Sat, Apr 07, 2007 at 18:02:12 -0600, Scott Long wrote: >>> To tell you the truth, the SG device has one of the worst programming >>> interfaces that I've ever seen. Even the various official docs on it >>> complain about how bad it is. I've written apps for CAM, including a >>> swiss-army-knife java-based management app, and CAM is vastly superior. >>> I tried porting the app to linux and gave up due to how limited and >>> unpleasant it was. From the kernel side, it's even scarier. >>> >>> But beyond that, the work I committed here was about opening up FreeBSD >>> to more storage management opportunities. So I'm happy with whatever >>> anyone wants to do with it that furthers that goal. I'd like to see >>> the native interface be used as a bridge to help introduce programmers >>> to FreeBSD and CAM; if the sg3_utils package is a step in that >>> direction or if it provides tools that camcontrol doesn't, then go for >>> it. >>> >>> Scott >>> >>> >>> mjacob@freebsd.org wrote: >>>> Cool- does this mean we should commit sg3_utils to ports then? >>>> >>>> On Sat, 7 Apr 2007, Scott Long wrote: >>>> >>>>> scottl 2007-04-07 19:40:58 UTC >>>>> >>>>> FreeBSD src repository >>>>> >>>>> Modified files: >>>>> sys/modules/cam Makefile >>>>> sys/conf files NOTES >>>>> sys/compat/linux linux_ioctl.c linux_ioctl.h >>>>> Added files: >>>>> sys/cam/scsi scsi_sg.c scsi_sg.h >>>>> Log: >>>>> Add the CAM 'SG' peripheral device. This device implements a subset of >>>>> the >>>>> Linux SCSI SG passthrough device API. The intention is to allow for >>>>> both >>>>> running of Linux apps that want to talk to /dev/sg* nodes, and to >>>>> facilitate >>>>> porting of apps from Linux to FreeBSD. As such, both native and >>>>> linuxolator >>>>> entry points and definitions are provided. >>>>> >>>>> Caveats: >>>>> - This does not support the procfs and sysfs nodes that the Linux SG >>>>> driver provides. Some Linux apps may rely on these for operation, >>>>> others may only use them for informational purposes. >>>>> - More ioctls need to be implemented. >>>>> - Linux uses a naming scheme of "sg[a-z]" for devices, while FreeBSD >>>>> uses a >>>>> scheme of "sg[0-9]". Devfs aliasis (symlinks) are automatically >>>>> created >>>>> to link the two together. However, tools like camcontrol only see >>>>> the >>>>> native names. >>>>> - Some operations were originally designed to return byte counts or >>>>> other >>>>> data directly as the syscall return value. The linuxolator doesn't >>>>> appear >>>>> to support this well, so this driver just punts for these cases. >>>>> >>>>> Now that the driver is in place, others are welcome to add missing >>>>> functionality. Thanks to Roman Divacky for pushing this work along. >>>>> >>>>> Revision Changes Path >>>>> 1.1 +987 -0 src/sys/cam/scsi/scsi_sg.c (new) >>>>> 1.1 +139 -0 src/sys/cam/scsi/scsi_sg.h (new) >>>>> 1.138 +27 -0 src/sys/compat/linux/linux_ioctl.c >>>>> 1.25 +34 -0 src/sys/compat/linux/linux_ioctl.h >>>>> 1.1419 +5 -0 src/sys/conf/NOTES >>>>> 1.1191 +1 -0 src/sys/conf/files >>>>> 1.15 +1 -0 src/sys/modules/cam/Makefile >>>>> >> > > From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:16:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 517A816A400; Mon, 9 Apr 2007 19:16:25 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2B89313C455; Mon, 9 Apr 2007 19:16:25 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39JGPx8092283; Mon, 9 Apr 2007 19:16:25 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39JGOXu092269; Mon, 9 Apr 2007 19:16:24 GMT (envelope-from emaste) Message-Id: <200704091916.l39JGOXu092269@repoman.freebsd.org> From: Ed Maste Date: Mon, 9 Apr 2007 19:16:24 +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/usr.bin/kdump kdump.c mksubr 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: Mon, 09 Apr 2007 19:16:25 -0000 emaste 2007-04-09 19:16:24 UTC FreeBSD src repository Modified files: usr.bin/kdump kdump.c mksubr Log: Remove static ptrace_ops array and extract ptrace op names from sys/ptrace.h with mksubr. Revision Changes Path 1.35 +2 -36 src/usr.bin/kdump/kdump.c 1.9 +2 -0 src/usr.bin/kdump/mksubr From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:16:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8EA416A402; Mon, 9 Apr 2007 19:16:48 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A30AF13C448; Mon, 9 Apr 2007 19:16:48 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39JGmQq092346; Mon, 9 Apr 2007 19:16:48 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39JGmep092345; Mon, 9 Apr 2007 19:16:48 GMT (envelope-from pjd) Message-Id: <200704091916.l39JGmep092345@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 19:16:48 +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 ObsoleteFiles.inc src/usr.bin/uuidgen Makefile 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: Mon, 09 Apr 2007 19:16:48 -0000 pjd 2007-04-09 19:16:48 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc usr.bin/uuidgen Makefile Log: Move uuidgen(1) from /usr/bin/ to /bin/. It will be used in rc.d/hostid script, which will be executed before /usr/ mount. Reviewed by: mlaier, rink, brooks, rwatson Revision Changes Path 1.78 +2 -0 src/ObsoleteFiles.inc 1.3 +2 -0 src/usr.bin/uuidgen/Makefile From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:18:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB5DD16A401; Mon, 9 Apr 2007 19:18:09 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A53F213C44C; Mon, 9 Apr 2007 19:18:09 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39JI96K092455; Mon, 9 Apr 2007 19:18:09 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39JI91F092454; Mon, 9 Apr 2007 19:18:09 GMT (envelope-from pjd) Message-Id: <200704091918.l39JI91F092454@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 19:18:09 +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/sys kernel.h sysctl.h src/sys/kern kern_mib.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: Mon, 09 Apr 2007 19:18:09 -0000 pjd 2007-04-09 19:18:09 UTC FreeBSD src repository Modified files: sys/sys sysctl.h kernel.h sys/kern kern_mib.c Log: Add kern.hostuuid sysctl, which will be used to keep host's UUID. Reviewed by: mlaier, rink, brooks, rwatson Revision Changes Path 1.77 +3 -0 src/sys/kern/kern_mib.c 1.134 +1 -0 src/sys/sys/kernel.h 1.146 +3 -1 src/sys/sys/sysctl.h From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:21:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E36D416A400; Mon, 9 Apr 2007 19:21:27 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D5AB613C45E; Mon, 9 Apr 2007 19:21:27 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39JLRJO093354; Mon, 9 Apr 2007 19:21:27 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39JLRuO093353; Mon, 9 Apr 2007 19:21:27 GMT (envelope-from pjd) Message-Id: <200704091921.l39JLRuO093353@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 19:21:27 +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/etc/rc.d Makefile hostid src/etc/defaults rc.conf 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: Mon, 09 Apr 2007 19:21:28 -0000 pjd 2007-04-09 19:21:27 UTC FreeBSD src repository Modified files: etc/rc.d Makefile etc/defaults rc.conf Added files: etc/rc.d hostid Log: Add rc.d/hostid script (turned on by default) which on first boot generates UUID and stores it in /etc/hostid ($hostid_file) as well as sets kern.hostuuid and kern.hostid sysctls on every boot. Hostid can be reset using '/etc/rc.d/hostid reset' command. Hostid generation and setting can be turned off by setting variable hostid_enable to "NO" in /etc/rc.conf. Reviewed by: mlaier, rink, brooks, rwatson Revision Changes Path 1.313 +2 -0 src/etc/defaults/rc.conf 1.81 +1 -1 src/etc/rc.d/Makefile 1.1 +80 -0 src/etc/rc.d/hostid (new) From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:23:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 782EC16A403; Mon, 9 Apr 2007 19:23:52 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5229D13C484; Mon, 9 Apr 2007 19:23:52 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39JNqx3093795; Mon, 9 Apr 2007 19:23:52 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39JNqro093794; Mon, 9 Apr 2007 19:23:52 GMT (envelope-from njl) Message-Id: <200704091923.l39JNqro093794@repoman.freebsd.org> From: Nate Lawson Date: Mon, 9 Apr 2007 19:23:52 +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/kern vfs_mount.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: Mon, 09 Apr 2007 19:23:52 -0000 njl 2007-04-09 19:23:52 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Clean up the root mount and mount wait code. No mutexes are needed here since a spurious wakeup() is the only possible outcome and this is fine in the BSD programming model. Revision Changes Path 1.255 +10 -15 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:44:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 416FD16A401; Mon, 9 Apr 2007 19:44:10 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1B45513C483; Mon, 9 Apr 2007 19:44:10 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39Ji9W5097468; Mon, 9 Apr 2007 19:44:09 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39Ji9YP097465; Mon, 9 Apr 2007 19:44:09 GMT (envelope-from bms) Message-Id: <200704091944.l39Ji9YP097465@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 9 Apr 2007 19:44:09 +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/tools/regression/netinet/ipsockopt ipsockopt.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: Mon, 09 Apr 2007 19:44:10 -0000 bms 2007-04-09 19:44:09 UTC FreeBSD src repository Modified files: tools/regression/netinet/ipsockopt ipsockopt.c Log: Fix a bug whereby group addresses were incorrectly computed in the test. [Since the change to strict refcounting for in_multi objects, this test began to fail; formerly the refcount was a count of the number of requests for a given address, NOT a count of pointers to the object.] Revision Changes Path 1.7 +2 -2 src/tools/regression/netinet/ipsockopt/ipsockopt.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:44:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2035416A400; Mon, 9 Apr 2007 19:44:20 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1220513C46C; Mon, 9 Apr 2007 19:44:20 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39JiJrf097528; Mon, 9 Apr 2007 19:44:19 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39JiJCT097527; Mon, 9 Apr 2007 19:44:19 GMT (envelope-from emaste) Message-Id: <200704091944.l39JiJCT097527@repoman.freebsd.org> From: Ed Maste Date: Mon, 9 Apr 2007 19:44:19 +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/net rtsock.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: Mon, 09 Apr 2007 19:44:20 -0000 emaste 2007-04-09 19:44:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net rtsock.c Log: MFC rtsock.c r1.124, which was overlooked some time ago: Fix for PR 82974. We were not checking that the route looked up in the case of an RTM_CHANGE was specific, i.e. that it matched completely. This led to a route change of a non-existent route changing the default route as the radix code would simply back track to that point and hand that route back to the routing socket code. PR: 82974 Reviewed by: Tai-hwa Liang Ben Kaduk Bjoern A. Zeeb Obtained from: OpenBSD with modifications. Revision Changes Path 1.123.2.8 +19 -0 src/sys/net/rtsock.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 19:52:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6675A16A401; Mon, 9 Apr 2007 19:52:45 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 402A613C469; Mon, 9 Apr 2007 19:52:45 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39JqjRt098837; Mon, 9 Apr 2007 19:52:45 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39JqjaW098836; Mon, 9 Apr 2007 19:52:45 GMT (envelope-from bms) Message-Id: <200704091952.l39JqjaW098836@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 9 Apr 2007 19:52:45 +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/usr.sbin/ifmcstat ifmcstat.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: Mon, 09 Apr 2007 19:52:45 -0000 bms 2007-04-09 19:52:44 UTC FreeBSD src repository Modified files: usr.sbin/ifmcstat ifmcstat.c Log: Remove __P. Revision Changes Path 1.16 +7 -7 src/usr.sbin/ifmcstat/ifmcstat.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 20:21:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1530016A403; Mon, 9 Apr 2007 20:21:51 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E2D6613C487; Mon, 9 Apr 2007 20:21:50 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39KLoEl006149; Mon, 9 Apr 2007 20:21:50 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39KLovu006148; Mon, 9 Apr 2007 20:21:50 GMT (envelope-from pjd) Message-Id: <200704092021.l39KLovu006148@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 20:21:50 +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/lib/libc/gen sysctl.3 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: Mon, 09 Apr 2007 20:21:51 -0000 pjd 2007-04-09 20:21:50 UTC FreeBSD src repository Modified files: lib/libc/gen sysctl.3 Log: Document KERN_HOSTUUID. Reminded by: ru Revision Changes Path 1.68 +4 -1 src/lib/libc/gen/sysctl.3 From owner-cvs-src@FreeBSD.ORG Mon Apr 9 21:10:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B7DE16A404; Mon, 9 Apr 2007 21:10:04 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 74BDA13C4BC; Mon, 9 Apr 2007 21:10:04 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39LA4qN055387; Mon, 9 Apr 2007 21:10:04 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39LA45U055383; Mon, 9 Apr 2007 21:10:04 GMT (envelope-from njl) Message-Id: <200704092110.l39LA45U055383@repoman.freebsd.org> From: Nate Lawson Date: Mon, 9 Apr 2007 21:10:04 +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/kern vfs_mount.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: Mon, 09 Apr 2007 21:10:04 -0000 njl 2007-04-09 21:10:04 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Restore the locking for the sleep/wakeup to avoid waiting an extra 1 sec if a race was lost. We're still single-threaded at this point, but just be safe for the future. Revision Changes Path 1.256 +11 -5 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Mon Apr 9 22:04:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4544516A401; Mon, 9 Apr 2007 22:04:28 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1DFEF13C44B; Mon, 9 Apr 2007 22:04:28 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39M4S6b082893; Mon, 9 Apr 2007 22:04:28 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39M4RJd082892; Mon, 9 Apr 2007 22:04:27 GMT (envelope-from emaste) Message-Id: <200704092204.l39M4RJd082892@repoman.freebsd.org> From: Ed Maste Date: Mon, 9 Apr 2007 22:04:27 +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/usr.bin/kdump kdump_subr.h 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: Mon, 09 Apr 2007 22:04:28 -0000 emaste 2007-04-09 22:04:27 UTC FreeBSD src repository Modified files: usr.bin/kdump kdump_subr.h Log: Add prototype for generated ptraceopname function. Revision Changes Path 1.3 +1 -0 src/usr.bin/kdump/kdump_subr.h From owner-cvs-src@FreeBSD.ORG Mon Apr 9 22:09:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C154316A40A; Mon, 9 Apr 2007 22:09:09 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 99B4113C484; Mon, 9 Apr 2007 22:09:09 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39M99vL083198; Mon, 9 Apr 2007 22:09:09 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39M99i9083197; Mon, 9 Apr 2007 22:09:09 GMT (envelope-from pjd) Message-Id: <200704092209.l39M99i9083197@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 22:09:09 +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/boot/forth loader.conf 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: Mon, 09 Apr 2007 22:09:09 -0000 pjd 2007-04-09 22:09:09 UTC FreeBSD src repository Modified files: sys/boot/forth loader.conf Log: Add zfs_load here. Reminded by: bmah Revision Changes Path 1.120 +1 -0 src/sys/boot/forth/loader.conf From owner-cvs-src@FreeBSD.ORG Mon Apr 9 22:29:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A18016A407; Mon, 9 Apr 2007 22:29:14 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 42B6D13C484; Mon, 9 Apr 2007 22:29:14 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39MTEaC086563; Mon, 9 Apr 2007 22:29:14 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39MTELQ086562; Mon, 9 Apr 2007 22:29:14 GMT (envelope-from pjd) Message-Id: <200704092229.l39MTELQ086562@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 22:29: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/sys kernel.h 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: Mon, 09 Apr 2007 22:29:14 -0000 pjd 2007-04-09 22:29:14 UTC FreeBSD src repository Modified files: sys/sys kernel.h Log: Fix build breakage. Revision Changes Path 1.135 +1 -1 src/sys/sys/kernel.h From owner-cvs-src@FreeBSD.ORG Mon Apr 9 22:48:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3443716A402; Mon, 9 Apr 2007 22:48:09 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0C49E13C45B; Mon, 9 Apr 2007 22:48:09 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39Mm8b5089683; Mon, 9 Apr 2007 22:48:08 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39Mm86m089682; Mon, 9 Apr 2007 22:48:08 GMT (envelope-from kan) Message-Id: <200704092248.l39Mm86m089682@repoman.freebsd.org> From: Alexander Kabaev Date: Mon, 9 Apr 2007 22:48:08 +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/lib/libc/gen Symbol.map src/lib/libc/i386 Symbol.map 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: Mon, 09 Apr 2007 22:48:09 -0000 kan 2007-04-09 22:48:08 UTC FreeBSD src repository Modified files: lib/libc/gen Symbol.map lib/libc/i386 Symbol.map Log: Clean-ip TLS symbol versions. [_]__tls_get_addr function is part of the platform ABI and as such does not belong in FBSDprivate. __libc_tls_* functions do not have to be visible to outside world at all. Revision Changes Path 1.4 +1 -6 src/lib/libc/gen/Symbol.map 1.2 +1 -0 src/lib/libc/i386/Symbol.map From owner-cvs-src@FreeBSD.ORG Mon Apr 9 22:55:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B92EB16A40A; Mon, 9 Apr 2007 22:55:15 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3F74713C4B8; Mon, 9 Apr 2007 22:55:15 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39MtE2p091125; Mon, 9 Apr 2007 22:55:15 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39MtEeR091124; Mon, 9 Apr 2007 22:55:14 GMT (envelope-from thompsa) Message-Id: <200704092255.l39MtEeR091124@repoman.freebsd.org> From: Andrew Thompson Date: Mon, 9 Apr 2007 22:55: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/share/man/man9 hash.9 src/sys/sys hash.h 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: Mon, 09 Apr 2007 22:55:15 -0000 thompsa 2007-04-09 22:55:14 UTC FreeBSD src repository Modified files: share/man/man9 hash.9 sys/sys hash.h Log: Fix a compiler warning so hash.h can be included in the kernel. This changes the args for hash32_stre and hash32_strne but there are no consumers in the base system and openbgpd does not use it which the initial import was for. Silence on: hackers Revision Changes Path 1.4 +3 -3 src/share/man/man9/hash.9 1.3 +5 -4 src/sys/sys/hash.h From owner-cvs-src@FreeBSD.ORG Mon Apr 9 23:00:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B191116A402; Mon, 9 Apr 2007 23:00:29 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 894DB13C457; Mon, 9 Apr 2007 23:00:29 +0000 (UTC) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39N0TEX091443; Mon, 9 Apr 2007 23:00:29 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39N0TEp091442; Mon, 9 Apr 2007 23:00:29 GMT (envelope-from kan) Message-Id: <200704092300.l39N0TEp091442@repoman.freebsd.org> From: Alexander Kabaev Date: Mon, 9 Apr 2007 23:00:29 +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/libexec/rtld-elf Makefile Symbol.map Versions.def 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: Mon, 09 Apr 2007 23:00:29 -0000 kan 2007-04-09 23:00:29 UTC FreeBSD src repository Modified files: libexec/rtld-elf Makefile Symbol.map Versions.def Log: Bring rtld exports in line with corresponding symbols exported from libc. Disable SYMVER_DEFAULT n rtld until its implications are understood better. Revision Changes Path 1.38 +1 -1 src/libexec/rtld-elf/Makefile 1.2 +4 -1 src/libexec/rtld-elf/Symbol.map 1.2 +3 -0 src/libexec/rtld-elf/Versions.def From owner-cvs-src@FreeBSD.ORG Mon Apr 9 23:06:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1D87016A46D; Mon, 9 Apr 2007 23:06:16 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id B64FF13C4E9; Mon, 9 Apr 2007 23:06:15 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by solow.pil.dk (Postfix) with ESMTP id 8C1131CC0BE; Tue, 10 Apr 2007 00:45:10 +0200 (CEST) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id 0CE5DB85B; Tue, 10 Apr 2007 00:45:09 +0200 (CEST) Date: Tue, 10 Apr 2007 00:45:09 +0200 From: Henrik Brix Andersen To: Pawel Jakub Dawidek Message-ID: <20070409224509.GI84176@tirith.brixandersen.dk> Mail-Followup-To: Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200704091921.l39JLRuO093353@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jho1yZJdad60DJr+" Content-Disposition: inline In-Reply-To: <200704091921.l39JLRuO093353@repoman.freebsd.org> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.14 (2007-02-12) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d Makefile hostid src/etc/defaults rc.conf 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: Mon, 09 Apr 2007 23:06:16 -0000 --jho1yZJdad60DJr+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 09, 2007 at 07:21:27PM +0000, Pawel Jakub Dawidek wrote: > pjd 2007-04-09 19:21:27 UTC >=20 > FreeBSD src repository >=20 > Modified files: > etc/rc.d Makefile=20 > etc/defaults rc.conf=20 > Added files: > etc/rc.d hostid=20 > Log: > Add rc.d/hostid script (turned on by default) which on first boot gener= ates > UUID and stores it in /etc/hostid ($hostid_file) as well as sets kern.h= ostuuid > and kern.hostid sysctls on every boot. > =20 > Hostid can be reset using '/etc/rc.d/hostid reset' command. > =20 > Hostid generation and setting can be turned off by setting variable > hostid_enable to "NO" in /etc/rc.conf. Can you shed some light on what this unique host ID can/will be used for? Regards, Brix --=20 Henrik Brix Andersen --jho1yZJdad60DJr+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) Comment: GnuPG signed iD8DBQFGGsH1v+Q4flTiePgRAuY6AKCoLekvANHps/pxGyeEHirRoryq5gCfY1Nu mVlgrNpg2pW21ImtHmuJ68E= =ivsR -----END PGP SIGNATURE----- --jho1yZJdad60DJr+-- From owner-cvs-src@FreeBSD.ORG Mon Apr 9 23:13:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F09C716A400; Mon, 9 Apr 2007 23:13:41 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id 8BB1D13C457; Mon, 9 Apr 2007 23:13:41 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 00C4145CD9; Tue, 10 Apr 2007 01:13:39 +0200 (CEST) Received: from localhost (154.81.datacomsa.pl [195.34.81.154]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id CF809487FB; Tue, 10 Apr 2007 01:13:34 +0200 (CEST) Date: Tue, 10 Apr 2007 01:13:22 +0200 From: Pawel Jakub Dawidek To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20070409231322.GX76673@garage.freebsd.pl> References: <200704091921.l39JLRuO093353@repoman.freebsd.org> <20070409224509.GI84176@tirith.brixandersen.dk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="v6gilOcl2gU05R9Q" Content-Disposition: inline In-Reply-To: <20070409224509.GI84176@tirith.brixandersen.dk> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-2.6 required=3.0 tests=BAYES_00 autolearn=ham version=3.0.4 Cc: Subject: Re: cvs commit: src/etc/rc.d Makefile hostid src/etc/defaults rc.conf 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: Mon, 09 Apr 2007 23:13:42 -0000 --v6gilOcl2gU05R9Q Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 10, 2007 at 12:45:09AM +0200, Henrik Brix Andersen wrote: > On Mon, Apr 09, 2007 at 07:21:27PM +0000, Pawel Jakub Dawidek wrote: > > pjd 2007-04-09 19:21:27 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > etc/rc.d Makefile=20 > > etc/defaults rc.conf=20 > > Added files: > > etc/rc.d hostid=20 > > Log: > > Add rc.d/hostid script (turned on by default) which on first boot gen= erates > > UUID and stores it in /etc/hostid ($hostid_file) as well as sets kern= =2Ehostuuid > > and kern.hostid sysctls on every boot. > > =20 > > Hostid can be reset using '/etc/rc.d/hostid reset' command. > > =20 > > Hostid generation and setting can be turned off by setting variable > > hostid_enable to "NO" in /etc/rc.conf. >=20 > Can you shed some light on what this unique host ID can/will be used for? For example ZFS uses it to remember on which host it was imported last, so when you by accident try to import the pool on another host, it will print a warning and demand force import. In the future, it will be a great future once we implement variant/magic symlinks. Imagine file system exported via NFS to multiple hosts. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --v6gilOcl2gU05R9Q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGGsiSForvXbEpPzQRAsGVAKDUWEzTMTIboGRhzazs0xqdjh3q8QCfXFXL ml7hn+SUge4TW7ozzvgUzz8= =ilcf -----END PGP SIGNATURE----- --v6gilOcl2gU05R9Q-- From owner-cvs-src@FreeBSD.ORG Mon Apr 9 23:30:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BB5416A403; Mon, 9 Apr 2007 23:30:29 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5328013C45A; Mon, 9 Apr 2007 23:30:29 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39NUT2m097113; Mon, 9 Apr 2007 23:30:29 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39NUTNk097112; Mon, 9 Apr 2007 23:30:29 GMT (envelope-from pjd) Message-Id: <200704092330.l39NUTNk097112@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Apr 2007 23:30:29 +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/contrib/opensolaris/uts/common/fs/zfs arc.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: Mon, 09 Apr 2007 23:30:29 -0000 pjd 2007-04-09 23:30:29 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs arc.c Log: Remove unused #define. Revision Changes Path 1.5 +0 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/arc.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 00:26:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADC6D16A400; Tue, 10 Apr 2007 00:26:13 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9DC0013C448; Tue, 10 Apr 2007 00:26:13 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A0QDBk007184; Tue, 10 Apr 2007 00:26:13 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A0QDau007183; Tue, 10 Apr 2007 00:26:13 GMT (envelope-from bms) Message-Id: <200704100026.l3A0QDau007183@repoman.freebsd.org> From: Bruce M Simpson Date: Tue, 10 Apr 2007 00:26:13 +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/usr.sbin/ifmcstat Makefile ifmcstat.8 ifmcstat.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: Tue, 10 Apr 2007 00:26:13 -0000 bms 2007-04-10 00:26:13 UTC FreeBSD src repository Modified files: usr.sbin/ifmcstat Makefile ifmcstat.8 ifmcstat.c Log: Considerably rework the ifmcstat utility. * Build with or without INET, INET6, or KVM features. * When built without KVM, the sysctl-based getifmaddrs() function is used as the back-end for the utility. * Reflect the fact that FreeBSD now uses the in_multi refcount as a true refcount. * Style. The utility may now be run without super-user privilege, albeit with a less detailed display, equivalent to that of the soon-to-be-retired netstat -g host-mode output. MFC after: 3 weeks Revision Changes Path 1.10 +3 -0 src/usr.sbin/ifmcstat/Makefile 1.9 +40 -2 src/usr.sbin/ifmcstat/ifmcstat.8 1.17 +342 -113 src/usr.sbin/ifmcstat/ifmcstat.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 00:27:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5807916A401; Tue, 10 Apr 2007 00:27:26 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4524613C448; Tue, 10 Apr 2007 00:27:26 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A0RQPN007341; Tue, 10 Apr 2007 00:27:26 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A0RQGq007340; Tue, 10 Apr 2007 00:27:26 GMT (envelope-from thompsa) Message-Id: <200704100027.l3A0RQGq007340@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 10 Apr 2007 00:27:26 +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/sbin/ifconfig iftrunk.c src/share/man/man4 trunk.4 src/sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if.c if_ethersubr.c if_trunk.c if_trunk.h if_var.h src/sys/sys priv.h 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: Tue, 10 Apr 2007 00:27:26 -0000 thompsa 2007-04-10 00:27:25 UTC FreeBSD src repository Modified files: sys/net if.c if_ethersubr.c if_var.h sys/sys priv.h Added files: sbin/ifconfig iftrunk.c share/man/man4 trunk.4 sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if_trunk.c if_trunk.h Log: Add the trunk(4) driver for providing link aggregation, failover and fault tolerance. This driver allows aggregation of multiple network interfaces as one virtual interface using a number of different protocols/algorithms. failover - Sends traffic through the secondary port if the master becomes inactive. fec - Supports Cisco Fast EtherChannel. lacp - Supports the IEEE 802.3ad Link Aggregation Control Protocol (LACP) and the Marker Protocol. loadbalance - Static loadbalancing using an outgoing hash. roundrobin - Distributes outgoing traffic using a round-robin scheduler through all active ports. This code was obtained from OpenBSD and this also includes 802.3ad LACP support from agr(4) in NetBSD. Revision Changes Path 1.1 +153 -0 src/sbin/ifconfig/iftrunk.c (new) 1.1 +172 -0 src/share/man/man4/trunk.4 (new) 1.1 +1763 -0 src/sys/net/ieee8023ad_lacp.c (new) 1.1 +289 -0 src/sys/net/ieee8023ad_lacp.h (new) 1.270 +6 -0 src/sys/net/if.c 1.227 +14 -0 src/sys/net/if_ethersubr.c 1.1 +1590 -0 src/sys/net/if_trunk.c (new) 1.1 +209 -0 src/sys/net/if_trunk.h (new) 1.113 +1 -0 src/sys/net/if_var.h 1.9 +1 -0 src/sys/sys/priv.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 00:30:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37D5916A401; Tue, 10 Apr 2007 00:30:27 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0FC3413C45A; Tue, 10 Apr 2007 00:30:27 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A0UQJQ007564; Tue, 10 Apr 2007 00:30:26 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A0UQoT007563; Tue, 10 Apr 2007 00:30:26 GMT (envelope-from bms) Message-Id: <200704100030.l3A0UQoT007563@repoman.freebsd.org> From: Bruce M Simpson Date: Tue, 10 Apr 2007 00:30:26 +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/usr.bin/netstat mcast.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: Tue, 10 Apr 2007 00:30:27 -0000 bms 2007-04-10 00:30:26 UTC FreeBSD src repository Modified files: usr.bin/netstat mcast.c Log: Mark netstat -g host-mode output as deprecated. MFC after: 2 weeks Revision Changes Path 1.8 +9 -0 src/usr.bin/netstat/mcast.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 00:35:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A64D016A400; Tue, 10 Apr 2007 00:35:32 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7D5AE13C43E; Tue, 10 Apr 2007 00:35:32 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A0ZWmd009156; Tue, 10 Apr 2007 00:35:32 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A0ZWLs009155; Tue, 10 Apr 2007 00:35:32 GMT (envelope-from thompsa) Message-Id: <200704100035.l3A0ZWLs009155@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 10 Apr 2007 00:35:32 +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/sbin/ifconfig Makefile ifconfig.8 src/share/man/man4 Makefile src/sys/conf NOTES files 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: Tue, 10 Apr 2007 00:35:32 -0000 thompsa 2007-04-10 00:35:31 UTC FreeBSD src repository Modified files: sbin/ifconfig Makefile ifconfig.8 share/man/man4 Makefile sys/conf NOTES files Log: Hook trunk(4) up to the build. Revision Changes Path 1.32 +1 -0 src/sbin/ifconfig/Makefile 1.135 +17 -0 src/sbin/ifconfig/ifconfig.8 1.378 +1 -0 src/share/man/man4/Makefile 1.1420 +1 -0 src/sys/conf/NOTES 1.1195 +2 -0 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Tue Apr 10 00:41:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1BF2516A401; Tue, 10 Apr 2007 00:41:32 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E71E213C483; Tue, 10 Apr 2007 00:41:31 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A0fVrw010095; Tue, 10 Apr 2007 00:41:31 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A0fVSc010094; Tue, 10 Apr 2007 00:41:31 GMT (envelope-from thompsa) Message-Id: <200704100041.l3A0fVSc010094@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 10 Apr 2007 00:41:31 +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/modules Makefile src/sys/modules/if_trunk Makefile 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: Tue, 10 Apr 2007 00:41:32 -0000 thompsa 2007-04-10 00:41:31 UTC FreeBSD src repository Modified files: sys/modules Makefile Added files: sys/modules/if_trunk Makefile Log: Add trunk(4) module. Revision Changes Path 1.527 +1 -0 src/sys/modules/Makefile 1.1 +19 -0 src/sys/modules/if_trunk/Makefile (new) From owner-cvs-src@FreeBSD.ORG Tue Apr 10 01:05:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 565F216A403; Tue, 10 Apr 2007 01:05:13 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.freebsd.org (Postfix) with ESMTP id D92B413C46E; Tue, 10 Apr 2007 01:05:12 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ozlabs.org (Postfix) with ESMTP id 3675EDDEF8; Tue, 10 Apr 2007 11:05:11 +1000 (EST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id F1E481A9C97; Tue, 10 Apr 2007 10:35:10 +0930 (CST) Date: Tue, 10 Apr 2007 10:35:10 +0930 From: Greg 'groggy' Lehey To: Brian Somers Message-ID: <20070410010510.GB61460@wantadilla.lemis.com> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <20070409021942.C150B16A529@hub.freebsd.org> <20070409024826.553be564@dev.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TakKZr9L6Hm6aLOc" Content-Disposition: inline In-Reply-To: <20070409024826.553be564@dev.lan.Awfulhak.org> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 01:05:13 -0000 --TakKZr9L6Hm6aLOc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline [heavily trimmed] On Monday, 9 April 2007 at 2:48:26 -0700, Brian Somers wrote: > On Mon, 9 Apr 2007 02:19:42 +0000 (UTC) Greg Lehey wrote: >> grog 2007-04-09 02:19:37 UTC >> >> FreeBSD src repository >> >> Modified files: >> usr.bin/touch touch.1 touch.c >> Log: >> Add -A flag to adjust existing time stamps. >> diff -u src/usr.bin/touch/touch.1:1.14 src/usr.bin/touch/touch.1:1.15 >> --- src/usr.bin/touch/touch.1:1.14 Sun Feb 13 22:25:24 2005 >> +++ src/usr.bin/touch/touch.1 Mon Apr 9 02:19:37 2007 >> +.It Fl A >> +Adjust the access and modification time stamps for the file by the >> +specified value. >> +This flag is intended for use in modifying files with a time stamp >> +relative to an incorrect time zone. > > I don't understand what this means. File times are in UTC aren't > they? No, they're in time_t. But if you import files from other systems, you frequently get times which are off by some time zone offset. The case in point is that when importing files from digital cameras, it's frequently impossible to get the correct time. Many cameras are too stupid to handle time zones at all and assume it's UTC. Those that can make a typically US assumption that all time zones are on the hour. Here in South Australia, for example, we have a time zone offset of +0930, which seems to blow the minds of most cameras. In my case, I have a Canon that fits the first category, and a Nikon that fits the second. >> +The argument is of the form >> +.Dq [-][[hh]mm]SS >> +where each pair of letters represents the following: >> +.Pp >> +.Bl -tag -width Ds -compact -offset indent >> +.It Ar - >> +Make the adjustment negative: the new time stamp is set to be before >> +the old one. >> +.It Ar hh >> +The hour of the day, from 00 to 23. >> +.It Ar mm >> +The minute of the hour, from 00 to 59. >> +.It Ar SS >> +The second of the minute, from 00 to 59. >> +.El > > Why this format? It's basically a simplification of the format that touch(1) uses to specify timestamps. > My guess is that the delta is expected to be a DST difference, but > if it is, I'm even more confused. Yes, that seems confusing. For the +1030 time difference that I had to contend with on Sunday, you'd write -103000 (HHMMSS). But why limit it to exact time zone offsets? How accurate is the clock in your digital camera? Did you reset it when the clocks went forward a couple of weeks ago? Also, currently there is no time zone anywhere in the world that is +1030. I've just checked my camera and discovered that it said 10:01 when in fact the time was 9:23. That's one hour for forgetting to put the clock back, compensated for by it having lost 22 minutes since last set. If I put a time zone in there, rather than an exact offset, I'd be restricting the functionality. >> +.Pp >> +When used in conjunction with the >> +.Fl a >> +flag only, the modification time is adjusted by the time specified as >> +argument to the >> +.Fl A >> +flag, while the access time is modified from the base time described >> +above. > > Wow. So -A changes both times in addition to the > access-only time change. This is really unintuitive > to me. I'd expect ``-A 000001 -a' to adjust the access > time only (as -a previously meant). I wouldn't expect > the modification time to be bumped by a second and the > access time to be set to one second in the future. > > But again, I don't know why you'd want to do this... I can't see any earthly reason to use -m or -a in conjunction with -A. I was simply documenting what would happen. But see below. >> +.Pp >> +If the file does not exist, and creation is allowed, >> +.Fl A >> +does not change its time stamps. > > So if I ``touch -A 000001 something'' where ``something'' > doesn't already exist, the file is created and the time > is left at now? That's also confusing. What would you set it to? I was thinking of prohibiting the use of -c altogether, since it doesn't make sense. What do you think? >> - aflag = cflag = fflag = mflag = timeset = 0; >> + myname = argv[0]; > > myname should be set to the base name, not the full argv[0]. OK. Will change. > I personally think this option is a mistake. I would > think that something like this would be better: > > [-A adjust] - adjust the updated time(s) by the given > ``adjust'' number of seconds. Then you're asking people to calculate the number of seconds. Why? I suppose you could add a second format. I was sorely tempted to write HH:MM:SS, but that doesn't match the format for the -t option, which is enshrined in POSIX.1. > I would imagine this to be useful in (say) a test script that wanted > to set up a bunch of files with time stamps set to specific relative > values. Yes, agreed. > But I'm clearly missing the point here...? Is it clearer now? After thinking about this, it's clear that the interaction between -A on the one hand and -a and -m on the other is confusing. I'll change it so that only the specified time stamps are changed under these circumstances. Greg -- See complete headers for address and phone numbers. --TakKZr9L6Hm6aLOc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFGGuLGIubykFB6QiMRAu8FAJ9gYAlZopZNJjM4Gg8Yd1FI3nRE/QCgnTdx oOb6WT/ZQxuFDfnZsZ3p5mI= =+MYi -----END PGP SIGNATURE----- --TakKZr9L6Hm6aLOc-- From owner-cvs-src@FreeBSD.ORG Tue Apr 10 01:09:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5508D16A401; Tue, 10 Apr 2007 01:09:03 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.freebsd.org (Postfix) with ESMTP id 1063013C46E; Tue, 10 Apr 2007 01:09:03 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ozlabs.org (Postfix) with ESMTP id 28981DDEFE; Tue, 10 Apr 2007 11:09:02 +1000 (EST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id EBB7E1A9C7A; Tue, 10 Apr 2007 10:39:01 +0930 (CST) Date: Tue, 10 Apr 2007 10:39:01 +0930 From: Greg 'groggy' Lehey To: Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?= Message-ID: <20070410010901.GD61460@wantadilla.lemis.com> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <864pnpdf8w.fsf@dwp.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="q9KOos5vDmpwPx9o" Content-Disposition: inline In-Reply-To: <864pnpdf8w.fsf@dwp.des.no> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 01:09:03 -0000 --q9KOos5vDmpwPx9o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Monday, 9 April 2007 at 12:16:47 +0200, Dag-Erling Smrgrav wrote: > Greg Lehey writes: >> Modified files: >> usr.bin/touch touch.1 touch.c >> Log: >> Print name by which program was started in usage() message. > > The latter part is incorrect and should be reverted. Furthermore, > usage() should be static. Can you give details? Greg -- See complete headers for address and phone numbers. --q9KOos5vDmpwPx9o Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFGGuOtIubykFB6QiMRAiEbAJ9ehjQ/wt4tINepn2apuOlciCvYCgCfajZE I8iwfFNLeedaXrKePQohWk4= =AmrL -----END PGP SIGNATURE----- --q9KOos5vDmpwPx9o-- From owner-cvs-src@FreeBSD.ORG Tue Apr 10 02:19:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81BB616A404; Tue, 10 Apr 2007 02:19:13 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 59E6813C448; Tue, 10 Apr 2007 02:19:13 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A2JDjV037900; Tue, 10 Apr 2007 02:19:13 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A2JD6u037899; Tue, 10 Apr 2007 02:19:13 GMT (envelope-from pjd) Message-Id: <200704100219.l3A2JD6u037899@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 02:19:12 +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/contrib/opensolaris/uts/common/fs/zfs zap.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: Tue, 10 Apr 2007 02:19:13 -0000 pjd 2007-04-10 02:19:12 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zap.c Log: Reduce diff against vendor - we have now stronger check for "mutex already initialized", so we can go back to kmem_alloc(). Revision Changes Path 1.2 +2 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/zap.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 02:35:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 969B216A400; Tue, 10 Apr 2007 02:35:57 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 84A3813C4C4; Tue, 10 Apr 2007 02:35:57 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A2ZvKW041036; Tue, 10 Apr 2007 02:35:57 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A2ZvdG041035; Tue, 10 Apr 2007 02:35:57 GMT (envelope-from pjd) Message-Id: <200704100235.l3A2ZvdG041035@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 02:35:57 +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/compat/opensolaris/kern opensolaris_kmem.c src/sys/compat/opensolaris/sys kmem.h src/sys/contrib/opensolaris/uts/common/fs/zfs arc.c src/sys/contrib/opensolaris/uts/common/fs/zfs/sys zfs_context.h 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: Tue, 10 Apr 2007 02:35:57 -0000 pjd 2007-04-10 02:35:57 UTC FreeBSD src repository Modified files: sys/compat/opensolaris/kern opensolaris_kmem.c sys/compat/opensolaris/sys kmem.h sys/contrib/opensolaris/uts/common/fs/zfs arc.c sys/contrib/opensolaris/uts/common/fs/zfs/sys zfs_context.h Log: Try to stabilize ZFS with regard to memory consumption: - Allow to shrink ARC down to 16MB (instead of 64MB). - Set arc_max to 1/2 of kmem_map by default. - Start freeing things earlier when low memory situation is detected. - Serialize execution of arc_lowmem(). I decided to setup minimum ZFS memory requirements to 512MB of RAM and 256MB of kmem_map size. If there is less RAM or kmem_map, a warning will be printed. World is cruel, be no better. In other words: modern file system requires modern hardware:) From ZFS administration guide: "Currently the minimum amount of memory recommended to install a Solaris system is 512 Mbytes. However, for good ZFS performance, at least one Gbyte or more of memory is recommended." Revision Changes Path 1.2 +23 -8 src/sys/compat/opensolaris/kern/opensolaris_kmem.c 1.2 +5 -2 src/sys/compat/opensolaris/sys/kmem.h 1.6 +35 -14 src/sys/contrib/opensolaris/uts/common/fs/zfs/arc.c 1.3 +0 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_context.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 03:09:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1419116A401; Tue, 10 Apr 2007 03:09:39 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E217413C48A; Tue, 10 Apr 2007 03:09:38 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A39c3s047409; Tue, 10 Apr 2007 03:09:38 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A39ccR047408; Tue, 10 Apr 2007 03:09:38 GMT (envelope-from thompsa) Message-Id: <200704100309.l3A39ccR047408@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 10 Apr 2007 03:09:38 +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/conf NOTES 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: Tue, 10 Apr 2007 03:09:39 -0000 thompsa 2007-04-10 03:09:38 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Fix build, trunk is a device not an option. Revision Changes Path 1.1421 +1 -1 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Tue Apr 10 03:35:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B405616A404; Tue, 10 Apr 2007 03:35:42 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8D7C913C465; Tue, 10 Apr 2007 03:35:42 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A3ZghP052136; Tue, 10 Apr 2007 03:35:42 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A3ZgQS052135; Tue, 10 Apr 2007 03:35:42 GMT (envelope-from thompsa) Message-Id: <200704100335.l3A3ZgQS052135@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 10 Apr 2007 03:35:42 +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/sbin/ifconfig ifconfig.8 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: Tue, 10 Apr 2007 03:35:42 -0000 thompsa 2007-04-10 03:35:42 UTC FreeBSD src repository Modified files: sbin/ifconfig ifconfig.8 Log: Bump document date for new trunk commands. Revision Changes Path 1.136 +1 -1 src/sbin/ifconfig/ifconfig.8 From owner-cvs-src@FreeBSD.ORG Tue Apr 10 04:03:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D133716A408; Tue, 10 Apr 2007 04:03:35 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C22D813C4CE; Tue, 10 Apr 2007 04:03:35 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A43Zjq057660; Tue, 10 Apr 2007 04:03:35 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A43ZnL057659; Tue, 10 Apr 2007 04:03:35 GMT (envelope-from delphij) Message-Id: <200704100403.l3A43ZnL057659@repoman.freebsd.org> From: Xin LI Date: Tue, 10 Apr 2007 04:03:35 +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/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Tue, 10 Apr 2007 04:03:35 -0000 delphij 2007-04-10 04:03:35 UTC FreeBSD src repository Modified files: usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h Log: Make use of ptrace(2) instead of procfs in truss(1), eliminating yet another need of an available /proc/ mount. Tested with: make universe Submitted by: howardsu Reviewed by: alfred Revision Changes Path 1.22 +1 -1 src/usr.bin/truss/Makefile 1.7 +17 -32 src/usr.bin/truss/amd64-fbsd.c 1.12 +2 -2 src/usr.bin/truss/extern.h 1.27 +21 -37 src/usr.bin/truss/i386-fbsd.c 1.26 +14 -33 src/usr.bin/truss/i386-linux.c 1.10 +8 -30 src/usr.bin/truss/ia64-fbsd.c 1.44 +101 -139 src/usr.bin/truss/main.c 1.2 +17 -31 src/usr.bin/truss/powerpc-fbsd.c 1.23 +117 -103 src/usr.bin/truss/setup.c 1.10 +18 -33 src/usr.bin/truss/sparc64-fbsd.c 1.18 +1 -2 src/usr.bin/truss/syscall.h 1.53 +75 -61 src/usr.bin/truss/syscalls.c 1.23 +2 -10 src/usr.bin/truss/truss.1 1.8 +23 -1 src/usr.bin/truss/truss.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 04:21:34 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54CF416A402; Tue, 10 Apr 2007 04:21:34 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id E59FD13C43E; Tue, 10 Apr 2007 04:21:33 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l3A4K1Cx066455; Mon, 9 Apr 2007 22:20:01 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Apr 2007 22:20:11 -0600 (MDT) Message-Id: <20070409.222011.1689682576.imp@bsdimp.com> To: grog@freebsd.org From: "M. Warner Losh" In-Reply-To: <20070410010510.GB61460@wantadilla.lemis.com> References: <20070409021942.C150B16A529@hub.freebsd.org> <20070409024826.553be564@dev.lan.Awfulhak.org> <20070410010510.GB61460@wantadilla.lemis.com> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Mon, 09 Apr 2007 22:20:01 -0600 (MDT) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, brian@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 04:21:34 -0000 In message: <20070410010510.GB61460@wantadilla.lemis.com> "Greg 'groggy' Lehey" writes: : On Monday, 9 April 2007 at 2:48:26 -0700, Brian Somers wrote: : > On Mon, 9 Apr 2007 02:19:42 +0000 (UTC) Greg Lehey wrote: : >> grog 2007-04-09 02:19:37 UTC : >> : >> FreeBSD src repository : >> : >> Modified files: : >> usr.bin/touch touch.1 touch.c : >> Log: : >> Add -A flag to adjust existing time stamps. : >> diff -u src/usr.bin/touch/touch.1:1.14 src/usr.bin/touch/touch.1:1.15 : >> --- src/usr.bin/touch/touch.1:1.14 Sun Feb 13 22:25:24 2005 : >> +++ src/usr.bin/touch/touch.1 Mon Apr 9 02:19:37 2007 : >> +.It Fl A : >> +Adjust the access and modification time stamps for the file by the : >> +specified value. : >> +This flag is intended for use in modifying files with a time stamp : >> +relative to an incorrect time zone. : > : > I don't understand what this means. File times are in UTC aren't : > they? : : No, they're in time_t. But if you import files from other systems, : you frequently get times which are off by some time zone offset. time_t is UTC, by definition (sadly, POSIX has enshrined a broken definition of UTC as the time_t definition, but that's not important right now). It cannot be a localtime. Localtime conversion of time_t is done by libc to print the local time. : The case in point is that when importing files from digital cameras, : it's frequently impossible to get the correct time. Many cameras are : too stupid to handle time zones at all and assume it's UTC. Those : that can make a typically US assumption that all time zones are on the : hour. Here in South Australia, for example, we have a time zone : offset of +0930, which seems to blow the minds of most cameras. In my : case, I have a Canon that fits the first category, and a Nikon that : fits the second. FAT doesn't deal in time_t. It deals in 'local time' only, encoded in a funky way. The rest of what you say is correct, but since there is much confusion around time_t I thought I'd be pedantic. Warner From owner-cvs-src@FreeBSD.ORG Tue Apr 10 04:26:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A81C16A409; Tue, 10 Apr 2007 04:26:40 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (203-109-251-39.static.bliink.ihug.co.nz [203.109.251.39]) by mx1.freebsd.org (Postfix) with ESMTP id 2111A13C4AD; Tue, 10 Apr 2007 04:26:38 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 531871CC58; Tue, 10 Apr 2007 16:26:36 +1200 (NZST) Date: Tue, 10 Apr 2007 16:26:36 +1200 From: Andrew Thompson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20070410042636.GC1870@heff.fud.org.nz> References: <200704100027.l3A0RQGq007340@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200704100027.l3A0RQGq007340@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: cvs commit: src/sbin/ifconfig iftrunk.c src/share/man/man4 trunk.4 src/sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if.c if_ethersubr.c if_trunk.c if_trunk.h if_var.h src/sys/sys priv.h 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: Tue, 10 Apr 2007 04:26:40 -0000 On Tue, Apr 10, 2007 at 12:27:26AM +0000, Andrew Thompson wrote: > thompsa 2007-04-10 00:27:25 UTC > > FreeBSD src repository > > Modified files: > sys/net if.c if_ethersubr.c if_var.h > sys/sys priv.h > Added files: > sbin/ifconfig iftrunk.c > share/man/man4 trunk.4 > sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h > if_trunk.c if_trunk.h > Log: > Add the trunk(4) driver for providing link aggregation, failover and fault > tolerance. This driver allows aggregation of multiple network interfaces as > one virtual interface using a number of different protocols/algorithms. > This should have included Approved by: re (kensmith) From owner-cvs-src@FreeBSD.ORG Tue Apr 10 04:37:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AE0916A532; Tue, 10 Apr 2007 04:37:30 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B8D3713C44B; Tue, 10 Apr 2007 04:37:30 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A4bURu062918; Tue, 10 Apr 2007 04:37:30 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A4bUwh062917; Tue, 10 Apr 2007 04:37:30 GMT (envelope-from simokawa) Message-Id: <200704100437.l3A4bUwh062917@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 10 Apr 2007 04:37:30 +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/geom/uzip g_uzip.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: Tue, 10 Apr 2007 04:37:31 -0000 simokawa 2007-04-10 04:37:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/geom/uzip g_uzip.c Log: MFC: rev 1.11 Fix a bug for over 4GB media. Revision Changes Path 1.4.2.4 +1 -1 src/sys/geom/uzip/g_uzip.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 05:00:13 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8312116A403; Tue, 10 Apr 2007 05:00:13 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.freebsd.org (Postfix) with ESMTP id 16DDA13C487; Tue, 10 Apr 2007 05:00:13 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ozlabs.org (Postfix) with ESMTP id A552DDDF1F; Tue, 10 Apr 2007 15:00:11 +1000 (EST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 71A461A9CB7; Tue, 10 Apr 2007 14:30:11 +0930 (CST) Date: Tue, 10 Apr 2007 14:30:11 +0930 From: Greg 'groggy' Lehey To: "M. Warner Losh" Message-ID: <20070410050011.GH91694@wantadilla.lemis.com> References: <20070409021942.C150B16A529@hub.freebsd.org> <20070409024826.553be564@dev.lan.Awfulhak.org> <20070410010510.GB61460@wantadilla.lemis.com> <20070409.222011.1689682576.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OgApRN/oydYDdnYz" Content-Disposition: inline In-Reply-To: <20070409.222011.1689682576.imp@bsdimp.com> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, brian@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 05:00:13 -0000 --OgApRN/oydYDdnYz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Monday, 9 April 2007 at 22:20:11 -0600, M. Warner Losh wrote: > In message: <20070410010510.GB61460@wantadilla.lemis.com> > "Greg 'groggy' Lehey" writes: >> On Monday, 9 April 2007 at 2:48:26 -0700, Brian Somers wrote: >>> I don't understand what this means. File times are in UTC aren't >>> they? >> >> No, they're in time_t. But if you import files from other systems, >> you frequently get times which are off by some time zone offset. > > time_t is UTC, by definition (sadly, POSIX has enshrined a broken > definition of UTC as the time_t definition, but that's not important > right now). The definition of time_t is simply a number of seconds since a specified event. It's true that this event was the turn of the year/decade in UTC, but that doesn't make it UTC. Currently my time_t is 1176181168; that's not directly recognizable as any time zone. > It cannot be a localtime. Localtime conversion of time_t is done by > libc to print the local time. But libc also needs to convert time_t to UTC. >> The case in point is that when importing files from digital cameras > > FAT doesn't deal in time_t. It deals in 'local time' only, encoded in > a funky way. Right. And that's the largest part of the problem. > The rest of what you say is correct, but since there is much confusion > around time_t I thought I'd be pedantic. Nothing wrong with being pedantic :-) Greg -- See complete headers for address and phone numbers. --OgApRN/oydYDdnYz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFGGxnbIubykFB6QiMRAp0tAJ90aHZyXkVBt5D3CIYk79UG1V8IxgCgj3zK RU2Q4Qa0R2XTJuZj6pnYyJ0= =eWtb -----END PGP SIGNATURE----- --OgApRN/oydYDdnYz-- From owner-cvs-src@FreeBSD.ORG Tue Apr 10 07:00:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FC3016A400; Tue, 10 Apr 2007 07:00:47 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id D296913C483; Tue, 10 Apr 2007 07:00:46 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 697BC2091; Tue, 10 Apr 2007 09:00:43 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id E1A612090; Tue, 10 Apr 2007 09:00:42 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id CE0B4A10AC; Tue, 10 Apr 2007 09:00:42 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Greg 'groggy' Lehey References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <864pnpdf8w.fsf@dwp.des.no> <20070410010901.GD61460@wantadilla.lemis.com> Date: Tue, 10 Apr 2007 09:00:42 +0200 In-Reply-To: <20070410010901.GD61460@wantadilla.lemis.com> (Greg Lehey's message of "Tue, 10 Apr 2007 10:39:01 +0930") Message-ID: <86zm5gr9wl.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 07:00:47 -0000 Greg 'groggy' Lehey writes: > On Monday, 9 April 2007 at 12:16:47 +0200, Dag-Erling Smrgrav wrote: > > The latter part is incorrect and should be reverted. Furthermore, > > usage() should be static. > Can you give details? usage() should be the way it was before your commit, except that it should be static. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Tue Apr 10 07:12:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EE5916A401; Tue, 10 Apr 2007 07:12:58 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.freebsd.org (Postfix) with ESMTP id 2F0D213C44C; Tue, 10 Apr 2007 07:12:58 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ozlabs.org (Postfix) with ESMTP id D070CDDF13; Tue, 10 Apr 2007 17:12:56 +1000 (EST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 9C6D71A9C97; Tue, 10 Apr 2007 16:42:56 +0930 (CST) Date: Tue, 10 Apr 2007 16:42:56 +0930 From: Greg 'groggy' Lehey To: Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?= Message-ID: <20070410071256.GJ91694@wantadilla.lemis.com> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <864pnpdf8w.fsf@dwp.des.no> <20070410010901.GD61460@wantadilla.lemis.com> <86zm5gr9wl.fsf@dwp.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Tu8ztk+XgTAiG9Id" Content-Disposition: inline In-Reply-To: <86zm5gr9wl.fsf@dwp.des.no> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 07:12:58 -0000 --Tu8ztk+XgTAiG9Id Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tuesday, 10 April 2007 at 9:00:42 +0200, Dag-Erling Smrgrav wrote: > Greg 'groggy' Lehey writes: >> On Monday, 9 April 2007 at 12:16:47 +0200, Dag-Erling Smrgrav wrote: >>> The latter part is incorrect and should be reverted. Furthermore, >>> usage() should be static. >> Can you give details? > > usage() should be the way it was before your commit, except that it > should be static. You mean declared as a static function? In a program of a single file? As I said before, >> Can you give details? Specifically, this doesn't match my recollection of "good practice". Where is this behaviour mandated? Greg -- See complete headers for address and phone numbers. --Tu8ztk+XgTAiG9Id Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFGGzj4IubykFB6QiMRAi+zAJ98xLoMwjfY3URKa8eBwrGUade7MwCcDi5J k8zVcKTxpg9rFwe5Z/ROGmw= =PQqg -----END PGP SIGNATURE----- --Tu8ztk+XgTAiG9Id-- From owner-cvs-src@FreeBSD.ORG Tue Apr 10 07:22:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 978C216A402; Tue, 10 Apr 2007 07:22:31 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 74C9B13C457; Tue, 10 Apr 2007 07:22:31 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A7MVvs004895; Tue, 10 Apr 2007 07:22:31 GMT (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A7MVMm004894; Tue, 10 Apr 2007 07:22:31 GMT (envelope-from grog) Message-Id: <200704100722.l3A7MVMm004894@repoman.freebsd.org> From: Greg Lehey Date: Tue, 10 Apr 2007 07:22:31 +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/usr.bin/touch touch.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: Tue, 10 Apr 2007 07:22:31 -0000 grog 2007-04-10 07:22:31 UTC FreeBSD src repository Modified files: usr.bin/touch touch.c Log: Usage: print base name of program. -A flag: respect the -a and -m flags. imply the -c flag. Requested in principle by: brian Revision Changes Path 1.23 +47 -20 src/usr.bin/touch/touch.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 07:24:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D96AA16A401; Tue, 10 Apr 2007 07:24:48 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B6C7713C46A; Tue, 10 Apr 2007 07:24:48 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A7Omcs005339; Tue, 10 Apr 2007 07:24:48 GMT (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A7Om2p005338; Tue, 10 Apr 2007 07:24:48 GMT (envelope-from grog) Message-Id: <200704100724.l3A7Om2p005338@repoman.freebsd.org> From: Greg Lehey Date: Tue, 10 Apr 2007 07:24:48 +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/usr.bin/touch touch.1 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: Tue, 10 Apr 2007 07:24:49 -0000 grog 2007-04-10 07:24:48 UTC FreeBSD src repository Modified files: usr.bin/touch touch.1 Log: Update to match revision 1.23 of touch.c. Clarify some details. Revision Changes Path 1.16 +18 -36 src/usr.bin/touch/touch.1 From owner-cvs-src@FreeBSD.ORG Tue Apr 10 07:42:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 427B716A407; Tue, 10 Apr 2007 07:42:26 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 0183B13C489; Tue, 10 Apr 2007 07:42:25 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id BEB3C2091; Tue, 10 Apr 2007 09:42:21 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 140AC2090; Tue, 10 Apr 2007 09:42:21 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id D7522A10AC; Tue, 10 Apr 2007 09:42:20 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Greg 'groggy' Lehey References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <864pnpdf8w.fsf@dwp.des.no> <20070410010901.GD61460@wantadilla.lemis.com> <86zm5gr9wl.fsf@dwp.des.no> <20070410071256.GJ91694@wantadilla.lemis.com> Date: Tue, 10 Apr 2007 09:42:20 +0200 In-Reply-To: <20070410071256.GJ91694@wantadilla.lemis.com> (Greg Lehey's message of "Tue, 10 Apr 2007 16:42:56 +0930") Message-ID: <86r6qsr7z7.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 07:42:26 -0000 Greg 'groggy' Lehey writes: > On Tuesday, 10 April 2007 at 9:00:42 +0200, Dag-Erling Smrgrav wrote: > > usage() should be the way it was before your commit, except that it > > should be static. > You mean declared as a static function? In a program of a single > file? Fine, so never mind static if you don't like it. There is still no reason for it to use argv[0]. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Tue Apr 10 08:02:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69D5516A401; Tue, 10 Apr 2007 08:02:34 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4776013C4B8; Tue, 10 Apr 2007 08:02:34 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A82YD7012630; Tue, 10 Apr 2007 08:02:34 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A82YAi012628; Tue, 10 Apr 2007 08:02:34 GMT (envelope-from thompsa) Message-Id: <200704100802.l3A82YAi012628@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 10 Apr 2007 08:02:33 +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/net if_trunk.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: Tue, 10 Apr 2007 08:02:34 -0000 thompsa 2007-04-10 08:02:33 UTC FreeBSD src repository Modified files: sys/net if_trunk.c Log: Fix an uninitialized variable warning. Revision Changes Path 1.2 +1 -1 src/sys/net/if_trunk.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 08:31:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DF7916A400; Tue, 10 Apr 2007 08:31:33 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.freebsd.org (Postfix) with ESMTP id 23DEB13C44B; Tue, 10 Apr 2007 08:31:32 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id l3A8VVb0066480 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Apr 2007 12:31:31 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id l3A8VVXv066479; Tue, 10 Apr 2007 12:31:31 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Tue, 10 Apr 2007 12:31:31 +0400 From: Gleb Smirnoff To: Andrew Thompson Message-ID: <20070410083131.GG46002@FreeBSD.org> References: <200704100027.l3A0RQGq007340@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200704100027.l3A0RQGq007340@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig iftrunk.c src/share/man/man4 trunk.4 src/sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if.c if_ethersubr.c if_trunk.c if_trunk.h if_var.h src/sys/sys priv.h 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: Tue, 10 Apr 2007 08:31:33 -0000 Andrew and others, what do you think about using a flags fielf + union field for different kinds of glue? I mean that if_vlantrunk, if_trunk, if_bridge and may be some future glues are mutually exclusive. If we put them under one union and add an integer field that identifies what is stored in the union, then we will: 1) keep the structure smaller 2) structure won't grow in future, when adding more glues 3) easier to avoid bugs like attaching to bridge and vlan trunk simultaneously diff -u src/sys/net/if_var.h:1.112 src/sys/net/if_var.h:1.113 --- src/sys/net/if_var.h:1.112 Tue Mar 20 03:15:43 2007 +++ src/sys/net/if_var.h Tue Apr 10 00:27:25 2007 @@ -186,6 +186,7 @@ TAILQ_HEAD(, ifg_list) if_groups; /* linked list of groups per if */ /* protected by if_addr_mtx */ void *if_pf_kif; + void *if_trunk; /* trunk glue */ }; typedef void if_init_f_t(void *); -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Tue Apr 10 08:51:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D48916A40E; Tue, 10 Apr 2007 08:51:10 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc3-cdif2-0-0-cust64.cdif.cable.ntl.com [81.106.128.65]) by mx1.freebsd.org (Postfix) with ESMTP id 29E0013C46E; Tue, 10 Apr 2007 08:51:10 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HbC4C-000Dqg-RA; Tue, 10 Apr 2007 09:51:08 +0100 Date: Tue, 10 Apr 2007 09:51:08 +0100 From: Ceri Davies To: Xin LI Message-ID: <20070410085108.GO90410@submonkey.net> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5PFZVUeDPxlnBcQp" Content-Disposition: inline In-Reply-To: <200704100403.l3A43ZnL057659@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.14 (2007-02-12) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Tue, 10 Apr 2007 08:51:10 -0000 --5PFZVUeDPxlnBcQp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 10, 2007 at 04:03:35AM +0000, Xin LI wrote: > delphij 2007-04-10 04:03:35 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/truss Makefile amd64-fbsd.c extern.h=20 > i386-fbsd.c i386-linux.c ia64-fbsd.c=20 > main.c powerpc-fbsd.c setup.c=20 > sparc64-fbsd.c syscall.h syscalls.c=20 > truss.1 truss.h=20 > Log: > Make use of ptrace(2) instead of procfs in truss(1), eliminating > yet another need of an available /proc/ mount. > =20 > Tested with: make universe > Submitted by: howardsu > Reviewed by: alfred Superb, thank you all. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --5PFZVUeDPxlnBcQp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGG0/8ocfcwTS3JF8RAtv0AJ0aQgMXFZujnusW+b8+NI9ayZS6UACgjayC y2yH4sDZHB/uimN92BPpyCI= =0FFs -----END PGP SIGNATURE----- --5PFZVUeDPxlnBcQp-- From owner-cvs-src@FreeBSD.ORG Tue Apr 10 09:20:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FAB016A409; Tue, 10 Apr 2007 09:20:11 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (203-109-251-39.static.bliink.ihug.co.nz [203.109.251.39]) by mx1.freebsd.org (Postfix) with ESMTP id E192E13C43E; Tue, 10 Apr 2007 09:20:10 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 9031D1CC58; Tue, 10 Apr 2007 21:20:09 +1200 (NZST) Date: Tue, 10 Apr 2007 21:20:09 +1200 From: Andrew Thompson To: Gleb Smirnoff Message-ID: <20070410092009.GA4081@heff.fud.org.nz> References: <200704100027.l3A0RQGq007340@repoman.freebsd.org> <20070410083131.GG46002@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070410083131.GG46002@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig iftrunk.c src/share/man/man4 trunk.4 src/sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if.c if_ethersubr.c if_trunk.c if_trunk.h if_var.h src/sys/sys priv.h 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: Tue, 10 Apr 2007 09:20:11 -0000 On Tue, Apr 10, 2007 at 12:31:31PM +0400, Gleb Smirnoff wrote: > Andrew and others, > > what do you think about using a flags fielf + union field for > different kinds of glue? I mean that if_vlantrunk, if_trunk, if_bridge > and may be some future glues are mutually exclusive. > > If we put them under one union and add an integer field that identifies > what is stored in the union, then we will: > > 1) keep the structure smaller > 2) structure won't grow in future, when adding more glues > 3) easier to avoid bugs like attaching to bridge and vlan trunk > simultaneously That could be good as thats already three pointers in the struct and im sure the next pseudo interface type is just around the corner. A bit of care would need to be taken to make sure that all the different combinations of interfaces still work. For instance you can easily put all three of those together in a valid config of trunk<-vlan<-bridge, but for that each pointer would be on a different ifnet. Andrew From owner-cvs-src@FreeBSD.ORG Tue Apr 10 09:28:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C90716A403; Tue, 10 Apr 2007 09:28:18 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5968313C4BD; Tue, 10 Apr 2007 09:28:18 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A9SI9D044294; Tue, 10 Apr 2007 09:28:18 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A9SI1D044293; Tue, 10 Apr 2007 09:28:18 GMT (envelope-from kib) Message-Id: <200704100928.l3A9SI1D044293@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 10 Apr 2007 09:28:18 +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/ufs/ffs ffs_softdep.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: Tue, 10 Apr 2007 09:28:18 -0000 kib 2007-04-10 09:28:18 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_softdep.c Log: When LK_NOWAIT is passed as argument to process_worklist_item(), this does not prevent handle_workitem_remove() from recursing into a blocking version. Add the dirrem to worklist instead of processing it now if this is the case. Reported and tested by: kris Submitted by: tegge MFC after: 2 weeks Revision Changes Path 1.208 +4 -1 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 09:30:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9014616A400; Tue, 10 Apr 2007 09:30:42 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6D05313C4B8; Tue, 10 Apr 2007 09:30:42 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A9UgA1044493; Tue, 10 Apr 2007 09:30:42 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A9UgWC044492; Tue, 10 Apr 2007 09:30:42 GMT (envelope-from kib) Message-Id: <200704100930.l3A9UgWC044492@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 10 Apr 2007 09:30:42 +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/ufs/ffs ffs_softdep.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: Tue, 10 Apr 2007 09:30:42 -0000 kib 2007-04-10 09:30:42 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_softdep.c Log: Recalculate the NEWBLOCK flag for pagedep structure after the softdep lock is dropped, since pagedep may be already processed and deallocated. Found and tested by: kris MFC after: 2 weeks Revision Changes Path 1.209 +26 -5 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 09:31:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B4DE16A403; Tue, 10 Apr 2007 09:31:48 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2809D13C44C; Tue, 10 Apr 2007 09:31:48 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A9Vhs6045144; Tue, 10 Apr 2007 09:31:48 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A9VhjM045142; Tue, 10 Apr 2007 09:31:43 GMT (envelope-from kib) Message-Id: <200704100931.l3A9VhjM045142@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 10 Apr 2007 09:31:42 +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/ufs/ffs ffs_snapshot.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: Tue, 10 Apr 2007 09:31:48 -0000 kib 2007-04-10 09:31:42 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_snapshot.c Log: Fix the NAMEI zone leak when snapshot was successfully created. Reported and tested by: Peter Holm MFC after: 2 weeks Revision Changes Path 1.135 +1 -0 src/sys/ufs/ffs/ffs_snapshot.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 10:12:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA1E116A403; Tue, 10 Apr 2007 10:12:45 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B5F5213C46A; Tue, 10 Apr 2007 10:12:45 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AACjWw053227; Tue, 10 Apr 2007 10:12:45 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AACjum053226; Tue, 10 Apr 2007 10:12:45 GMT (envelope-from kib) Message-Id: <200704101012.l3AACjum053226@repoman.freebsd.org> From: Konstantin Belousov Date: Tue, 10 Apr 2007 10:12:45 +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 mount.h 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: Tue, 10 Apr 2007 10:12:46 -0000 kib 2007-04-10 10:12:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys mount.h Log: MFC rev. 1.220: Extend rev. 1.210 to avoid dereference NULL mp in VFS_NEEDSGIANT and VFS_ASSERT_GIANT. Stop using reserved namespace. Revision Changes Path 1.197.2.10 +14 -5 src/sys/sys/mount.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 10:23:12 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 877D916A401; Tue, 10 Apr 2007 10:23:12 +0000 (UTC) (envelope-from fanf2@hermes.cam.ac.uk) Received: from ppsw-9.csi.cam.ac.uk (ppsw-9.csi.cam.ac.uk [131.111.8.139]) by mx1.freebsd.org (Postfix) with ESMTP id 44F7A13C468; Tue, 10 Apr 2007 10:23:12 +0000 (UTC) (envelope-from fanf2@hermes.cam.ac.uk) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from hermes-1.csi.cam.ac.uk ([131.111.8.51]:46163) by ppsw-9.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.159]:25) with esmtpa (EXTERNAL:fanf2) id 1HbDF7-0001D4-U6 (Exim 4.63) (return-path ); Tue, 10 Apr 2007 11:06:29 +0100 Received: from fanf2 (helo=localhost) by hermes-1.csi.cam.ac.uk (hermes.cam.ac.uk) with local-esmtp id 1HbDF7-00025p-8O (Exim 4.54) (return-path ); Tue, 10 Apr 2007 11:06:29 +0100 Date: Tue, 10 Apr 2007 11:06:29 +0100 From: Tony Finch X-X-Sender: fanf2@hermes-1.csi.cam.ac.uk To: Greg 'groggy' Lehey In-Reply-To: <20070410050011.GH91694@wantadilla.lemis.com> Message-ID: References: <20070409021942.C150B16A529@hub.freebsd.org> <20070409024826.553be564@dev.lan.Awfulhak.org> <20070410010510.GB61460@wantadilla.lemis.com> <20070409.222011.1689682576.imp@bsdimp.com> <20070410050011.GH91694@wantadilla.lemis.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: Tony Finch Cc: cvs-src@freebsd.org, src-committers@freebsd.org, brian@freebsd.org, cvs-all@freebsd.org, "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 10:23:12 -0000 On Tue, 10 Apr 2007, Greg 'groggy' Lehey wrote: > > The definition of time_t is simply a number of seconds since a > specified event. ... modulo leap second adjustments. time_t cannot encode UTC correctly since you need more than a simple scalar to do so (e.g. you need a TAI offset or a leap second flag). Tony. -- f.a.n.finch http://dotat.at/ VIKING NORTH UTSIRE SOUTH UTSIRE: WEST OR SOUTHWEST 4 OR 5, OCCASIONALLY 6 OR 7. MODERATE OR ROUGH, OCCASIONALLY VERY ROUGH. OCCASIONAL RAIN OR DRIZZLE. MODERATE OR GOOD, OCCASIONALLY POOR. From owner-cvs-src@FreeBSD.ORG Tue Apr 10 11:17:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AD8416A400; Tue, 10 Apr 2007 11:17:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 339A413C45A; Tue, 10 Apr 2007 11:17:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ABH17i074641; Tue, 10 Apr 2007 11:17:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ABH1Me074640; Tue, 10 Apr 2007 11:17:01 GMT (envelope-from ru) Message-Id: <200704101117.l3ABH1Me074640@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 10 Apr 2007 11:17:00 +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/lib/libc/stdlib strtol.3 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: Tue, 10 Apr 2007 11:17:01 -0000 ru 2007-04-10 11:17:00 UTC FreeBSD src repository Modified files: lib/libc/stdlib strtol.3 Log: Swap "underflow"/"overflow" in the table header. Submitted by: Ricardo Nabinger Sanchez MFC after: 3 days Revision Changes Path 1.23 +2 -2 src/lib/libc/stdlib/strtol.3 From owner-cvs-src@FreeBSD.ORG Tue Apr 10 11:19:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D956A16A400; Tue, 10 Apr 2007 11:19:52 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B3C4613C4B7; Tue, 10 Apr 2007 11:19:52 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ABJqIt074770; Tue, 10 Apr 2007 11:19:52 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ABJqrB074769; Tue, 10 Apr 2007 11:19:52 GMT (envelope-from ru) Message-Id: <200704101119.l3ABJqrB074769@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 10 Apr 2007 11:19:52 +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/lib/libc/gen sysctl.3 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: Tue, 10 Apr 2007 11:19:52 -0000 ru 2007-04-10 11:19:52 UTC FreeBSD src repository Modified files: lib/libc/gen sysctl.3 Log: Expand the description of the host's UUID. OK'ed by: pjd Revision Changes Path 1.69 +3 -3 src/lib/libc/gen/sysctl.3 From owner-cvs-src@FreeBSD.ORG Tue Apr 10 12:16:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61BCA16A402; Tue, 10 Apr 2007 12:16:07 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3B14B13C483; Tue, 10 Apr 2007 12:16:07 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ACG7Xh087785; Tue, 10 Apr 2007 12:16:07 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ACG7Rl087784; Tue, 10 Apr 2007 12:16:07 GMT (envelope-from brueffer) Message-Id: <200704101216.l3ACG7Rl087784@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 10 Apr 2007 12:16:06 +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/share/man/man4 pci.4 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: Tue, 10 Apr 2007 12:16:07 -0000 brueffer 2007-04-10 12:16:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 pci.4 Log: MFC: rev. 1.18 Remove empty section. Revision Changes Path 1.17.2.1 +0 -2 src/share/man/man4/pci.4 From owner-cvs-src@FreeBSD.ORG Tue Apr 10 12:34:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 97B5C16A400; Tue, 10 Apr 2007 12:34:52 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 70BEE13C45D; Tue, 10 Apr 2007 12:34:52 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ACYqde090949; Tue, 10 Apr 2007 12:34:52 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ACYq4t090948; Tue, 10 Apr 2007 12:34:52 GMT (envelope-from keramida) Message-Id: <200704101234.l3ACYq4t090948@repoman.freebsd.org> From: Giorgos Keramidas Date: Tue, 10 Apr 2007 12:34:52 +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/vm phys_pager.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: Tue, 10 Apr 2007 12:34:52 -0000 keramida 2007-04-10 12:34:52 UTC FreeBSD src repository (doc committer) Modified files: sys/vm phys_pager.c Log: Minor typo fix, noticed while I was going through *_pager.c files. Revision Changes Path 1.26 +1 -1 src/sys/vm/phys_pager.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 12:52:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAB9816A401; Tue, 10 Apr 2007 12:52:14 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C287313C468; Tue, 10 Apr 2007 12:52:14 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ACqEYx002260; Tue, 10 Apr 2007 12:52:14 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ACqE9h002259; Tue, 10 Apr 2007 12:52:14 GMT (envelope-from pjd) Message-Id: <200704101252.l3ACqE9h002259@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 12:52: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/contrib/opensolaris/uts/common/fs/zfs arc.c src/contrib/opensolaris/lib/libzpool/common/sys zfs_context.h 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: Tue, 10 Apr 2007 12:52:15 -0000 pjd 2007-04-10 12:52:14 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs arc.c contrib/opensolaris/lib/libzpool/common/sys zfs_context.h Log: MFp4: Hide under '#ifdef _KERNEL' only what's really needed. Revision Changes Path 1.3 +4 -1 src/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h 1.7 +2 -6 src/sys/contrib/opensolaris/uts/common/fs/zfs/arc.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 12:54:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8110616A401; Tue, 10 Apr 2007 12:54:20 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 598C413C489; Tue, 10 Apr 2007 12:54:20 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ACsKcT002729; Tue, 10 Apr 2007 12:54:20 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ACsKmp002728; Tue, 10 Apr 2007 12:54:20 GMT (envelope-from pjd) Message-Id: <200704101254.l3ACsKmp002728@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 12:54:19 +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/contrib/opensolaris/uts/common/fs/zfs spa_misc.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: Tue, 10 Apr 2007 12:54:20 -0000 pjd 2007-04-10 12:54:19 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs spa_misc.c Log: MFp4: Allow to set zfs_recover via vfs.zfs.recover from /boot/loader.conf. Revision Changes Path 1.2 +4 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 13:26:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5EF6516A403; Tue, 10 Apr 2007 13:26:46 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3707813C483; Tue, 10 Apr 2007 13:26:46 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ADQknb012862; Tue, 10 Apr 2007 13:26:46 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ADQkWX012861; Tue, 10 Apr 2007 13:26:46 GMT (envelope-from pjd) Message-Id: <200704101326.l3ADQkWX012861@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 13:26:46 +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/contrib/opensolaris/lib/libzpool/common/sys zfs_context.h 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: Tue, 10 Apr 2007 13:26:46 -0000 pjd 2007-04-10 13:26:46 UTC FreeBSD src repository Modified files: contrib/opensolaris/lib/libzpool/common/sys zfs_context.h Log: MFp4: Add missing kmem_size() definition. Revision Changes Path 1.4 +1 -0 src/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 13:28:12 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5203816A402; Tue, 10 Apr 2007 13:28:12 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id E3B3613C44B; Tue, 10 Apr 2007 13:28:11 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l3ADQxSe076364; Tue, 10 Apr 2007 07:26:59 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 10 Apr 2007 07:27:10 -0600 (MDT) Message-Id: <20070410.072710.1678773672.imp@bsdimp.com> To: grog@freebsd.org From: "M. Warner Losh" In-Reply-To: <20070410050011.GH91694@wantadilla.lemis.com> References: <20070410010510.GB61460@wantadilla.lemis.com> <20070409.222011.1689682576.imp@bsdimp.com> <20070410050011.GH91694@wantadilla.lemis.com> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Tue, 10 Apr 2007 07:26:59 -0600 (MDT) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, brian@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 13:28:12 -0000 In message: <20070410050011.GH91694@wantadilla.lemis.com> "Greg 'groggy' Lehey" writes: : On Monday, 9 April 2007 at 22:20:11 -0600, M. Warner Losh wrote: : > In message: <20070410010510.GB61460@wantadilla.lemis.com> : > "Greg 'groggy' Lehey" writes: : >> On Monday, 9 April 2007 at 2:48:26 -0700, Brian Somers wrote: : >>> I don't understand what this means. File times are in UTC aren't : >>> they? : >> : >> No, they're in time_t. But if you import files from other systems, : >> you frequently get times which are off by some time zone offset. : > : > time_t is UTC, by definition (sadly, POSIX has enshrined a broken : > definition of UTC as the time_t definition, but that's not important : > right now). : : The definition of time_t is simply a number of seconds since a : specified event. It's true that this event was the turn of the : year/decade in UTC, but that doesn't make it UTC. Currently my time_t : is 1176181168; that's not directly recognizable as any time zone. You are incorrect. POSIX defines time_t as UTC. Full stop. It is the definition of time_t. It defines it in a way that's broken for leap seconds, so it isn't just an interval of seconds since some arbitrary epoch. time_t is also, confusingly, used in some places to specify a interval in things like select. However, this is an abuse of a convenient type. : > It cannot be a localtime. Localtime conversion of time_t is done by : > libc to print the local time. : : But libc also needs to convert time_t to UTC. No. Libc assumes time_t is UTC. See for example gmtime and localtime. These take the same argument, but one returns the UTC time (eg, the argument unbiased by localtime broken down into year, hour, month, etc), while the other one returns the localtime (the argument, biased by localtime and then broken down). Even when one sets one CMOS clock to localtime, and maintains it by adjkerntz and friends, the system clock is still in UTC. Warner From owner-cvs-src@FreeBSD.ORG Tue Apr 10 14:32:39 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7599A16A402; Tue, 10 Apr 2007 14:32:39 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 1F6AE13C48C; Tue, 10 Apr 2007 14:32:38 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54a5c703.dip0.t-ipconnect.de [84.165.199.3]) by redbull.bpaserver.net (Postfix) with ESMTP id 98BFA2E060; Tue, 10 Apr 2007 16:32:31 +0200 (CEST) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id AED395B489B; Tue, 10 Apr 2007 16:32:28 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.13.8/8.13.8/Submit) id l3AEWSKO018135; Tue, 10 Apr 2007 16:32:28 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Tue, 10 Apr 2007 16:32:28 +0200 Message-ID: <20070410163228.0jhk6x07fo8o4kko@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Tue, 10 Apr 2007 16:32:28 +0200 From: Alexander Leidinger To: Andrew Thompson References: <200704100035.l3A0ZWLs009155@repoman.freebsd.org> In-Reply-To: <200704100035.l3A0ZWLs009155@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.494, required 8, BAYES_00 -15.00, DK_POLICY_SIGNSOME 0.00, FORGED_RCVD_HELO 0.14, SMILEY -0.50, SUBJ_HAS_SPACES 0.87) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ifconfig Makefile ifconfig.8 src/share/man/man4 Makefile src/sys/conf NOTES files 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: Tue, 10 Apr 2007 14:32:39 -0000 Quoting Andrew Thompson (from Tue, 10 Apr 2007 00:35:32 +0000 (UTC)): > thompsa 2007-04-10 00:35:31 UTC > > FreeBSD src repository > > Modified files: > sbin/ifconfig Makefile ifconfig.8 > share/man/man4 Makefile > sys/conf NOTES files > Log: > Hook trunk(4) up to the build. trunk... tank... what's next... honk/zonk/monk/conk? ;-) Very nice addition... please don't stop integrating nice stuff into FreeBSD. :) Bye, Alexander. -- Electrical Engineers do it with less resistance. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:03:45 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A238F16A475; Tue, 10 Apr 2007 15:03:45 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 59B3413C4AD; Tue, 10 Apr 2007 15:03:45 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l3AF15Rp077065; Tue, 10 Apr 2007 09:01:08 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 10 Apr 2007 09:01:13 -0600 (MDT) Message-Id: <20070410.090113.-432836671.imp@bsdimp.com> To: dot@dotat.at From: "M. Warner Losh" In-Reply-To: References: <20070409.222011.1689682576.imp@bsdimp.com> <20070410050011.GH91694@wantadilla.lemis.com> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Tue, 10 Apr 2007 09:01:08 -0600 (MDT) Cc: grog@freebsd.org, cvs-src@freebsd.org, src-committers@freebsd.org, brian@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 15:03:45 -0000 In message: Tony Finch writes: : On Tue, 10 Apr 2007, Greg 'groggy' Lehey wrote: : > : > The definition of time_t is simply a number of seconds since a : > specified event. : : ... modulo leap second adjustments. : : time_t cannot encode UTC correctly since you need more than a simple : scalar to do so (e.g. you need a TAI offset or a leap second flag). Yes. POSIX defined time_t to be UTC, and then forgot that there's leap seconds in UTC. UTC uses a variable radix notation for just such events, which translates poorly to a single number. Or at least translates poorly to time_t which is defined such that one cannot take them into account. Warner From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:22:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 663CB16A404; Tue, 10 Apr 2007 15:22:46 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 38E4B13C4AE; Tue, 10 Apr 2007 15:22:46 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AFMk1s044693; Tue, 10 Apr 2007 15:22:46 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AFMkYJ044675; Tue, 10 Apr 2007 15:22:46 GMT (envelope-from pjd) Message-Id: <200704101522.l3AFMkYJ044675@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 15:22:41 +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/kern vfs_subr.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: Tue, 10 Apr 2007 15:22:46 -0000 pjd 2007-04-10 15:22:41 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: Correct typos. Revision Changes Path 1.697 +1 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:23:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 210B516A40D; Tue, 10 Apr 2007 15:23:01 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ED49E13C45B; Tue, 10 Apr 2007 15:23:00 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AFN0hw044785; Tue, 10 Apr 2007 15:23:00 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AFN0MY044784; Tue, 10 Apr 2007 15:23:00 GMT (envelope-from njl) Message-Id: <200704101523.l3AFN0MY044784@repoman.freebsd.org> From: Nate Lawson Date: Tue, 10 Apr 2007 15:23:00 +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/dev/acpica acpi_hpet.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: Tue, 10 Apr 2007 15:23:01 -0000 njl 2007-04-10 15:23:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpi_hpet.c Log: MFC: resume the HPET timer Revision Changes Path 1.5.2.2 +13 -0 src/sys/dev/acpica/acpi_hpet.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:29:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E0BE16A412; Tue, 10 Apr 2007 15:29:37 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 75B8113C4C8; Tue, 10 Apr 2007 15:29:37 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AFTbFN045380; Tue, 10 Apr 2007 15:29:37 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AFTbiq045375; Tue, 10 Apr 2007 15:29:37 GMT (envelope-from pjd) Message-Id: <200704101529.l3AFTbiq045375@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 15:29:37 +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/kern vfs_subr.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: Tue, 10 Apr 2007 15:29:37 -0000 pjd 2007-04-10 15:29:37 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: Minor style cleanups (mostly removal of trailing whitespaces). Revision Changes Path 1.698 +22 -22 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:40:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1397D16A402; Tue, 10 Apr 2007 15:40:28 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DF89C13C448; Tue, 10 Apr 2007 15:40:27 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AFeR8H047288; Tue, 10 Apr 2007 15:40:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AFeRKr047287; Tue, 10 Apr 2007 15:40:27 GMT (envelope-from rwatson) Message-Id: <200704101540.l3AFeRKr047287@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Apr 2007 15:40:27 +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/kern uipc_mqueue.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: Tue, 10 Apr 2007 15:40:28 -0000 rwatson 2007-04-10 15:40:27 UTC FreeBSD src repository Modified files: sys/kern uipc_mqueue.c Log: Do allow POSIX mqueue unlink privilege inside a jail, as we all all other POSIX mqueue privileges inside a jail. Revision Changes Path 1.22 +2 -1 src/sys/kern/uipc_mqueue.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:48:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64EAC16A400; Tue, 10 Apr 2007 15:48:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3D2BE13C480; Tue, 10 Apr 2007 15:48:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AFmkYc048772; Tue, 10 Apr 2007 15:48:46 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AFmkXI048771; Tue, 10 Apr 2007 15:48:46 GMT (envelope-from rwatson) Message-Id: <200704101548.l3AFmkXI048771@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Apr 2007 15:48:45 +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/dev/ath ah_osdep.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: Tue, 10 Apr 2007 15:48:46 -0000 rwatson 2007-04-10 15:48:45 UTC FreeBSD src repository Modified files: sys/dev/ath ah_osdep.c Log: Remove unnecessary suser() check in the sysctl to set up ath_hal logging: the sysctl framework will already have checked for privilege if a sysctl value is being set. Discussed a long time ago with: sam Revision Changes Path 1.2 +7 -10 src/sys/dev/ath/ah_osdep.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:58:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DDE316A476; Tue, 10 Apr 2007 15:58:39 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0173B13C513; Tue, 10 Apr 2007 15:58:39 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AFwc6a050440; Tue, 10 Apr 2007 15:58:38 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AFwcpC050439; Tue, 10 Apr 2007 15:58:38 GMT (envelope-from rwatson) Message-Id: <200704101558.l3AFwcpC050439@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Apr 2007 15:58:38 +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/netinet in_pcb.c src/sys/sys priv.h 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: Tue, 10 Apr 2007 15:58:39 -0000 rwatson 2007-04-10 15:58:38 UTC FreeBSD src repository Modified files: sys/netinet in_pcb.c sys/sys priv.h Log: Add a new privilege, PRIV_NETINET_REUSEPORT, which will replace superuser checks to see whether bind() can reuse a port/address combination while it's already in use (for some definition of use). Revision Changes Path 1.188 +2 -1 src/sys/netinet/in_pcb.c 1.10 +1 -0 src/sys/sys/priv.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 15:59:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2293116A403; Tue, 10 Apr 2007 15:59:50 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EF5A713C44B; Tue, 10 Apr 2007 15:59:49 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AFxnEb050647; Tue, 10 Apr 2007 15:59:49 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AFxnk1050646; Tue, 10 Apr 2007 15:59:49 GMT (envelope-from rwatson) Message-Id: <200704101559.l3AFxnk1050646@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Apr 2007 15:59:49 +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/kern kern_jail.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: Tue, 10 Apr 2007 15:59:50 -0000 rwatson 2007-04-10 15:59:49 UTC FreeBSD src repository Modified files: sys/kern kern_jail.c Log: Allow PRIV_NETINET_REUSEPORT in jail. Revision Changes Path 1.69 +3 -1 src/sys/kern/kern_jail.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 16:09:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36F6616A400; Tue, 10 Apr 2007 16:09:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0EE0013C465; Tue, 10 Apr 2007 16:09:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AG90qO055547; Tue, 10 Apr 2007 16:09:00 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AG90Te055546; Tue, 10 Apr 2007 16:09:00 GMT (envelope-from rwatson) Message-Id: <200704101609.l3AG90Te055546@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Apr 2007 16:09:00 +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/netipsec ipsec_osdep.h 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: Tue, 10 Apr 2007 16:09:01 -0000 rwatson 2007-04-10 16:09:00 UTC FreeBSD src repository Modified files: sys/netipsec ipsec_osdep.h Log: Update comment regarding how we check privilege on FreeBSD: we now use priv_check(). Revision Changes Path 1.5 +2 -1 src/sys/netipsec/ipsec_osdep.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 16:42:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4EA4B16A401; Tue, 10 Apr 2007 16:42:14 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3EDEA13C43E; Tue, 10 Apr 2007 16:42:14 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AGgEQQ061345; Tue, 10 Apr 2007 16:42:14 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AGgERw061344; Tue, 10 Apr 2007 16:42:14 GMT (envelope-from keramida) Message-Id: <200704101642.l3AGgERw061344@repoman.freebsd.org> From: Giorgos Keramidas Date: Tue, 10 Apr 2007 16:42: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/etc/defaults rc.conf src/etc/rc.d pfsync src/share/man/man5 rc.conf.5 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: Tue, 10 Apr 2007 16:42:14 -0000 keramida 2007-04-10 16:42:14 UTC FreeBSD src repository (doc committer) Modified files: etc/defaults rc.conf etc/rc.d pfsync share/man/man5 rc.conf.5 Log: Add a pfsync_syncpeer option to /etc/defaults/rc.conf and rc.conf(5), which can be used to turn off multicast pfsync support, and enable the transmission of directed PFSYNC (IP protocol: 240) packets to a specific "sync peer" host. PR: conf/111225 Submitted by: Bas van Beek Approved by: mtm, mlaier MFC after: 2 weeks Revision Changes Path 1.314 +1 -0 src/etc/defaults/rc.conf 1.5 +6 -1 src/etc/rc.d/pfsync 1.323 +20 -0 src/share/man/man5/rc.conf.5 From owner-cvs-src@FreeBSD.ORG Tue Apr 10 16:47:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C937616A402; Tue, 10 Apr 2007 16:47:19 +0000 (UTC) (envelope-from brian@Awfulhak.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.freebsd.org (Postfix) with ESMTP id 61ACF13C48C; Tue, 10 Apr 2007 16:47:19 +0000 (UTC) (envelope-from brian@Awfulhak.org) Received: from store.lan.Awfulhak.org (store.lan.Awfulhak.org [172.16.0.35]) by storm.uk.FreeBSD.org (8.13.8/8.13.8) with ESMTP id l3AGlE3k019267; Tue, 10 Apr 2007 17:47:14 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from store.lan.Awfulhak.org (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with SMTP id 9D6771957C90; Tue, 10 Apr 2007 16:47:20 +0000 (GMT) Received: from gw.Awfulhak.org (gw.lan.Awfulhak.org [172.16.0.1]) by store.lan.Awfulhak.org (Postfix) with ESMTP id 7DCCF1957C83; Tue, 10 Apr 2007 16:47:12 +0000 (GMT) Received: from conflict.ca.sophos.com (brian@localhost [127.0.0.1]) by gw.Awfulhak.org (8.13.8/8.13.8) with ESMTP id l3AGl0I2011084; Tue, 10 Apr 2007 09:47:00 -0700 (PDT) (envelope-from brian@Awfulhak.org) Date: Tue, 10 Apr 2007 09:46:59 -0700 From: Brian Somers To: "Greg 'groggy' Lehey" Message-ID: <20070410094659.49041afb@conflict.ca.sophos.com> In-Reply-To: <20070410071256.GJ91694@wantadilla.lemis.com> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <864pnpdf8w.fsf@dwp.des.no> <20070410010901.GD61460@wantadilla.lemis.com> <86zm5gr9wl.fsf@dwp.des.no> <20070410071256.GJ91694@wantadilla.lemis.com> X-Mailer: Claws Mail 2.8.1 (GTK+ 2.10.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,SPF_HELO_PASS, SPF_PASS autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on gw.lan.Awfulhak.org Cc: Dag-Erling =?UTF-8?B?U23DuHJncmF2?= , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 16:47:19 -0000 On Tue, 10 Apr 2007 16:42:56 +0930 "Greg 'groggy' Lehey" wrote: > On Tuesday, 10 April 2007 at 9:00:42 +0200, Dag-Erling Smrgrav wrote: > > Greg 'groggy' Lehey writes: > >> On Monday, 9 April 2007 at 12:16:47 +0200, Dag-Erling Smrgrav wrote: > >>> The latter part is incorrect and should be reverted. Furthermore, > >>> usage() should be static. > >> Can you give details? > > > > usage() should be the way it was before your commit, except that it > > should be static. > > You mean declared as a static function? In a program of a single > file? > > As I said before, > > >> Can you give details? > > Specifically, this doesn't match my recollection of "good practice". > Where is this behaviour mandated? Bump WARNS? Every function should be either prototyped or declared static (or both). -- Brian Somers Don't _EVER_ lose your sense of humour ! From owner-cvs-src@FreeBSD.ORG Tue Apr 10 16:49:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A911416A405; Tue, 10 Apr 2007 16:49:41 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 702DD13C487; Tue, 10 Apr 2007 16:49:41 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AGnfOo070718; Tue, 10 Apr 2007 16:49:41 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AGnfJ6070717; Tue, 10 Apr 2007 16:49:41 GMT (envelope-from pjd) Message-Id: <200704101649.l3AGnfJ6070717@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 16:49:41 +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/amd64/conf GENERIC src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/pc98/conf GENERIC src/sys/powerpc/conf GENERIC src/sys/sparc64/conf GENERIC src/sys/sun4v/conf GENERIC 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: Tue, 10 Apr 2007 16:49:41 -0000 pjd 2007-04-10 16:49:41 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC sys/i386/conf GENERIC sys/ia64/conf GENERIC sys/pc98/conf GENERIC sys/powerpc/conf GENERIC sys/sparc64/conf GENERIC sys/sun4v/conf GENERIC Log: Add UFS_GJOURNAL options to the GENERIC kernel. Approved by: re (kensmith) Revision Changes Path 1.474 +1 -0 src/sys/amd64/conf/GENERIC 1.463 +1 -0 src/sys/i386/conf/GENERIC 1.88 +1 -0 src/sys/ia64/conf/GENERIC 1.290 +1 -0 src/sys/pc98/conf/GENERIC 1.67 +1 -0 src/sys/powerpc/conf/GENERIC 1.121 +1 -0 src/sys/sparc64/conf/GENERIC 1.10 +1 -0 src/sys/sun4v/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Tue Apr 10 16:57:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D097516A404; Tue, 10 Apr 2007 16:57:23 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id B92C413C487; Tue, 10 Apr 2007 16:57:23 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 5B8D31A4D89; Tue, 10 Apr 2007 09:57:29 -0700 (PDT) Date: Tue, 10 Apr 2007 09:57:29 -0700 From: Alfred Perlstein To: Brian Somers Message-ID: <20070410165729.GH2382@elvis.mu.org> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <864pnpdf8w.fsf@dwp.des.no> <20070410010901.GD61460@wantadilla.lemis.com> <86zm5gr9wl.fsf@dwp.des.no> <20070410071256.GJ91694@wantadilla.lemis.com> <20070410094659.49041afb@conflict.ca.sophos.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070410094659.49041afb@conflict.ca.sophos.com> User-Agent: Mutt/1.4.2.2i Cc: Greg 'groggy' Lehey , Dag-Erling Sm??rgrav , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 16:57:23 -0000 The reason you make it static is so that when you add another file to the build, there is no need to track down what should be static. * Brian Somers [070410 09:49] wrote: > On Tue, 10 Apr 2007 16:42:56 +0930 > "Greg 'groggy' Lehey" wrote: > > > On Tuesday, 10 April 2007 at 9:00:42 +0200, Dag-Erling Smrgrav wrote: > > > Greg 'groggy' Lehey writes: > > >> On Monday, 9 April 2007 at 12:16:47 +0200, Dag-Erling Smrgrav wrote: > > >>> The latter part is incorrect and should be reverted. Furthermore, > > >>> usage() should be static. > > >> Can you give details? > > > > > > usage() should be the way it was before your commit, except that it > > > should be static. > > > > You mean declared as a static function? In a program of a single > > file? > > > > As I said before, > > > > >> Can you give details? > > > > Specifically, this doesn't match my recollection of "good practice". > > Where is this behaviour mandated? > > Bump WARNS? Every function should be either prototyped > or declared static (or both). > > -- > Brian Somers > Don't _EVER_ lose your sense of humour ! -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Tue Apr 10 17:26:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3676516A400; Tue, 10 Apr 2007 17:26:14 +0000 (UTC) (envelope-from brian@Awfulhak.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.freebsd.org (Postfix) with ESMTP id 9AB9F13C4BB; Tue, 10 Apr 2007 17:26:13 +0000 (UTC) (envelope-from brian@Awfulhak.org) Received: from store.lan.Awfulhak.org (store.lan.Awfulhak.org [172.16.0.35]) by storm.uk.FreeBSD.org (8.13.8/8.13.8) with ESMTP id l3AHQB08020230; Tue, 10 Apr 2007 18:26:12 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from store.lan.Awfulhak.org (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with SMTP id 4D44C1957C90; Tue, 10 Apr 2007 17:26:18 +0000 (GMT) Received: from gw.Awfulhak.org (gw.lan.Awfulhak.org [172.16.0.1]) by store.lan.Awfulhak.org (Postfix) with ESMTP id E3CB01957C74; Tue, 10 Apr 2007 17:26:09 +0000 (GMT) Received: from conflict.ca.sophos.com (brian@localhost [127.0.0.1]) by gw.Awfulhak.org (8.13.8/8.13.8) with ESMTP id l3AHPutR011363; Tue, 10 Apr 2007 10:25:56 -0700 (PDT) (envelope-from brian@Awfulhak.org) Date: Tue, 10 Apr 2007 10:25:55 -0700 From: Brian Somers To: "Greg 'groggy' Lehey" Message-ID: <20070410102555.2c877a30@conflict.ca.sophos.com> In-Reply-To: <20070410010510.GB61460@wantadilla.lemis.com> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <20070409021942.C150B16A529@hub.freebsd.org> <20070409024826.553be564@dev.lan.Awfulhak.org> <20070410010510.GB61460@wantadilla.lemis.com> X-Mailer: Claws Mail 2.8.1 (GTK+ 2.10.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,SPF_HELO_PASS, SPF_PASS autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on gw.lan.Awfulhak.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Brian Somers , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Tue, 10 Apr 2007 17:26:14 -0000 On Tue, 10 Apr 2007 10:35:10 +0930 "Greg 'groggy' Lehey" wrote: > [heavily trimmed] > > On Monday, 9 April 2007 at 2:48:26 -0700, Brian Somers wrote: > > On Mon, 9 Apr 2007 02:19:42 +0000 (UTC) Greg Lehey wrote: > >> grog 2007-04-09 02:19:37 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> usr.bin/touch touch.1 touch.c > >> Log: > >> Add -A flag to adjust existing time stamps. > >> diff -u src/usr.bin/touch/touch.1:1.14 src/usr.bin/touch/touch.1:1.15 > >> --- src/usr.bin/touch/touch.1:1.14 Sun Feb 13 22:25:24 2005 > >> +++ src/usr.bin/touch/touch.1 Mon Apr 9 02:19:37 2007 > >> +.It Fl A > >> +Adjust the access and modification time stamps for the file by the > >> +specified value. > >> +This flag is intended for use in modifying files with a time stamp > >> +relative to an incorrect time zone. > > > > I don't understand what this means. File times are in UTC aren't > > they? > > No, they're in time_t. But if you import files from other systems, > you frequently get times which are off by some time zone offset. Ah, this is the bit I was missing then. Maybe instead of "This flag is intended for use in modifying files with a time stamp relative to an incorrect time zone", something like "When files are transferred from an external system with an incorrect clock, this flag can be used to correct the file times". [.....] > > Why this format? > > It's basically a simplification of the format that touch(1) uses to > specify timestamps. > > > My guess is that the delta is expected to be a DST difference, but > > if it is, I'm even more confused. > > Yes, that seems confusing. For the +1030 time difference that I had > to contend with on Sunday, you'd write -103000 (HHMMSS). > > But why limit it to exact time zone offsets? How accurate is the > clock in your digital camera? Did you reset it when the clocks went > forward a couple of weeks ago? Also, currently there is no time zone > anywhere in the world that is +1030. > > I've just checked my camera and discovered that it said 10:01 when in > fact the time was 9:23. That's one hour for forgetting to put the > clock back, compensated for by it having lost 22 minutes since last > set. If I put a time zone in there, rather than an exact offset, I'd > be restricting the functionality. I see the dilemma. I was originally thinking that a format of [[CC]YY]MMDDhhmm[.SS]] would be more practical, or maybe even [[[[[CC]YY]MM]DD]hh]mm[.SS]], but as this is a time delta, perhaps anything more than what you already have is a mistake (an hour is always 60 minutes (well!), but sometimes a day isn't 24 hours). So after wrestling with the thought for a while, I figured a number of seconds would be the least ambiguous. It's fairly easy to change "touch -A 003800" to "touch -A $((38 * 60))", so maybe a number of seconds is not much more difficult to write? > >> +.Pp > >> +When used in conjunction with the > >> +.Fl a > >> +flag only, the modification time is adjusted by the time specified as > >> +argument to the > >> +.Fl A > >> +flag, while the access time is modified from the base time described > >> +above. > > > > Wow. So -A changes both times in addition to the > > access-only time change. This is really unintuitive > > to me. I'd expect ``-A 000001 -a' to adjust the access > > time only (as -a previously meant). I wouldn't expect > > the modification time to be bumped by a second and the > > access time to be set to one second in the future. > > > > But again, I don't know why you'd want to do this... > > I can't see any earthly reason to use -m or -a in conjunction with -A. > I was simply documenting what would happen. But see below. > > >> +.Pp > >> +If the file does not exist, and creation is allowed, > >> +.Fl A > >> +does not change its time stamps. > > > > So if I ``touch -A 000001 something'' where ``something'' > > doesn't already exist, the file is created and the time > > is left at now? That's also confusing. > > What would you set it to? I was thinking of prohibiting the use of -c > altogether, since it doesn't make sense. What do you think? > > >> - aflag = cflag = fflag = mflag = timeset = 0; > >> + myname = argv[0]; > > > > myname should be set to the base name, not the full argv[0]. > > OK. Will change. > > > I personally think this option is a mistake. I would > > think that something like this would be better: > > > > [-A adjust] - adjust the updated time(s) by the given > > ``adjust'' number of seconds. > > Then you're asking people to calculate the number of seconds. Why? I > suppose you could add a second format. I was sorely tempted to write > HH:MM:SS, but that doesn't match the format for the -t option, which > is enshrined in POSIX.1. As above, it just seems more correct.... > > I would imagine this to be useful in (say) a test script that wanted > > to set up a bunch of files with time stamps set to specific relative > > values. > > Yes, agreed. > > > But I'm clearly missing the point here...? > > Is it clearer now? > > After thinking about this, it's clear that the interaction between -A > on the one hand and -a and -m on the other is confusing. I'll change > it so that only the specified time stamps are changed under these > circumstances. I think that'd be better - the -c and -a semantics then stay the same. Also, allowing -c with -A is useful for test scripts, so probably shouldn't be disallowed. > Greg > -- > See complete headers for address and phone numbers. -- Brian Somers Don't _EVER_ lose your sense of humour ! From owner-cvs-src@FreeBSD.ORG Tue Apr 10 17:28:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A58016A403; Tue, 10 Apr 2007 17:28:22 +0000 (UTC) (envelope-from brian@Awfulhak.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.freebsd.org (Postfix) with ESMTP id E8BCA13C458; Tue, 10 Apr 2007 17:28:21 +0000 (UTC) (envelope-from brian@Awfulhak.org) Received: from store.lan.Awfulhak.org (store.lan.Awfulhak.org [172.16.0.35]) by storm.uk.FreeBSD.org (8.13.8/8.13.8) with ESMTP id l3AHSJRq020313; Tue, 10 Apr 2007 18:28:20 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from store.lan.Awfulhak.org (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with SMTP id 5D36D1957C93; Tue, 10 Apr 2007 17:28:26 +0000 (GMT) Received: from gw.Awfulhak.org (gw.lan.Awfulhak.org [172.16.0.1]) by store.lan.Awfulhak.org (Postfix) with ESMTP id 4240C1957C74; Tue, 10 Apr 2007 17:28:18 +0000 (GMT) Received: from conflict.ca.sophos.com (brian@localhost [127.0.0.1]) by gw.Awfulhak.org (8.13.8/8.13.8) with ESMTP id l3AHS5KQ011389; Tue, 10 Apr 2007 10:28:05 -0700 (PDT) (envelope-from brian@Awfulhak.org) Date: Tue, 10 Apr 2007 10:28:04 -0700 From: Brian Somers To: Ceri Davies Message-ID: <20070410102804.7266fc26@conflict.ca.sophos.com> In-Reply-To: <20070410085108.GO90410@submonkey.net> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <20070410085108.GO90410@submonkey.net> X-Mailer: Claws Mail 2.8.1 (GTK+ 2.10.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,SPF_HELO_PASS, SPF_PASS autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on gw.lan.Awfulhak.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Xin LI , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Tue, 10 Apr 2007 17:28:22 -0000 On Tue, 10 Apr 2007 09:51:08 +0100 Ceri Davies wrote: > On Tue, Apr 10, 2007 at 04:03:35AM +0000, Xin LI wrote: > > delphij 2007-04-10 04:03:35 UTC > > > > FreeBSD src repository > > > > Modified files: > > usr.bin/truss Makefile amd64-fbsd.c extern.h > > i386-fbsd.c i386-linux.c ia64-fbsd.c > > main.c powerpc-fbsd.c setup.c > > sparc64-fbsd.c syscall.h syscalls.c > > truss.1 truss.h > > Log: > > Make use of ptrace(2) instead of procfs in truss(1), eliminating > > yet another need of an available /proc/ mount. > > > > Tested with: make universe > > Submitted by: howardsu > > Reviewed by: alfred > > Superb, thank you all. +1! -- Brian Somers Don't _EVER_ lose your sense of humour ! From owner-cvs-src@FreeBSD.ORG Tue Apr 10 17:37:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E559F16A40D; Tue, 10 Apr 2007 17:37:53 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BD79813C4BB; Tue, 10 Apr 2007 17:37:53 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AHbra8087828; Tue, 10 Apr 2007 17:37:53 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AHbrHm087827; Tue, 10 Apr 2007 17:37:53 GMT (envelope-from emaste) Message-Id: <200704101737.l3AHbrHm087827@repoman.freebsd.org> From: Ed Maste Date: Tue, 10 Apr 2007 17:37:53 +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/usr.bin/gcore elfcore.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: Tue, 10 Apr 2007 17:37:54 -0000 emaste 2007-04-10 17:37:53 UTC FreeBSD src repository Modified files: usr.bin/gcore elfcore.c Log: Eliminate memory leak from an accidental malloc(). Revision Changes Path 1.19 +0 -1 src/usr.bin/gcore/elfcore.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 17:53:43 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7360116A420 for ; Tue, 10 Apr 2007 17:53:43 +0000 (UTC) (envelope-from grafan@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.188]) by mx1.freebsd.org (Postfix) with ESMTP id EFE7413C45B for ; Tue, 10 Apr 2007 17:53:42 +0000 (UTC) (envelope-from grafan@gmail.com) Received: by mu-out-0910.google.com with SMTP id g7so2544490muf for ; Tue, 10 Apr 2007 10:53:41 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=kZYJf9wnP5D3VD5pkE1SF9DHJ0LCXnltD5llkwQ0NwIr1aQ8RWsb48+ZgIQLZxjTERqo6NgzKAGWCGBJ6J0BIpf8OEiJbESA4aKkOlsRi/UhpINR2z+9FSydtSrWVwPtfvTwSxGaOhilRpPpMQ4nbynVKKoAguXHoK5AobQx2w8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=X2CkzqVIfMlmBcVD2iOhYTZDWOEczjT0Qb5dhcaWxPaox8qw3qPurD97dZcVSoLKhv10LSgtThH0SxHdWd9hfdw8paQQ+cLeFax0Yh8jh44TxxB/FFa/g6usyaeY3ual1Y5gK1+/l7o7VaMfFnpU28i8I0WU3EcOF9Ua1PSKpiA= Received: by 10.82.104.18 with SMTP id b18mr9813471buc.1176227621415; Tue, 10 Apr 2007 10:53:41 -0700 (PDT) Received: by 10.82.106.12 with HTTP; Tue, 10 Apr 2007 10:53:41 -0700 (PDT) Message-ID: <6eb82e0704101053u74f6e254te4979d973403927d@mail.gmail.com> Date: Wed, 11 Apr 2007 01:53:41 +0800 From: "Rong-en Fan" To: "Pawel Jakub Dawidek" In-Reply-To: <200704101649.l3AGnfJ6070717@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200704101649.l3AGnfJ6070717@repoman.freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/conf GENERIC src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/pc98/conf GENERIC src/sys/powerpc/conf GENERIC src/sys/sparc64/conf GENERIC src/sys/sun4v/conf GENERIC 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: Tue, 10 Apr 2007 17:53:43 -0000 On 4/11/07, Pawel Jakub Dawidek wrote: > pjd 2007-04-10 16:49:41 UTC > > FreeBSD src repository > > Modified files: > sys/amd64/conf GENERIC > sys/i386/conf GENERIC > sys/ia64/conf GENERIC > sys/pc98/conf GENERIC > sys/powerpc/conf GENERIC > sys/sparc64/conf GENERIC > sys/sun4v/conf GENERIC > Log: > Add UFS_GJOURNAL options to the GENERIC kernel. Thank You! Does this imply geom journal is stable enough for production use? BTW, I'm quite happy with geom journal on a 6.x box :-) Regards, Rong-En Fan > Approved by: re (kensmith) > > Revision Changes Path > 1.474 +1 -0 src/sys/amd64/conf/GENERIC > 1.463 +1 -0 src/sys/i386/conf/GENERIC > 1.88 +1 -0 src/sys/ia64/conf/GENERIC > 1.290 +1 -0 src/sys/pc98/conf/GENERIC > 1.67 +1 -0 src/sys/powerpc/conf/GENERIC > 1.121 +1 -0 src/sys/sparc64/conf/GENERIC > 1.10 +1 -0 src/sys/sun4v/conf/GENERIC > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" > From owner-cvs-src@FreeBSD.ORG Tue Apr 10 17:59:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A61916A41B for ; Tue, 10 Apr 2007 17:59:24 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from raven.customer.vol.cz (raven.customer.vol.cz [195.250.144.108]) by mx1.freebsd.org (Postfix) with ESMTP id D367613C4C8 for ; Tue, 10 Apr 2007 17:59:21 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (r3b159.net.upc.cz [213.220.193.159]) (authenticated bits=0) by raven.customer.vol.cz (8.13.6/8.13.6) with ESMTP id l3AHW7EQ039090 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Tue, 10 Apr 2007 19:32:09 +0200 (CEST) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Xin LI In-Reply-To: <200704100403.l3A43ZnL057659@repoman.freebsd.org> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-xPcLDeh7PpXj33sUnqWl" Date: Tue, 10 Apr 2007 19:32:07 +0200 Message-Id: <1176226327.27233.0.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port X-Spam-Score: -2.324 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 213.220.193.159; Sender-helo: [192.168.0.23]; ) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Apr 2007 17:59:24 -0000 --=-xPcLDeh7PpXj33sUnqWl Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Xin LI p=ED=B9e v =FAt 10. 04. 2007 v 04:03 +0000: > delphij 2007-04-10 04:03:35 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/truss Makefile amd64-fbsd.c extern.h=20 > i386-fbsd.c i386-linux.c ia64-fbsd.c=20 > main.c powerpc-fbsd.c setup.c=20 > sparc64-fbsd.c syscall.h syscalls.c=20 > truss.1 truss.h=20 > Log: > Make use of ptrace(2) instead of procfs in truss(1), eliminating > yet another need of an available /proc/ mount. OMFG, if this works, it's like totally awesometastmanic! So... can we now truss threaded apps? --=20 Pav Lucistnik A mouse is a device used to point at the xterm you want to type in. --=-xPcLDeh7PpXj33sUnqWl Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGG8oPntdYP8FOsoIRAjOnAJ42soR1bBnDBch/SPCetzCRalmH3ACgukSv h8PqEP4BDKU19T44pSF1cWQ= =9Tvb -----END PGP SIGNATURE----- --=-xPcLDeh7PpXj33sUnqWl-- From owner-cvs-src@FreeBSD.ORG Tue Apr 10 18:57:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71AEF16A401; Tue, 10 Apr 2007 18:57:25 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4C49413C4C7; Tue, 10 Apr 2007 18:57:25 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AIvPnX004049; Tue, 10 Apr 2007 18:57:25 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AIvPbu004048; Tue, 10 Apr 2007 18:57:25 GMT (envelope-from piso) Message-Id: <200704101857.l3AIvPbu004048@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 10 Apr 2007 18:57:25 +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/netinet/libalias alias_db.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: Tue, 10 Apr 2007 18:57:25 -0000 piso 2007-04-10 18:57:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet/libalias alias_db.c Log: MFC: Silence Coverity about an unused variable. Found with: Coverity Prevent(tm) CID: 538 Revision Changes Path 1.67.2.1 +1 -1 src/sys/netinet/libalias/alias_db.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 18:59:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9767216A404; Tue, 10 Apr 2007 18:59:20 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 71D9213C4C1; Tue, 10 Apr 2007 18:59:20 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AIxKl2004163; Tue, 10 Apr 2007 18:59:20 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AIxKCB004162; Tue, 10 Apr 2007 18:59:20 GMT (envelope-from piso) Message-Id: <200704101859.l3AIxKCB004162@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 10 Apr 2007 18:59:19 +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/netinet/libalias alias_skinny.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: Tue, 10 Apr 2007 18:59:20 -0000 piso 2007-04-10 18:59:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet/libalias alias_skinny.c Log: MFC: Prevent the usage of an uninitialized variable: do not accept StartMediaTx message before an OpnRcvChnAck message was received. Found with: Coverity Prevent(tm) CID: 498 Revision Changes Path 1.12.2.1 +11 -0 src/sys/netinet/libalias/alias_skinny.c From owner-cvs-src@FreeBSD.ORG Tue Apr 10 19:42:30 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6944616A403 for ; Tue, 10 Apr 2007 19:42:30 +0000 (UTC) (envelope-from ed.maste@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.236]) by mx1.freebsd.org (Postfix) with ESMTP id 2932A13C48C for ; Tue, 10 Apr 2007 19:42:30 +0000 (UTC) (envelope-from ed.maste@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so1815323wxc for ; Tue, 10 Apr 2007 12:42:29 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=B8jFDKT1rn142rqi8sujr4sHXMSeI+UaQVYJxjY+G05Gojcn0/PYglew+NcFwIoiLyzWjnt1TdGYuIc0crg1uIHTaSTaXjWYOI4b/8dTmIJ3EoCV5DIDvbXvxl72TWyyf6QseJU2yh8l3v9r7XRH8rpcpIuXUclJEYGbR66da/k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EiOWwKbD9tLW6KQJYdKOAbOzBB04yCAVaf88hhBz/VfTb0/FkJT6wzuYf6l9tzh449HbOYntimSWDwEUCBeEKNQl26sTRZ0oV3vgV5AlcBCuMIf/vQzTYEzktreO7uwm99HR7Prkg2lzSTrs+zugahsCSZmTRiIJzefZTPPMG1U= Received: by 10.78.183.15 with SMTP id g15mr1134696huf.1176232620316; Tue, 10 Apr 2007 12:17:00 -0700 (PDT) Received: by 10.78.188.7 with HTTP; Tue, 10 Apr 2007 12:17:00 -0700 (PDT) Message-ID: <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> Date: Tue, 10 Apr 2007 15:17:00 -0400 From: "Ed Maste" To: "Xin LI" In-Reply-To: <200704100403.l3A43ZnL057659@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Tue, 10 Apr 2007 19:42:30 -0000 On 10/04/07, Xin LI wrote: > Make use of ptrace(2) instead of procfs in truss(1), eliminating > yet another need of an available /proc/ mount. I've started to do the same thing to gcore(1), in order to make it work properly with threaded applications. I've removed its dependency on /proc/pid/mem, /proc/pid/regs, and /proc/pid/fpregs. However, it still relies on /proc/pid/status and /proc/pid/map which are not directly available via ptrace(2). This would make the -s option to gcore redundant (since the process will be stopped after attaching anyway). I don't know how useful a core from a non-stopped process is, anyhow. -ed From owner-cvs-src@FreeBSD.ORG Tue Apr 10 20:03:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B63016A404; Tue, 10 Apr 2007 20:03:43 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 56C4913C45A; Tue, 10 Apr 2007 20:03:43 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AK3hKa017953; Tue, 10 Apr 2007 20:03:43 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AK3hk4017952; Tue, 10 Apr 2007 20:03:43 GMT (envelope-from scottl) Message-Id: <200704102003.l3AK3hk4017952@repoman.freebsd.org> From: Scott Long Date: Tue, 10 Apr 2007 20:03:42 +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/cam/scsi scsi_sg.c scsi_sg.h 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: Tue, 10 Apr 2007 20:03:43 -0000 scottl 2007-04-10 20:03:42 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_sg.c scsi_sg.h Log: A fix for the SG_GET_TIMEOUT function slipped into a previous commit by accident. Remove the text describing the problem as it is no longer relevant. Also give real implementations for the GET and SET ioctls. Revision Changes Path 1.4 +17 -8 src/sys/cam/scsi/scsi_sg.c 1.2 +5 -0 src/sys/cam/scsi/scsi_sg.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 20:33:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C175816A407; Tue, 10 Apr 2007 20:33:31 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9C02C13C448; Tue, 10 Apr 2007 20:33:31 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AKXVda030000; Tue, 10 Apr 2007 20:33:31 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AKXVI9029999; Tue, 10 Apr 2007 20:33:31 GMT (envelope-from marius) Message-Id: <200704102033.l3AKXVI9029999@repoman.freebsd.org> From: Marius Strobl Date: Tue, 10 Apr 2007 20:33:31 +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/modules/dpt Makefile 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: Tue, 10 Apr 2007 20:33:31 -0000 marius 2007-04-10 20:33:31 UTC FreeBSD src repository Modified files: sys/modules/dpt Makefile Log: On i386 compile the back-end with EISA support as well as the EISA front-end if the dpt(4) module is built along with a kernel that includes eisa(4) or when compiling it stand-alone (logic based on the corresponding ISA logic in sys/modules/sound/sound/Makefile). As as side-effect this fixes the stand-alone build of the dpt(4) module after dpt.h 1.17, dpt_eisa.c 1.22 and dpt_scsi.c 1.55. Breakage reported by: n_hibma Revision Changes Path 1.2 +23 -3 src/sys/modules/dpt/Makefile From owner-cvs-src@FreeBSD.ORG Tue Apr 10 20:43:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 828D616A401; Tue, 10 Apr 2007 20:43:24 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5DC2913C457; Tue, 10 Apr 2007 20:43:24 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AKhO0H033443; Tue, 10 Apr 2007 20:43:24 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AKhO0l033442; Tue, 10 Apr 2007 20:43:24 GMT (envelope-from marius) Message-Id: <200704102043.l3AKhO0l033442@repoman.freebsd.org> From: Marius Strobl Date: Tue, 10 Apr 2007 20:43:24 +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/dev/mii brgphy.c miidevs 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: Tue, 10 Apr 2007 20:43:24 -0000 marius 2007-04-10 20:43:24 UTC FreeBSD src repository Modified files: sys/dev/mii brgphy.c miidevs Log: Let brgphy(4) attach for the Broadcom BCM5755 ASIC based chipsets as well. Obtained from: OpenBSD MFC after: 1 week Revision Changes Path 1.67 +1 -0 src/sys/dev/mii/brgphy.c 1.42 +1 -0 src/sys/dev/mii/miidevs From owner-cvs-src@FreeBSD.ORG Tue Apr 10 21:37:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07E8016A401; Tue, 10 Apr 2007 21:37:38 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B772313C4B9; Tue, 10 Apr 2007 21:37:37 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ALbbZI052110; Tue, 10 Apr 2007 21:37:37 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ALbbdW052109; Tue, 10 Apr 2007 21:37:37 GMT (envelope-from scottl) Message-Id: <200704102137.l3ALbbdW052109@repoman.freebsd.org> From: Scott Long Date: Tue, 10 Apr 2007 21:37:37 +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/compat/linux linux_ioctl.h 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: Tue, 10 Apr 2007 21:37:38 -0000 scottl 2007-04-10 21:37:37 UTC FreeBSD src repository Modified files: sys/compat/linux linux_ioctl.h Log: Whitespace fixes Revision Changes Path 1.26 +27 -27 src/sys/compat/linux/linux_ioctl.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 21:40:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBD6616A403; Tue, 10 Apr 2007 21:40:13 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BD1AD13C46C; Tue, 10 Apr 2007 21:40:13 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ALeD9P052450; Tue, 10 Apr 2007 21:40:13 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ALeDVY052449; Tue, 10 Apr 2007 21:40:13 GMT (envelope-from pjd) Message-Id: <200704102140.l3ALeDVY052449@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 21:40:13 +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/amd64/conf GENERIC src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/pc98/conf GENERIC src/sys/powerpc/conf GENERIC src/sys/sparc64/conf GENERIC src/sys/sun4v/conf GENERIC 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: Tue, 10 Apr 2007 21:40:13 -0000 pjd 2007-04-10 21:40:13 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC sys/i386/conf GENERIC sys/ia64/conf GENERIC sys/pc98/conf GENERIC sys/powerpc/conf GENERIC sys/sparc64/conf GENERIC sys/sun4v/conf GENERIC Log: Remove trailing '.' for consistency! Revision Changes Path 1.475 +1 -1 src/sys/amd64/conf/GENERIC 1.464 +1 -1 src/sys/i386/conf/GENERIC 1.89 +1 -1 src/sys/ia64/conf/GENERIC 1.291 +1 -1 src/sys/pc98/conf/GENERIC 1.68 +1 -1 src/sys/powerpc/conf/GENERIC 1.122 +1 -1 src/sys/sparc64/conf/GENERIC 1.11 +1 -1 src/sys/sun4v/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Tue Apr 10 21:42:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAE2B16A401; Tue, 10 Apr 2007 21:42:12 +0000 (UTC) (envelope-from wkoszek@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DBE5013C480; Tue, 10 Apr 2007 21:42:12 +0000 (UTC) (envelope-from wkoszek@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ALgCN5053529; Tue, 10 Apr 2007 21:42:12 GMT (envelope-from wkoszek@repoman.freebsd.org) Received: (from wkoszek@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ALgCYt053528; Tue, 10 Apr 2007 21:42:12 GMT (envelope-from wkoszek) Message-Id: <200704102142.l3ALgCYt053528@repoman.freebsd.org> From: "Wojciech A. Koszek" Date: Tue, 10 Apr 2007 21:42:12 +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/compat/opensolaris/kern opensolaris_string.c src/sys/compat/opensolaris/sys string.h src/sys/libkern index.c rindex.c src/sys/sys libkern.h 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: Tue, 10 Apr 2007 21:42:13 -0000 wkoszek 2007-04-10 21:42:12 UTC FreeBSD src repository Modified files: sys/compat/opensolaris/kern opensolaris_string.c sys/compat/opensolaris/sys string.h sys/libkern index.c rindex.c sys/sys libkern.h Log: strchr() and strrchr() are already present in the kernel, but with less popular names. Hence: - comment current index() and rindex() functions, as these serve the same functionality as, respectively, strchr() and strrchr() from userland; - add inlined version of strchr() and strrchr(), as we tend to use them more often; - remove str[r]chr() definitions from ZFS code; Reviewed by: pjd Approved by: cognet (mentor) Revision Changes Path 1.2 +0 -31 src/sys/compat/opensolaris/kern/opensolaris_string.c 1.2 +3 -3 src/sys/compat/opensolaris/sys/string.h 1.10 +4 -0 src/sys/libkern/index.c 1.12 +4 -0 src/sys/libkern/rindex.c 1.56 +12 -0 src/sys/sys/libkern.h From owner-cvs-src@FreeBSD.ORG Tue Apr 10 21:44:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 146AF16A407; Tue, 10 Apr 2007 21:44:18 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 06AB813C484; Tue, 10 Apr 2007 21:44:18 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ALiHPL054031; Tue, 10 Apr 2007 21:44:17 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ALiHHJ054030; Tue, 10 Apr 2007 21:44:17 GMT (envelope-from scottl) Message-Id: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> From: Scott Long Date: Tue, 10 Apr 2007 21:44:17 +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/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile 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: Tue, 10 Apr 2007 21:44:18 -0000 scottl 2007-04-10 21:44:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/compat/linux linux_ioctl.c linux_ioctl.h sys/conf NOTES files sys/modules/cam Makefile Added files: (Branch: RELENG_6) sys/cam/scsi scsi_sg.c scsi_sg.h Log: MFC the scsi_sg driver. Revision Changes Path 1.4.2.1 +994 -0 src/sys/cam/scsi/scsi_sg.c (new) 1.2.2.1 +144 -0 src/sys/cam/scsi/scsi_sg.h (new) 1.127.2.4 +27 -0 src/sys/compat/linux/linux_ioctl.c 1.22.2.1 +34 -0 src/sys/compat/linux/linux_ioctl.h 1.1325.2.29 +5 -0 src/sys/conf/NOTES 1.1031.2.55 +1 -0 src/sys/conf/files 1.13.2.2 +1 -0 src/sys/modules/cam/Makefile From owner-cvs-src@FreeBSD.ORG Tue Apr 10 22:10:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D77716A402; Tue, 10 Apr 2007 22:10:17 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 68C3A13C43E; Tue, 10 Apr 2007 22:10:17 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3AMAHQp058771; Tue, 10 Apr 2007 22:10:17 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3AMAH9W058770; Tue, 10 Apr 2007 22:10:17 GMT (envelope-from pjd) Message-Id: <200704102210.l3AMAH9W058770@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Apr 2007 22:10:17 +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/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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: Tue, 10 Apr 2007 22:10:17 -0000 pjd 2007-04-10 22:10:16 UTC FreeBSD src repository Modified files: include Makefile include/rpc Makefile sys/rpc types.h Removed files: include/rpc types.h Log: Move rpc/types.h under sys/, as this is used by ZFS kernel module. Repo-copied by: simon Revision Changes Path 1.269 +1 -1 src/include/Makefile 1.3 +1 -1 src/include/rpc/Makefile 1.12 +0 -106 src/include/rpc/types.h (dead) 1.12 +2 -0 src/sys/rpc/types.h From owner-cvs-src@FreeBSD.ORG Wed Apr 11 00:05:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D84D116A404; Wed, 11 Apr 2007 00:05:26 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B334213C4C2; Wed, 11 Apr 2007 00:05:26 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B05QeS079262; Wed, 11 Apr 2007 00:05:26 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B05QcV079261; Wed, 11 Apr 2007 00:05:26 GMT (envelope-from pjd) Message-Id: <200704110005.l3B05QcV079261@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Apr 2007 00:05:26 +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/etc/rc.d hostid 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: Wed, 11 Apr 2007 00:05:26 -0000 pjd 2007-04-11 00:05:26 UTC FreeBSD src repository Modified files: etc/rc.d hostid Log: If available, take UUID from smbios.system.uuid, if not fall back to software-generated UUID. Store the result in /etc/hostid and use it in the future. Perform simple UUID format check, as there is a lot of hardware with broken UUIDs. The check should be improved to also eliminate fake UUIDs like 00000000-0000-0000-0000-000000000000. Requested by: many Revision Changes Path 1.2 +18 -1 src/etc/rc.d/hostid From owner-cvs-src@FreeBSD.ORG Wed Apr 11 00:16:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0736416A401; Wed, 11 Apr 2007 00:16:28 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [192.147.25.65]) by mx1.freebsd.org (Postfix) with ESMTP id D719413C44C; Wed, 11 Apr 2007 00:16:25 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from adsl-70-135-72-151.dsl.austtx.sbcglobal.net ([70.135.72.151]:1753 helo=hunnybunny) by thebighonker.lerctr.org with esmtpa (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HbQVa-0001z3-Ok; Tue, 10 Apr 2007 19:16:25 -0500 From: "Larry Rosenman" To: "'Scott Long'" , , , References: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> In-Reply-To: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> Date: Tue, 10 Apr 2007 19:16:06 -0500 Message-ID: <007d01c77bce$a09be840$e1d3b8c0$@org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Acd7ub1kukH+LdKSTiyGRMBS8SBcswAFMsIg Content-Language: en-us X-Spam-Score: -4.4 (----) X-LERCTR-Spam-Score: -4.4 (----) X-Spam-Report: SpamScore (-4.4/5.0) ALL_TRUSTED=-1.8,BAYES_00=-2.599 X-LERCTR-Spam-Report: SpamScore (-4.4/5.0) ALL_TRUSTED=-1.8,BAYES_00=-2.599 DomainKey-Status: no signature Cc: Subject: RE: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile 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: Wed, 11 Apr 2007 00:16:28 -0000 Scott, Could you bump __FreeBSD_Version for this? The Seatools port needs it. Thanks! -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 512-248-2683 E-Mail: ler@lerctr.org US Mail: 430 Valona Loop, Round Rock, TX 78681-3893 -----Original Message----- From: owner-cvs-all@freebsd.org [mailto:owner-cvs-all@freebsd.org] On Behalf Of Scott Long Sent: Tuesday, April 10, 2007 4:44 PM To: src-committers@FreeBSD.org; cvs-src@FreeBSD.org; cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile scottl 2007-04-10 21:44:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/compat/linux linux_ioctl.c linux_ioctl.h sys/conf NOTES files sys/modules/cam Makefile Added files: (Branch: RELENG_6) sys/cam/scsi scsi_sg.c scsi_sg.h Log: MFC the scsi_sg driver. Revision Changes Path 1.4.2.1 +994 -0 src/sys/cam/scsi/scsi_sg.c (new) 1.2.2.1 +144 -0 src/sys/cam/scsi/scsi_sg.h (new) 1.127.2.4 +27 -0 src/sys/compat/linux/linux_ioctl.c 1.22.2.1 +34 -0 src/sys/compat/linux/linux_ioctl.h 1.1325.2.29 +5 -0 src/sys/conf/NOTES 1.1031.2.55 +1 -0 src/sys/conf/files 1.13.2.2 +1 -0 src/sys/modules/cam/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-cvs-src@FreeBSD.ORG Wed Apr 11 00:47:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C729F16A401; Wed, 11 Apr 2007 00:47:29 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BAA7013C44B; Wed, 11 Apr 2007 00:47:29 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B0lT51093767; Wed, 11 Apr 2007 00:47:29 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B0lTcE093763; Wed, 11 Apr 2007 00:47:29 GMT (envelope-from yongari) Message-Id: <200704110047.l3B0lTcE093763@repoman.freebsd.org> From: Pyun YongHyeon Date: Wed, 11 Apr 2007 00:47:29 +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/dev/msk if_msk.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: Wed, 11 Apr 2007 00:47:29 -0000 yongari 2007-04-11 00:47:29 UTC FreeBSD src repository Modified files: sys/dev/msk if_msk.c Log: Add work around for hardware Tx checksum offload bug in Yukon II. Yukon II generated corrupted TCP checksum for short TCP packets that's less than 60 bytes in size(e.g. window probe packet, pure ACK packet etc). Padding the frame with zeros to make the frame minimum ethernet frame size didn't work at all. Instead of dropping Tx checksum offload support we calculate TCP checksum with S/W method when we encounter short TCP frames. Fortunately it seems that short UDP datagrams appear to be handled correctly by Yukon II. While I'm here simplify ethernet/VLAN header size calculation logic. PR: 111384 Revision Changes Path 1.13 +25 -5 src/sys/dev/msk/if_msk.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 01:06:51 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 65F9D16A403; Wed, 11 Apr 2007 01:06:51 +0000 (UTC) (envelope-from cokane@cokane.org) Received: from ms-smtp-03.texas.rr.com (ms-smtp-03.texas.rr.com [24.93.47.42]) by mx1.freebsd.org (Postfix) with ESMTP id 03F5313C46A; Wed, 11 Apr 2007 01:06:50 +0000 (UTC) (envelope-from cokane@cokane.org) Received: from mail.cokane.org (rrcs-24-153-184-158.sw.biz.rr.com [24.153.184.158]) by ms-smtp-03.texas.rr.com (8.13.6/8.13.6) with ESMTP id l3AI9pu3006789; Tue, 10 Apr 2007 13:09:51 -0500 (CDT) Received: by mail.cokane.org (Postfix, from userid 103) id 0F07814B6AB; Tue, 10 Apr 2007 14:09:51 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.1.3-gr0 (2006-06-01) on discordia X-Spam-Level: X-Spam-Status: No, score=-4.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3-gr0 Received: from [172.31.1.10] (unknown [172.31.1.10]) by mail.cokane.org (Postfix) with ESMTP id A125714B6A8; Tue, 10 Apr 2007 14:09:49 -0400 (EDT) From: Coleman Kane To: Rong-en Fan In-Reply-To: <6eb82e0704101053u74f6e254te4979d973403927d@mail.gmail.com> References: <200704101649.l3AGnfJ6070717@repoman.freebsd.org> <6eb82e0704101053u74f6e254te4979d973403927d@mail.gmail.com> Content-Type: text/plain Date: Tue, 10 Apr 2007 12:10:32 -0600 Message-Id: <1176228632.2034.1.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Pawel Jakub Dawidek , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/conf GENERIC src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/pc98/conf GENERIC src/sys/powerpc/conf GENERIC src/sys/sparc64/conf GENERIC src/sys/sun4v/conf GENERIC 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: Wed, 11 Apr 2007 01:06:51 -0000 On Wed, 2007-04-11 at 01:53 +0800, Rong-en Fan wrote: > On 4/11/07, Pawel Jakub Dawidek wrote: > > pjd 2007-04-10 16:49:41 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/amd64/conf GENERIC > > sys/i386/conf GENERIC > > sys/ia64/conf GENERIC > > sys/pc98/conf GENERIC > > sys/powerpc/conf GENERIC > > sys/sparc64/conf GENERIC > > sys/sun4v/conf GENERIC > > Log: > > Add UFS_GJOURNAL options to the GENERIC kernel. > > Thank You! Does this imply geom journal is stable enough > for production use? > > BTW, I'm quite happy with geom journal on a 6.x box :-) > > Regards, > Rong-En Fan > > > Approved by: re (kensmith) > > > > Revision Changes Path > > 1.474 +1 -0 src/sys/amd64/conf/GENERIC > > 1.463 +1 -0 src/sys/i386/conf/GENERIC > > 1.88 +1 -0 src/sys/ia64/conf/GENERIC > > 1.290 +1 -0 src/sys/pc98/conf/GENERIC > > 1.67 +1 -0 src/sys/powerpc/conf/GENERIC > > 1.121 +1 -0 src/sys/sparc64/conf/GENERIC > > 1.10 +1 -0 src/sys/sun4v/conf/GENERIC > > geom journal has been working great for me ever since it was committed to the tree. -- Coleman Kane From owner-cvs-src@FreeBSD.ORG Wed Apr 11 02:03:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44DF316A400; Wed, 11 Apr 2007 02:03:37 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1EF9D13C46A; Wed, 11 Apr 2007 02:03:37 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B23btN008060; Wed, 11 Apr 2007 02:03:37 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B23asL008058; Wed, 11 Apr 2007 02:03:36 GMT (envelope-from njl) Message-Id: <200704110203.l3B23asL008058@repoman.freebsd.org> From: Nate Lawson Date: Wed, 11 Apr 2007 02:03:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Cc: Subject: cvs commit: src/sys/contrib/dev/acpica utmisc.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: Wed, 11 Apr 2007 02:03:37 -0000 njl 2007-04-11 02:03:36 UTC FreeBSD src repository Modified files: (Branch: INTEL) sys/contrib/dev/acpica utmisc.c Log: Put some overly verbose prints under bootverbose. This is on the vendor branch but we need to work out a different interface with the vendor. Revision Changes Path 1.1.1.24 +3 -0 src/sys/contrib/dev/acpica/utmisc.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 02:08:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7319C16A401 for ; Wed, 11 Apr 2007 02:08:15 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 359A713C457 for ; Wed, 11 Apr 2007 02:08:15 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 67306 invoked from network); 11 Apr 2007 02:08:16 -0000 Received: from ppp-71-139-28-99.dsl.snfc21.pacbell.net (HELO ?10.0.0.235?) (nate-mail@71.139.28.99) by root.org with ESMTPA; 11 Apr 2007 02:08:16 -0000 Message-ID: <461C4309.2010605@root.org> Date: Tue, 10 Apr 2007 19:08:09 -0700 From: Nate Lawson User-Agent: Thunderbird 1.5.0.7 (X11/20061027) MIME-Version: 1.0 To: Larry Rosenman References: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> <007d01c77bce$a09be840$e1d3b8c0$@org> In-Reply-To: <007d01c77bce$a09be840$e1d3b8c0$@org> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, 'Scott Long' , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile 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: Wed, 11 Apr 2007 02:08:15 -0000 Larry Rosenman wrote: > Scott, > Could you bump __FreeBSD_Version for this? > > The Seatools port needs it. > > Thanks! > > Already done: src/sys/sys/param.h revision 1.291 date: 2007/04/08 22:45:20; author: delphij; state: Exp; lines: +1 -1 Bump __FreeBSDversion for CAM sg addition. -- Nate From owner-cvs-src@FreeBSD.ORG Wed Apr 11 02:11:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA10716A400; Wed, 11 Apr 2007 02:11:50 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (203-109-251-39.static.bliink.ihug.co.nz [203.109.251.39]) by mx1.freebsd.org (Postfix) with ESMTP id 7A79413C484; Wed, 11 Apr 2007 02:11:50 +0000 (UTC) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 9829B1CC58; Wed, 11 Apr 2007 14:11:46 +1200 (NZST) Date: Wed, 11 Apr 2007 14:11:46 +1200 From: Andrew Thompson To: Nate Lawson Message-ID: <20070411021146.GB9390@heff.fud.org.nz> References: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> <007d01c77bce$a09be840$e1d3b8c0$@org> <461C4309.2010605@root.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <461C4309.2010605@root.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, 'Scott Long' , cvs-all@FreeBSD.org, Larry Rosenman Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile 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: Wed, 11 Apr 2007 02:11:51 -0000 On Tue, Apr 10, 2007 at 07:08:09PM -0700, Nate Lawson wrote: > Larry Rosenman wrote: > > Scott, > > Could you bump __FreeBSD_Version for this? > > > > The Seatools port needs it. > > > > Thanks! > > > > > > Already done: > > src/sys/sys/param.h > revision 1.291 > date: 2007/04/08 22:45:20; author: delphij; state: Exp; lines: +1 -1 > Bump __FreeBSDversion for CAM sg addition. > Not for the MFC. Andrew From owner-cvs-src@FreeBSD.ORG Wed Apr 11 02:12:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E01A16A400; Wed, 11 Apr 2007 02:12:06 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [192.147.25.65]) by mx1.freebsd.org (Postfix) with ESMTP id EBA9C13C448; Wed, 11 Apr 2007 02:12:05 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from adsl-70-135-72-151.dsl.austtx.sbcglobal.net ([70.135.72.151]:1162 helo=hunnybunny) by thebighonker.lerctr.org with esmtpa (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HbSJU-0000JM-OM; Tue, 10 Apr 2007 21:12:03 -0500 From: "Larry Rosenman" To: "'Nate Lawson'" References: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> <007d01c77bce$a09be840$e1d3b8c0$@org> <461C4309.2010605@root.org> In-Reply-To: <461C4309.2010605@root.org> Date: Tue, 10 Apr 2007 21:11:46 -0500 Message-ID: <000001c77bde$c7d94690$578bd3b0$@org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 thread-index: Acd73kyDnDGWM4mmT3eIEOyONrYc0QAAGnjw Content-Language: en-us X-Spam-Score: -4.4 (----) X-LERCTR-Spam-Score: -4.4 (----) X-Spam-Report: SpamScore (-4.4/5.0) ALL_TRUSTED=-1.8,BAYES_00=-2.599 X-LERCTR-Spam-Report: SpamScore (-4.4/5.0) ALL_TRUSTED=-1.8,BAYES_00=-2.599 DomainKey-Status: no signature Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, 'Scott Long' , cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile 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: Wed, 11 Apr 2007 02:12:06 -0000 That was for -CURRENT, we need a bump for RELENG_6 as well :) LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 512-248-2683 E-Mail: ler@lerctr.org US Mail: 430 Valona Loop, Round Rock, TX 78681-3893 -----Original Message----- From: Nate Lawson [mailto:nate@root.org] Sent: Tuesday, April 10, 2007 9:08 PM To: Larry Rosenman Cc: 'Scott Long'; src-committers@FreeBSD.org; cvs-src@FreeBSD.org; cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile Larry Rosenman wrote: > Scott, > Could you bump __FreeBSD_Version for this? > > The Seatools port needs it. > > Thanks! > > Already done: src/sys/sys/param.h revision 1.291 date: 2007/04/08 22:45:20; author: delphij; state: Exp; lines: +1 -1 Bump __FreeBSDversion for CAM sg addition. -- Nate From owner-cvs-src@FreeBSD.ORG Wed Apr 11 02:13:04 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1721D16A400 for ; Wed, 11 Apr 2007 02:13:04 +0000 (UTC) (envelope-from grafan@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.185]) by mx1.freebsd.org (Postfix) with ESMTP id 4C10613C468 for ; Wed, 11 Apr 2007 02:13:03 +0000 (UTC) (envelope-from grafan@gmail.com) Received: by mu-out-0910.google.com with SMTP id g7so35492muf for ; Tue, 10 Apr 2007 19:13:02 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=JWh/znNivVGwPCyfXfSjj/8NkXACV4lQdPlGoOI5cyHPazBVa7GD6337Wg/i+5ZrQkIWhQY2bxsOtQvnJTqCZhz78d7fnjlkhPI1eN6V49Wioxz6rjBVk9SAOZA3b3WPSJ+PCdlpKP0MkvobdK4u3VbXHNL5FkthPL7H2ILDs7E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ASBEPdd9JnaZPBNeYuabqR3INbCmqDQ7CMTygmM5UY0+q/Poi1UtWK7YvZqf0Gw5aQnCFFHizMOgE+0swRoHCcSdoRFD/gy6HIWhenKNR492Z25qQXSgkQwiY2eP6gx5jj8C+KsL1VJYcXew8XTlelYzOtz4G9mLsbnUBGsgcVI= Received: by 10.82.136.4 with SMTP id j4mr55206bud.1176257581825; Tue, 10 Apr 2007 19:13:01 -0700 (PDT) Received: by 10.82.106.12 with HTTP; Tue, 10 Apr 2007 19:13:01 -0700 (PDT) Message-ID: <6eb82e0704101913h5ce2363bq8ff5fdd97666e6a8@mail.gmail.com> Date: Wed, 11 Apr 2007 10:13:01 +0800 From: "Rong-en Fan" To: "Nate Lawson" In-Reply-To: <461C4309.2010605@root.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> <007d01c77bce$a09be840$e1d3b8c0$@org> <461C4309.2010605@root.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Scott Long , cvs-all@freebsd.org, Larry Rosenman Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile 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: Wed, 11 Apr 2007 02:13:04 -0000 On 4/11/07, Nate Lawson wrote: > Larry Rosenman wrote: > > Scott, > > Could you bump __FreeBSD_Version for this? > > > > The Seatools port needs it. > > > > Thanks! > > > > > > Already done: > > src/sys/sys/param.h > revision 1.291 > date: 2007/04/08 22:45:20; author: delphij; state: Exp; lines: +1 -1 > Bump __FreeBSDversion for CAM sg addition. I think he means RELENG_6's param.h Regards, Rong-En Fan > > -- > Nate > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" > From owner-cvs-src@FreeBSD.ORG Wed Apr 11 02:14:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21E2E16A401; Wed, 11 Apr 2007 02:14:55 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F02EB13C44B; Wed, 11 Apr 2007 02:14:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B2EsWQ009941; Wed, 11 Apr 2007 02:14:54 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B2EsT2009940; Wed, 11 Apr 2007 02:14:54 GMT (envelope-from delphij) Message-Id: <200704110214.l3B2EsT2009940@repoman.freebsd.org> From: Xin LI Date: Wed, 11 Apr 2007 02:14:54 +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 param.h 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: Wed, 11 Apr 2007 02:14:55 -0000 delphij 2007-04-11 02:14:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys param.h Log: Bump __FreeBSDrevision for Scott's CAM sg(4) MFC. Requested by: ler lerctr.org Revision Changes Path 1.244.2.25 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Wed Apr 11 02:19:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0BB016A405; Wed, 11 Apr 2007 02:19:23 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id 2A5FC13C458; Wed, 11 Apr 2007 02:19:23 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 39DC8EBA14C; Wed, 11 Apr 2007 10:19:22 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id 0qJ-aj5j+bie; Wed, 11 Apr 2007 10:19:20 +0800 (CST) Received: from [10.217.12.249] (sina152-194.staff.sina.com.cn [61.135.152.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 15AF3EB08DB; Wed, 11 Apr 2007 10:19:20 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=EBe+KmM6Ey0C6udKfz4vbXsQZQE5+KsnhyTBjmizMOqy0MfZaYdp/C45H5cvkD+43 eeZiVa7UfVzZqFEYkTzMw== Message-ID: <461C45A2.6080808@delphij.net> Date: Wed, 11 Apr 2007 10:19:14 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Rong-en Fan References: <200704102144.l3ALiHHJ054030@repoman.freebsd.org> <007d01c77bce$a09be840$e1d3b8c0$@org> <461C4309.2010605@root.org> <6eb82e0704101913h5ce2363bq8ff5fdd97666e6a8@mail.gmail.com> In-Reply-To: <6eb82e0704101913h5ce2363bq8ff5fdd97666e6a8@mail.gmail.com> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enigE5D11563F86BB93A003A7DE3" Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, Nate Lawson , Scott Long , cvs-all@FreeBSD.ORG, Larry Rosenman Subject: Re: cvs commit: src/sys/cam/scsi scsi_sg.c scsi_sg.h src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/conf NOTES files src/sys/modules/cam Makefile 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: Wed, 11 Apr 2007 02:19:23 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigE5D11563F86BB93A003A7DE3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Rong-en Fan wrote: > On 4/11/07, Nate Lawson wrote: >> Larry Rosenman wrote: >> > Scott, >> > Could you bump __FreeBSD_Version for this? >> > >> > The Seatools port needs it. >> > >> > Thanks! >> > >> > >> >> Already done: >> >> src/sys/sys/param.h >> revision 1.291 >> date: 2007/04/08 22:45:20; author: delphij; state: Exp; lines: +1 -= 1 >> Bump __FreeBSDversion for CAM sg addition. >=20 > I think he means RELENG_6's param.h Done for the MFC... Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enigE5D11563F86BB93A003A7DE3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGHEWiOfuToMruuMARCo1YAJ4sTRpwNzYLLHP397uykqeoiIj7MwCeJ05B dzLZwXRSN/P6b1x1gi8eDMw= =8d+Y -----END PGP SIGNATURE----- --------------enigE5D11563F86BB93A003A7DE3-- From owner-cvs-src@FreeBSD.ORG Wed Apr 11 04:52:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7D2E16A402; Wed, 11 Apr 2007 04:52:09 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BF99213C45E; Wed, 11 Apr 2007 04:52:09 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B4q9pZ050910; Wed, 11 Apr 2007 04:52:09 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B4q9ni050909; Wed, 11 Apr 2007 04:52:09 GMT (envelope-from jkoshy) Message-Id: <200704110452.l3B4q9ni050909@repoman.freebsd.org> From: Joseph Koshy Date: Wed, 11 Apr 2007 04:52:09 +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/lib/libpmc libpmc.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: Wed, 11 Apr 2007 04:52:10 -0000 jkoshy 2007-04-11 04:52:09 UTC FreeBSD src repository Modified files: lib/libpmc libpmc.c Log: Correct a typo in an event name alias. Reported by: Harald Servat Revision Changes Path 1.11 +1 -1 src/lib/libpmc/libpmc.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 07:19:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2D6716A405; Wed, 11 Apr 2007 07:19:36 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C966D13C45E; Wed, 11 Apr 2007 07:19:36 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B7Ja6g078901; Wed, 11 Apr 2007 07:19:36 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B7JaDK078900; Wed, 11 Apr 2007 07:19:36 GMT (envelope-from thomas) Message-Id: <200704110719.l3B7JaDK078900@repoman.freebsd.org> From: Thomas Quinot Date: Wed, 11 Apr 2007 07:19:36 +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/boot/i386/boot0 boot0.S 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: Wed, 11 Apr 2007 07:19:37 -0000 thomas 2007-04-11 07:19:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/boot/i386/boot0 boot0.S Log: MFC rev. 1.16: Fix setting of serial port speed. A junk value was passed in AX when bioscom is called to set up serial port parameters because COMSPEED was treated as an address instead of an immediate value, causing serial port parameters to never be set. PR: i386/110828 Revision Changes Path 1.14.2.2 +1 -1 src/sys/boot/i386/boot0/boot0.S From owner-cvs-src@FreeBSD.ORG Wed Apr 11 07:46:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC3CB16A400 for ; Wed, 11 Apr 2007 07:46:32 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from smtp4.yandex.ru (smtp4.yandex.ru [213.180.223.136]) by mx1.freebsd.org (Postfix) with ESMTP id DB8AC13C46C for ; Wed, 11 Apr 2007 07:46:31 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from ns.kirov.so-cdu.ru ([77.72.136.145]:61967 "EHLO [127.0.0.1]" smtp-auth: "bu7cher" TLS-CIPHER: "DHE-RSA-AES256-SHA keybits 256/256 version TLSv1/SSLv3" TLS-PEER-CN1: ) by mail.yandex.ru with ESMTP id S7768138AbXDKHqW (ORCPT + 1 other); Wed, 11 Apr 2007 11:46:22 +0400 X-Comment: RFC 2476 MSA function at smtp4.yandex.ru logged sender identity as: bu7cher Message-ID: <461C9249.3020007@yandex.ru> Date: Wed, 11 Apr 2007 11:46:17 +0400 From: "Andrey V. Elsukov" User-Agent: Mozilla Thunderbird 1.5 (FreeBSD/20051231) MIME-Version: 1.0 To: Nate Lawson References: <200704110203.l3B23asL008058@repoman.freebsd.org> In-Reply-To: <200704110203.l3B23asL008058@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica utmisc.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: Wed, 11 Apr 2007 07:46:32 -0000 Nate Lawson wrote: > njl 2007-04-11 02:03:36 UTC > > FreeBSD src repository > > Modified files: (Branch: INTEL) > sys/contrib/dev/acpica utmisc.c > Log: > Put some overly verbose prints under bootverbose. This is on the vendor > branch but we need to work out a different interface with the vendor. Seems, that you forgot to include sys/systm.h -- WBR, Andrey V. Elsukov From owner-cvs-src@FreeBSD.ORG Wed Apr 11 08:25:38 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C57E16A402; Wed, 11 Apr 2007 08:25:38 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from turion.vk2pj.dyndns.org (c220-239-3-125.belrs4.nsw.optusnet.com.au [220.239.3.125]) by mx1.freebsd.org (Postfix) with ESMTP id 8402F13C4AE; Wed, 11 Apr 2007 08:25:37 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from turion.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by turion.vk2pj.dyndns.org (8.13.8/8.13.8) with ESMTP id l3AJN6MU003170; Wed, 11 Apr 2007 05:23:06 +1000 (EST) (envelope-from peter@turion.vk2pj.dyndns.org) Received: (from peter@localhost) by turion.vk2pj.dyndns.org (8.13.8/8.13.8/Submit) id l3AJN6Nc003169; Wed, 11 Apr 2007 05:23:06 +1000 (EST) (envelope-from peter) Date: Wed, 11 Apr 2007 05:23:06 +1000 From: Peter Jeremy To: Alfred Perlstein Message-ID: <20070410192306.GE849@turion.vk2pj.dyndns.org> References: <200704090219.l392Jc1f064727@repoman.freebsd.org> <864pnpdf8w.fsf@dwp.des.no> <20070410010901.GD61460@wantadilla.lemis.com> <86zm5gr9wl.fsf@dwp.des.no> <20070410071256.GJ91694@wantadilla.lemis.com> <20070410094659.49041afb@conflict.ca.sophos.com> <20070410165729.GH2382@elvis.mu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RASg3xLB4tUQ4RcS" Content-Disposition: inline In-Reply-To: <20070410165729.GH2382@elvis.mu.org> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.14 (2007-02-12) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/touch touch.1 touch.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: Wed, 11 Apr 2007 08:25:38 -0000 --RASg3xLB4tUQ4RcS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2007-Apr-10 09:57:29 -0700, Alfred Perlstein wrote: >The reason you make it static is so that when you add another file to >the build, there is no need to track down what should be >static. And so the compiler can point out unreferenced code/variables. --=20 Peter Jeremy --RASg3xLB4tUQ4RcS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGG+Qa/opHv/APuIcRAvzVAKClReObqPO3JT2g8xIAagTJOSGkigCfe9TC X6Qd2kGg+xIK6VP9LmKLLpY= =Fwlj -----END PGP SIGNATURE----- --RASg3xLB4tUQ4RcS-- From owner-cvs-src@FreeBSD.ORG Wed Apr 11 08:30:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 91C7C16A406; Wed, 11 Apr 2007 08:30:35 +0000 (UTC) Date: Wed, 11 Apr 2007 08:30:35 +0000 From: Alexey Dokuchaev To: Xin LI Message-ID: <20070411083035.GA17531@FreeBSD.org> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200704100403.l3A43ZnL057659@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Wed, 11 Apr 2007 08:30:35 -0000 On Tue, Apr 10, 2007 at 04:03:35AM +0000, Xin LI wrote: > delphij 2007-04-10 04:03:35 UTC > > FreeBSD src repository > > Modified files: > usr.bin/truss Makefile amd64-fbsd.c extern.h > i386-fbsd.c i386-linux.c ia64-fbsd.c > main.c powerpc-fbsd.c setup.c > sparc64-fbsd.c syscall.h syscalls.c > truss.1 truss.h > Log: > Make use of ptrace(2) instead of procfs in truss(1), eliminating > yet another need of an available /proc/ mount. Thanks! This was long desired. ./danfe From owner-cvs-src@FreeBSD.ORG Wed Apr 11 08:55:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AF8A16A402; Wed, 11 Apr 2007 08:55:05 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 00C0913C45B; Wed, 11 Apr 2007 08:55:05 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B8t4tQ004081; Wed, 11 Apr 2007 08:55:04 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B8t4SS004080; Wed, 11 Apr 2007 08:55:04 GMT (envelope-from brueffer) Message-Id: <200704110855.l3B8t4SS004080@repoman.freebsd.org> From: Christian Brueffer Date: Wed, 11 Apr 2007 08:55:04 +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/share/man/man4 trunk.4 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: Wed, 11 Apr 2007 08:55:05 -0000 brueffer 2007-04-11 08:55:04 UTC FreeBSD src repository Modified files: share/man/man4 trunk.4 Log: Bump date to the day of the import. Revision Changes Path 1.2 +1 -1 src/share/man/man4/trunk.4 From owner-cvs-src@FreeBSD.ORG Wed Apr 11 09:45:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D213916A401; Wed, 11 Apr 2007 09:45:16 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BE91513C480; Wed, 11 Apr 2007 09:45:16 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3B9jGxu015633; Wed, 11 Apr 2007 09:45:16 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3B9jGwE015632; Wed, 11 Apr 2007 09:45:16 GMT (envelope-from andre) Message-Id: <200704110945.l3B9jGwE015632@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Apr 2007 09:45:16 +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/netinet tcp_input.c tcp_output.c tcp_sack.c tcp_subr.c tcp_syncache.c tcp_timer.c tcp_timer.h tcp_usrreq.c tcp_var.h 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: Wed, 11 Apr 2007 09:45:16 -0000 andre 2007-04-11 09:45:16 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c tcp_output.c tcp_sack.c tcp_subr.c tcp_syncache.c tcp_timer.c tcp_timer.h tcp_usrreq.c tcp_var.h Log: Change the TCP timer system from using the callout system five times directly to a merged model where only one callout, the next to fire, is registered. Instead of callout_reset(9) and callout_stop(9) the new function tcp_timer_activate() is used which then internally manages the callout. The single new callout is a mutex callout on inpcb simplifying the locking a bit. tcp_timer() is the called function which handles all race conditions in one place and then dispatches the individual timer functions. Reviewed by: rwatson (earlier version) Revision Changes Path 1.335 +22 -30 src/sys/netinet/tcp_input.c 1.132 +25 -28 src/sys/netinet/tcp_output.c 1.38 +1 -1 src/sys/netinet/tcp_sack.c 1.274 +14 -15 src/sys/netinet/tcp_subr.c 1.109 +1 -1 src/sys/netinet/tcp_syncache.c 1.90 +300 -176 src/sys/netinet/tcp_timer.c 1.33 +16 -5 src/sys/netinet/tcp_timer.h 1.150 +10 -8 src/sys/netinet/tcp_usrreq.c 1.142 +3 -7 src/sys/netinet/tcp_var.h From owner-cvs-src@FreeBSD.ORG Wed Apr 11 11:09:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3DCE616A400; Wed, 11 Apr 2007 11:09:19 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1371E13C458; Wed, 11 Apr 2007 11:09:19 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BB9ID4032215; Wed, 11 Apr 2007 11:09:18 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BB9IgW032214; Wed, 11 Apr 2007 11:09:18 GMT (envelope-from ru) Message-Id: <200704111109.l3BB9IgW032214@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Apr 2007 11:09:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Cc: Subject: cvs commit: src/sys/contrib/dev/acpica utmisc.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: Wed, 11 Apr 2007 11:09:19 -0000 ru 2007-04-11 11:09:18 UTC FreeBSD src repository Modified files: (Branch: INTEL) sys/contrib/dev/acpica utmisc.c Log: Unbreak world build. Revision Changes Path 1.1.1.25 +2 -0 src/sys/contrib/dev/acpica/utmisc.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 11:40:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 15DCE16A401 for ; Wed, 11 Apr 2007 11:40:29 +0000 (UTC) (envelope-from rpaulo@fnop.net) Received: from core.fnop.net (mx.fnop.net [82.102.11.82]) by mx1.freebsd.org (Postfix) with ESMTP id 7934413C48C for ; Wed, 11 Apr 2007 11:40:26 +0000 (UTC) (envelope-from rpaulo@fnop.net) Received: from core.fnop.net (mx.fnop.net [82.102.11.82]) by core.fnop.net (Postfix) with ESMTP id 8253968FEE8; Wed, 11 Apr 2007 12:38:50 +0100 (WEST) Received: by core.fnop.net (Postfix, from userid 1015) id 27E9F69027A; Wed, 11 Apr 2007 12:38:50 +0100 (WEST) X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on core.fnop.net X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO,RCVD_IN_SORBS_DUL autolearn=no version=3.1.7 Received: from epsilon.local (87-196-29-209.net.novis.pt [87.196.29.209]) by core.fnop.net (Postfix) with ESMTP id A1D6E68FEE8; Wed, 11 Apr 2007 12:38:48 +0100 (WEST) Message-ID: <461CC925.5090400@fnop.net> Date: Wed, 11 Apr 2007 12:40:21 +0100 From: Rui Paulo User-Agent: Thunderbird 2.0b2 (Macintosh/20070116) MIME-Version: 1.0 To: Pyun YongHyeon References: <200704110047.l3B0lTcE093763@repoman.freebsd.org> In-Reply-To: <200704110047.l3B0lTcE093763@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/msk if_msk.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: Wed, 11 Apr 2007 11:40:29 -0000 Pyun YongHyeon wrote: > yongari 2007-04-11 00:47:29 UTC > > FreeBSD src repository > > Modified files: > sys/dev/msk if_msk.c > Log: > Add work around for hardware Tx checksum offload bug in Yukon II. > Yukon II generated corrupted TCP checksum for short TCP packets > that's less than 60 bytes in size(e.g. window probe packet, pure ACK > packet etc). Padding the frame with zeros to make the frame minimum > ethernet frame size didn't work at all. Instead of dropping Tx > checksum offload support we calculate TCP checksum with S/W method > when we encounter short TCP frames. > Fortunately it seems that short UDP datagrams appear to be handled > correctly by Yukon II. > > While I'm here simplify ethernet/VLAN header size calculation logic. Thanks! :) -- Rui Paulo | PGP: F0E4 C7C7 1653 79B7 78DC DD73 64FA B2C6 CF45 1F84 From owner-cvs-src@FreeBSD.ORG Wed Apr 11 13:06:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A602C16A402; Wed, 11 Apr 2007 13:06:06 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 80EDE13C48A; Wed, 11 Apr 2007 13:06:06 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BD66UP064938; Wed, 11 Apr 2007 13:06:06 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BD667S064937; Wed, 11 Apr 2007 13:06:06 GMT (envelope-from stas) Message-Id: <200704111306.l3BD667S064937@repoman.freebsd.org> From: Stanislav Sedov Date: Wed, 11 Apr 2007 13:06:06 +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/etc services 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: Wed, 11 Apr 2007 13:06:06 -0000 stas 2007-04-11 13:06:06 UTC FreeBSD src repository (ports committer) Modified files: etc services Log: - Sync service names with IANA (http://www.iana.org/assignments/port-numbers). The registration names for 5222(tcp,udp) and 5269(tcp,udp) was changed to xmpp-client and xmpp-server correspondingly. This inconsistency causes problems to applications developed on other systems, as they tries to use port numbers from /etc/services as fallback. PR: conf/100606 Submitted by: Ralph Meijer Approved by: maxim MFC after: 1 week Revision Changes Path 1.104 +4 -4 src/etc/services From owner-cvs-src@FreeBSD.ORG Wed Apr 11 13:44:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE09A16A401; Wed, 11 Apr 2007 13:44:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8AA1213C455; Wed, 11 Apr 2007 13:44:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BDitbx071470; Wed, 11 Apr 2007 13:44:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BDitGf071469; Wed, 11 Apr 2007 13:44:55 GMT (envelope-from jhb) Message-Id: <200704111344.l3BDitGf071469@repoman.freebsd.org> From: John Baldwin Date: Wed, 11 Apr 2007 13:44:55 +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/sys mutex.h 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: Wed, 11 Apr 2007 13:44:55 -0000 jhb 2007-04-11 13:44:55 UTC FreeBSD src repository Modified files: sys/sys mutex.h Log: Group the loop to acquire/release Giant with the WITNESS_SAVE/RESTORE under a single conditional. The two operations are linked, but since the link is not very direct, Coverity can't see it. Humans might also miss the link as well. So, this isn't fixing any actual bugs, just improving readability. CID: 1787 (likely others as well) Found by: Coverity Prevent (tm) Revision Changes Path 1.95 +10 -8 src/sys/sys/mutex.h From owner-cvs-src@FreeBSD.ORG Wed Apr 11 13:47:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5F6516A400; Wed, 11 Apr 2007 13:47:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8306913C4C6; Wed, 11 Apr 2007 13:47:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BDlP49071631; Wed, 11 Apr 2007 13:47:25 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BDlPCe071630; Wed, 11 Apr 2007 13:47:25 GMT (envelope-from jhb) Message-Id: <200704111347.l3BDlPCe071630@repoman.freebsd.org> From: John Baldwin Date: Wed, 11 Apr 2007 13:47:24 +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/dev/cxgb/sys mvec.h 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: Wed, 11 Apr 2007 13:47:25 -0000 jhb 2007-04-11 13:47:24 UTC FreeBSD src repository Modified files: sys/dev/cxgb/sys mvec.h Log: Fix m_freem_vec() to actually traverse the mbuf chain. This avoids double free's and an infinite loop. CID: 1834 Found by: Coverity Prevent (tm) Revision Changes Path 1.3 +1 -0 src/sys/dev/cxgb/sys/mvec.h From owner-cvs-src@FreeBSD.ORG Wed Apr 11 14:08:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A13C016A406; Wed, 11 Apr 2007 14:08:43 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7FD1213C45E; Wed, 11 Apr 2007 14:08:43 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BE8hOV076006; Wed, 11 Apr 2007 14:08:43 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BE8h7w076005; Wed, 11 Apr 2007 14:08:43 GMT (envelope-from ru) Message-Id: <200704111408.l3BE8h7w076005@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Apr 2007 14:08:42 +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/netinet tcp_timer.h 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: Wed, 11 Apr 2007 14:08:43 -0000 ru 2007-04-11 14:08:42 UTC FreeBSD src repository Modified files: sys/netinet tcp_timer.h Log: Make "struct tcp_timer" visible only to the kernel, and unbreak world. Revision Changes Path 1.34 +13 -12 src/sys/netinet/tcp_timer.h From owner-cvs-src@FreeBSD.ORG Wed Apr 11 14:08:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 038FF16A400; Wed, 11 Apr 2007 14:08:56 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from mail.ciam.ru (ns.ciam.ru [213.247.195.75]) by mx1.freebsd.org (Postfix) with ESMTP id B573213C45D; Wed, 11 Apr 2007 14:08:55 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from msd-corb.mbrd.ru ([213.234.223.213] helo=[172.16.33.193]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1Hbd4Z-000Ms0-CV; Wed, 11 Apr 2007 17:41:19 +0400 Message-ID: <461CE535.3090901@FreeBSD.org> Date: Wed, 11 Apr 2007 17:40:05 +0400 From: Sergey Matveychuk User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Andre Oppermann References: <200704110945.l3B9jGwE015632@repoman.freebsd.org> In-Reply-To: <200704110945.l3B9jGwE015632@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_output.c tcp_sack.c tcp_subr.c tcp_syncache.c tcp_timer.c tcp_timer.h tcp_usrreq.c tcp_var.h 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: Wed, 11 Apr 2007 14:08:56 -0000 Please note, it broke build world. Andre Oppermann wrote: > andre 2007-04-11 09:45:16 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_input.c tcp_output.c tcp_sack.c > tcp_subr.c tcp_syncache.c tcp_timer.c > tcp_timer.h tcp_usrreq.c tcp_var.h > Log: > Change the TCP timer system from using the callout system five times > directly to a merged model where only one callout, the next to fire, > is registered. > > Instead of callout_reset(9) and callout_stop(9) the new function > tcp_timer_activate() is used which then internally manages the callout. > > The single new callout is a mutex callout on inpcb simplifying the > locking a bit. > > tcp_timer() is the called function which handles all race conditions > in one place and then dispatches the individual timer functions. > > Reviewed by: rwatson (earlier version) > > Revision Changes Path > 1.335 +22 -30 src/sys/netinet/tcp_input.c > 1.132 +25 -28 src/sys/netinet/tcp_output.c > 1.38 +1 -1 src/sys/netinet/tcp_sack.c > 1.274 +14 -15 src/sys/netinet/tcp_subr.c > 1.109 +1 -1 src/sys/netinet/tcp_syncache.c > 1.90 +300 -176 src/sys/netinet/tcp_timer.c > 1.33 +16 -5 src/sys/netinet/tcp_timer.h > 1.150 +10 -8 src/sys/netinet/tcp_usrreq.c > 1.142 +3 -7 src/sys/netinet/tcp_var.h > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" -- Dixi. Sem. From owner-cvs-src@FreeBSD.ORG Wed Apr 11 15:24:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74B6C16A401; Wed, 11 Apr 2007 15:24:58 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5697413C45B; Wed, 11 Apr 2007 15:24:58 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BFOwu2093410; Wed, 11 Apr 2007 15:24:58 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BFOwia093409; Wed, 11 Apr 2007 15:24:58 GMT (envelope-from ru) Message-Id: <200704111524.l3BFOwia093409@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Apr 2007 15:24:58 +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/release Makefile.inc.docports 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: Wed, 11 Apr 2007 15:24:58 -0000 ru 2007-04-11 15:24:58 UTC FreeBSD src repository Modified files: release Makefile.inc.docports Log: Fix doc.1 build when NOPORTS is defined. This includes the following ports tree changes: - libtool13 removed. - pkgconfig moved to pkg-config. - Default dependency for USE_GHOSTSCRIPT changed from ghostscript-gnu to ghostscript-gpl. - Also added missing docproj dependencies. Reported by: Dmitriy Kirhlarov Submitted by: sem, ru MFC after: 3 days Revision Changes Path 1.27 +6 -4 src/release/Makefile.inc.docports From owner-cvs-src@FreeBSD.ORG Wed Apr 11 15:37:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3632D16A403; Wed, 11 Apr 2007 15:37:38 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1728013C4AD; Wed, 11 Apr 2007 15:37:38 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BFbbo4095267; Wed, 11 Apr 2007 15:37:37 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BFbbJV095266; Wed, 11 Apr 2007 15:37:37 GMT (envelope-from bmah) Message-Id: <200704111537.l3BFbbJV095266@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 11 Apr 2007 15:37:37 +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/release/doc/en_US.ISO8859-1/relnotes article.sgml 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: Wed, 11 Apr 2007 15:37:38 -0000 bmah 2007-04-11 15:37:37 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New release notes: kern.hostuuid, trunk(4), sg (+MFC), truss(1) uses ptrace(2), uuidgen(1) moved to /bin. Modified release notes: ZFS manpage update and pc98 support, fix markup in KSE note. Revision Changes Path 1.1013 +27 -2 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Wed Apr 11 15:58:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBDB916A403; Wed, 11 Apr 2007 15:58:37 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9CECF13C45E; Wed, 11 Apr 2007 15:58:37 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BFwb2Q098590; Wed, 11 Apr 2007 15:58:37 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BFwbR8098589; Wed, 11 Apr 2007 15:58:37 GMT (envelope-from stas) Message-Id: <200704111558.l3BFwbR8098589@repoman.freebsd.org> From: Stanislav Sedov Date: Wed, 11 Apr 2007 15:58:36 +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/etc services 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: Wed, 11 Apr 2007 15:58:37 -0000 stas 2007-04-11 15:58:36 UTC FreeBSD src repository (ports committer) Modified files: etc services Log: - Add IANA assigned port for amanda server control over tcp. The current misc/amanda-server code uses it. PR: conf/111050 Submitted by: Charles Sprickman Approved by: maxim MFC after: 1 week Revision Changes Path 1.105 +1 -0 src/etc/services From owner-cvs-src@FreeBSD.ORG Wed Apr 11 16:02:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8EAEF16A409; Wed, 11 Apr 2007 16:02:05 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 704C813C465; Wed, 11 Apr 2007 16:02:05 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BG25iq099451; Wed, 11 Apr 2007 16:02:05 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BG25fs099449; Wed, 11 Apr 2007 16:02:05 GMT (envelope-from stas) Message-Id: <200704111602.l3BG25fs099449@repoman.freebsd.org> From: Stanislav Sedov Date: Wed, 11 Apr 2007 16:02:05 +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/etc services 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: Wed, 11 Apr 2007 16:02:05 -0000 stas 2007-04-11 16:02:05 UTC FreeBSD src repository (ports committer) Modified files: etc services Log: - Add IANA-assigned ports for HP status & services daemon and I/O backend daemon. The FreeBSD port print/hplip currently provides these services. PR: conf/99593 Submitted by: Anish Mistry Approved by: maxim MFC after: 1 week Revision Changes Path 1.106 +4 -0 src/etc/services From owner-cvs-src@FreeBSD.ORG Wed Apr 11 16:22:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A096016A405; Wed, 11 Apr 2007 16:22:59 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8168E13C459; Wed, 11 Apr 2007 16:22:59 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BGMxTR004190; Wed, 11 Apr 2007 16:22:59 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BGMxFN004189; Wed, 11 Apr 2007 16:22:59 GMT (envelope-from rwatson) Message-Id: <200704111622.l3BGMxFN004189@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Apr 2007 16:22:59 +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/kern uipc_mqueue.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: Wed, 11 Apr 2007 16:22:59 -0000 rwatson 2007-04-11 16:22:59 UTC FreeBSD src repository Modified files: sys/kern uipc_mqueue.c Log: Remove now-obsolete comment regarding mqueue privileges in jail. Revision Changes Path 1.23 +0 -4 src/sys/kern/uipc_mqueue.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 16:31:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 960BA16A401; Wed, 11 Apr 2007 16:31:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7740713C455; Wed, 11 Apr 2007 16:31:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BGV2wL006360; Wed, 11 Apr 2007 16:31:02 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BGV2vX006355; Wed, 11 Apr 2007 16:31:02 GMT (envelope-from rwatson) Message-Id: <200704111631.l3BGV2vX006355@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Apr 2007 16:31:02 +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/netinet6 ipsec.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: Wed, 11 Apr 2007 16:31:02 -0000 rwatson 2007-04-11 16:31:02 UTC FreeBSD src repository Modified files: sys/netinet6 ipsec.c Log: Remove obsolete comment about privileges: SUSER_ALLOWJAIL is no longer set in this code. Revision Changes Path 1.49 +0 -2 src/sys/netinet6/ipsec.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 17:12:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB43B16A414; Wed, 11 Apr 2007 17:12:39 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8F7A813C4B0; Wed, 11 Apr 2007 17:12:39 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BHCcMj023463; Wed, 11 Apr 2007 17:12:38 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BHCcGL023462; Wed, 11 Apr 2007 17:12:38 GMT (envelope-from remko) Message-Id: <200704111712.l3BHCcGL023462@repoman.freebsd.org> From: Remko Lodder Date: Wed, 11 Apr 2007 17:12:38 +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/dev/re if_re.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: Wed, 11 Apr 2007 17:12:40 -0000 remko 2007-04-11 17:12:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/re if_re.c Log: MFC if_re.c rev 1.88 Add support for the RTL8110SC driver. PR: 110804 Submitted by: Daan Vreeken Sponsored by: Vitsch Electronics (patch) Approved by: imp (mentor) MFC After: 3 days Approved by: imp (mentor, implicit) Revision Changes Path 1.46.2.26 +2 -0 src/sys/dev/re/if_re.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 17:13:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2243D16A408; Wed, 11 Apr 2007 17:13:17 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0379E13C4CC; Wed, 11 Apr 2007 17:13:17 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BHDG62023626; Wed, 11 Apr 2007 17:13:16 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BHDGV7023624; Wed, 11 Apr 2007 17:13:16 GMT (envelope-from remko) Message-Id: <200704111713.l3BHDGV7023624@repoman.freebsd.org> From: Remko Lodder Date: Wed, 11 Apr 2007 17:13:16 +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/dev/fxp if_fxp.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: Wed, 11 Apr 2007 17:13:17 -0000 remko 2007-04-11 17:13:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/fxp if_fxp.c Log: MFC if_fxp rev 1.265 Add support for the 82562GX chip within if_fxp. PR: 110251 Submitted by: Vyacheslav Vovk Approved by: imp (mentor) MFC After: 3 days Approved by: imp (mentor, implicit) Revision Changes Path 1.240.2.12 +1 -0 src/sys/dev/fxp/if_fxp.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 17:45:30 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E077F16A404; Wed, 11 Apr 2007 17:45:30 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id 698CA13C45B; Wed, 11 Apr 2007 17:45:30 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.8/8.13.8) with ESMTP id l3BHjSYo035977; Wed, 11 Apr 2007 21:45:28 +0400 (MSD) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.8/8.13.8/Submit) id l3BHjS88035976; Wed, 11 Apr 2007 21:45:28 +0400 (MSD) (envelope-from ache) Date: Wed, 11 Apr 2007 21:45:28 +0400 From: Andrey Chernov To: Pawel Jakub Dawidek Message-ID: <20070411174528.GA35928@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200704102210.l3AMAH9W058770@repoman.freebsd.org> User-Agent: Mutt/1.5.14 (2007-02-12) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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: Wed, 11 Apr 2007 17:45:31 -0000 On Tue, Apr 10, 2007 at 10:10:17PM +0000, Pawel Jakub Dawidek wrote: > pjd 2007-04-10 22:10:16 UTC > > FreeBSD src repository > > Modified files: > include Makefile > include/rpc Makefile > sys/rpc types.h > Removed files: > include/rpc types.h > Log: > Move rpc/types.h under sys/, as this is used by ZFS kernel module. Some applications can use rpc/types.h. Moreover, even rpc files use it rpc.h:#include /* some typedefs */ rpcb_clnt.h:#include Better way is to keep rpc/types.h and include sys/rpc/types.h in it. -- http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Wed Apr 11 17:45:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FF7616A408; Wed, 11 Apr 2007 17:45:38 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4FD2113C489; Wed, 11 Apr 2007 17:45:38 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BHjcHP028396; Wed, 11 Apr 2007 17:45:38 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BHjcPd028392; Wed, 11 Apr 2007 17:45:38 GMT (envelope-from bmah) Message-Id: <200704111745.l3BHjcPd028392@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 11 Apr 2007 17:45:38 +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/release/doc/en_US.ISO8859-1/relnotes article.sgml 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: Wed, 11 Apr 2007 17:45:38 -0000 bmah 2007-04-11 17:45:37 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: Modified release note: Reword sg note to make more sense. Problems pointed out by: brueffer Revision Changes Path 1.1014 +3 -2 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Wed Apr 11 17:53:30 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEA3216A400; Wed, 11 Apr 2007 17:53:30 +0000 (UTC) (envelope-from ticso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5652713C489; Wed, 11 Apr 2007 17:53:30 +0000 (UTC) (envelope-from ticso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BHrU7L029666; Wed, 11 Apr 2007 17:53:30 GMT (envelope-from ticso@repoman.freebsd.org) Received: (from ticso@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BHrU2J029665; Wed, 11 Apr 2007 17:53:30 GMT (envelope-from ticso) Message-Id: <200704111753.l3BHrU2J029665@repoman.freebsd.org> From: Bernd Walter Date: Wed, 11 Apr 2007 17:53:29 +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/share/misc committers-src.dot 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: Wed, 11 Apr 2007 17:53:30 -0000 ticso 2007-04-11 17:53:29 UTC FreeBSD src repository Modified files: share/misc committers-src.dot Log: Add myself plus a template for Andrew Gallatin for the mentor link. Revision Changes Path 1.57 +4 -0 src/share/misc/committers-src.dot From owner-cvs-src@FreeBSD.ORG Wed Apr 11 18:01:11 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 661EB16A406 for ; Wed, 11 Apr 2007 18:01:11 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8C413C4B0 for ; Wed, 11 Apr 2007 18:01:11 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 75392 invoked from network); 11 Apr 2007 17:12:08 -0000 Received: from ppp-71-139-28-99.dsl.snfc21.pacbell.net (HELO ?10.0.0.235?) (nate-mail@71.139.28.99) by root.org with ESMTPA; 11 Apr 2007 17:12:08 -0000 Message-ID: <461D16E1.6050001@root.org> Date: Wed, 11 Apr 2007 10:12:01 -0700 From: Nate Lawson User-Agent: Thunderbird 1.5.0.7 (X11/20061027) MIME-Version: 1.0 To: Ruslan Ermilov References: <20070411110923.E42C416A50E@hub.freebsd.org> In-Reply-To: <20070411110923.E42C416A50E@hub.freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica utmisc.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: Wed, 11 Apr 2007 18:01:11 -0000 Ruslan Ermilov wrote: > ru 2007-04-11 11:09:18 UTC > > FreeBSD src repository > > Modified files: (Branch: INTEL) > sys/contrib/dev/acpica utmisc.c > Log: > Unbreak world build. > > Revision Changes Path > 1.1.1.25 +2 -0 src/sys/contrib/dev/acpica/utmisc.c > > > Index: src/sys/contrib/dev/acpica/utmisc.c > diff -u src/sys/contrib/dev/acpica/utmisc.c:1.1.1.24 src/sys/contrib/dev/acpica/utmisc.c:1.1.1.25 > --- src/sys/contrib/dev/acpica/utmisc.c:1.1.1.24 Wed Apr 11 02:03:36 2007 > +++ src/sys/contrib/dev/acpica/utmisc.c Wed Apr 11 11:09:18 2007 > @@ -1295,9 +1295,11 @@ > { > va_list args; > > +#ifdef _KERNEL > /* Temporarily hide too verbose printfs. */ > if (!bootverbose) > return; > +#endif > > /* > * Removed ModuleName, LineNumber, and acpica version, not needed Thanks and pointy hat accepted. Of course, kernel built fine but I forgot some of these routines were included in the userland utilities. -- Nate From owner-cvs-src@FreeBSD.ORG Wed Apr 11 18:36:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5617516A400; Wed, 11 Apr 2007 18:36:40 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id D2D5F13C43E; Wed, 11 Apr 2007 18:36:39 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.8/8.13.8) with ESMTP id l3BIacXn036607; Wed, 11 Apr 2007 22:36:38 +0400 (MSD) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.8/8.13.8/Submit) id l3BIacAY036606; Wed, 11 Apr 2007 22:36:38 +0400 (MSD) (envelope-from ache) Date: Wed, 11 Apr 2007 22:36:37 +0400 From: Andrey Chernov To: Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20070411183637.GA36508@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> <20070411174528.GA35928@nagual.pp.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070411174528.GA35928@nagual.pp.ru> User-Agent: Mutt/1.5.14 (2007-02-12) Cc: Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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: Wed, 11 Apr 2007 18:36:40 -0000 On Wed, Apr 11, 2007 at 09:45:28PM +0400, Andrey Chernov wrote: > > Better way is to keep rpc/types.h and include sys/rpc/types.h in it. Well I see it installed to /usr/include/rpc from /sys/rpc now. Still better way I mention above, to separate possible userland addition to /usr/include/rpc/types.h from kernel only /sys/rpc/types.h (which will be installed under /usr/include/sys/rpc in the case I describe). -- http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Wed Apr 11 19:11:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 197D316A402; Wed, 11 Apr 2007 19:11:56 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ED53613C4AE; Wed, 11 Apr 2007 19:11:55 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BJBtdm044507; Wed, 11 Apr 2007 19:11:55 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BJBtxL044506; Wed, 11 Apr 2007 19:11:55 GMT (envelope-from des) Message-Id: <200704111911.l3BJBtxL044506@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 11 Apr 2007 19:11:54 +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/usr.bin/finger extern.h finger.1 finger.c net.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: Wed, 11 Apr 2007 19:11:56 -0000 des 2007-04-11 19:11:54 UTC FreeBSD src repository Modified files: usr.bin/finger extern.h finger.1 finger.c net.c Log: Remove T/TCP support, and the -T option which was needed to disable it. MFC after: 3 weeks Revision Changes Path 1.11 +0 -1 src/usr.bin/finger/extern.h 1.32 +1 -4 src/usr.bin/finger/finger.1 1.37 +1 -4 src/usr.bin/finger/finger.c 1.24 +1 -7 src/usr.bin/finger/net.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 19:20:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C51C16A407; Wed, 11 Apr 2007 19:20:43 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F0A6213C4B9; Wed, 11 Apr 2007 19:20:42 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BJKgob045504; Wed, 11 Apr 2007 19:20:42 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BJKgkT045503; Wed, 11 Apr 2007 19:20:42 GMT (envelope-from des) Message-Id: <200704111920.l3BJKgkT045503@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 11 Apr 2007 19:20:42 +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/usr.bin/finger finger.1 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: Wed, 11 Apr 2007 19:20:43 -0000 des 2007-04-11 19:20:42 UTC FreeBSD src repository Modified files: usr.bin/finger finger.1 Log: Bump Dd. Revision Changes Path 1.33 +1 -1 src/usr.bin/finger/finger.1 From owner-cvs-src@FreeBSD.ORG Wed Apr 11 19:59:28 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7023616A400; Wed, 11 Apr 2007 19:59:28 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 5CB7F13C44C; Wed, 11 Apr 2007 19:59:28 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 4FFD31A4D86; Wed, 11 Apr 2007 12:59:35 -0700 (PDT) Date: Wed, 11 Apr 2007 12:59:35 -0700 From: Alfred Perlstein To: Ed Maste Message-ID: <20070411195935.GA2382@elvis.mu.org> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Xin LI , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Wed, 11 Apr 2007 19:59:28 -0000 * Ed Maste [070410 12:47] wrote: > On 10/04/07, Xin LI wrote: > > Make use of ptrace(2) instead of procfs in truss(1), eliminating > > yet another need of an available /proc/ mount. > > I've started to do the same thing to gcore(1), in order to make it > work properly with threaded applications. I've removed its dependency > on /proc/pid/mem, /proc/pid/regs, and /proc/pid/fpregs. However, it > still relies on /proc/pid/status and /proc/pid/map which are not > directly available via ptrace(2). > > This would make the -s option to gcore redundant (since the process > will be stopped after attaching anyway). I don't know how useful a > core from a non-stopped process is, anyhow. Very, very useful. Imagine a running program that's having some form of abnormal behavior but can't be stopped (for long) or allowed to core... -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Wed Apr 11 20:10:05 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62B9A16A402 for ; Wed, 11 Apr 2007 20:10:05 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.freebsd.org (Postfix) with ESMTP id B9A6113C459 for ; Wed, 11 Apr 2007 20:10:04 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by py-out-1112.google.com with SMTP id f31so255163pyh for ; Wed, 11 Apr 2007 13:10:04 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=GRcpSCa8GhIQ2u9MyCz984Z0NIrYbN8/jQQGxIkHrrTuK9tD8ME3sVtd4HY4w2EPgsu4SR9H/JjLwa46bXKMNFFHxOCbfgZF9mV4DTuFwt3pC8FlcwvzqnyvBWId5sSE2Vn7LCJpGIYbs/AjgBnzM2Wd6s6HF2fcwn04WCLmtCI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=R3x90AazWl41CzqIiYnbWGGHG8v3ogB3p0onasKvGutqiARaAv02zvOdpKecLflZaBhSWh5gOxIvTSLRgjQt9yP4Jh4Y1/xSbQVfQ0FXTKvu+GQ1pIznk251+Y5mszKLqZ6uwJdV/IbuG1hkBT/nWDuNjFpD76eLT6uW2zLDHWo= Received: by 10.65.236.14 with SMTP id n14mr2151785qbr.1176322204064; Wed, 11 Apr 2007 13:10:04 -0700 (PDT) Received: by 10.65.244.16 with HTTP; Wed, 11 Apr 2007 13:10:03 -0700 (PDT) Message-ID: Date: Wed, 11 Apr 2007 12:10:03 -0800 From: "Kip Macy" To: "Ed Maste" In-Reply-To: <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Xin LI , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Wed, 11 Apr 2007 20:10:05 -0000 On 4/10/07, Ed Maste wrote: > On 10/04/07, Xin LI wrote: > > Make use of ptrace(2) instead of procfs in truss(1), eliminating > > yet another need of an available /proc/ mount. > > I've started to do the same thing to gcore(1), in order to make it > work properly with threaded applications. I've removed its dependency > on /proc/pid/mem, /proc/pid/regs, and /proc/pid/fpregs. However, it > still relies on /proc/pid/status and /proc/pid/map which are not > directly available via ptrace(2). > > This would make the -s option to gcore redundant (since the process > will be stopped after attaching anyway). I don't know how useful a > core from a non-stopped process is, anyhow. Fork it to get a COW snapshot and then gcore the stopped forked process. (Yes this would probably require a new syscall or a new ptrace interface, but it would be trivial to add). -Kip From owner-cvs-src@FreeBSD.ORG Wed Apr 11 20:12:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F34F216A4D0; Wed, 11 Apr 2007 20:12:48 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id 94DCD13C484; Wed, 11 Apr 2007 20:12:48 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id ADFBC4569A; Wed, 11 Apr 2007 22:12:46 +0200 (CEST) Received: from localhost (public-gprs37323.centertel.pl [91.94.17.239]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 7952245684; Wed, 11 Apr 2007 22:12:09 +0200 (CEST) Date: Wed, 11 Apr 2007 22:11:22 +0200 From: Pawel Jakub Dawidek To: Andrey Chernov , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20070411201122.GB3060@garage.freebsd.pl> References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> <20070411174528.GA35928@nagual.pp.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <20070411174528.GA35928@nagual.pp.ru> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL autolearn=no version=3.0.4 Cc: Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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: Wed, 11 Apr 2007 20:12:49 -0000 --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 11, 2007 at 09:45:28PM +0400, Andrey Chernov wrote: > On Tue, Apr 10, 2007 at 10:10:17PM +0000, Pawel Jakub Dawidek wrote: > > pjd 2007-04-10 22:10:16 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > include Makefile=20 > > include/rpc Makefile=20 > > sys/rpc types.h=20 > > Removed files: > > include/rpc types.h=20 > > Log: > > Move rpc/types.h under sys/, as this is used by ZFS kernel module. >=20 > Some applications can use rpc/types.h. Moreover, even rpc files use it >=20 > rpc.h:#include /* some typedefs */ > rpcb_clnt.h:#include >=20 > Better way is to keep rpc/types.h and include sys/rpc/types.h in it. sys/rpc/types.h is installed in /usr/include/rpc/. What's the problem exactly? --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --bp/iNruPH9dso1Pn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGHUDqForvXbEpPzQRAoy9AJsEFqp9nvKQHZ+3X0of/4ECOuSMtwCbBbX2 gYoiY4im4gyPDMGQv6uz0us= =49RQ -----END PGP SIGNATURE----- --bp/iNruPH9dso1Pn-- From owner-cvs-src@FreeBSD.ORG Wed Apr 11 20:24:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7038A16A406; Wed, 11 Apr 2007 20:24:07 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id E8D6713C465; Wed, 11 Apr 2007 20:24:06 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.8/8.13.8) with ESMTP id l3BKO51C037994; Thu, 12 Apr 2007 00:24:05 +0400 (MSD) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.8/8.13.8/Submit) id l3BKO5K3037993; Thu, 12 Apr 2007 00:24:05 +0400 (MSD) (envelope-from ache) Date: Thu, 12 Apr 2007 00:24:04 +0400 From: Andrey Chernov To: Pawel Jakub Dawidek Message-ID: <20070411202404.GA37891@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> <20070411174528.GA35928@nagual.pp.ru> <20070411201122.GB3060@garage.freebsd.pl> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <20070411201122.GB3060@garage.freebsd.pl> User-Agent: Mutt/1.5.14 (2007-02-12) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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: Wed, 11 Apr 2007 20:24:07 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 11, 2007 at 10:11:22PM +0200, Pawel Jakub Dawidek wrote: > sys/rpc/types.h is installed in /usr/include/rpc/. What's the problem > exactly? I realize. See my 2nd followup. In few words I prefer to separate them as= =20 f.e. unistd.h and sys/unistd.h separated, but no problems with it for now. --=20 http://ache.pp.ru/ --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (FreeBSD) iD8DBQFGHUPkVg5YK5ZEdN0RAgqyAJ49wUxGX4Mkd5cVuRGONphr8aS4bgCgvEgO EMij4LlsP0FwKM6AWGtapyA= =1+nn -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From owner-cvs-src@FreeBSD.ORG Wed Apr 11 20:31:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47DCE16A40A; Wed, 11 Apr 2007 20:31:07 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 27C3913C4C7; Wed, 11 Apr 2007 20:31:07 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BKV7lc059839; Wed, 11 Apr 2007 20:31:07 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BKV7cs059836; Wed, 11 Apr 2007 20:31:07 GMT (envelope-from emaste) Message-Id: <200704112031.l3BKV7cs059836@repoman.freebsd.org> From: Ed Maste Date: Wed, 11 Apr 2007 20:31:06 +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/lib/libc/sys ptrace.2 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: Wed, 11 Apr 2007 20:31:07 -0000 emaste 2007-04-11 20:31:06 UTC FreeBSD src repository Modified files: lib/libc/sys ptrace.2 Log: Belatedly bump Dd for my recent changes. Revision Changes Path 1.41 +1 -1 src/lib/libc/sys/ptrace.2 From owner-cvs-src@FreeBSD.ORG Wed Apr 11 20:32:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B62716A407; Wed, 11 Apr 2007 20:32:10 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2F8F613C4BB; Wed, 11 Apr 2007 20:32:10 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BKWA2x060268; Wed, 11 Apr 2007 20:32:10 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BKWA26060267; Wed, 11 Apr 2007 20:32:10 GMT (envelope-from des) Message-Id: <200704112032.l3BKWA26060267@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 11 Apr 2007 20:32:09 +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/usr.bin/finger finger.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: Wed, 11 Apr 2007 20:32:10 -0000 des 2007-04-11 20:32:09 UTC FreeBSD src repository Modified files: usr.bin/finger finger.c Log: Remove -T from getopt() spec and usage string. Submitted by: ru@ Revision Changes Path 1.38 +2 -2 src/usr.bin/finger/finger.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 20:32:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7818016A401; Wed, 11 Apr 2007 20:32:59 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 580BB13C45E; Wed, 11 Apr 2007 20:32:59 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BKWxpU060517; Wed, 11 Apr 2007 20:32:59 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BKWxXf060515; Wed, 11 Apr 2007 20:32:59 GMT (envelope-from des) Message-Id: <200704112032.l3BKWxXf060515@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 11 Apr 2007 20:32:59 +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/usr.bin/finger finger.1 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: Wed, 11 Apr 2007 20:32:59 -0000 des 2007-04-11 20:32:59 UTC FreeBSD src repository Modified files: usr.bin/finger finger.1 Log: Remove irrelevant comment about T/TCP in BUGS. Spotted by: ru@ Revision Changes Path 1.34 +0 -8 src/usr.bin/finger/finger.1 From owner-cvs-src@FreeBSD.ORG Wed Apr 11 20:46:20 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C319216A407 for ; Wed, 11 Apr 2007 20:46:20 +0000 (UTC) (envelope-from ed.maste@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.179]) by mx1.freebsd.org (Postfix) with ESMTP id 490F013C45A for ; Wed, 11 Apr 2007 20:46:19 +0000 (UTC) (envelope-from ed.maste@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so336258ika for ; Wed, 11 Apr 2007 13:46:19 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=T2miI7HQIWkBBFzB1mujk8ahB8kwxIpFoavEKwTaI5oebQfqzJT9d3ASxQFUmd11jQlK5WEa6auGUZ6HSJak11oC93Ef6OVxdacjzR5YckzbumDnkvvc4pEAZRkgAK+qR+wW5A5r/SlbxdV7ASbvqtEKTG90j43WdivAFgGDwj0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FMXK1BMd04HUOkIOQZZhGz8LWAgBXzor+XDXfcGy2P9TCCmV5lVy7bI9KofHgKVcPkdg3Mt5AwXsuXDovCpiemTCwl4N0ESiDvZaz63V3h0uMhi0ehnGdtTBbudKuyrFoWs3sda/dLT6HbJf31HD2uZ1VL4qQRtc7crXacG6k/Y= Received: by 10.78.193.19 with SMTP id q19mr218094huf.1176324378944; Wed, 11 Apr 2007 13:46:18 -0700 (PDT) Received: by 10.78.188.7 with HTTP; Wed, 11 Apr 2007 13:46:18 -0700 (PDT) Message-ID: <88607eb20704111346q5c463b60w2547084231a11227@mail.gmail.com> Date: Wed, 11 Apr 2007 16:46:18 -0400 From: "Ed Maste" To: "Alfred Perlstein" In-Reply-To: <20070411195935.GA2382@elvis.mu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> <20070411195935.GA2382@elvis.mu.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Xin LI , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Wed, 11 Apr 2007 20:46:20 -0000 On 11/04/07, Alfred Perlstein wrote: > * Ed Maste [070410 12:47] wrote: > > This would make the -s option to gcore redundant (since the process > > will be stopped after attaching anyway). I don't know how useful a > > core from a non-stopped process is, anyhow. > > Very, very useful. > > Imagine a running program that's having some form of abnormal > behavior but can't be stopped (for long) or allowed to core... It's stopped for only as long as the core takes to be written. Currently, without the -s option the core produced by gcore is inconsistent, and it's that behaviour that would be eliminated with my change. Do you actually have a use for inconsistent core files? -ed From owner-cvs-src@FreeBSD.ORG Wed Apr 11 22:02:21 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E5BF16A405; Wed, 11 Apr 2007 22:02:21 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 7C26313C45A; Wed, 11 Apr 2007 22:02:21 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id A7A3C1A4D9D; Wed, 11 Apr 2007 15:02:28 -0700 (PDT) Date: Wed, 11 Apr 2007 15:02:28 -0700 From: Alfred Perlstein To: Ed Maste Message-ID: <20070411220228.GG2382@elvis.mu.org> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> <20070411195935.GA2382@elvis.mu.org> <88607eb20704111346q5c463b60w2547084231a11227@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <88607eb20704111346q5c463b60w2547084231a11227@mail.gmail.com> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Xin LI , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Wed, 11 Apr 2007 22:02:21 -0000 * Ed Maste [070411 13:46] wrote: > On 11/04/07, Alfred Perlstein wrote: > >* Ed Maste [070410 12:47] wrote: > >> This would make the -s option to gcore redundant (since the process > >> will be stopped after attaching anyway). I don't know how useful a > >> core from a non-stopped process is, anyhow. > > > >Very, very useful. > > > >Imagine a running program that's having some form of abnormal > >behavior but can't be stopped (for long) or allowed to core... > > It's stopped for only as long as the core takes to be written. > > Currently, without the -s option the core produced by gcore is > inconsistent, and it's that behaviour that would be eliminated with my > change. Do you actually have a use for inconsistent core files? Not so much as a need for an inconsistent core so much as a need for a core without halting the program for the time it takes to dump core. -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Wed Apr 11 22:40:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF49C16A402; Wed, 11 Apr 2007 22:40:57 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B5E5D13C43E; Wed, 11 Apr 2007 22:40:57 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BMevcY095243; Wed, 11 Apr 2007 22:40:57 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BMev80095236; Wed, 11 Apr 2007 22:40:57 GMT (envelope-from des) Message-Id: <200704112240.l3BMev80095236@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 11 Apr 2007 22:40:57 +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/fs/pseudofs pseudofs.c pseudofs.h pseudofs_fileno.c pseudofs_internal.h pseudofs_vncache.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: Wed, 11 Apr 2007 22:40:57 -0000 des 2007-04-11 22:40:57 UTC FreeBSD src repository Modified files: sys/fs/pseudofs pseudofs.c pseudofs.h pseudofs_fileno.c pseudofs_internal.h pseudofs_vncache.c Log: Add a flag to struct pfs_vdata to mark the vnode as dead (e.g. process- specific nodes when the process exits) Move the vnode-cache-walking loop which was duplicated in pfs_exit() and pfs_disable() into its own function, pfs_purge(), which looks for vnodes marked as dead and / or belonging to the specified pfs_node and reclaims them. Note that this loop is still extremely inefficient. Add a comment in pfs_vncache_alloc() explaining why we have to purge the vnode from the vnode cache before returning, in case anyone should be tempted to remove the call to cache_purge(). Move the special handling for pfstype_root nodes into pfs_fileno_alloc() and pfs_fileno_free() (the root node's fileno must always be 2). This also fixes a bug where pfs_fileno_free() would reclaim the root node's fileno, triggering a panic in the unr code, as that fileno was never allocated from unr to begin with. When destroying a pfs_node, release its fileno and purge it from the vnode cache. I wish we could put off the call to pfs_purge() until after the entire tree had been destroyed, but then we'd have vnodes referencing freed pfs nodes. This probably doesn't matter while we're still under Giant, but might become an issue later. When destroying a pseudofs instance, destroy the tree before tearing down the fileno allocator. In pfs_mount(), acquire the mountpoint interlock when required. MFC after: 3 weeks Revision Changes Path 1.30 +11 -3 src/sys/fs/pseudofs/pseudofs.c 1.34 +1 -0 src/sys/fs/pseudofs/pseudofs.h 1.13 +12 -1 src/sys/fs/pseudofs/pseudofs_fileno.c 1.5 +1 -0 src/sys/fs/pseudofs/pseudofs_internal.h 1.35 +49 -47 src/sys/fs/pseudofs/pseudofs_vncache.c From owner-cvs-src@FreeBSD.ORG Wed Apr 11 22:43:17 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF9A716A402; Wed, 11 Apr 2007 22:43:17 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 7007D13C487; Wed, 11 Apr 2007 22:43:17 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 08B0820A2; Thu, 12 Apr 2007 00:43:14 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 7C8AE20A1; Thu, 12 Apr 2007 00:43:13 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 65AF3A10AC; Thu, 12 Apr 2007 00:43:13 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Alfred Perlstein References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> <20070411195935.GA2382@elvis.mu.org> <88607eb20704111346q5c463b60w2547084231a11227@mail.gmail.com> <20070411220228.GG2382@elvis.mu.org> Date: Thu, 12 Apr 2007 00:43:13 +0200 In-Reply-To: <20070411220228.GG2382@elvis.mu.org> (Alfred Perlstein's message of "Wed, 11 Apr 2007 15:02:28 -0700") Message-ID: <86abxemt1a.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Ed Maste , cvs-src@freebsd.org, src-committers@freebsd.org, Xin LI , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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: Wed, 11 Apr 2007 22:43:17 -0000 Alfred Perlstein writes: > Ed Maste [070411 13:46] wrote: > > Currently, without the -s option the core produced by gcore is > > inconsistent, and it's that behaviour that would be eliminated with my > > change. Do you actually have a use for inconsistent core files? > Not so much as a need for an inconsistent core so much as a need > for a core without halting the program for the time it takes to > dump core. What Ed is trying to tell you is that the result will be a useless core file. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Wed Apr 11 23:13:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73C2316A406; Wed, 11 Apr 2007 23:13:13 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 526A513C468; Wed, 11 Apr 2007 23:13:13 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3BNDDCM001774; Wed, 11 Apr 2007 23:13:13 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3BNDDWV001773; Wed, 11 Apr 2007 23:13:13 GMT (envelope-from andre) Message-Id: <200704112313.l3BNDDWV001773@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Apr 2007 23:13:13 +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/sys mbuf.h 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: Wed, 11 Apr 2007 23:13:13 -0000 andre 2007-04-11 23:13:13 UTC FreeBSD src repository Modified files: sys/sys mbuf.h Log: Add m_last() inline function. Revision Changes Path 1.207 +10 -0 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Thu Apr 12 01:47:25 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3690916A400; Thu, 12 Apr 2007 01:47:25 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 2199713C457; Thu, 12 Apr 2007 01:47:25 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 79C6F1A4D82; Wed, 11 Apr 2007 18:47:32 -0700 (PDT) Date: Wed, 11 Apr 2007 18:47:32 -0700 From: Alfred Perlstein To: Dag-Erling Sm?rgrav Message-ID: <20070412014732.GM2382@elvis.mu.org> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> <20070411195935.GA2382@elvis.mu.org> <88607eb20704111346q5c463b60w2547084231a11227@mail.gmail.com> <20070411220228.GG2382@elvis.mu.org> <86abxemt1a.fsf@dwp.des.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86abxemt1a.fsf@dwp.des.no> User-Agent: Mutt/1.4.2.2i Cc: Ed Maste , cvs-src@freebsd.org, src-committers@freebsd.org, Xin LI , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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, 12 Apr 2007 01:47:25 -0000 * Dag-Erling Sm?rgrav [070411 15:43] wrote: > Alfred Perlstein writes: > > Ed Maste [070411 13:46] wrote: > > > Currently, without the -s option the core produced by gcore is > > > inconsistent, and it's that behaviour that would be eliminated with my > > > change. Do you actually have a use for inconsistent core files? > > Not so much as a need for an inconsistent core so much as a need > > for a core without halting the program for the time it takes to > > dump core. > > What Ed is trying to tell you is that the result will be a useless > core file. And what I'm trying to say is that he's wrong. One can still examine such a corefile to find valuable data. -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Thu Apr 12 01:58:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63D2316A402; Thu, 12 Apr 2007 01:58:58 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4101413C455; Thu, 12 Apr 2007 01:58:58 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C1wwD7037503; Thu, 12 Apr 2007 01:58:58 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C1wwa2037502; Thu, 12 Apr 2007 01:58:58 GMT (envelope-from thompsa) Message-Id: <200704120158.l3C1wwa2037502@repoman.freebsd.org> From: Andrew Thompson Date: Thu, 12 Apr 2007 01:58:58 +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/net if_trunk.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, 12 Apr 2007 01:58:58 -0000 thompsa 2007-04-12 01:58:57 UTC FreeBSD src repository Modified files: sys/net if_trunk.c Log: Fix a case where the multicast addresses were not removed from some ports. The first port to be removed from the trunk would free the multicast list so subsequent removed ports didnt have their multicast addresses removed. Revision Changes Path 1.3 +49 -32 src/sys/net/if_trunk.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 02:04:00 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 85CB916A400 for ; Thu, 12 Apr 2007 02:04:00 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id A4A3813C480 for ; Thu, 12 Apr 2007 02:03:59 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by py-out-1112.google.com with SMTP id f31so321800pyh for ; Wed, 11 Apr 2007 19:03:58 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=sUIS89t8712AxUxxIPme1fqJVr3UasGXWSZDARD52WBd5CwHynAu5UjoPWgz0lBtP7Xggw6MOR96ZfMmRtkpSWgrSktzuyWr0qU9K5TM3cl5quvKaLUdHYfT1trBgqudWkMn6Dzrayf4OrmTAWT5Ot4viSptAezHAHVCQtussvo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=k1q91O/qk4mPigPTxK2jntyYRWNP2saQG/T8jWoriDfnT7Wmxv0/nKTemooUs1MnnRTsgWf6VAs1bqPp2ySRXZH8tUkCHnb6jL0wELU3W1JZSR6XejyTIxKVhjitnlnl8cGSEktqyrOmOlGPQ8wWvp+j3jtwfBqKVQN6dubKKxY= Received: by 10.65.224.11 with SMTP id b11mr2743432qbr.1176343438700; Wed, 11 Apr 2007 19:03:58 -0700 (PDT) Received: by 10.65.244.16 with HTTP; Wed, 11 Apr 2007 19:03:58 -0700 (PDT) Message-ID: Date: Wed, 11 Apr 2007 19:03:58 -0700 From: "Kip Macy" To: "Alfred Perlstein" In-Reply-To: <20070412014732.GM2382@elvis.mu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> <20070411195935.GA2382@elvis.mu.org> <88607eb20704111346q5c463b60w2547084231a11227@mail.gmail.com> <20070411220228.GG2382@elvis.mu.org> <86abxemt1a.fsf@dwp.des.no> <20070412014732.GM2382@elvis.mu.org> Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Ed Maste , Xin LI , Dag-Erling Sm?rgrav Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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, 12 Apr 2007 02:04:00 -0000 > > What Ed is trying to tell you is that the result will be a useless > > core file. > > And what I'm trying to say is that he's wrong. > > One can still examine such a corefile to find valuable data. > Have either of you read my response? From owner-cvs-src@FreeBSD.ORG Thu Apr 12 02:07:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9630216A401; Thu, 12 Apr 2007 02:07:13 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7300013C45E; Thu, 12 Apr 2007 02:07:13 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C27Dkt044177; Thu, 12 Apr 2007 02:07:13 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C27DqI044176; Thu, 12 Apr 2007 02:07:13 GMT (envelope-from kuriyama) Message-Id: <200704120207.l3C27DqI044176@repoman.freebsd.org> From: Jun Kuriyama Date: Thu, 12 Apr 2007 02:07:13 +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/usr.sbin/rpc.lockd lockd_lock.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, 12 Apr 2007 02:07:13 -0000 kuriyama 2007-04-12 02:07:12 UTC FreeBSD src repository Modified files: usr.sbin/rpc.lockd lockd_lock.c Log: - Fix compilaton with DUMP_FILELOCK_VERBOSE. - Use consistent "get_lock_matching_unlock" function name in debuglog(). Revision Changes Path 1.22 +8 -8 src/usr.sbin/rpc.lockd/lockd_lock.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 02:19:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64C1416A401; Thu, 12 Apr 2007 02:19:17 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 418FC13C45E; Thu, 12 Apr 2007 02:19:17 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C2JH4b049697; Thu, 12 Apr 2007 02:19:17 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C2JHlE049696; Thu, 12 Apr 2007 02:19:17 GMT (envelope-from delphij) Message-Id: <200704120219.l3C2JHlE049696@repoman.freebsd.org> From: Xin LI Date: Thu, 12 Apr 2007 02:19:17 +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/lib/libc/uuid uuid_compare.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, 12 Apr 2007 02:19:17 -0000 delphij 2007-04-12 02:19:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/uuid uuid_compare.c Log: MFC 1.5-1.6: Correctly compare between two UUIDs according to specification found DCE 1.1. PR: 83107 Revision Changes Path 1.4.2.1 +15 -17 src/lib/libc/uuid/uuid_compare.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 02:20:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8535316A401; Thu, 12 Apr 2007 02:20:15 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6240A13C448; Thu, 12 Apr 2007 02:20:15 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C2KFOk049846; Thu, 12 Apr 2007 02:20:15 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C2KF6e049845; Thu, 12 Apr 2007 02:20:15 GMT (envelope-from delphij) Message-Id: <200704120220.l3C2KF6e049845@repoman.freebsd.org> From: Xin LI Date: Thu, 12 Apr 2007 02:20:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/lib/libc/uuid uuid_compare.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, 12 Apr 2007 02:20:15 -0000 delphij 2007-04-12 02:20:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libc/uuid uuid_compare.c Log: MFC 1.5-1.6: Correctly compare between two UUIDs according to specification found DCE 1.1. PR: 83107 Revision Changes Path 1.3.4.1 +15 -17 src/lib/libc/uuid/uuid_compare.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 03:07:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E653E16A402; Thu, 12 Apr 2007 03:07:24 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C347E13C48A; Thu, 12 Apr 2007 03:07:24 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C37O7r058507; Thu, 12 Apr 2007 03:07:24 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C37OUp058506; Thu, 12 Apr 2007 03:07:24 GMT (envelope-from kmacy) Message-Id: <200704120307.l3C37OUp058506@repoman.freebsd.org> From: Kip Macy Date: Thu, 12 Apr 2007 03:07:24 +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/dev/cxgb cxgb_main.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, 12 Apr 2007 03:07:25 -0000 kmacy 2007-04-12 03:07:24 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_main.c Log: Add ETHER_HDR_LEN to hardware accepted mtu MFC after: 3 days Revision Changes Path 1.12 +3 -3 src/sys/dev/cxgb/cxgb_main.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 03:11:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 00B4716A405; Thu, 12 Apr 2007 03:11:45 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E585013C4AE; Thu, 12 Apr 2007 03:11:44 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C3BiVb060163; Thu, 12 Apr 2007 03:11:44 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C3BiI3060162; Thu, 12 Apr 2007 03:11:44 GMT (envelope-from gshapiro) Message-Id: <200704120311.l3C3BiI3060162@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Thu, 12 Apr 2007 03:11:44 +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/contrib/sendmail FREEBSD-upgrade KNOWNBUGS PGPKEYS RELEASE_NOTES src/contrib/sendmail/cf README src/contrib/sendmail/cf/cf knecht.mc submit.cf src/contrib/sendmail/cf/feature access_db.m4 badmx.m4 ... 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, 12 Apr 2007 03:11:45 -0000 gshapiro 2007-04-12 03:11:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/sendmail FREEBSD-upgrade KNOWNBUGS PGPKEYS RELEASE_NOTES contrib/sendmail/cf README contrib/sendmail/cf/cf knecht.mc submit.cf contrib/sendmail/cf/feature access_db.m4 dnsbl.m4 enhdnsbl.m4 contrib/sendmail/cf/m4 proto.m4 version.m4 contrib/sendmail/cf/mailer smtp.m4 contrib/sendmail/contrib cidrexpand qtool.pl contrib/sendmail/doc/op op.me contrib/sendmail/editmap Makefile.m4 contrib/sendmail/include/libmilter mfapi.h mfdef.h milter.h contrib/sendmail/include/sm conf.h errstring.h heap.h ldap.h contrib/sendmail/libmilter Makefile Makefile.m4 README comm.c engine.c handler.c libmilter.h listener.c main.c smfi.c contrib/sendmail/libmilter/docs api.html design.html index.html installation.html other.html overview.html sample.html smfi_addheader.html smfi_addrcpt.html smfi_chgheader.html smfi_delrcpt.html smfi_getpriv.html smfi_getsymval.html smfi_insheader.html smfi_main.html smfi_opensocket.html smfi_progress.html smfi_quarantine.html smfi_register.html smfi_replacebody.html smfi_setbacklog.html smfi_setconn.html smfi_setdbg.html smfi_setmlreply.html smfi_setpriv.html smfi_setreply.html smfi_settimeout.html smfi_stop.html xxfi_abort.html xxfi_body.html xxfi_close.html xxfi_connect.html xxfi_envfrom.html xxfi_envrcpt.html xxfi_eoh.html xxfi_eom.html xxfi_header.html xxfi_helo.html contrib/sendmail/libsm Makefile Makefile.m4 config.c exc.c exc.html findfp.c flags.c ldap.c local.h memstat.c snprintf.c t-memstat.c t-sem.c vfscanf.c contrib/sendmail/libsmdb Makefile.m4 contrib/sendmail/libsmutil Makefile.m4 contrib/sendmail/mail.local Makefile.m4 mail.local.c contrib/sendmail/mailstats Makefile.m4 contrib/sendmail/makemap Makefile.m4 contrib/sendmail/praliases Makefile.m4 contrib/sendmail/rmail Makefile.m4 contrib/sendmail/smrsh Makefile.m4 contrib/sendmail/src Makefile Makefile.m4 README TRACEFLAGS TUNING alias.c arpadate.c collect.c conf.c conf.h control.c daemon.c deliver.c domain.c envelope.c err.c headers.c helpfile macro.c mailq.1 main.c map.c mci.c milter.c mime.c parseaddr.c queue.c ratectrl.c readcf.c recipient.c sasl.c savemail.c sendmail.h sm_resolve.c srvrsmtp.c stab.c stats.c timers.c tls.c udb.c usersmtp.c util.c version.c contrib/sendmail/test Makefile contrib/sendmail/vacation Makefile.m4 vacation.c lib/libmilter Makefile lib/libsm Makefile release/doc/en_US.ISO8859-1/relnotes/common new.sgml usr.sbin/sendmail Makefile Added files: (Branch: RELENG_6) contrib/sendmail/cf/feature badmx.m4 block_bad_helo.m4 require_rdns.m4 contrib/sendmail/include/sm misc.h sendmail.h tailq.h contrib/sendmail/include/sm/os sm_os_qnx.h contrib/sendmail/libmilter example.c monitor.c worker.c contrib/sendmail/libmilter/docs smfi_addrcpt_par.html smfi_chgfrom.html smfi_setsymlist.html smfi_version.html xxfi_data.html xxfi_negotiate.html xxfi_unknown.html contrib/sendmail/libsm t-qic.c util.c contrib/sendmail/src daemon.h map.h Log: MFC: sendmail 8.14.1 Revision Changes Path 1.28.2.3 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.13.2.1 +8 -8 src/contrib/sendmail/KNOWNBUGS 1.1.1.10.2.3 +77 -1 src/contrib/sendmail/PGPKEYS 1.1.1.24.2.3 +270 -2 src/contrib/sendmail/RELEASE_NOTES 1.1.1.23.2.3 +134 -23 src/contrib/sendmail/cf/README 1.1.1.9.8.2 +10 -2 src/contrib/sendmail/cf/cf/knecht.mc 1.1.1.14.2.3 +21 -8 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.8.8.1 +7 -2 src/contrib/sendmail/cf/feature/access_db.m4 1.1.1.1.2.1 +22 -0 src/contrib/sendmail/cf/feature/badmx.m4 (new) 1.1.1.1.2.1 +18 -0 src/contrib/sendmail/cf/feature/block_bad_helo.m4 (new) 1.1.1.6.8.3 +7 -3 src/contrib/sendmail/cf/feature/dnsbl.m4 1.1.1.3.14.3 +16 -9 src/contrib/sendmail/cf/feature/enhdnsbl.m4 1.1.1.1.2.1 +16 -0 src/contrib/sendmail/cf/feature/require_rdns.m4 (new) 1.1.1.22.2.3 +77 -9 src/contrib/sendmail/cf/m4/proto.m4 1.1.1.24.2.3 +3 -3 src/contrib/sendmail/cf/m4/version.m4 1.1.1.7.14.1 +9 -7 src/contrib/sendmail/cf/mailer/smtp.m4 1.1.1.3.8.2 +55 -18 src/contrib/sendmail/contrib/cidrexpand 1.1.1.8.8.1 +45 -2 src/contrib/sendmail/contrib/qtool.pl 1.1.1.23.2.2 +121 -36 src/contrib/sendmail/doc/op/op.me 1.1.1.3.8.1 +2 -1 src/contrib/sendmail/editmap/Makefile.m4 1.1.1.11.2.2 +113 -11 src/contrib/sendmail/include/libmilter/mfapi.h 1.1.1.5.8.2 +78 -67 src/contrib/sendmail/include/libmilter/mfdef.h 1.1.1.11.8.1 +2 -29 src/contrib/sendmail/include/libmilter/milter.h 1.1.1.13.2.2 +61 -28 src/contrib/sendmail/include/sm/conf.h 1.1.1.5.8.1 +5 -1 src/contrib/sendmail/include/sm/errstring.h 1.1.1.3.14.1 +12 -2 src/contrib/sendmail/include/sm/heap.h 1.1.1.5.8.2 +20 -11 src/contrib/sendmail/include/sm/ldap.h 1.1.1.1.2.1 +19 -0 src/contrib/sendmail/include/sm/misc.h (new) 1.1.1.1.2.1 +20 -0 src/contrib/sendmail/include/sm/os/sm_os_qnx.h (new) 1.1.1.1.2.1 +24 -0 src/contrib/sendmail/include/sm/sendmail.h (new) 1.1.1.1.2.1 +153 -0 src/contrib/sendmail/include/sm/tailq.h (new) 1.1.1.3.14.1 +3 -1 src/contrib/sendmail/libmilter/Makefile 1.1.1.7.8.1 +4 -4 src/contrib/sendmail/libmilter/Makefile.m4 1.1.1.12.8.2 +6 -244 src/contrib/sendmail/libmilter/README 1.1.1.12.2.1 +2 -2 src/contrib/sendmail/libmilter/comm.c 1.1.1.3.8.1 +227 -140 src/contrib/sendmail/libmilter/docs/api.html 1.1.1.3.8.1 +45 -45 src/contrib/sendmail/libmilter/docs/design.html 1.1.1.5.8.1 +56 -56 src/contrib/sendmail/libmilter/docs/index.html 1.1.1.4.8.1 +83 -87 src/contrib/sendmail/libmilter/docs/installation.html 1.1.1.3.8.1 +11 -11 src/contrib/sendmail/libmilter/docs/other.html 1.1.1.5.8.1 +164 -143 src/contrib/sendmail/libmilter/docs/overview.html 1.1.1.5.8.1 +93 -60 src/contrib/sendmail/libmilter/docs/sample.html 1.1.1.4.8.1 +92 -84 src/contrib/sendmail/libmilter/docs/smfi_addheader.html 1.1.1.4.8.1 +55 -55 src/contrib/sendmail/libmilter/docs/smfi_addrcpt.html 1.1.1.1.2.1 +88 -0 src/contrib/sendmail/libmilter/docs/smfi_addrcpt_par.html (new) 1.1.1.1.2.1 +94 -0 src/contrib/sendmail/libmilter/docs/smfi_chgfrom.html (new) 1.1.1.5.8.1 +76 -76 src/contrib/sendmail/libmilter/docs/smfi_chgheader.html 1.1.1.4.8.1 +55 -55 src/contrib/sendmail/libmilter/docs/smfi_delrcpt.html 1.1.1.3.8.1 +40 -40 src/contrib/sendmail/libmilter/docs/smfi_getpriv.html 1.1.1.4.8.1 +78 -72 src/contrib/sendmail/libmilter/docs/smfi_getsymval.html 1.1.1.1.10.1 +110 -88 src/contrib/sendmail/libmilter/docs/smfi_insheader.html 1.1.1.3.8.1 +32 -32 src/contrib/sendmail/libmilter/docs/smfi_main.html 1.1.1.1.10.1 +50 -50 src/contrib/sendmail/libmilter/docs/smfi_opensocket.html 1.1.1.1.10.1 +45 -45 src/contrib/sendmail/libmilter/docs/smfi_progress.html 1.1.1.1.10.1 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_quarantine.html 1.1.1.4.8.1 +140 -79 src/contrib/sendmail/libmilter/docs/smfi_register.html 1.1.1.3.8.1 +64 -64 src/contrib/sendmail/libmilter/docs/smfi_replacebody.html 1.1.1.3.8.1 +43 -42 src/contrib/sendmail/libmilter/docs/smfi_setbacklog.html 1.1.1.4.8.1 +57 -56 src/contrib/sendmail/libmilter/docs/smfi_setconn.html 1.1.1.1.10.1 +42 -42 src/contrib/sendmail/libmilter/docs/smfi_setdbg.html 1.1.1.1.10.1 +87 -89 src/contrib/sendmail/libmilter/docs/smfi_setmlreply.html 1.1.1.3.8.1 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_setpriv.html 1.1.1.7.8.1 +75 -78 src/contrib/sendmail/libmilter/docs/smfi_setreply.html 1.1.1.1.2.1 +107 -0 src/contrib/sendmail/libmilter/docs/smfi_setsymlist.html (new) 1.1.1.4.8.1 +45 -45 src/contrib/sendmail/libmilter/docs/smfi_settimeout.html 1.1.1.1.10.2 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_stop.html 1.1.1.1.2.1 +86 -0 src/contrib/sendmail/libmilter/docs/smfi_version.html (new) 1.1.1.3.8.1 +51 -51 src/contrib/sendmail/libmilter/docs/xxfi_abort.html 1.1.1.3.8.1 +73 -59 src/contrib/sendmail/libmilter/docs/xxfi_body.html 1.1.1.3.8.1 +48 -48 src/contrib/sendmail/libmilter/docs/xxfi_close.html 1.1.1.4.8.1 +96 -88 src/contrib/sendmail/libmilter/docs/xxfi_connect.html 1.1.1.1.2.1 +89 -0 src/contrib/sendmail/libmilter/docs/xxfi_data.html (new) 1.1.1.3.8.1 +77 -75 src/contrib/sendmail/libmilter/docs/xxfi_envfrom.html 1.1.1.4.8.1 +74 -74 src/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html 1.1.1.3.8.1 +38 -38 src/contrib/sendmail/libmilter/docs/xxfi_eoh.html 1.1.1.3.8.1 +43 -42 src/contrib/sendmail/libmilter/docs/xxfi_eom.html 1.1.1.3.8.2 +88 -55 src/contrib/sendmail/libmilter/docs/xxfi_header.html 1.1.1.3.8.2 +41 -41 src/contrib/sendmail/libmilter/docs/xxfi_helo.html 1.1.1.1.2.1 +277 -0 src/contrib/sendmail/libmilter/docs/xxfi_negotiate.html (new) 1.1.1.1.2.1 +84 -0 src/contrib/sendmail/libmilter/docs/xxfi_unknown.html (new) 1.1.1.14.2.2 +640 -122 src/contrib/sendmail/libmilter/engine.c 1.1.1.1.2.1 +298 -0 src/contrib/sendmail/libmilter/example.c (new) 1.1.1.8.8.1 +4 -3 src/contrib/sendmail/libmilter/handler.c 1.1.1.13.8.2 +152 -5 src/contrib/sendmail/libmilter/libmilter.h 1.1.1.16.2.2 +39 -21 src/contrib/sendmail/libmilter/listener.c 1.1.1.12.8.1 +3 -3 src/contrib/sendmail/libmilter/main.c 1.1.1.1.2.1 +225 -0 src/contrib/sendmail/libmilter/monitor.c (new) 1.1.1.7.2.2 +244 -3 src/contrib/sendmail/libmilter/smfi.c 1.1.1.1.2.1 +792 -0 src/contrib/sendmail/libmilter/worker.c (new) 1.1.1.3.14.1 +3 -1 src/contrib/sendmail/libsm/Makefile 1.1.1.5.2.2 +31 -25 src/contrib/sendmail/libsm/Makefile.m4 1.1.1.6.8.1 +11 -2 src/contrib/sendmail/libsm/config.c 1.1.1.5.8.1 +4 -22 src/contrib/sendmail/libsm/exc.c 1.1.1.3.14.1 +2 -2 src/contrib/sendmail/libsm/exc.html 1.1.1.4.14.1 +7 -2 src/contrib/sendmail/libsm/findfp.c 1.1.1.5.8.1 +5 -4 src/contrib/sendmail/libsm/flags.c 1.1.1.10.2.2 +100 -34 src/contrib/sendmail/libsm/ldap.c 1.1.1.7.8.3 +3 -1 src/contrib/sendmail/libsm/local.h 1.1.1.1.2.2 +5 -2 src/contrib/sendmail/libsm/memstat.c 1.1.1.3.14.1 +2 -1 src/contrib/sendmail/libsm/snprintf.c 1.1.1.1.2.3 +18 -3 src/contrib/sendmail/libsm/t-memstat.c 1.1.1.1.2.1 +235 -0 src/contrib/sendmail/libsm/t-qic.c (new) 1.1.1.1.2.2 +6 -4 src/contrib/sendmail/libsm/t-sem.c 1.1.1.1.2.1 +250 -0 src/contrib/sendmail/libsm/util.c (new) 1.1.1.4.2.2 +4 -2 src/contrib/sendmail/libsm/vfscanf.c 1.1.1.4.8.1 +2 -2 src/contrib/sendmail/libsmdb/Makefile.m4 1.1.1.4.8.1 +2 -2 src/contrib/sendmail/libsmutil/Makefile.m4 1.1.1.9.2.1 +2 -1 src/contrib/sendmail/mail.local/Makefile.m4 1.26.2.1 +4 -2 src/contrib/sendmail/mail.local/mail.local.c 1.1.1.6.8.1 +2 -1 src/contrib/sendmail/mailstats/Makefile.m4 1.1.1.6.8.1 +2 -1 src/contrib/sendmail/makemap/Makefile.m4 1.1.1.6.8.1 +2 -1 src/contrib/sendmail/praliases/Makefile.m4 1.1.1.7.8.1 +2 -1 src/contrib/sendmail/rmail/Makefile.m4 1.1.1.7.8.1 +2 -1 src/contrib/sendmail/smrsh/Makefile.m4 1.1.1.3.14.1 +3 -1 src/contrib/sendmail/src/Makefile 1.1.1.11.8.1 +3 -1 src/contrib/sendmail/src/Makefile.m4 1.1.1.23.2.3 +5 -2 src/contrib/sendmail/src/README 1.1.1.12.2.2 +4 -1 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.6.8.1 +11 -11 src/contrib/sendmail/src/TUNING 1.1.1.12.8.1 +15 -14 src/contrib/sendmail/src/alias.c 1.1.1.8.14.1 +2 -2 src/contrib/sendmail/src/arpadate.c 1.1.1.21.2.4 +10 -28 src/contrib/sendmail/src/collect.c 1.28.2.4 +258 -299 src/contrib/sendmail/src/conf.c 1.23.8.2 +8 -7 src/contrib/sendmail/src/conf.h 1.1.1.15.2.1 +9 -15 src/contrib/sendmail/src/control.c 1.1.1.21.2.3 +151 -121 src/contrib/sendmail/src/daemon.c 1.1.1.1.2.1 +62 -0 src/contrib/sendmail/src/daemon.h (new) 1.1.1.23.2.5 +87 -69 src/contrib/sendmail/src/deliver.c 1.1.1.16.2.2 +12 -11 src/contrib/sendmail/src/domain.c 1.1.1.14.2.3 +24 -29 src/contrib/sendmail/src/envelope.c 1.13.8.1 +22 -25 src/contrib/sendmail/src/err.c 1.21.2.4 +211 -79 src/contrib/sendmail/src/headers.c 1.1.1.7.2.3 +3 -2 src/contrib/sendmail/src/helpfile 1.1.1.10.8.1 +115 -43 src/contrib/sendmail/src/macro.c 1.14.8.1 +22 -3 src/contrib/sendmail/src/mailq.1 1.1.1.21.8.3 +164 -54 src/contrib/sendmail/src/main.c 1.1.1.21.2.3 +409 -145 src/contrib/sendmail/src/map.c 1.1.1.1.2.1 +86 -0 src/contrib/sendmail/src/map.h (new) 1.20.2.3 +18 -18 src/contrib/sendmail/src/mci.c 1.1.1.21.2.2 +852 -263 src/contrib/sendmail/src/milter.c 1.1.1.13.2.5 +23 -23 src/contrib/sendmail/src/mime.c 1.1.1.22.2.4 +215 -98 src/contrib/sendmail/src/parseaddr.c 1.1.1.23.2.3 +141 -116 src/contrib/sendmail/src/queue.c 1.1.1.1.10.2 +3 -3 src/contrib/sendmail/src/ratectrl.c 1.1.1.23.2.2 +124 -81 src/contrib/sendmail/src/readcf.c 1.1.1.15.2.1 +50 -26 src/contrib/sendmail/src/recipient.c 1.1.1.9.2.1 +3 -3 src/contrib/sendmail/src/sasl.c 1.17.2.4 +74 -68 src/contrib/sendmail/src/savemail.c 1.1.1.26.2.5 +62 -47 src/contrib/sendmail/src/sendmail.h 1.1.1.7.2.1 +7 -7 src/contrib/sendmail/src/sm_resolve.c 1.1.1.22.2.4 +429 -234 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.10.8.1 +20 -20 src/contrib/sendmail/src/stab.c 1.1.1.10.8.1 +7 -7 src/contrib/sendmail/src/stats.c 1.1.1.5.14.2 +5 -5 src/contrib/sendmail/src/timers.c 1.1.1.11.2.3 +13 -11 src/contrib/sendmail/src/tls.c 1.1.1.12.8.2 +31 -29 src/contrib/sendmail/src/udb.c 1.1.1.21.2.3 +29 -19 src/contrib/sendmail/src/usersmtp.c 1.1.1.18.2.4 +132 -172 src/contrib/sendmail/src/util.c 1.1.1.24.2.3 +3 -3 src/contrib/sendmail/src/version.c 1.1.1.3.14.1 +3 -1 src/contrib/sendmail/test/Makefile 1.1.1.4.8.1 +2 -1 src/contrib/sendmail/vacation/Makefile.m4 1.1.1.13.2.1 +20 -19 src/contrib/sendmail/vacation/vacation.c 1.5.2.1 +2 -2 src/lib/libmilter/Makefile 1.9.2.2 +1 -1 src/lib/libsm/Makefile 1.883.2.64 +3 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml 1.51.2.2 +1 -1 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Thu Apr 12 03:12:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2148E16A403; Thu, 12 Apr 2007 03:12:29 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 11FFE13C458; Thu, 12 Apr 2007 03:12:29 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C3CTMC061099; Thu, 12 Apr 2007 03:12:29 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C3CT8U061098; Thu, 12 Apr 2007 03:12:29 GMT (envelope-from gshapiro) Message-Id: <200704120312.l3C3CT8U061098@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Thu, 12 Apr 2007 03:12:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/contrib/sendmail FREEBSD-upgrade KNOWNBUGS PGPKEYS RELEASE_NOTES src/contrib/sendmail/cf README src/contrib/sendmail/cf/cf knecht.mc submit.cf src/contrib/sendmail/cf/feature access_db.m4 badmx.m4 ... 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, 12 Apr 2007 03:12:29 -0000 gshapiro 2007-04-12 03:12:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) contrib/sendmail FREEBSD-upgrade KNOWNBUGS PGPKEYS RELEASE_NOTES contrib/sendmail/cf README contrib/sendmail/cf/cf knecht.mc submit.cf contrib/sendmail/cf/feature access_db.m4 dnsbl.m4 enhdnsbl.m4 contrib/sendmail/cf/m4 proto.m4 version.m4 contrib/sendmail/cf/mailer smtp.m4 contrib/sendmail/contrib cidrexpand qtool.pl contrib/sendmail/doc/op op.me contrib/sendmail/editmap Makefile.m4 contrib/sendmail/include/libmilter mfapi.h mfdef.h milter.h contrib/sendmail/include/sm conf.h errstring.h heap.h ldap.h contrib/sendmail/libmilter Makefile Makefile.m4 README comm.c engine.c handler.c libmilter.h listener.c main.c smfi.c contrib/sendmail/libmilter/docs api.html design.html index.html installation.html other.html overview.html sample.html smfi_addheader.html smfi_addrcpt.html smfi_chgheader.html smfi_delrcpt.html smfi_getpriv.html smfi_getsymval.html smfi_insheader.html smfi_main.html smfi_opensocket.html smfi_progress.html smfi_quarantine.html smfi_register.html smfi_replacebody.html smfi_setbacklog.html smfi_setconn.html smfi_setdbg.html smfi_setmlreply.html smfi_setpriv.html smfi_setreply.html smfi_settimeout.html smfi_stop.html xxfi_abort.html xxfi_body.html xxfi_close.html xxfi_connect.html xxfi_envfrom.html xxfi_envrcpt.html xxfi_eoh.html xxfi_eom.html xxfi_header.html xxfi_helo.html contrib/sendmail/libsm Makefile Makefile.m4 config.c exc.c exc.html findfp.c flags.c ldap.c local.h memstat.c snprintf.c t-memstat.c t-sem.c vfscanf.c contrib/sendmail/libsmdb Makefile.m4 contrib/sendmail/libsmutil Makefile.m4 contrib/sendmail/mail.local Makefile.m4 mail.local.c contrib/sendmail/mailstats Makefile.m4 contrib/sendmail/makemap Makefile.m4 contrib/sendmail/praliases Makefile.m4 contrib/sendmail/rmail Makefile.m4 contrib/sendmail/smrsh Makefile.m4 contrib/sendmail/src Makefile Makefile.m4 README TRACEFLAGS TUNING alias.c arpadate.c collect.c conf.c conf.h control.c daemon.c deliver.c domain.c envelope.c err.c headers.c helpfile macro.c mailq.1 main.c map.c mci.c milter.c mime.c parseaddr.c queue.c ratectrl.c readcf.c recipient.c sasl.c savemail.c sendmail.h sm_resolve.c srvrsmtp.c stab.c stats.c timers.c tls.c udb.c usersmtp.c util.c version.c contrib/sendmail/test Makefile contrib/sendmail/vacation Makefile.m4 vacation.c lib/libmilter Makefile lib/libsm Makefile release/doc/en_US.ISO8859-1/relnotes/common new.sgml usr.sbin/sendmail Makefile Added files: (Branch: RELENG_5) contrib/sendmail/cf/feature badmx.m4 block_bad_helo.m4 require_rdns.m4 contrib/sendmail/include/sm misc.h sendmail.h tailq.h contrib/sendmail/include/sm/os sm_os_qnx.h contrib/sendmail/libmilter example.c monitor.c worker.c contrib/sendmail/libmilter/docs smfi_addrcpt_par.html smfi_chgfrom.html smfi_setsymlist.html smfi_version.html xxfi_data.html xxfi_negotiate.html xxfi_unknown.html contrib/sendmail/libsm t-qic.c util.c contrib/sendmail/src daemon.h map.h Log: MFC: sendmail 8.14.1 Revision Changes Path 1.26.2.5 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.12.2.2 +8 -8 src/contrib/sendmail/KNOWNBUGS 1.1.1.9.2.4 +77 -1 src/contrib/sendmail/PGPKEYS 1.1.1.22.2.5 +270 -2 src/contrib/sendmail/RELEASE_NOTES 1.1.1.22.2.4 +134 -23 src/contrib/sendmail/cf/README 1.1.1.9.2.2 +10 -2 src/contrib/sendmail/cf/cf/knecht.mc 1.1.1.12.2.5 +21 -8 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.8.2.1 +7 -2 src/contrib/sendmail/cf/feature/access_db.m4 1.1.1.1.4.1 +22 -0 src/contrib/sendmail/cf/feature/badmx.m4 (new) 1.1.1.1.4.1 +18 -0 src/contrib/sendmail/cf/feature/block_bad_helo.m4 (new) 1.1.1.6.2.3 +7 -3 src/contrib/sendmail/cf/feature/dnsbl.m4 1.1.1.3.8.3 +16 -9 src/contrib/sendmail/cf/feature/enhdnsbl.m4 1.1.1.1.4.1 +16 -0 src/contrib/sendmail/cf/feature/require_rdns.m4 (new) 1.1.1.21.2.4 +77 -9 src/contrib/sendmail/cf/m4/proto.m4 1.1.1.22.2.5 +3 -3 src/contrib/sendmail/cf/m4/version.m4 1.1.1.7.8.1 +9 -7 src/contrib/sendmail/cf/mailer/smtp.m4 1.1.1.3.2.2 +55 -18 src/contrib/sendmail/contrib/cidrexpand 1.1.1.8.2.1 +45 -2 src/contrib/sendmail/contrib/qtool.pl 1.1.1.22.2.3 +121 -36 src/contrib/sendmail/doc/op/op.me 1.1.1.3.2.1 +2 -1 src/contrib/sendmail/editmap/Makefile.m4 1.1.1.10.2.3 +113 -11 src/contrib/sendmail/include/libmilter/mfapi.h 1.1.1.5.2.2 +78 -67 src/contrib/sendmail/include/libmilter/mfdef.h 1.1.1.11.2.1 +2 -29 src/contrib/sendmail/include/libmilter/milter.h 1.1.1.11.2.4 +61 -28 src/contrib/sendmail/include/sm/conf.h 1.1.1.5.2.1 +5 -1 src/contrib/sendmail/include/sm/errstring.h 1.1.1.3.8.1 +12 -2 src/contrib/sendmail/include/sm/heap.h 1.1.1.5.2.2 +20 -11 src/contrib/sendmail/include/sm/ldap.h 1.1.1.1.4.1 +19 -0 src/contrib/sendmail/include/sm/misc.h (new) 1.1.1.1.4.1 +20 -0 src/contrib/sendmail/include/sm/os/sm_os_qnx.h (new) 1.1.1.1.4.1 +24 -0 src/contrib/sendmail/include/sm/sendmail.h (new) 1.1.1.1.4.1 +153 -0 src/contrib/sendmail/include/sm/tailq.h (new) 1.1.1.3.8.1 +3 -1 src/contrib/sendmail/libmilter/Makefile 1.1.1.7.2.1 +4 -4 src/contrib/sendmail/libmilter/Makefile.m4 1.1.1.12.2.2 +6 -244 src/contrib/sendmail/libmilter/README 1.1.1.11.2.2 +2 -2 src/contrib/sendmail/libmilter/comm.c 1.1.1.3.2.1 +227 -140 src/contrib/sendmail/libmilter/docs/api.html 1.1.1.3.2.1 +45 -45 src/contrib/sendmail/libmilter/docs/design.html 1.1.1.5.2.1 +56 -56 src/contrib/sendmail/libmilter/docs/index.html 1.1.1.4.2.1 +83 -87 src/contrib/sendmail/libmilter/docs/installation.html 1.1.1.3.2.1 +11 -11 src/contrib/sendmail/libmilter/docs/other.html 1.1.1.5.2.1 +164 -143 src/contrib/sendmail/libmilter/docs/overview.html 1.1.1.5.2.1 +93 -60 src/contrib/sendmail/libmilter/docs/sample.html 1.1.1.4.2.1 +92 -84 src/contrib/sendmail/libmilter/docs/smfi_addheader.html 1.1.1.4.2.1 +55 -55 src/contrib/sendmail/libmilter/docs/smfi_addrcpt.html 1.1.1.1.4.1 +88 -0 src/contrib/sendmail/libmilter/docs/smfi_addrcpt_par.html (new) 1.1.1.1.4.1 +94 -0 src/contrib/sendmail/libmilter/docs/smfi_chgfrom.html (new) 1.1.1.5.2.1 +76 -76 src/contrib/sendmail/libmilter/docs/smfi_chgheader.html 1.1.1.4.2.1 +55 -55 src/contrib/sendmail/libmilter/docs/smfi_delrcpt.html 1.1.1.3.2.1 +40 -40 src/contrib/sendmail/libmilter/docs/smfi_getpriv.html 1.1.1.4.2.1 +78 -72 src/contrib/sendmail/libmilter/docs/smfi_getsymval.html 1.1.1.1.4.1 +110 -88 src/contrib/sendmail/libmilter/docs/smfi_insheader.html 1.1.1.3.2.1 +32 -32 src/contrib/sendmail/libmilter/docs/smfi_main.html 1.1.1.1.4.1 +50 -50 src/contrib/sendmail/libmilter/docs/smfi_opensocket.html 1.1.1.1.4.1 +45 -45 src/contrib/sendmail/libmilter/docs/smfi_progress.html 1.1.1.1.4.1 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_quarantine.html 1.1.1.4.2.1 +140 -79 src/contrib/sendmail/libmilter/docs/smfi_register.html 1.1.1.3.2.1 +64 -64 src/contrib/sendmail/libmilter/docs/smfi_replacebody.html 1.1.1.3.2.1 +43 -42 src/contrib/sendmail/libmilter/docs/smfi_setbacklog.html 1.1.1.4.2.1 +57 -56 src/contrib/sendmail/libmilter/docs/smfi_setconn.html 1.1.1.1.4.1 +42 -42 src/contrib/sendmail/libmilter/docs/smfi_setdbg.html 1.1.1.1.4.1 +87 -89 src/contrib/sendmail/libmilter/docs/smfi_setmlreply.html 1.1.1.3.2.1 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_setpriv.html 1.1.1.7.2.1 +75 -78 src/contrib/sendmail/libmilter/docs/smfi_setreply.html 1.1.1.1.4.1 +107 -0 src/contrib/sendmail/libmilter/docs/smfi_setsymlist.html (new) 1.1.1.4.2.1 +45 -45 src/contrib/sendmail/libmilter/docs/smfi_settimeout.html 1.1.1.1.4.2 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_stop.html 1.1.1.1.4.1 +86 -0 src/contrib/sendmail/libmilter/docs/smfi_version.html (new) 1.1.1.3.2.1 +51 -51 src/contrib/sendmail/libmilter/docs/xxfi_abort.html 1.1.1.3.2.1 +73 -59 src/contrib/sendmail/libmilter/docs/xxfi_body.html 1.1.1.3.2.1 +48 -48 src/contrib/sendmail/libmilter/docs/xxfi_close.html 1.1.1.4.2.1 +96 -88 src/contrib/sendmail/libmilter/docs/xxfi_connect.html 1.1.1.1.4.1 +89 -0 src/contrib/sendmail/libmilter/docs/xxfi_data.html (new) 1.1.1.3.2.1 +77 -75 src/contrib/sendmail/libmilter/docs/xxfi_envfrom.html 1.1.1.4.2.1 +74 -74 src/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html 1.1.1.3.2.1 +38 -38 src/contrib/sendmail/libmilter/docs/xxfi_eoh.html 1.1.1.3.2.1 +43 -42 src/contrib/sendmail/libmilter/docs/xxfi_eom.html 1.1.1.3.2.2 +88 -55 src/contrib/sendmail/libmilter/docs/xxfi_header.html 1.1.1.3.2.2 +41 -41 src/contrib/sendmail/libmilter/docs/xxfi_helo.html 1.1.1.1.4.1 +277 -0 src/contrib/sendmail/libmilter/docs/xxfi_negotiate.html (new) 1.1.1.1.4.1 +84 -0 src/contrib/sendmail/libmilter/docs/xxfi_unknown.html (new) 1.1.1.13.2.3 +640 -122 src/contrib/sendmail/libmilter/engine.c 1.1.1.1.4.1 +298 -0 src/contrib/sendmail/libmilter/example.c (new) 1.1.1.8.2.1 +4 -3 src/contrib/sendmail/libmilter/handler.c 1.1.1.13.2.2 +152 -5 src/contrib/sendmail/libmilter/libmilter.h 1.1.1.15.2.3 +39 -21 src/contrib/sendmail/libmilter/listener.c 1.1.1.12.2.1 +3 -3 src/contrib/sendmail/libmilter/main.c 1.1.1.1.4.1 +225 -0 src/contrib/sendmail/libmilter/monitor.c (new) 1.1.1.6.2.3 +244 -3 src/contrib/sendmail/libmilter/smfi.c 1.1.1.1.4.1 +792 -0 src/contrib/sendmail/libmilter/worker.c (new) 1.1.1.3.8.1 +3 -1 src/contrib/sendmail/libsm/Makefile 1.1.1.3.2.4 +31 -25 src/contrib/sendmail/libsm/Makefile.m4 1.1.1.6.2.1 +11 -2 src/contrib/sendmail/libsm/config.c 1.1.1.5.2.1 +4 -22 src/contrib/sendmail/libsm/exc.c 1.1.1.3.8.1 +2 -2 src/contrib/sendmail/libsm/exc.html 1.1.1.4.8.1 +7 -2 src/contrib/sendmail/libsm/findfp.c 1.1.1.5.2.1 +5 -4 src/contrib/sendmail/libsm/flags.c 1.1.1.8.2.4 +100 -34 src/contrib/sendmail/libsm/ldap.c 1.1.1.7.2.3 +3 -1 src/contrib/sendmail/libsm/local.h 1.1.1.1.4.2 +5 -2 src/contrib/sendmail/libsm/memstat.c 1.1.1.3.8.1 +2 -1 src/contrib/sendmail/libsm/snprintf.c 1.1.1.1.4.3 +18 -3 src/contrib/sendmail/libsm/t-memstat.c 1.1.1.1.4.1 +235 -0 src/contrib/sendmail/libsm/t-qic.c (new) 1.1.1.1.4.3 +6 -4 src/contrib/sendmail/libsm/t-sem.c 1.1.1.1.4.1 +250 -0 src/contrib/sendmail/libsm/util.c (new) 1.1.1.3.8.3 +4 -2 src/contrib/sendmail/libsm/vfscanf.c 1.1.1.4.2.1 +2 -2 src/contrib/sendmail/libsmdb/Makefile.m4 1.1.1.4.2.1 +2 -2 src/contrib/sendmail/libsmutil/Makefile.m4 1.1.1.8.2.2 +2 -1 src/contrib/sendmail/mail.local/Makefile.m4 1.25.2.2 +4 -2 src/contrib/sendmail/mail.local/mail.local.c 1.1.1.6.2.1 +2 -1 src/contrib/sendmail/mailstats/Makefile.m4 1.1.1.6.2.1 +2 -1 src/contrib/sendmail/makemap/Makefile.m4 1.1.1.6.2.1 +2 -1 src/contrib/sendmail/praliases/Makefile.m4 1.1.1.7.2.1 +2 -1 src/contrib/sendmail/rmail/Makefile.m4 1.1.1.7.2.1 +2 -1 src/contrib/sendmail/smrsh/Makefile.m4 1.1.1.3.8.1 +3 -1 src/contrib/sendmail/src/Makefile 1.1.1.11.2.1 +3 -1 src/contrib/sendmail/src/Makefile.m4 1.1.1.21.2.5 +5 -2 src/contrib/sendmail/src/README 1.1.1.11.2.3 +4 -1 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.6.2.1 +11 -11 src/contrib/sendmail/src/TUNING 1.1.1.12.2.1 +15 -14 src/contrib/sendmail/src/alias.c 1.1.1.8.8.1 +2 -2 src/contrib/sendmail/src/arpadate.c 1.1.1.19.2.6 +10 -28 src/contrib/sendmail/src/collect.c 1.26.2.6 +258 -299 src/contrib/sendmail/src/conf.c 1.23.2.2 +8 -7 src/contrib/sendmail/src/conf.h 1.1.1.14.2.2 +9 -15 src/contrib/sendmail/src/control.c 1.1.1.19.2.5 +151 -121 src/contrib/sendmail/src/daemon.c 1.1.1.1.4.1 +62 -0 src/contrib/sendmail/src/daemon.h (new) 1.1.1.21.2.7 +87 -69 src/contrib/sendmail/src/deliver.c 1.1.1.14.2.4 +12 -11 src/contrib/sendmail/src/domain.c 1.1.1.13.2.4 +24 -29 src/contrib/sendmail/src/envelope.c 1.13.2.1 +22 -25 src/contrib/sendmail/src/err.c 1.20.2.5 +211 -79 src/contrib/sendmail/src/headers.c 1.1.1.6.8.4 +3 -2 src/contrib/sendmail/src/helpfile 1.1.1.10.2.1 +115 -43 src/contrib/sendmail/src/macro.c 1.14.2.1 +22 -3 src/contrib/sendmail/src/mailq.1 1.1.1.21.2.3 +164 -54 src/contrib/sendmail/src/main.c 1.1.1.19.2.5 +409 -145 src/contrib/sendmail/src/map.c 1.1.1.1.4.1 +86 -0 src/contrib/sendmail/src/map.h (new) 1.17.2.5 +18 -18 src/contrib/sendmail/src/mci.c 1.1.1.19.2.4 +852 -263 src/contrib/sendmail/src/milter.c 1.1.1.12.2.6 +23 -23 src/contrib/sendmail/src/mime.c 1.1.1.20.2.6 +215 -98 src/contrib/sendmail/src/parseaddr.c 1.1.1.21.2.5 +141 -116 src/contrib/sendmail/src/queue.c 1.1.1.1.4.2 +3 -3 src/contrib/sendmail/src/ratectrl.c 1.1.1.22.2.3 +124 -81 src/contrib/sendmail/src/readcf.c 1.1.1.14.2.2 +50 -26 src/contrib/sendmail/src/recipient.c 1.1.1.8.2.2 +3 -3 src/contrib/sendmail/src/sasl.c 1.16.2.5 +74 -68 src/contrib/sendmail/src/savemail.c 1.1.1.23.2.7 +62 -47 src/contrib/sendmail/src/sendmail.h 1.1.1.6.2.2 +7 -7 src/contrib/sendmail/src/sm_resolve.c 1.1.1.20.2.6 +429 -234 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.10.2.1 +20 -20 src/contrib/sendmail/src/stab.c 1.1.1.10.2.1 +7 -7 src/contrib/sendmail/src/stats.c 1.1.1.5.8.2 +5 -5 src/contrib/sendmail/src/timers.c 1.1.1.9.2.5 +13 -11 src/contrib/sendmail/src/tls.c 1.1.1.12.2.2 +31 -29 src/contrib/sendmail/src/udb.c 1.1.1.18.2.5 +29 -19 src/contrib/sendmail/src/usersmtp.c 1.1.1.17.2.5 +132 -172 src/contrib/sendmail/src/util.c 1.1.1.22.2.5 +3 -3 src/contrib/sendmail/src/version.c 1.1.1.3.8.1 +3 -1 src/contrib/sendmail/test/Makefile 1.1.1.4.2.1 +2 -1 src/contrib/sendmail/vacation/Makefile.m4 1.1.1.12.2.2 +20 -19 src/contrib/sendmail/vacation/vacation.c 1.4.2.1 +2 -2 src/lib/libmilter/Makefile 1.5.2.5 +1 -1 src/lib/libsm/Makefile 1.761.2.76 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml 1.46.2.4 +1 -1 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Thu Apr 12 03:13:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 143DB16A400; Thu, 12 Apr 2007 03:13:05 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 04D1F13C448; Thu, 12 Apr 2007 03:13:05 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C3D4PK062074; Thu, 12 Apr 2007 03:13:04 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C3D43g062073; Thu, 12 Apr 2007 03:13:04 GMT (envelope-from gshapiro) Message-Id: <200704120313.l3C3D43g062073@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Thu, 12 Apr 2007 03:13:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/contrib/sendmail FREEBSD-upgrade KNOWNBUGS PGPKEYS RELEASE_NOTES src/contrib/sendmail/cf README src/contrib/sendmail/cf/cf knecht.mc submit.cf src/contrib/sendmail/cf/feature access_db.m4 badmx.m4 ... 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, 12 Apr 2007 03:13:05 -0000 gshapiro 2007-04-12 03:13:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/sendmail FREEBSD-upgrade KNOWNBUGS PGPKEYS RELEASE_NOTES contrib/sendmail/cf README contrib/sendmail/cf/cf knecht.mc submit.cf contrib/sendmail/cf/feature access_db.m4 dnsbl.m4 enhdnsbl.m4 contrib/sendmail/cf/m4 proto.m4 version.m4 contrib/sendmail/cf/mailer smtp.m4 contrib/sendmail/contrib cidrexpand qtool.pl contrib/sendmail/doc/op op.me contrib/sendmail/editmap Makefile.m4 contrib/sendmail/include/libmilter mfapi.h mfdef.h milter.h contrib/sendmail/include/sm conf.h errstring.h heap.h ldap.h contrib/sendmail/libmilter Makefile Makefile.m4 README comm.c engine.c handler.c libmilter.h listener.c main.c smfi.c contrib/sendmail/libmilter/docs api.html design.html index.html installation.html other.html overview.html sample.html smfi_addheader.html smfi_addrcpt.html smfi_chgheader.html smfi_delrcpt.html smfi_getpriv.html smfi_getsymval.html smfi_insheader.html smfi_main.html smfi_opensocket.html smfi_progress.html smfi_quarantine.html smfi_register.html smfi_replacebody.html smfi_setbacklog.html smfi_setconn.html smfi_setdbg.html smfi_setmlreply.html smfi_setpriv.html smfi_setreply.html smfi_settimeout.html smfi_stop.html xxfi_abort.html xxfi_body.html xxfi_close.html xxfi_connect.html xxfi_envfrom.html xxfi_envrcpt.html xxfi_eoh.html xxfi_eom.html xxfi_header.html xxfi_helo.html contrib/sendmail/libsm Makefile Makefile.m4 config.c exc.c exc.html findfp.c flags.c ldap.c local.h memstat.c snprintf.c t-memstat.c t-sem.c vfscanf.c contrib/sendmail/libsmdb Makefile.m4 contrib/sendmail/libsmutil Makefile.m4 contrib/sendmail/mail.local Makefile.m4 mail.local.c contrib/sendmail/mailstats Makefile.m4 contrib/sendmail/makemap Makefile.m4 contrib/sendmail/praliases Makefile.m4 contrib/sendmail/rmail Makefile.m4 contrib/sendmail/smrsh Makefile.m4 contrib/sendmail/src Makefile Makefile.m4 README TRACEFLAGS TUNING alias.c arpadate.c collect.c conf.c conf.h control.c daemon.c deliver.c domain.c envelope.c err.c headers.c helpfile macro.c mailq.1 main.c map.c mci.c milter.c mime.c parseaddr.c queue.c ratectrl.c readcf.c recipient.c sasl.c savemail.c sendmail.h sm_resolve.c srvrsmtp.c stab.c stats.c timers.c tls.c udb.c usersmtp.c util.c version.c contrib/sendmail/test Makefile contrib/sendmail/vacation Makefile.m4 vacation.c lib/libmilter Makefile lib/libsm Makefile release/doc/en_US.ISO8859-1/relnotes/common new.sgml usr.sbin/sendmail Makefile Added files: (Branch: RELENG_4) contrib/sendmail/cf/feature badmx.m4 block_bad_helo.m4 require_rdns.m4 contrib/sendmail/include/sm misc.h sendmail.h tailq.h contrib/sendmail/include/sm/os sm_os_qnx.h contrib/sendmail/libmilter example.c monitor.c worker.c contrib/sendmail/libmilter/docs smfi_addrcpt_par.html smfi_chgfrom.html smfi_setsymlist.html smfi_version.html xxfi_data.html xxfi_negotiate.html xxfi_unknown.html contrib/sendmail/libsm t-qic.c util.c contrib/sendmail/src daemon.h map.h Log: MFC: sendmail 8.14.1 Revision Changes Path 1.1.2.27 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.3.2.9 +8 -8 src/contrib/sendmail/KNOWNBUGS 1.1.1.1.2.11 +77 -1 src/contrib/sendmail/PGPKEYS 1.1.1.3.2.23 +270 -2 src/contrib/sendmail/RELEASE_NOTES 1.1.1.3.2.22 +134 -23 src/contrib/sendmail/cf/README 1.1.1.3.2.6 +10 -2 src/contrib/sendmail/cf/cf/knecht.mc 1.1.1.1.2.16 +21 -8 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.2.6.5 +7 -2 src/contrib/sendmail/cf/feature/access_db.m4 1.1.1.1.6.1 +22 -0 src/contrib/sendmail/cf/feature/badmx.m4 (new) 1.1.1.1.6.1 +18 -0 src/contrib/sendmail/cf/feature/block_bad_helo.m4 (new) 1.1.1.1.2.8 +7 -3 src/contrib/sendmail/cf/feature/dnsbl.m4 1.1.1.1.2.5 +16 -9 src/contrib/sendmail/cf/feature/enhdnsbl.m4 1.1.1.1.6.1 +16 -0 src/contrib/sendmail/cf/feature/require_rdns.m4 (new) 1.1.1.4.2.20 +77 -9 src/contrib/sendmail/cf/m4/proto.m4 1.1.1.3.2.23 +3 -3 src/contrib/sendmail/cf/m4/version.m4 1.1.1.2.6.4 +9 -7 src/contrib/sendmail/cf/mailer/smtp.m4 1.1.1.1.2.5 +55 -18 src/contrib/sendmail/contrib/cidrexpand 1.1.1.1.2.7 +45 -2 src/contrib/sendmail/contrib/qtool.pl 1.1.1.3.2.21 +121 -36 src/contrib/sendmail/doc/op/op.me 1.1.1.1.2.4 +2 -1 src/contrib/sendmail/editmap/Makefile.m4 1.1.1.1.2.12 +113 -11 src/contrib/sendmail/include/libmilter/mfapi.h 1.1.1.1.2.5 +78 -67 src/contrib/sendmail/include/libmilter/mfdef.h 1.1.1.1.2.10 +2 -29 src/contrib/sendmail/include/libmilter/milter.h 1.1.1.1.2.14 +61 -28 src/contrib/sendmail/include/sm/conf.h 1.1.1.1.2.4 +5 -1 src/contrib/sendmail/include/sm/errstring.h 1.1.1.1.2.2 +12 -2 src/contrib/sendmail/include/sm/heap.h 1.1.1.1.2.5 +20 -11 src/contrib/sendmail/include/sm/ldap.h 1.1.1.1.6.1 +19 -0 src/contrib/sendmail/include/sm/misc.h (new) 1.1.1.1.6.1 +20 -0 src/contrib/sendmail/include/sm/os/sm_os_qnx.h (new) 1.1.1.1.6.1 +24 -0 src/contrib/sendmail/include/sm/sendmail.h (new) 1.1.1.1.6.1 +153 -0 src/contrib/sendmail/include/sm/tailq.h (new) 1.1.1.1.2.2 +3 -1 src/contrib/sendmail/libmilter/Makefile 1.1.1.1.2.8 +4 -4 src/contrib/sendmail/libmilter/Makefile.m4 1.1.1.1.2.12 +6 -244 src/contrib/sendmail/libmilter/README 1.1.1.1.2.11 +2 -2 src/contrib/sendmail/libmilter/comm.c 1.1.1.1.2.4 +227 -140 src/contrib/sendmail/libmilter/docs/api.html 1.1.1.1.2.4 +45 -45 src/contrib/sendmail/libmilter/docs/design.html 1.1.1.1.2.4 +56 -56 src/contrib/sendmail/libmilter/docs/index.html 1.1.1.1.2.5 +83 -87 src/contrib/sendmail/libmilter/docs/installation.html 1.1.1.1.2.4 +11 -11 src/contrib/sendmail/libmilter/docs/other.html 1.1.1.1.2.4 +164 -143 src/contrib/sendmail/libmilter/docs/overview.html 1.1.1.1.2.6 +93 -60 src/contrib/sendmail/libmilter/docs/sample.html 1.1.1.1.2.5 +92 -84 src/contrib/sendmail/libmilter/docs/smfi_addheader.html 1.1.1.1.2.5 +55 -55 src/contrib/sendmail/libmilter/docs/smfi_addrcpt.html 1.1.1.1.6.1 +88 -0 src/contrib/sendmail/libmilter/docs/smfi_addrcpt_par.html (new) 1.1.1.1.6.1 +94 -0 src/contrib/sendmail/libmilter/docs/smfi_chgfrom.html (new) 1.1.1.1.2.6 +76 -76 src/contrib/sendmail/libmilter/docs/smfi_chgheader.html 1.1.1.1.2.5 +55 -55 src/contrib/sendmail/libmilter/docs/smfi_delrcpt.html 1.1.1.1.2.4 +40 -40 src/contrib/sendmail/libmilter/docs/smfi_getpriv.html 1.1.1.1.2.5 +78 -72 src/contrib/sendmail/libmilter/docs/smfi_getsymval.html 1.1.1.1.2.2 +110 -88 src/contrib/sendmail/libmilter/docs/smfi_insheader.html 1.1.1.1.2.4 +32 -32 src/contrib/sendmail/libmilter/docs/smfi_main.html 1.1.1.1.2.2 +50 -50 src/contrib/sendmail/libmilter/docs/smfi_opensocket.html 1.1.1.1.2.2 +45 -45 src/contrib/sendmail/libmilter/docs/smfi_progress.html 1.1.1.1.2.2 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_quarantine.html 1.1.1.1.2.5 +140 -79 src/contrib/sendmail/libmilter/docs/smfi_register.html 1.1.1.1.2.4 +64 -64 src/contrib/sendmail/libmilter/docs/smfi_replacebody.html 1.1.1.1.2.4 +43 -42 src/contrib/sendmail/libmilter/docs/smfi_setbacklog.html 1.1.1.1.2.5 +57 -56 src/contrib/sendmail/libmilter/docs/smfi_setconn.html 1.1.1.1.2.2 +42 -42 src/contrib/sendmail/libmilter/docs/smfi_setdbg.html 1.1.1.1.2.2 +87 -89 src/contrib/sendmail/libmilter/docs/smfi_setmlreply.html 1.1.1.1.2.4 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_setpriv.html 1.1.1.1.2.8 +75 -78 src/contrib/sendmail/libmilter/docs/smfi_setreply.html 1.1.1.1.6.1 +107 -0 src/contrib/sendmail/libmilter/docs/smfi_setsymlist.html (new) 1.1.1.1.2.5 +45 -45 src/contrib/sendmail/libmilter/docs/smfi_settimeout.html 1.1.1.1.2.3 +49 -49 src/contrib/sendmail/libmilter/docs/smfi_stop.html 1.1.1.1.6.1 +86 -0 src/contrib/sendmail/libmilter/docs/smfi_version.html (new) 1.1.1.1.2.4 +51 -51 src/contrib/sendmail/libmilter/docs/xxfi_abort.html 1.1.1.1.2.4 +73 -59 src/contrib/sendmail/libmilter/docs/xxfi_body.html 1.1.1.1.2.4 +48 -48 src/contrib/sendmail/libmilter/docs/xxfi_close.html 1.1.1.1.2.5 +96 -88 src/contrib/sendmail/libmilter/docs/xxfi_connect.html 1.1.1.1.6.1 +89 -0 src/contrib/sendmail/libmilter/docs/xxfi_data.html (new) 1.1.1.1.2.4 +77 -75 src/contrib/sendmail/libmilter/docs/xxfi_envfrom.html 1.1.1.1.2.5 +74 -74 src/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html 1.1.1.1.2.4 +38 -38 src/contrib/sendmail/libmilter/docs/xxfi_eoh.html 1.1.1.1.2.4 +43 -42 src/contrib/sendmail/libmilter/docs/xxfi_eom.html 1.1.1.1.2.5 +88 -55 src/contrib/sendmail/libmilter/docs/xxfi_header.html 1.1.1.1.2.5 +41 -41 src/contrib/sendmail/libmilter/docs/xxfi_helo.html 1.1.1.1.6.1 +277 -0 src/contrib/sendmail/libmilter/docs/xxfi_negotiate.html (new) 1.1.1.1.6.1 +84 -0 src/contrib/sendmail/libmilter/docs/xxfi_unknown.html (new) 1.1.1.1.2.14 +640 -122 src/contrib/sendmail/libmilter/engine.c 1.1.1.1.6.1 +298 -0 src/contrib/sendmail/libmilter/example.c (new) 1.1.1.1.2.8 +4 -3 src/contrib/sendmail/libmilter/handler.c 1.1.1.1.2.14 +152 -5 src/contrib/sendmail/libmilter/libmilter.h 1.1.1.1.2.17 +39 -21 src/contrib/sendmail/libmilter/listener.c 1.1.1.1.2.12 +3 -3 src/contrib/sendmail/libmilter/main.c 1.1.1.1.6.1 +225 -0 src/contrib/sendmail/libmilter/monitor.c (new) 1.1.1.1.2.8 +244 -3 src/contrib/sendmail/libmilter/smfi.c 1.1.1.1.6.1 +792 -0 src/contrib/sendmail/libmilter/worker.c (new) 1.1.1.1.2.2 +3 -1 src/contrib/sendmail/libsm/Makefile 1.1.1.1.2.7 +31 -25 src/contrib/sendmail/libsm/Makefile.m4 1.1.1.1.2.5 +11 -2 src/contrib/sendmail/libsm/config.c 1.1.1.1.2.4 +4 -22 src/contrib/sendmail/libsm/exc.c 1.1.1.1.2.2 +2 -2 src/contrib/sendmail/libsm/exc.html 1.1.1.1.2.3 +7 -2 src/contrib/sendmail/libsm/findfp.c 1.1.1.1.2.4 +5 -4 src/contrib/sendmail/libsm/flags.c 1.1.1.1.2.10 +100 -34 src/contrib/sendmail/libsm/ldap.c 1.1.1.1.2.8 +3 -1 src/contrib/sendmail/libsm/local.h 1.1.1.1.6.2 +5 -2 src/contrib/sendmail/libsm/memstat.c 1.1.1.1.2.2 +2 -1 src/contrib/sendmail/libsm/snprintf.c 1.1.1.1.6.3 +18 -3 src/contrib/sendmail/libsm/t-memstat.c 1.1.1.1.6.1 +235 -0 src/contrib/sendmail/libsm/t-qic.c (new) 1.1.1.1.6.3 +6 -4 src/contrib/sendmail/libsm/t-sem.c 1.1.1.1.6.1 +250 -0 src/contrib/sendmail/libsm/util.c (new) 1.1.1.1.2.4 +4 -2 src/contrib/sendmail/libsm/vfscanf.c 1.1.1.1.2.5 +2 -2 src/contrib/sendmail/libsmdb/Makefile.m4 1.1.1.1.2.5 +2 -2 src/contrib/sendmail/libsmutil/Makefile.m4 1.1.1.2.6.8 +2 -1 src/contrib/sendmail/mail.local/Makefile.m4 1.6.6.18 +4 -2 src/contrib/sendmail/mail.local/mail.local.c 1.1.1.2.6.5 +2 -1 src/contrib/sendmail/mailstats/Makefile.m4 1.1.1.2.6.5 +2 -1 src/contrib/sendmail/makemap/Makefile.m4 1.1.1.2.6.5 +2 -1 src/contrib/sendmail/praliases/Makefile.m4 1.1.1.2.6.6 +2 -1 src/contrib/sendmail/rmail/Makefile.m4 1.1.1.2.6.6 +2 -1 src/contrib/sendmail/smrsh/Makefile.m4 1.1.1.1.2.2 +3 -1 src/contrib/sendmail/src/Makefile 1.1.1.3.2.9 +3 -1 src/contrib/sendmail/src/Makefile.m4 1.1.1.3.2.22 +5 -2 src/contrib/sendmail/src/README 1.1.1.2.6.11 +4 -1 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.1.2.5 +11 -11 src/contrib/sendmail/src/TUNING 1.1.1.2.6.10 +15 -14 src/contrib/sendmail/src/alias.c 1.1.1.3.2.4 +2 -2 src/contrib/sendmail/src/arpadate.c 1.1.1.4.2.20 +10 -28 src/contrib/sendmail/src/collect.c 1.5.2.23 +258 -299 src/contrib/sendmail/src/conf.c 1.6.2.16 +8 -7 src/contrib/sendmail/src/conf.h 1.1.1.2.2.12 +9 -15 src/contrib/sendmail/src/control.c 1.1.1.3.2.20 +151 -121 src/contrib/sendmail/src/daemon.c 1.1.1.1.6.1 +62 -0 src/contrib/sendmail/src/daemon.h (new) 1.1.1.3.2.24 +87 -69 src/contrib/sendmail/src/deliver.c 1.1.1.3.2.14 +12 -11 src/contrib/sendmail/src/domain.c 1.1.1.3.2.13 +24 -29 src/contrib/sendmail/src/envelope.c 1.3.6.9 +22 -25 src/contrib/sendmail/src/err.c 1.4.2.19 +211 -79 src/contrib/sendmail/src/headers.c 1.1.1.1.2.8 +3 -2 src/contrib/sendmail/src/helpfile 1.1.1.2.6.7 +115 -43 src/contrib/sendmail/src/macro.c 1.3.6.11 +23 -4 src/contrib/sendmail/src/mailq.1 1.1.1.3.2.22 +164 -54 src/contrib/sendmail/src/main.c 1.1.1.3.2.21 +409 -145 src/contrib/sendmail/src/map.c 1.1.1.1.6.1 +86 -0 src/contrib/sendmail/src/map.h (new) 1.3.6.18 +18 -18 src/contrib/sendmail/src/mci.c 1.1.1.1.2.23 +852 -263 src/contrib/sendmail/src/milter.c 1.1.1.3.2.14 +23 -23 src/contrib/sendmail/src/mime.c 1.1.1.2.6.23 +215 -98 src/contrib/sendmail/src/parseaddr.c 1.1.1.3.2.23 +141 -116 src/contrib/sendmail/src/queue.c 1.1.1.1.2.3 +3 -3 src/contrib/sendmail/src/ratectrl.c 1.1.1.4.2.21 +124 -81 src/contrib/sendmail/src/readcf.c 1.1.1.3.2.13 +50 -26 src/contrib/sendmail/src/recipient.c 1.1.1.1.2.9 +3 -3 src/contrib/sendmail/src/sasl.c 1.4.2.16 +74 -68 src/contrib/sendmail/src/savemail.c 1.1.1.4.2.26 +62 -47 src/contrib/sendmail/src/sendmail.h 1.1.1.1.2.6 +7 -7 src/contrib/sendmail/src/sm_resolve.c 1.1.1.2.6.23 +429 -234 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.2.6.7 +20 -20 src/contrib/sendmail/src/stab.c 1.1.1.2.6.8 +7 -7 src/contrib/sendmail/src/stats.c 1.1.1.1.2.5 +5 -5 src/contrib/sendmail/src/timers.c 1.1.1.1.2.12 +13 -11 src/contrib/sendmail/src/tls.c 1.1.1.3.2.10 +31 -29 src/contrib/sendmail/src/udb.c 1.1.1.3.2.19 +29 -19 src/contrib/sendmail/src/usersmtp.c 1.1.1.3.2.18 +132 -172 src/contrib/sendmail/src/util.c 1.1.1.3.2.25 +3 -3 src/contrib/sendmail/src/version.c 1.1.1.1.2.2 +3 -1 src/contrib/sendmail/test/Makefile 1.1.1.1.2.5 +2 -1 src/contrib/sendmail/vacation/Makefile.m4 1.1.1.1.2.13 +20 -19 src/contrib/sendmail/vacation/vacation.c 1.1.2.4 +2 -2 src/lib/libmilter/Makefile 1.1.2.8 +1 -1 src/lib/libsm/Makefile 1.22.2.442 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml 1.15.2.19 +1 -1 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Thu Apr 12 03:33:30 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C056316A400; Thu, 12 Apr 2007 03:33:30 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9D85813C448; Thu, 12 Apr 2007 03:33:30 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C3XUXJ065993; Thu, 12 Apr 2007 03:33:30 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C3XUK4065991; Thu, 12 Apr 2007 03:33:30 GMT (envelope-from kmacy) Message-Id: <200704120333.l3C3XUK4065991@repoman.freebsd.org> From: Kip Macy Date: Thu, 12 Apr 2007 03:33:30 +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/dev/cxgb cxgb_sge.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, 12 Apr 2007 03:33:30 -0000 kmacy 2007-04-12 03:33:30 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_sge.c Log: explicitly check TSO flag don't clear and then set M_PKTHDR, m_gethdr sets it correctly improve error handling on m_gethdr failure MFC after: 3 days Revision Changes Path 1.8 +8 -12 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:09:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A453A16A402; Thu, 12 Apr 2007 04:09:20 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id 2835113C43E; Thu, 12 Apr 2007 04:09:19 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.8/8.13.8) with ESMTP id l3C49Iva077252; Thu, 12 Apr 2007 08:09:18 +0400 (MSD) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.8/8.13.8/Submit) id l3C49Ir4077251; Thu, 12 Apr 2007 08:09:18 +0400 (MSD) (envelope-from ache) Date: Thu, 12 Apr 2007 08:09:18 +0400 From: Andrey Chernov To: Pawel Jakub Dawidek Message-ID: <20070412040918.GA77223@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> <20070411174528.GA35928@nagual.pp.ru> <20070411201122.GB3060@garage.freebsd.pl> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qxx1br4bt0+wmkIi" Content-Disposition: inline In-Reply-To: <20070411201122.GB3060@garage.freebsd.pl> User-Agent: Mutt/1.5.14 (2007-02-12) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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, 12 Apr 2007 04:09:20 -0000 --Qxx1br4bt0+wmkIi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 11, 2007 at 10:11:22PM +0200, Pawel Jakub Dawidek wrote: > sys/rpc/types.h is installed in /usr/include/rpc/. What's the problem > exactly? At least one problem found: due to your change kernel-only rpcclnt.h rpcm_subs.h are now installed into userland /usr/include/rpc Please fix it somehow. --=20 http://ache.pp.ru/ --Qxx1br4bt0+wmkIi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (FreeBSD) iD8DBQFGHbDuVg5YK5ZEdN0RAsNrAJoCNMaJ3oSoSOWDCdt6Ao+Dn+JBvgCgqrRE gAAX1c/AaA4c4T2cxOiBXv0= =bQSB -----END PGP SIGNATURE----- --Qxx1br4bt0+wmkIi-- From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:11:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93C5B16A402; Thu, 12 Apr 2007 04:11:46 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.freebsd.org (Postfix) with ESMTP id 123E113C46E; Thu, 12 Apr 2007 04:11:45 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.8/8.13.8) with ESMTP id l3C4BiSJ077316; Thu, 12 Apr 2007 08:11:44 +0400 (MSD) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.8/8.13.8/Submit) id l3C4BiLp077315; Thu, 12 Apr 2007 08:11:44 +0400 (MSD) (envelope-from ache) Date: Thu, 12 Apr 2007 08:11:44 +0400 From: Andrey Chernov To: Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20070412041144.GA77256@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Pawel Jakub Dawidek , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> <20070411174528.GA35928@nagual.pp.ru> <20070411201122.GB3060@garage.freebsd.pl> <20070411202404.GA37891@nagual.pp.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rwEMma7ioTxnRzrJ" Content-Disposition: inline In-Reply-To: <20070411202404.GA37891@nagual.pp.ru> User-Agent: Mutt/1.5.14 (2007-02-12) Cc: Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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, 12 Apr 2007 04:11:46 -0000 --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 12, 2007 at 12:24:04AM +0400, Andrey Chernov wrote: > f.e. unistd.h and sys/unistd.h separated, but no problems with it for now. On no, one problem found, see my prev reply. --=20 http://ache.pp.ru/ --rwEMma7ioTxnRzrJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (FreeBSD) iD8DBQFGHbGAVg5YK5ZEdN0RAtZTAKCtlVqkU5f1u9rkjl+st8o8bH2s6QCgkFr5 U2M+3XNNW7ssr+eH+RQFUmc= =p31K -----END PGP SIGNATURE----- --rwEMma7ioTxnRzrJ-- From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:27:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9AC8916A400; Thu, 12 Apr 2007 04:27:29 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7787D13C4AE; Thu, 12 Apr 2007 04:27:29 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C4RTXv075922; Thu, 12 Apr 2007 04:27:29 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C4RTAa075921; Thu, 12 Apr 2007 04:27:29 GMT (envelope-from kientzle) Message-Id: <200704120427.l3C4RTAa075921@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 12 Apr 2007 04:27:29 +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/lib/libarchive archive_read_extract.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, 12 Apr 2007 04:27:29 -0000 kientzle 2007-04-12 04:27:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libarchive archive_read_extract.c Log: Check existing flags with an lstat(), not a stat(). Otherwise, restoring symlinks with flags consistently fails (unionfs likes to set 'opaque' flags). Revision Changes Path 1.41.2.5 +1 -1 src/lib/libarchive/archive_read_extract.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:31:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C60616A402; Thu, 12 Apr 2007 04:31:45 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5990C13C458; Thu, 12 Apr 2007 04:31:45 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C4VjCa076829; Thu, 12 Apr 2007 04:31:45 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C4Vja3076827; Thu, 12 Apr 2007 04:31:45 GMT (envelope-from kmacy) Message-Id: <200704120431.l3C4Vja3076827@repoman.freebsd.org> From: Kip Macy Date: Thu, 12 Apr 2007 04:31:44 +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/dev/cxgb cxgb_sge.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, 12 Apr 2007 04:31:45 -0000 kmacy 2007-04-12 04:31:44 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_sge.c Log: switch over to per-txq dma tag to facilitate parallelism on TX MFC after: 3 days Revision Changes Path 1.9 +12 -12 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:42:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 860B916A402; Thu, 12 Apr 2007 04:42:58 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 62D4713C448; Thu, 12 Apr 2007 04:42:58 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C4gwk8078651; Thu, 12 Apr 2007 04:42:58 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C4gwXe078650; Thu, 12 Apr 2007 04:42:58 GMT (envelope-from kientzle) Message-Id: <200704120442.l3C4gwXe078650@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 12 Apr 2007 04:42:58 +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/lib/libarchive archive_read_support_format_tar.c archive_write_disk.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, 12 Apr 2007 04:42:58 -0000 kientzle 2007-04-12 04:42:58 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_tar.c archive_write_disk.c Log: Make Lint happier. Revision Changes Path 1.53 +1 -1 src/lib/libarchive/archive_read_support_format_tar.c 1.7 +2 -1 src/lib/libarchive/archive_write_disk.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:44:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 889F516A400; Thu, 12 Apr 2007 04:44:22 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 65B3813C455; Thu, 12 Apr 2007 04:44:22 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C4iMsK078995; Thu, 12 Apr 2007 04:44:22 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C4iMLH078994; Thu, 12 Apr 2007 04:44:22 GMT (envelope-from kientzle) Message-Id: <200704120444.l3C4iMLH078994@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 12 Apr 2007 04:44:22 +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/lib/libarchive Makefile archive_platform.h 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, 12 Apr 2007 04:44:22 -0000 kientzle 2007-04-12 04:44:21 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_platform.h Log: Now that libarchive is being built in more environments, factor out the platform-specific configuration header a bit more cleanly. Suggested by: Joerg Sonnenberger Revision Changes Path 1.65 +2 -1 src/lib/libarchive/Makefile 1.25 +4 -7 src/lib/libarchive/archive_platform.h From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:45:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C1E516A405; Thu, 12 Apr 2007 04:45:33 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 08D1D13C468; Thu, 12 Apr 2007 04:45:33 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C4jWc9079103; Thu, 12 Apr 2007 04:45:32 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C4jWZF079102; Thu, 12 Apr 2007 04:45:32 GMT (envelope-from kientzle) Message-Id: <200704120445.l3C4jWZF079102@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 12 Apr 2007 04:45:32 +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/usr.bin/tar Makefile bsdtar_platform.h 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, 12 Apr 2007 04:45:33 -0000 kientzle 2007-04-12 04:45:32 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar_platform.h Log: Make it easier to support more platforms. Thanks to: Joerg Sonnenberger for pointing out the need and the technique. Revision Changes Path 1.30 +2 -1 src/usr.bin/tar/Makefile 1.24 +5 -7 src/usr.bin/tar/bsdtar_platform.h From owner-cvs-src@FreeBSD.ORG Thu Apr 12 04:48:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1971616A402; Thu, 12 Apr 2007 04:48:55 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EACD313C455; Thu, 12 Apr 2007 04:48:54 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C4msvx087562; Thu, 12 Apr 2007 04:48:54 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C4msna087561; Thu, 12 Apr 2007 04:48:54 GMT (envelope-from kmacy) Message-Id: <200704120448.l3C4msna087561@repoman.freebsd.org> From: Kip Macy Date: Thu, 12 Apr 2007 04:48:54 +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/dev/cxgb cxgb_sge.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, 12 Apr 2007 04:48:55 -0000 kmacy 2007-04-12 04:48:54 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_sge.c Log: restore sense to get_imm_packet MFC after: 3 days Revision Changes Path 1.10 +4 -6 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 07:38:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 783C116A403; Thu, 12 Apr 2007 07:38:27 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 537F413C4C1; Thu, 12 Apr 2007 07:38:27 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C7cRPr021426; Thu, 12 Apr 2007 07:38:27 GMT (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C7cRF7021425; Thu, 12 Apr 2007 07:38:27 GMT (envelope-from mtm) Message-Id: <200704120738.l3C7cRF7021425@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 12 Apr 2007 07:38:27 +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/usr.sbin/adduser adduser.sh 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, 12 Apr 2007 07:38:27 -0000 mtm 2007-04-12 07:38:27 UTC FreeBSD src repository Modified files: usr.sbin/adduser adduser.sh Log: Errm... I don't see how rev. 1.26 could have possibly worked or been tested. Fix it for real. Submitted by: Johnny Lee MFC After: 2 weeks Revision Changes Path 1.29 +13 -12 src/usr.sbin/adduser/adduser.sh From owner-cvs-src@FreeBSD.ORG Thu Apr 12 07:38:44 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4954616A500; Thu, 12 Apr 2007 07:38:44 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 312D413C44B; Thu, 12 Apr 2007 07:38:44 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id C4CF51A4D88; Thu, 12 Apr 2007 00:38:51 -0700 (PDT) Date: Thu, 12 Apr 2007 00:38:51 -0700 From: Alfred Perlstein To: Kip Macy Message-ID: <20070412073851.GP2382@elvis.mu.org> References: <200704100403.l3A43ZnL057659@repoman.freebsd.org> <88607eb20704101217x4e3c81f9xf914f7da7714daf8@mail.gmail.com> <20070411195935.GA2382@elvis.mu.org> <88607eb20704111346q5c463b60w2547084231a11227@mail.gmail.com> <20070411220228.GG2382@elvis.mu.org> <86abxemt1a.fsf@dwp.des.no> <20070412014732.GM2382@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Ed Maste , Xin LI , Dag-Erling Sm?rgrav Subject: Re: cvs commit: src/usr.bin/truss Makefile amd64-fbsd.c extern.h i386-fbsd.c i386-linux.c ia64-fbsd.c main.c powerpc-fbsd.c setup.c sparc64-fbsd.c syscall.h syscalls.c truss.1 truss.h 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, 12 Apr 2007 07:38:44 -0000 * Kip Macy [070411 19:04] wrote: > >> What Ed is trying to tell you is that the result will be a useless > >> core file. > > > >And what I'm trying to say is that he's wrong. > > > >One can still examine such a corefile to find valuable data. > > > > Have either of you read my response? About fork(2)? -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Thu Apr 12 07:47:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9CBA16A401; Thu, 12 Apr 2007 07:47:45 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 858FF13C448; Thu, 12 Apr 2007 07:47:45 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C7ljmN022963; Thu, 12 Apr 2007 07:47:45 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C7ljDe022962; Thu, 12 Apr 2007 07:47:45 GMT (envelope-from matteo) Message-Id: <200704120747.l3C7ljDe022962@repoman.freebsd.org> From: Matteo Riondato Date: Thu, 12 Apr 2007 07:47:45 +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/usr.sbin/rpc.statd procs.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, 12 Apr 2007 07:47:45 -0000 matteo 2007-04-12 07:47:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/rpc.statd procs.c Log: MFC rev. 1.16 and rev. 1.17 1.16: compile under WARNS=6 1.17: Make rpc.statd INET* indipendent by converting sockaddr_in structures to sockaddr ones and using svc_getrpccaller instead of svc_getcaller. A similar patch was committed to rpc.lockd back in 2002 . [1] PR: bin/42004 [1] Revision Changes Path 1.14.10.2 +21 -10 src/usr.sbin/rpc.statd/procs.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 07:53:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DA0716A400; Thu, 12 Apr 2007 07:53:14 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ED62013C48A; Thu, 12 Apr 2007 07:53:13 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C7rDJU024085; Thu, 12 Apr 2007 07:53:13 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C7rDFR024084; Thu, 12 Apr 2007 07:53:13 GMT (envelope-from thomas) Message-Id: <200704120753.l3C7rDFR024084@repoman.freebsd.org> From: Thomas Quinot Date: Thu, 12 Apr 2007 07:53:13 +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/sbin/dump traverse.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, 12 Apr 2007 07:53:14 -0000 thomas 2007-04-12 07:53:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/dump traverse.c Log: MFC rev. 1.40: (bread): For a read that is contained entirely within a block, never copy out more than size bytes to the caller's buffer. PR: bin/111191 Revision Changes Path 1.36.2.2 +1 -1 src/sbin/dump/traverse.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 07:56:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AB1216A400; Thu, 12 Apr 2007 07:56:17 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4638213C4E8; Thu, 12 Apr 2007 07:56:17 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C7uHPl024470; Thu, 12 Apr 2007 07:56:17 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C7uH8t024469; Thu, 12 Apr 2007 07:56:17 GMT (envelope-from matteo) Message-Id: <200704120756.l3C7uH8t024469@repoman.freebsd.org> From: Matteo Riondato Date: Thu, 12 Apr 2007 07:56:17 +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/usr.sbin/rpc.lockd lockd.c rpc.lockd.8 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, 12 Apr 2007 07:56:17 -0000 matteo 2007-04-12 07:56:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/rpc.lockd lockd.c rpc.lockd.8 Log: MFC: lockd.c rev.1.20 rpc.lockd.8 rev.1.17 Add the "-p" option, which allows to specify a port which the daemon should bind to. PR: bin/100969 Revision Changes Path 1.18.8.2 +84 -7 src/usr.sbin/rpc.lockd/lockd.c 1.16.2.1 +8 -1 src/usr.sbin/rpc.lockd/rpc.lockd.8 From owner-cvs-src@FreeBSD.ORG Thu Apr 12 08:03:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BC2A16A400; Thu, 12 Apr 2007 08:03:41 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0739F13C469; Thu, 12 Apr 2007 08:03:41 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C83e7Y026976; Thu, 12 Apr 2007 08:03:40 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C83eWj026975; Thu, 12 Apr 2007 08:03:40 GMT (envelope-from matteo) Message-Id: <200704120803.l3C83eWj026975@repoman.freebsd.org> From: Matteo Riondato Date: Thu, 12 Apr 2007 08:03:40 +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/usr.sbin/rpc.statd rpc.statd.8 statd.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, 12 Apr 2007 08:03:41 -0000 matteo 2007-04-12 08:03:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/rpc.statd rpc.statd.8 statd.c Log: MFC: rpc.statd.8 rev.1.14 statd.c rev.1.13-1.14 PR: bin/94920 Revision Changes Path 1.13.2.1 +8 -1 src/usr.sbin/rpc.statd/rpc.statd.8 1.12.8.1 +111 -9 src/usr.sbin/rpc.statd/statd.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 08:17:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9E6616A406; Thu, 12 Apr 2007 08:17:58 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BD89C13C45D; Thu, 12 Apr 2007 08:17:58 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C8Hw8o028654; Thu, 12 Apr 2007 08:17:58 GMT (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C8HwQs028653; Thu, 12 Apr 2007 08:17:58 GMT (envelope-from mtm) Message-Id: <200704120817.l3C8HwQs028653@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 12 Apr 2007 08:17:57 +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/usr.sbin/adduser adduser.sh 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, 12 Apr 2007 08:17:58 -0000 mtm 2007-04-12 08:17:56 UTC FreeBSD src repository Modified files: usr.sbin/adduser adduser.sh Log: There are a couple of bugs in rev. 1.27: 1) The man page should describe the code, not the other way around. 2) Internal variables should not be documented or exposed, except in controlled circumstances (i.e. - That's what the -C flag is for). The variable should have been saved to the config file in save_config(). 3) The next available userid doesn't get automatically updated. The end-result is the same (user gets added with the correct uid), but in an interactive session the default uid doesn't get updated in the display. So, o Use the uidstart variable instead of uuid (bug #3) o Actually save the variable to adduser.conf (bug #2) o (bug #1 to be fixed in an upcomming commit to adduser.conf.5) MFC After: 2 weeks Revision Changes Path 1.30 +2 -7 src/usr.sbin/adduser/adduser.sh From owner-cvs-src@FreeBSD.ORG Thu Apr 12 08:22:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1AB9216A402; Thu, 12 Apr 2007 08:22:50 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E96DA13C46E; Thu, 12 Apr 2007 08:22:49 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C8MnMu029706; Thu, 12 Apr 2007 08:22:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C8Mnaa029705; Thu, 12 Apr 2007 08:22:49 GMT (envelope-from ru) Message-Id: <200704120822.l3C8Mnaa029705@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Apr 2007 08:22:49 +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/usr.bin/finger finger.1 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, 12 Apr 2007 08:22:50 -0000 ru 2007-04-12 08:22:49 UTC FreeBSD src repository Modified files: usr.bin/finger finger.1 Log: Restore the ".Sh BUGS" line that was accidentally removed in the previous commit. Revision Changes Path 1.35 +1 -0 src/usr.bin/finger/finger.1 From owner-cvs-src@FreeBSD.ORG Thu Apr 12 08:35:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5A9416A400; Thu, 12 Apr 2007 08:35:58 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 808D813C45A; Thu, 12 Apr 2007 08:35:58 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C8ZwS0031676; Thu, 12 Apr 2007 08:35:58 GMT (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C8ZwWR031675; Thu, 12 Apr 2007 08:35:58 GMT (envelope-from mtm) Message-Id: <200704120835.l3C8ZwWR031675@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 12 Apr 2007 08:35:58 +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/usr.sbin/adduser adduser.conf.5 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, 12 Apr 2007 08:35:58 -0000 mtm 2007-04-12 08:35:58 UTC FreeBSD src repository Modified files: usr.sbin/adduser adduser.conf.5 Log: Specify the correct way to modify this file, and warn that the user should not depend on the internal variables documented in this man page. MFC After: 2 weeks Revision Changes Path 1.5 +18 -1 src/usr.sbin/adduser/adduser.conf.5 From owner-cvs-src@FreeBSD.ORG Thu Apr 12 08:39:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F32FF16A401; Thu, 12 Apr 2007 08:39:13 +0000 (UTC) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CE52813C45A; Thu, 12 Apr 2007 08:39:13 +0000 (UTC) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C8dDEI031812; Thu, 12 Apr 2007 08:39:13 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C8dDHK031811; Thu, 12 Apr 2007 08:39:13 GMT (envelope-from ceri) Message-Id: <200704120839.l3C8dDHK031811@repoman.freebsd.org> From: Ceri Davies Date: Thu, 12 Apr 2007 08:39:13 +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/usr.sbin/adduser adduser.conf.5 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, 12 Apr 2007 08:39:14 -0000 ceri 2007-04-12 08:39:13 UTC FreeBSD src repository Modified files: usr.sbin/adduser adduser.conf.5 Log: Bump .Dd for r1.5; fix grammatical problem. Revision Changes Path 1.6 +2 -2 src/usr.sbin/adduser/adduser.conf.5 From owner-cvs-src@FreeBSD.ORG Thu Apr 12 09:16:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0E6916A402; Thu, 12 Apr 2007 09:16:54 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AAEB613C45B; Thu, 12 Apr 2007 09:16:54 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3C9Gs4L047341; Thu, 12 Apr 2007 09:16:54 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3C9GsxG047340; Thu, 12 Apr 2007 09:16:54 GMT (envelope-from jkoshy) Message-Id: <200704120916.l3C9GsxG047340@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 12 Apr 2007 09:16:54 +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/lib/libpmc pmc.3 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, 12 Apr 2007 09:16:54 -0000 jkoshy 2007-04-12 09:16:54 UTC FreeBSD src repository Modified files: lib/libpmc pmc.3 Log: Fix a bug in the description of the "p6-div" event. [1] Update the description of the "p6-div" and "p6-mul" events according to the "Intel(r) 64 and IA-32 Architectures Software Developers Manual Volume 3B: System Programming Guide, Part 2, November 2006". Reported by: Harald Servat [1] Revision Changes Path 1.13 +4 -2 src/lib/libpmc/pmc.3 From owner-cvs-src@FreeBSD.ORG Thu Apr 12 09:41:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B15D16A403; Thu, 12 Apr 2007 09:41:02 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id CBABB13C484; Thu, 12 Apr 2007 09:41:01 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 623442091; Thu, 12 Apr 2007 11:40:58 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id DC8452090; Thu, 12 Apr 2007 11:40:57 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id BF8B9534E; Thu, 12 Apr 2007 11:40:57 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Ruslan Ermilov References: <200704120822.l3C8Mnaa029705@repoman.freebsd.org> Date: Thu, 12 Apr 2007 11:40:57 +0200 In-Reply-To: <200704120822.l3C8Mnaa029705@repoman.freebsd.org> (Ruslan Ermilov's message of "Thu, 12 Apr 2007 08:22:49 +0000 (UTC)") Message-ID: <86ps6aylp2.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/finger finger.1 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, 12 Apr 2007 09:41:02 -0000 Ruslan Ermilov writes: > Log: > Restore the ".Sh BUGS" line that was accidentally removed > in the previous commit. Thanks. I am officially an idiot. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Thu Apr 12 11:05:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0319616A400; Thu, 12 Apr 2007 11:05:25 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CFF9A13C459; Thu, 12 Apr 2007 11:05:24 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CB5O9F066559; Thu, 12 Apr 2007 11:05:24 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CB5ONE066558; Thu, 12 Apr 2007 11:05:24 GMT (envelope-from ru) Message-Id: <200704121105.l3CB5ONE066558@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Apr 2007 11:05:24 +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/i386/i386 mp_machdep.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, 12 Apr 2007 11:05:25 -0000 ru 2007-04-12 11:05:24 UTC FreeBSD src repository Modified files: sys/i386/i386 mp_machdep.c Log: Fix PAE on SMP by enabling EFER_NXE on all APs. Reported by: kris Diagnosed by: alc Revision Changes Path 1.277 +10 -0 src/sys/i386/i386/mp_machdep.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 11:46:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8777316A400; Thu, 12 Apr 2007 11:46:31 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5EF5713C448; Thu, 12 Apr 2007 11:46:31 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CBkVWI072729; Thu, 12 Apr 2007 11:46:31 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CBkU2W072728; Thu, 12 Apr 2007 11:46:30 GMT (envelope-from bms) Message-Id: <200704121146.l3CBkU2W072728@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 12 Apr 2007 11:46:30 +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/tools/regression/netinet/ipblock Makefile ipblock.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, 12 Apr 2007 11:46:31 -0000 bms 2007-04-12 11:46:30 UTC FreeBSD src repository Removed files: tools/regression/netinet/ipblock Makefile ipblock.c Log: Nuke ipblock. A more complete multicast regression test suite is on the way. Revision Changes Path 1.2 +0 -10 src/tools/regression/netinet/ipblock/Makefile (dead) 1.2 +0 -221 src/tools/regression/netinet/ipblock/ipblock.c (dead) From owner-cvs-src@FreeBSD.ORG Thu Apr 12 13:13:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9447916A401; Thu, 12 Apr 2007 13:13:58 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 825B213C489; Thu, 12 Apr 2007 13:13:58 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CDDwQ1005315; Thu, 12 Apr 2007 13:13:58 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CDDwuC005314; Thu, 12 Apr 2007 13:13:58 GMT (envelope-from matteo) Message-Id: <200704121313.l3CDDwuC005314@repoman.freebsd.org> From: Matteo Riondato Date: Thu, 12 Apr 2007 13:13:58 +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/etc/rc.d nfslocking src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 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, 12 Apr 2007 13:13:58 -0000 matteo 2007-04-12 13:13:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d nfslocking etc/defaults rc.conf share/man/man5 rc.conf.5 Log: MFC nfslocking: rev 1.12 [1] and 1.13 [2] rc.conf.5: rev 1.321 [2] rc.conf: 1.311 [2] [1] Record rc.d/nfslocking dependency on rc.d/rpcbind [2]Add rpc_statd_flags and rpc_lockd_flags options to allow options to be passed to rpc.statd and rpc.lockd PR: conf/105465 [1] Approved by: mtm [1] Revision Changes Path 1.252.2.33 +2 -0 src/etc/defaults/rc.conf 1.11.2.1 +26 -4 src/etc/rc.d/nfslocking 1.256.2.32 +19 -1 src/share/man/man5/rc.conf.5 From owner-cvs-src@FreeBSD.ORG Thu Apr 12 13:42:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0C6916A402; Thu, 12 Apr 2007 13:42:01 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B71DD13C45A; Thu, 12 Apr 2007 13:42:01 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CDg1MV011687; Thu, 12 Apr 2007 13:42:01 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CDg198011686; Thu, 12 Apr 2007 13:42:01 GMT (envelope-from glebius) Message-Id: <200704121342.l3CDg198011686@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 12 Apr 2007 13:42:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access 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, 12 Apr 2007 13:42:02 -0000 glebius 2007-04-12 13:42:01 UTC FreeBSD src repository Modified files: . access Log: Welcome Alexander Motin (mav) to the src committers team! Alexander will work in sys/netgraph and probably other sys/net* code. Approved by: core Revision Changes Path 1.821 +2 -1 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Thu Apr 12 14:40:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA7A516A401; Thu, 12 Apr 2007 14:40:47 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A042F13C46C; Thu, 12 Apr 2007 14:40:47 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CEelvS022142; Thu, 12 Apr 2007 14:40:47 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CEel5H022141; Thu, 12 Apr 2007 14:40:47 GMT (envelope-from ache) Message-Id: <200704121440.l3CEel5H022141@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 12 Apr 2007 14:40:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Cc: Subject: cvs commit: src/contrib/libreadline - Imported sources 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, 12 Apr 2007 14:40:47 -0000 ache 2007-04-12 14:40:47 UTC FreeBSD src repository src/contrib/libreadline - Imported sources Update of /home/ncvs/src/contrib/libreadline In directory repoman.freebsd.org:/tmp/cvs-serv22110 Log Message: Official patch 002 imported Status: Vendor Tag: FSF Release Tags: v5_2_p2 C src/contrib/libreadline/display.c 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jFSF:yesterday -jFSF src/contrib/libreadline From owner-cvs-src@FreeBSD.ORG Thu Apr 12 14:45:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D668C16A404; Thu, 12 Apr 2007 14:45:25 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ABF7E13C44C; Thu, 12 Apr 2007 14:45:25 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CEjPEk023631; Thu, 12 Apr 2007 14:45:25 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CEjPXQ023630; Thu, 12 Apr 2007 14:45:25 GMT (envelope-from ache) Message-Id: <200704121445.l3CEjPXQ023630@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 12 Apr 2007 14:45:25 +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/contrib/libreadline FREEBSD-upgrade display.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, 12 Apr 2007 14:45:25 -0000 ache 2007-04-12 14:45:25 UTC FreeBSD src repository Modified files: contrib/libreadline FREEBSD-upgrade display.c Log: Merge Revision Changes Path 1.10 +1 -0 src/contrib/libreadline/FREEBSD-upgrade 1.13 +12 -0 src/contrib/libreadline/display.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 15:45:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7070F16A407; Thu, 12 Apr 2007 15:45:31 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 45E6C13C48A; Thu, 12 Apr 2007 15:45:31 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CFjVRE041577; Thu, 12 Apr 2007 15:45:31 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CFjV2r041576; Thu, 12 Apr 2007 15:45:31 GMT (envelope-from stefan) Message-Id: <200704121545.l3CFjV2r041576@repoman.freebsd.org> From: Stefan Walter Date: Thu, 12 Apr 2007 15:45:31 +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/share/misc committers-ports.dot 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, 12 Apr 2007 15:45:31 -0000 stefan 2007-04-12 15:45:30 UTC FreeBSD src repository (ports committer) Modified files: share/misc committers-ports.dot Log: Add myself and my mentor, arved. Revision Changes Path 1.43 +4 -0 src/share/misc/committers-ports.dot From owner-cvs-src@FreeBSD.ORG Thu Apr 12 16:35:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40C8116A406; Thu, 12 Apr 2007 16:35:44 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id 4C7CA13C455; Thu, 12 Apr 2007 16:35:43 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 71C0D487F2; Thu, 12 Apr 2007 18:35:40 +0200 (CEST) Received: from localhost (public-gprs41855.centertel.pl [91.94.35.199]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 737A045685; Thu, 12 Apr 2007 18:35:18 +0200 (CEST) Date: Thu, 12 Apr 2007 18:34:35 +0200 From: Pawel Jakub Dawidek To: Andrey Chernov , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, ru@FreeBSD.org Message-ID: <20070412163435.GC1756@garage.freebsd.pl> References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> <20070411174528.GA35928@nagual.pp.ru> <20070411201122.GB3060@garage.freebsd.pl> <20070412040918.GA77223@nagual.pp.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uh9ZiVrAOUUm9fzH" Content-Disposition: inline In-Reply-To: <20070412040918.GA77223@nagual.pp.ru> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL autolearn=no version=3.0.4 Cc: Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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, 12 Apr 2007 16:35:44 -0000 --uh9ZiVrAOUUm9fzH Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 12, 2007 at 08:09:18AM +0400, Andrey Chernov wrote: > On Wed, Apr 11, 2007 at 10:11:22PM +0200, Pawel Jakub Dawidek wrote: > > sys/rpc/types.h is installed in /usr/include/rpc/. What's the problem > > exactly? >=20 > At least one problem found: due to your change kernel-only > rpcclnt.h > rpcm_subs.h > are now installed into userland /usr/include/rpc > Please fix it somehow. I know about this, but I think our build infrastructure isn't ready for fixing it. Ruslan, what I did currently is repo-copy rpc/types.h to sys/rpc/types.h and add sys/rpc to LDIRS in src/include/Makefile. There are some files in sys/rpc/ that we may not want to install, can I select which files to install? --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --uh9ZiVrAOUUm9fzH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGHl+bForvXbEpPzQRAl+iAKDQLLEfAgZPT9hl8NPrp/IvnU1DvACg4Uhd 2wb7mWyPhCNfDVJj3ASnHUM= =4wcK -----END PGP SIGNATURE----- --uh9ZiVrAOUUm9fzH-- From owner-cvs-src@FreeBSD.ORG Thu Apr 12 17:00:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F72C16A402; Thu, 12 Apr 2007 17:00:57 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 05EFC13C489; Thu, 12 Apr 2007 17:00:57 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CH0uLW061942; Thu, 12 Apr 2007 17:00:56 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CH0ub2061941; Thu, 12 Apr 2007 17:00:56 GMT (envelope-from alc) Message-Id: <200704121700.l3CH0ub2061941@repoman.freebsd.org> From: Alan Cox Date: Thu, 12 Apr 2007 17:00:56 +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/i386/include pmap.h 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, 12 Apr 2007 17:00:57 -0000 alc 2007-04-12 17:00:56 UTC FreeBSD src repository Modified files: sys/i386/include pmap.h Log: MFamd64 Define PGEX_RSV. Revision Changes Path 1.128 +1 -0 src/sys/i386/include/pmap.h From owner-cvs-src@FreeBSD.ORG Thu Apr 12 17:40:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 706C116A402; Thu, 12 Apr 2007 17:40:45 +0000 (UTC) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 480FA13C46E; Thu, 12 Apr 2007 17:40:45 +0000 (UTC) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CHejO3069952; Thu, 12 Apr 2007 17:40:45 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CHejCG069951; Thu, 12 Apr 2007 17:40:45 GMT (envelope-from le) Message-Id: <200704121740.l3CHejCG069951@repoman.freebsd.org> From: Lukas Ertl Date: Thu, 12 Apr 2007 17:40:45 +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/geom/vinum geom_vinum_share.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, 12 Apr 2007 17:40:45 -0000 le 2007-04-12 17:40:45 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_share.c Log: Avoid infinite loop if the device string given for a drive only consists of "/". Submitted by: Ulf Lilleengen Revision Changes Path 1.5 +3 -6 src/sys/geom/vinum/geom_vinum_share.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 17:54:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63BA516A401; Thu, 12 Apr 2007 17:54:36 +0000 (UTC) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3A81013C46A; Thu, 12 Apr 2007 17:54:36 +0000 (UTC) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CHsa1P073254; Thu, 12 Apr 2007 17:54:36 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CHsa6f073253; Thu, 12 Apr 2007 17:54:36 GMT (envelope-from le) Message-Id: <200704121754.l3CHsa6f073253@repoman.freebsd.org> From: Lukas Ertl Date: Thu, 12 Apr 2007 17:54:35 +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/geom/vinum geom_vinum.h geom_vinum_rm.c geom_vinum_subr.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, 12 Apr 2007 17:54:36 -0000 le 2007-04-12 17:54:35 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum.h geom_vinum_rm.c geom_vinum_subr.c Log: -) Correct sdcount for a plex when removing or adding subdisks. -) Set correct sizes for plexes and volumes a subdisk has been removed. Submitted by: Ulf Lilleengen Revision Changes Path 1.13 +2 -0 src/sys/geom/vinum/geom_vinum.h 1.13 +19 -2 src/sys/geom/vinum/geom_vinum_rm.c 1.16 +72 -1 src/sys/geom/vinum/geom_vinum_subr.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 18:00:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C25DB16A409 for ; Thu, 12 Apr 2007 18:00:35 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.freebsd.org (Postfix) with ESMTP id 40C0513C468 for ; Thu, 12 Apr 2007 18:00:35 +0000 (UTC) (envelope-from andre@freebsd.org) Received: (qmail 96351 invoked from network); 12 Apr 2007 17:25:28 -0000 Received: from c00l3r.networx.ch (HELO [127.0.0.1]) ([62.48.2.2]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 12 Apr 2007 17:25:28 -0000 Message-ID: <461E73C7.4030602@freebsd.org> Date: Thu, 12 Apr 2007 20:00:39 +0200 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Lukas Ertl References: <200704121754.l3CHsa6f073253@repoman.freebsd.org> In-Reply-To: <200704121754.l3CHsa6f073253@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/geom/vinum geom_vinum.h geom_vinum_rm.c geom_vinum_subr.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, 12 Apr 2007 18:00:35 -0000 Lukas Ertl wrote: > le 2007-04-12 17:54:35 UTC > > FreeBSD src repository > > Modified files: > sys/geom/vinum geom_vinum.h geom_vinum_rm.c > geom_vinum_subr.c > Log: > -) Correct sdcount for a plex when removing or adding subdisks. > -) Set correct sizes for plexes and volumes a subdisk has been removed. > > Submitted by: Ulf Lilleengen SoC 2007 quick start? ;-) -- Andre From owner-cvs-src@FreeBSD.ORG Thu Apr 12 18:05:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33AF416A400; Thu, 12 Apr 2007 18:05:47 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.freebsd.org (Postfix) with ESMTP id CC90213C459; Thu, 12 Apr 2007 18:05:46 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 908B269B9; Thu, 12 Apr 2007 22:05:45 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 6D4DE6997; Thu, 12 Apr 2007 22:05:45 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id l3CI5iVx019086; Thu, 12 Apr 2007 22:05:44 +0400 (MSD) (envelope-from ru) Date: Thu, 12 Apr 2007 22:05:44 +0400 From: Ruslan Ermilov To: Pawel Jakub Dawidek Message-ID: <20070412180543.GA19062@rambler-co.ru> References: <200704102210.l3AMAH9W058770@repoman.freebsd.org> <20070411174528.GA35928@nagual.pp.ru> <20070411201122.GB3060@garage.freebsd.pl> <20070412040918.GA77223@nagual.pp.ru> <20070412163435.GC1756@garage.freebsd.pl> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="d6Gm4EdcadzBjdND" Content-Disposition: inline In-Reply-To: <20070412163435.GC1756@garage.freebsd.pl> User-Agent: Mutt/1.5.14 (2007-02-12) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Andrey Chernov , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include Makefile src/include/rpc Makefile types.h src/sys/rpc types.h 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, 12 Apr 2007 18:05:47 -0000 --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 12, 2007 at 06:34:35PM +0200, Pawel Jakub Dawidek wrote: > On Thu, Apr 12, 2007 at 08:09:18AM +0400, Andrey Chernov wrote: > > On Wed, Apr 11, 2007 at 10:11:22PM +0200, Pawel Jakub Dawidek wrote: > > > sys/rpc/types.h is installed in /usr/include/rpc/. What's the problem > > > exactly? > >=20 > > At least one problem found: due to your change kernel-only > > rpcclnt.h > > rpcm_subs.h > > are now installed into userland /usr/include/rpc > > Please fix it somehow. >=20 > I know about this, but I think our build infrastructure isn't ready for > fixing it. >=20 > Ruslan, what I did currently is repo-copy rpc/types.h to sys/rpc/types.h > and add sys/rpc to LDIRS in src/include/Makefile. There are some files > in sys/rpc/ that we may not want to install, can I select which files to > install? >=20 Yes. See how rijndael.h is installed. Let me know if you need my help implementing this. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --d6Gm4EdcadzBjdND Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (FreeBSD) iD8DBQFGHnT3qRfpzJluFF4RAjOUAJ9OtporP2+z7GxrrlnmLuPgHDWitwCgkHsi xRzqgBvsiFP1IQxLMGFnOeY= =9/3y -----END PGP SIGNATURE----- --d6Gm4EdcadzBjdND-- From owner-cvs-src@FreeBSD.ORG Thu Apr 12 18:14:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A450B16A401; Thu, 12 Apr 2007 18:14:00 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7CD8613C4C1; Thu, 12 Apr 2007 18:14:00 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CIE0U9077425; Thu, 12 Apr 2007 18:14:00 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CIE0hk077424; Thu, 12 Apr 2007 18:14:00 GMT (envelope-from ru) Message-Id: <200704121814.l3CIE0hk077424@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Apr 2007 18:14:00 +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/usr.bin/make parse.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, 12 Apr 2007 18:14:00 -0000 ru 2007-04-12 18:14:00 UTC FreeBSD src repository Modified files: usr.bin/make parse.c Log: In .error and .warning, prefer command-line variables to globals, as per documentation. Nudged by: Jeremie Le Hen Revision Changes Path 1.113 +1 -1 src/usr.bin/make/parse.c From owner-cvs-src@FreeBSD.ORG Thu Apr 12 18:16:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7886D16A402; Thu, 12 Apr 2007 18:16:04 +0000 (UTC) (envelope-from le@freebsd.org) Received: from grace.univie.ac.at (grace.univie.ac.at [131.130.3.115]) by mx1.freebsd.org (Postfix) with ESMTP id 334F813C4B0; Thu, 12 Apr 2007 18:16:04 +0000 (UTC) (envelope-from le@freebsd.org) Received: from joan.univie.ac.at ([131.130.3.110] helo=joan.univie.ac.at) by grace.univie.ac.at with esmtp (Exim 4.66) (envelope-from ) id 1Hc3d8-00011B-97; Thu, 12 Apr 2007 20:02:46 +0200 Received: from korben.prv.univie.ac.at ([131.130.7.98]) by joan.univie.ac.at with esmtps (TLSv1:AES256-SHA:256) (Exim 4.66) (envelope-from ) id 1Hc3d7-0002fa-Vb; Thu, 12 Apr 2007 20:02:46 +0200 Message-ID: <461E7444.5050901@freebsd.org> Date: Thu, 12 Apr 2007 20:02:44 +0200 From: Lukas Ertl User-Agent: Thunderbird 1.5.0.10 (X11/20070319) MIME-Version: 1.0 To: Andre Oppermann References: <200704121754.l3CHsa6f073253@repoman.freebsd.org> <461E73C7.4030602@freebsd.org> In-Reply-To: <461E73C7.4030602@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/geom/vinum geom_vinum.h geom_vinum_rm.c geom_vinum_subr.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, 12 Apr 2007 18:16:04 -0000 Andre Oppermann wrote: > Lukas Ertl wrote: >> le 2007-04-12 17:54:35 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/geom/vinum geom_vinum.h geom_vinum_rm.c >> geom_vinum_subr.c Log: >> -) Correct sdcount for a plex when removing or adding subdisks. >> -) Set correct sizes for plexes and volumes a subdisk has been removed. >> Submitted by: Ulf Lilleengen > > SoC 2007 quick start? ;-) Rather leftovers from last year. :-) cheers, le -- Lukas Ertl http://mailbox.univie.ac.at/~le/ le@FreeBSD.org http://people.freebsd.org/~le/ From owner-cvs-src@FreeBSD.ORG Thu Apr 12 19:14:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 262C116A400; Thu, 12 Apr 2007 19:14:10 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F305B13C45B; Thu, 12 Apr 2007 19:14:09 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CJE9kR089512; Thu, 12 Apr 2007 19:14:09 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CJE9jE089511; Thu, 12 Apr 2007 19:14:09 GMT (envelope-from mav) Message-Id: <200704121914.l3CJE9jE089511@repoman.freebsd.org> From: Alexander Motin Date: Thu, 12 Apr 2007 19:14:09 +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/share/misc committers-src.dot 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, 12 Apr 2007 19:14:10 -0000 mav 2007-04-12 19:14:09 UTC FreeBSD src repository Modified files: share/misc committers-src.dot Log: Add myself and glebius. Approved by: glebius (mentor) Revision Changes Path 1.58 +6 -0 src/share/misc/committers-src.dot From owner-cvs-src@FreeBSD.ORG Thu Apr 12 20:39:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58B5A16A408; Thu, 12 Apr 2007 20:39:56 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3197913C4C5; Thu, 12 Apr 2007 20:39:56 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CKduSQ006845; Thu, 12 Apr 2007 20:39:56 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CKduKJ006844; Thu, 12 Apr 2007 20:39:56 GMT (envelope-from julian) Message-Id: <200704122039.l3CKduKJ006844@repoman.freebsd.org> From: Julian Elischer Date: Thu, 12 Apr 2007 20:39:55 +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/share/misc committers-src.dot 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, 12 Apr 2007 20:39:56 -0000 julian 2007-04-12 20:39:55 UTC FreeBSD src repository Modified files: share/misc committers-src.dot Log: Add myself and some others according to my dusty memory. I may have other mentees that I have forgotten... Revision Changes Path 1.59 +6 -0 src/share/misc/committers-src.dot From owner-cvs-src@FreeBSD.ORG Thu Apr 12 20:43:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3706C16A400; Thu, 12 Apr 2007 20:43:58 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0FA2613C44B; Thu, 12 Apr 2007 20:43:58 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CKhvYF008289; Thu, 12 Apr 2007 20:43:57 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CKhv4q008288; Thu, 12 Apr 2007 20:43:57 GMT (envelope-from julian) Message-Id: <200704122043.l3CKhv4q008288@repoman.freebsd.org> From: Julian Elischer Date: Thu, 12 Apr 2007 20:43:57 +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/share/misc committers-src.dot 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, 12 Apr 2007 20:43:58 -0000 julian 2007-04-12 20:43:57 UTC FreeBSD src repository Modified files: share/misc committers-src.dot Log: Found the right date for davidxu Revision Changes Path 1.60 +1 -1 src/share/misc/committers-src.dot From owner-cvs-src@FreeBSD.ORG Thu Apr 12 23:14:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACE6216A401; Thu, 12 Apr 2007 23:14:25 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 857B813C457; Thu, 12 Apr 2007 23:14:25 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CNEPvT048867; Thu, 12 Apr 2007 23:14:25 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CNEPAo048866; Thu, 12 Apr 2007 23:14:25 GMT (envelope-from pjd) Message-Id: <200704122314.l3CNEPAo048866@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Thu, 12 Apr 2007 23:14:25 +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/contrib/opensolaris/common/atomic/amd64 atomic.S src/sys/contrib/opensolaris/common/atomic/i386 atomic.S 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, 12 Apr 2007 23:14:25 -0000 pjd 2007-04-12 23:14:25 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/common/atomic/amd64 atomic.S sys/contrib/opensolaris/common/atomic/i386 atomic.S Log: MFp4: Bring back comments. Requested by: jhb Revision Changes Path 1.2 +58 -58 src/sys/contrib/opensolaris/common/atomic/amd64/atomic.S 1.2 +121 -121 src/sys/contrib/opensolaris/common/atomic/i386/atomic.S From owner-cvs-src@FreeBSD.ORG Thu Apr 12 23:16:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35E9B16A420; Thu, 12 Apr 2007 23:16:03 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2368713C455; Thu, 12 Apr 2007 23:16:03 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3CNG3EX049104; Thu, 12 Apr 2007 23:16:03 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3CNG24S049103; Thu, 12 Apr 2007 23:16:02 GMT (envelope-from pjd) Message-Id: <200704122316.l3CNG24S049103@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Thu, 12 Apr 2007 23:16:02 +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/contrib/opensolaris/cmd/zdb zdb.8 src/contrib/opensolaris/cmd/zfs zfs.8 zfs_main.c src/contrib/opensolaris/cmd/zpool zpool.8 src/contrib/opensolaris/cmd/ztest ztest.c src/contrib/opensolaris/lib/libzfs/common libzfs.h libzfs_dataset.c src/sys/contrib/opensolaris/uts/common/fs/zfs ... 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, 12 Apr 2007 23:16:03 -0000 pjd 2007-04-12 23:16:02 UTC FreeBSD src repository Modified files: contrib/opensolaris/cmd/zdb zdb.8 contrib/opensolaris/cmd/zfs zfs.8 zfs_main.c contrib/opensolaris/cmd/zpool zpool.8 contrib/opensolaris/cmd/ztest ztest.c contrib/opensolaris/lib/libzfs/common libzfs.h libzfs_dataset.c sys/contrib/opensolaris/uts/common/fs/zfs dsl_dataset.c zfs_ctldir.c zfs_ioctl.c sys/contrib/opensolaris/uts/common/fs/zfs/sys dmu.h dsl_dataset.h zfs_ioctl.h Log: MFp4: Synchronize with vendor (mostly 'zfs rename -r'). Revision Changes Path 1.2 +0 -4 src/contrib/opensolaris/cmd/zdb/zdb.8 1.2 +75 -47 src/contrib/opensolaris/cmd/zfs/zfs.8 1.2 +32 -12 src/contrib/opensolaris/cmd/zfs/zfs_main.c 1.2 +52 -25 src/contrib/opensolaris/cmd/zpool/zpool.8 1.3 +1 -1 src/contrib/opensolaris/cmd/ztest/ztest.c 1.3 +1 -1 src/contrib/opensolaris/lib/libzfs/common/libzfs.h 1.2 +126 -24 src/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c 1.3 +127 -14 src/sys/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c 1.2 +2 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h 1.2 +1 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h 1.2 +1 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h 1.2 +1 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c 1.2 +10 -3 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 01:39:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23C2416A403; Fri, 13 Apr 2007 01:39:34 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F25BD13C4AD; Fri, 13 Apr 2007 01:39:33 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3D1dXmN088811; Fri, 13 Apr 2007 01:39:33 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3D1dXFe088810; Fri, 13 Apr 2007 01:39:33 GMT (envelope-from pjd) Message-Id: <200704130139.l3D1dXFe088810@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 01:39:33 +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/include Makefile 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: Fri, 13 Apr 2007 01:39:34 -0000 pjd 2007-04-13 01:39:33 UTC FreeBSD src repository Modified files: include Makefile Log: Install only types.h from sys/rpc/. Requested by: ache Explained how by: ru Revision Changes Path 1.270 +9 -1 src/include/Makefile From owner-cvs-src@FreeBSD.ORG Fri Apr 13 03:49:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 126AE16A400; Fri, 13 Apr 2007 03:49:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E19B913C459; Fri, 13 Apr 2007 03:49:22 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3D3nM0A011213; Fri, 13 Apr 2007 03:49:22 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3D3nM4X011212; Fri, 13 Apr 2007 03:49:22 GMT (envelope-from ru) Message-Id: <200704130349.l3D3nM4X011212@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Apr 2007 03:49:22 +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/lib/libc/stdlib strtol.3 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: Fri, 13 Apr 2007 03:49:23 -0000 ru 2007-04-13 03:49:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/stdlib strtol.3 Log: MFC: 1.23: Swap "underflow"/"overflow" in the table header. Revision Changes Path 1.20.2.2 +2 -2 src/lib/libc/stdlib/strtol.3 From owner-cvs-src@FreeBSD.ORG Fri Apr 13 04:07:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D2C816A401; Fri, 13 Apr 2007 04:07:57 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 37E3D13C487; Fri, 13 Apr 2007 04:07:57 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3D47v9m015479; Fri, 13 Apr 2007 04:07:57 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3D47vdi015478; Fri, 13 Apr 2007 04:07:57 GMT (envelope-from mjacob) Message-Id: <200704130407.l3D47vdi015478@repoman.freebsd.org> From: Matt Jacob Date: Fri, 13 Apr 2007 04:07:57 +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/dev/mpt mpt_cam.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: Fri, 13 Apr 2007 04:07:57 -0000 mjacob 2007-04-13 04:07:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mpt mpt_cam.c Log: MFC: Hide bus reset announcements within bootverbose. Revision Changes Path 1.1.2.10 +7 -2 src/sys/dev/mpt/mpt_cam.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 04:09:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F7E516A401; Fri, 13 Apr 2007 04:09:07 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 29F7113C4AD; Fri, 13 Apr 2007 04:09:07 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3D497bO015523; Fri, 13 Apr 2007 04:09:07 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3D497Np015522; Fri, 13 Apr 2007 04:09:07 GMT (envelope-from mjacob) Message-Id: <200704130409.l3D497Np015522@repoman.freebsd.org> From: Matt Jacob Date: Fri, 13 Apr 2007 04:09:07 +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/share/man/man4 mpt.4 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: Fri, 13 Apr 2007 04:09:07 -0000 mjacob 2007-04-13 04:09:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 mpt.4 Log: MFC: Update the man page a bit- also to reflect that testing that Jun Kuriyama did to verify the PCI-Express (Apple Fibre Channel) HBA. Revision Changes Path 1.8.2.3 +60 -12 src/share/man/man4/mpt.4 From owner-cvs-src@FreeBSD.ORG Fri Apr 13 06:42:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E14CA16A403; Fri, 13 Apr 2007 06:42:25 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BCD4F13C448; Fri, 13 Apr 2007 06:42:25 +0000 (UTC) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3D6gPCO051776; Fri, 13 Apr 2007 06:42:25 GMT (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3D6gPuM051774; Fri, 13 Apr 2007 06:42:25 GMT (envelope-from mtm) Message-Id: <200704130642.l3D6gPuM051774@repoman.freebsd.org> From: Mike Makonnen Date: Fri, 13 Apr 2007 06:42:25 +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/etc/rc.d mountd 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: Fri, 13 Apr 2007 06:42:26 -0000 mtm 2007-04-13 06:42:25 UTC FreeBSD src repository Modified files: etc/rc.d mountd Log: o Look for a zfs(1) exports file only if it exists and is readable. If we don't do this and the file doesn't exist mountd(8) will abort. o The mountd(8) daemon creates a pidfile, so use it. Revision Changes Path 1.18 +2 -1 src/etc/rc.d/mountd From owner-cvs-src@FreeBSD.ORG Fri Apr 13 06:58:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B966116A401; Fri, 13 Apr 2007 06:58:09 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from postfix2-g20.free.fr (postfix2-g20.free.fr [212.27.60.43]) by mx1.freebsd.org (Postfix) with ESMTP id 4D12B13C48A; Fri, 13 Apr 2007 06:58:09 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from smtp5-g19.free.fr (smtp5-g19.free.fr [212.27.42.35]) by postfix2-g20.free.fr (Postfix) with ESMTP id B6CC4E53B03; Fri, 13 Apr 2007 07:31:33 +0200 (CEST) Received: from tatooine.tataz.chchile.org (tataz.chchile.org [82.233.239.98]) by smtp5-g19.free.fr (Postfix) with ESMTP id 700E44360C; Fri, 13 Apr 2007 08:31:11 +0200 (CEST) Received: from obiwan.tataz.chchile.org (unknown [192.168.1.25]) by tatooine.tataz.chchile.org (Postfix) with ESMTP id E346C9C387; Fri, 13 Apr 2007 06:30:59 +0000 (UTC) Received: by obiwan.tataz.chchile.org (Postfix, from userid 1000) id B034F405B; Fri, 13 Apr 2007 08:30:59 +0200 (CEST) Date: Fri, 13 Apr 2007 08:30:59 +0200 From: Jeremie Le Hen To: Robert Watson Message-ID: <20070413063059.GH2102@obiwan.tataz.chchile.org> References: <200704101559.l3AFxnk1050646@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200704101559.l3AFxnk1050646@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit [HEAD] src/sys/kern kern_jail.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: Fri, 13 Apr 2007 06:58:09 -0000 Hi, Robert, On Tue, Apr 10, 2007 at 03:59:49PM +0000, Robert Watson wrote: > rwatson 2007-04-10 15:59:49 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_jail.c > Log: > Allow PRIV_NETINET_REUSEPORT in jail. I'm not sure to fully understand this change. Does this concretely mean that a process in a jail can bind a port even if a host's process has already bound this port on INADDR_ANY, without SO_REUSEADDR ? Best regards, -- Jeremie Le Hen < jeremie at le-hen dot org >< ttz at chchile dot org > From owner-cvs-src@FreeBSD.ORG Fri Apr 13 08:38:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6BA8E16A401; Fri, 13 Apr 2007 08:38:49 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4742713C46A; Fri, 13 Apr 2007 08:38:49 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3D8cnOn073092; Fri, 13 Apr 2007 08:38:49 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3D8cnG8073091; Fri, 13 Apr 2007 08:38:49 GMT (envelope-from pjd) Message-Id: <200704130838.l3D8cnG8073091@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 08:38:49 +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/sys eventhandler.h src/sys/kern vfs_subr.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: Fri, 13 Apr 2007 08:38:49 -0000 pjd 2007-04-13 08:38:49 UTC FreeBSD src repository Modified files: sys/sys eventhandler.h sys/kern vfs_subr.c Log: When we are running low on vnodes, there is currently no way to ask other subsystems to release some vnodes. Implement backpressure based on vfs_lowvnodes event (similar to vm_lowmem for memory). Revision Changes Path 1.699 +1 -0 src/sys/kern/vfs_subr.c 1.37 +4 -0 src/sys/sys/eventhandler.h From owner-cvs-src@FreeBSD.ORG Fri Apr 13 08:42:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1EF6916A400; Fri, 13 Apr 2007 08:42:02 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EF24713C480; Fri, 13 Apr 2007 08:42:01 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3D8g1Vc074047; Fri, 13 Apr 2007 08:42:01 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3D8g1c9074046; Fri, 13 Apr 2007 08:42:01 GMT (envelope-from pjd) Message-Id: <200704130842.l3D8g1c9074046@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 08:42:01 +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/contrib/opensolaris/uts/common/fs dnlc.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: Fri, 13 Apr 2007 08:42:02 -0000 pjd 2007-04-13 08:42:01 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs dnlc.c Log: Fix vnodes starvation caused by DNLC (ZFS name cache): - Tune number of namecache entires better (based on desiredvnodes). - Handle vfs_lowvnodes event by releasing requested number of name cache entries, but no less than 5%. Reported by: simokawa Revision Changes Path 1.2 +20 -1 src/sys/contrib/opensolaris/uts/common/fs/dnlc.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 08:49:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DB9E16A405; Fri, 13 Apr 2007 08:49:48 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id 3231113C484; Fri, 13 Apr 2007 08:49:48 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id CBE4548805; Fri, 13 Apr 2007 10:49:46 +0200 (CEST) Received: from localhost (154.81.datacomsa.pl [195.34.81.154]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 5077B487FD; Fri, 13 Apr 2007 10:49:42 +0200 (CEST) Date: Fri, 13 Apr 2007 10:49:30 +0200 From: Pawel Jakub Dawidek To: Mike Makonnen Message-ID: <20070413084930.GB3859@garage.freebsd.pl> References: <200704130642.l3D6gPuM051774@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7ZAtKRhVyVSsbBD2" Content-Disposition: inline In-Reply-To: <200704130642.l3D6gPuM051774@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-2.6 required=3.0 tests=BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountd 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: Fri, 13 Apr 2007 08:49:48 -0000 --7ZAtKRhVyVSsbBD2 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 13, 2007 at 06:42:25AM +0000, Mike Makonnen wrote: > mtm 2007-04-13 06:42:25 UTC >=20 > FreeBSD src repository >=20 > Modified files: > etc/rc.d mountd=20 > Log: > o Look for a zfs(1) exports file only if it exists and is readable. If > we don't do this and the file doesn't exist mountd(8) will abort. Hmm, I thought I tested mountd(8) for a case when some of exports files were missing... Anyway, I need to change it somehow by install for example an empty /etc/zfs/exports (not really nice), because I want to handle situation where one boots his system with zfs_enable=3D"YES", but no /etc/zfs/exports and then start to export ZFS file systems over NFS. Currently it won't work without a reboot, because mountd(8) is skipping non-existing /etc/zfs/exports. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --7ZAtKRhVyVSsbBD2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGH0QaForvXbEpPzQRAv+kAKD2FCamHIkMiha/Cfd3s0Ye/cgPHgCgwf+e YTabRAmdDO3HnvZSgMbQN0w= =zKYW -----END PGP SIGNATURE----- --7ZAtKRhVyVSsbBD2-- From owner-cvs-src@FreeBSD.ORG Fri Apr 13 09:34:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06F1616A400; Fri, 13 Apr 2007 09:34:49 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: from mx1.ethionet.et (mx1.ethionet.et [213.55.64.53]) by mx1.freebsd.org (Postfix) with ESMTP id 6826B13C459; Fri, 13 Apr 2007 09:34:48 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: from mx1.ethionet.et (localhost [127.0.0.1]) by localhost.ethionet.et (Postfix) with ESMTP id 8030A50FC; Fri, 13 Apr 2007 12:31:03 +0300 (EAT) Received: from rogue.navcom.lan (unknown [213.55.64.99])by mx1.ethionet.et ( Postfix) with SMTP id B29F45277;Fri, 13 Apr 2007 12:30:55 +0300 (EAT) Received: by rogue.navcom.lan (Postfix, from userid 1001)id 62259120F; Fri, 13 Apr 2007 12:37:26 +0300 (EAT) Date: Fri, 13 Apr 2007 12:37:26 +0300 From: Mike Makonnen To: Pawel Jakub Dawidek Message-ID: <20070413093726.GA2496@rogue.navcom.lan> References: <200704130642.l3D6gPuM051774@repoman.freebsd.org> <2007041308493 0.GB3859@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070413084930.GB3859@garage.freebsd.pl> User-Agent: Mutt/1.4.2.2i X-Operating-System: FreeBSD/7.0-CURRENT (i386) X-imss-version: 2.46 X-imss-result: Passed X-imss-scores: Clean:99.90000 C:2 M:3 S:5 R:5 X-imss-settings: Baseline:4 C:3 M:3 S:4 R:3 (1.0000 1.0000) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountd 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: Fri, 13 Apr 2007 09:34:49 -0000 On Fri, Apr 13, 2007 at 10:49:30AM +0200, Pawel Jakub Dawidek wrote: > Anyway, I need to change it somehow by install for example an empty > /etc/zfs/exports (not really nice), because I want to handle situation > where one boots his system with zfs_enable="YES", but no > /etc/zfs/exports and then start to export ZFS file systems over NFS. > Currently it won't work without a reboot, because mountd(8) is skipping > non-existing /etc/zfs/exports. One option is simply to issue: /etc/rc.d/mountd restart after nfs sharing is enabled. Cheers. -- Mike Makonnen | GPG-KEY: http://people.freebsd.org/~mtm/mtm.asc mmakonnen @ gmail.com | AC7B 5672 2D11 F4D0 EBF8 5279 5359 2B82 7CD4 1F55 mtm @ FreeBSD.Org | FreeBSD - http://www.freebsd.org From owner-cvs-src@FreeBSD.ORG Fri Apr 13 10:25:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32D2B16A400; Fri, 13 Apr 2007 10:25:50 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0E7DC13C46A; Fri, 13 Apr 2007 10:25:50 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DAPnKu001251; Fri, 13 Apr 2007 10:25:49 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DAPnMW001250; Fri, 13 Apr 2007 10:25:49 GMT (envelope-from pjd) Message-Id: <200704131025.l3DAPnMW001250@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 10:25:49 +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/usr.sbin/mountd mountd.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: Fri, 13 Apr 2007 10:25:50 -0000 pjd 2007-04-13 10:25:49 UTC FreeBSD src repository Modified files: usr.sbin/mountd mountd.c Log: Fatal error is only when cannot open any of the given exports files. Revision Changes Path 1.94 +9 -2 src/usr.sbin/mountd/mountd.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 10:27:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D96916A402; Fri, 13 Apr 2007 10:27:31 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id C29C613C459; Fri, 13 Apr 2007 10:27:30 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 6FF8648805; Fri, 13 Apr 2007 12:27:29 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 784F148800; Fri, 13 Apr 2007 12:27:24 +0200 (CEST) Date: Fri, 13 Apr 2007 12:27:15 +0200 From: Pawel Jakub Dawidek To: Mike Makonnen Message-ID: <20070413102715.GC5172@garage.freebsd.pl> References: <200704130642.l3D6gPuM051774@repoman.freebsd.org> <20070413084930.GB3859@garage.freebsd.pl> <20070413093726.GA2496@rogue.navcom.lan> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="f+W+jCU1fRNres8c" Content-Disposition: inline In-Reply-To: <20070413093726.GA2496@rogue.navcom.lan> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountd 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: Fri, 13 Apr 2007 10:27:31 -0000 --f+W+jCU1fRNres8c Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 13, 2007 at 12:37:26PM +0300, Mike Makonnen wrote: > On Fri, Apr 13, 2007 at 10:49:30AM +0200, Pawel Jakub Dawidek wrote: > > Anyway, I need to change it somehow by install for example an empty > > /etc/zfs/exports (not really nice), because I want to handle situation > > where one boots his system with zfs_enable=3D"YES", but no > > /etc/zfs/exports and then start to export ZFS file systems over NFS. > > Currently it won't work without a reboot, because mountd(8) is skipping > > non-existing /etc/zfs/exports. >=20 > One option is simply to issue: /etc/rc.d/mountd restart > after nfs sharing is enabled. I fixed it to log a warning when file cannot be open and about only when none of the given files were open properly. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --f+W+jCU1fRNres8c Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGH1sDForvXbEpPzQRAruYAJ97UdnKY72ubWr0/TGItda2vPxkoACfaunx zzdoeobnbcn4yAYutBKRjcw= =+b8W -----END PGP SIGNATURE----- --f+W+jCU1fRNres8c-- From owner-cvs-src@FreeBSD.ORG Fri Apr 13 10:29:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C83F516A418; Fri, 13 Apr 2007 10:29:25 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A334913C457; Fri, 13 Apr 2007 10:29:25 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DATPsB001414; Fri, 13 Apr 2007 10:29:25 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DATPbo001413; Fri, 13 Apr 2007 10:29:25 GMT (envelope-from pjd) Message-Id: <200704131029.l3DATPbo001413@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 10:29:25 +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/etc/rc.d mountd 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: Fri, 13 Apr 2007 10:29:25 -0000 pjd 2007-04-13 10:29:25 UTC FreeBSD src repository Modified files: etc/rc.d mountd Log: mountd(8) was changed to only abort when all given exports files cannot be open, so we not longer has to check if /etc/zfs/exports exists. Revision Changes Path 1.19 +1 -1 src/etc/rc.d/mountd From owner-cvs-src@FreeBSD.ORG Fri Apr 13 10:35:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 628A916A402; Fri, 13 Apr 2007 10:35:52 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc3-cdif2-0-0-cust64.cdif.cable.ntl.com [81.106.128.65]) by mx1.freebsd.org (Postfix) with ESMTP id E01D713C468; Fri, 13 Apr 2007 10:35:51 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HcJ8A-000DLC-KW; Fri, 13 Apr 2007 11:35:50 +0100 Date: Fri, 13 Apr 2007 11:35:50 +0100 From: Ceri Davies To: Pawel Jakub Dawidek Message-ID: <20070413103550.GA90410@submonkey.net> References: <200704131029.l3DATPbo001413@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZmeoGP/RI+eIV+cU" Content-Disposition: inline In-Reply-To: <200704131029.l3DATPbo001413@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.14 (2007-02-12) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountd 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: Fri, 13 Apr 2007 10:35:52 -0000 --ZmeoGP/RI+eIV+cU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 13, 2007 at 10:29:25AM +0000, Pawel Jakub Dawidek wrote: > pjd 2007-04-13 10:29:25 UTC >=20 > FreeBSD src repository >=20 > Modified files: > etc/rc.d mountd=20 > Log: > mountd(8) was changed to only abort when all given exports files cannot= be > open, so we not longer has to check if /etc/zfs/exports exists. True, but it doesn't hurt to leave the check in. That way, if I'm not exporting anything, I don't receive a spurious error every boot (as far as I'm aware, /etc/zfs/exports only gets created the first time you export something).. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --ZmeoGP/RI+eIV+cU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGH10GocfcwTS3JF8RApR1AJ4to8EvMpZTnLL+iYclm500EfccWQCeLh7f lsfsUoPbCSv9nDCPLVyExPs= =B0Ey -----END PGP SIGNATURE----- --ZmeoGP/RI+eIV+cU-- From owner-cvs-src@FreeBSD.ORG Fri Apr 13 10:54:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 826B316A406; Fri, 13 Apr 2007 10:54:26 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id 2271D13C4AE; Fri, 13 Apr 2007 10:54:25 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 28045487FA; Fri, 13 Apr 2007 12:54:24 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 58465487F0; Fri, 13 Apr 2007 12:54:17 +0200 (CEST) Date: Fri, 13 Apr 2007 12:54:08 +0200 From: Pawel Jakub Dawidek To: Ceri Davies Message-ID: <20070413105408.GD5172@garage.freebsd.pl> References: <200704131029.l3DATPbo001413@repoman.freebsd.org> <20070413103550.GA90410@submonkey.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="eheScQNz3K90DVRs" Content-Disposition: inline In-Reply-To: <20070413103550.GA90410@submonkey.net> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountd 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: Fri, 13 Apr 2007 10:54:26 -0000 --eheScQNz3K90DVRs Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 13, 2007 at 11:35:50AM +0100, Ceri Davies wrote: > On Fri, Apr 13, 2007 at 10:29:25AM +0000, Pawel Jakub Dawidek wrote: > > pjd 2007-04-13 10:29:25 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > etc/rc.d mountd=20 > > Log: > > mountd(8) was changed to only abort when all given exports files cann= ot be > > open, so we not longer has to check if /etc/zfs/exports exists. >=20 > True, but it doesn't hurt to leave the check in. That way, if I'm not > exporting anything, I don't receive a spurious error every boot (as far > as I'm aware, /etc/zfs/exports only gets created the first time you > export something).. Right, but with that check in-place you won't be able to start playing with ZFS sharing, because although you have zfs_enable=3D"YES" in your /etc/rc.conf, mountd will ignore /etc/zfs/exports. I'll add creating empty /etc/zfs/exports file from rc.d/zfs script when zfs_enable=3D"YES" is defined, so we won't get warnings from mountd. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --eheScQNz3K90DVRs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGH2FQForvXbEpPzQRAsW7AKDKFSkL68ihbY+o9ATNvu+i3Tfl9gCg8iGD XylsuWWYvrpf3sVo65VnO0E= =unCF -----END PGP SIGNATURE----- --eheScQNz3K90DVRs-- From owner-cvs-src@FreeBSD.ORG Fri Apr 13 10:59:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4643A16A401; Fri, 13 Apr 2007 10:59:12 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc3-cdif2-0-0-cust64.cdif.cable.ntl.com [81.106.128.65]) by mx1.freebsd.org (Postfix) with ESMTP id E29E413C448; Fri, 13 Apr 2007 10:59:11 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HcJUk-000AmQ-Sd; Fri, 13 Apr 2007 11:59:10 +0100 Date: Fri, 13 Apr 2007 11:59:10 +0100 From: Ceri Davies To: Pawel Jakub Dawidek Message-ID: <20070413105910.GB90410@submonkey.net> References: <200704131029.l3DATPbo001413@repoman.freebsd.org> <20070413103550.GA90410@submonkey.net> <20070413105408.GD5172@garage.freebsd.pl> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RlgFhasKO3bfRJ5j" Content-Disposition: inline In-Reply-To: <20070413105408.GD5172@garage.freebsd.pl> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.14 (2007-02-12) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountd 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: Fri, 13 Apr 2007 10:59:12 -0000 --RlgFhasKO3bfRJ5j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 13, 2007 at 12:54:08PM +0200, Pawel Jakub Dawidek wrote: > On Fri, Apr 13, 2007 at 11:35:50AM +0100, Ceri Davies wrote: > > On Fri, Apr 13, 2007 at 10:29:25AM +0000, Pawel Jakub Dawidek wrote: > > > pjd 2007-04-13 10:29:25 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > etc/rc.d mountd=20 > > > Log: > > > mountd(8) was changed to only abort when all given exports files ca= nnot be > > > open, so we not longer has to check if /etc/zfs/exports exists. > >=20 > > True, but it doesn't hurt to leave the check in. That way, if I'm not > > exporting anything, I don't receive a spurious error every boot (as far > > as I'm aware, /etc/zfs/exports only gets created the first time you > > export something).. >=20 > Right, but with that check in-place you won't be able to start playing > with ZFS sharing, because although you have zfs_enable=3D"YES" in your > /etc/rc.conf, mountd will ignore /etc/zfs/exports. >=20 > I'll add creating empty /etc/zfs/exports file from rc.d/zfs script when > zfs_enable=3D"YES" is defined, so we won't get warnings from mountd. OK, thanks. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --RlgFhasKO3bfRJ5j Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGH2J+ocfcwTS3JF8RAmg0AJ9JAVLj7RPcI2taUrtdqa7zpkfC6ACdHCRm /k9eF/meoiHQsKax+2B4m50= =DvMc -----END PGP SIGNATURE----- --RlgFhasKO3bfRJ5j-- From owner-cvs-src@FreeBSD.ORG Fri Apr 13 11:02:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3068316A401; Fri, 13 Apr 2007 11:02:07 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0B96E13C483; Fri, 13 Apr 2007 11:02:07 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DB26kt007248; Fri, 13 Apr 2007 11:02:06 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DB269B007247; Fri, 13 Apr 2007 11:02:06 GMT (envelope-from pjd) Message-Id: <200704131102.l3DB269B007247@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 11:02:06 +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/etc/rc.d zfs 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: Fri, 13 Apr 2007 11:02:07 -0000 pjd 2007-04-13 11:02:06 UTC FreeBSD src repository Modified files: etc/rc.d zfs Log: - Create an empty /etc/zfs/exports file when zfs_enable="YES" and we don't NFS-share anything. This way we can safely start mountd with /etc/zfs/exports and mountd won't complain. Pointed out by: ceri - Move 'zfs volinit' before 'zfs mount -a' and 'zfs volfini' after 'zfs unmount -a'. Revision Changes Path 1.2 +5 -2 src/etc/rc.d/zfs From owner-cvs-src@FreeBSD.ORG Fri Apr 13 14:29:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5157B16A400; Fri, 13 Apr 2007 14:29:39 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2871313C489; Fri, 13 Apr 2007 14:29:39 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DETdqV055213; Fri, 13 Apr 2007 14:29:39 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DETdA7055212; Fri, 13 Apr 2007 14:29:39 GMT (envelope-from ahze) Message-Id: <200704131429.l3DETdA7055212@repoman.freebsd.org> From: Michael Johnson Date: Fri, 13 Apr 2007 14:29:39 +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/share/misc committers-ports.dot 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: Fri, 13 Apr 2007 14:29:39 -0000 ahze 2007-04-13 14:29:39 UTC FreeBSD src repository (ports committer) Modified files: share/misc committers-ports.dot Log: Pav and marcus co-mentored me for a few weeks while adamw was busy in school Revision Changes Path 1.44 +2 -0 src/share/misc/committers-ports.dot From owner-cvs-src@FreeBSD.ORG Fri Apr 13 14:55:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C81716A405; Fri, 13 Apr 2007 14:55:20 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EDF6B13C4C9; Fri, 13 Apr 2007 14:55:19 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DEtJxK059951; Fri, 13 Apr 2007 14:55:19 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DEtJEW059950; Fri, 13 Apr 2007 14:55:19 GMT (envelope-from csjp) Message-Id: <200704131455.l3DEtJEW059950@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Fri, 13 Apr 2007 14:55:19 +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/security/audit audit.c audit.h audit_arg.c audit_bsm.c audit_bsm_token.c audit_private.h audit_syscalls.c src/sys/sys proc.h 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: Fri, 13 Apr 2007 14:55:20 -0000 csjp 2007-04-13 14:55:19 UTC FreeBSD src repository Modified files: sys/security/audit audit.c audit.h audit_arg.c audit_bsm.c audit_bsm_token.c audit_private.h audit_syscalls.c sys/sys proc.h Log: Fix the handling of IPv6 addresses for subject and process BSM audit tokens. Currently, we do not support the set{get}audit_addr(2) system calls which allows processes like sshd to set extended or ip6 information for subject tokens. The approach that was taken was to change the process audit state slightly to use an extended terminal ID in the kernel. This allows us to store both IPv4 IPv6 addresses. In the case that an IPv4 address is in use, we convert the terminal ID from an struct auditinfo_addr to a struct auditinfo. If getaudit(2) is called when the subject is bound to an ip6 address, we return E2BIG. - Change the internal audit record to store an extended terminal ID - Introduce ARG_TERMID_ADDR - Change the kaudit <-> BSM conversion process so that we are using the appropriate subject token. If the address associated with the subject is IPv4, we use the standard subject32 token. If the subject has an IPv6 address associated with them, we use an extended subject32 token. - Fix a couple of endian issues where we do a couple of byte swaps when we shouldn't be. IP addresses are already in the correct byte order, so reading the ip6 address 4 bytes at a time and swapping them results in in-correct address data. It should be noted that the same issue was found in the openbsm library and it has been changed there too on the vendor branch - Change A_GETPINFO to use the appropriate structures - Implement A_GETPINFO_ADDR which basically does what A_GETPINFO does, but can also handle ip6 addresses - Adjust get{set}audit(2) syscalls to convert the data auditinfo <-> auditinfo_addr - Fully implement set{get}audit_addr(2) NOTE: This adds the ability for processes to correctly set extended subject information. The appropriate userspace utilities still need to be updated. MFC after: 1 month Reviewed by: rwatson Obtained from: TrustedBSD Revision Changes Path 1.25 +1 -1 src/sys/security/audit/audit.c 1.10 +1 -1 src/sys/security/audit/audit.h 1.11 +2 -2 src/sys/security/audit/audit_arg.c 1.16 +34 -10 src/sys/security/audit/audit_bsm.c 1.10 +12 -12 src/sys/security/audit/audit_bsm_token.c 1.13 +2 -0 src/sys/security/audit/audit_private.h 1.13 +52 -7 src/sys/security/audit/audit_syscalls.c 1.475 +1 -1 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Fri Apr 13 15:01:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D655316A401; Fri, 13 Apr 2007 15:01:09 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 89E8013C4AE; Fri, 13 Apr 2007 15:01:09 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l3DF10RU002521; Fri, 13 Apr 2007 09:01:00 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <461F9B1F.5080908@samsco.org> Date: Fri, 13 Apr 2007 09:00:47 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: Mike Makonnen References: <200704130642.l3D6gPuM051774@repoman.freebsd.org> In-Reply-To: <200704130642.l3D6gPuM051774@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Fri, 13 Apr 2007 09:01:00 -0600 (MDT) X-Spam-Status: No, score=-1.4 required=5.5 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountd 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: Fri, 13 Apr 2007 15:01:09 -0000 Mike Makonnen wrote: > mtm 2007-04-13 06:42:25 UTC > > FreeBSD src repository > > Modified files: > etc/rc.d mountd > Log: > o Look for a zfs(1) exports file only if it exists and is readable. If > we don't do this and the file doesn't exist mountd(8) will abort. > o The mountd(8) daemon creates a pidfile, so use it. > > Revision Changes Path > 1.18 +2 -1 src/etc/rc.d/mountd It's been discussed before that mountd shouldn't abort, it should always be HUP-able. Scott From owner-cvs-src@FreeBSD.ORG Fri Apr 13 15:07:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9983B16A479; Fri, 13 Apr 2007 15:07:11 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0996313C4AE; Fri, 13 Apr 2007 15:07:11 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DF7ATv062845; Fri, 13 Apr 2007 15:07:10 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DF7AAX062844; Fri, 13 Apr 2007 15:07:10 GMT (envelope-from emaste) Message-Id: <200704131507.l3DF7AAX062844@repoman.freebsd.org> From: Ed Maste Date: Fri, 13 Apr 2007 15:07:10 +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/sbin/dhclient dhclient-script 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: Fri, 13 Apr 2007 15:07:11 -0000 emaste 2007-04-13 15:07:10 UTC FreeBSD src repository Modified files: sbin/dhclient dhclient-script Log: The minimum size of an RFC3442 destination descriptor is five bytes, so correct test to -ge 5. Without this change an RFC3442 encoded default route would be ignored. Reported by: Cedric Jonas Revision Changes Path 1.16 +1 -1 src/sbin/dhclient/dhclient-script From owner-cvs-src@FreeBSD.ORG Fri Apr 13 16:07:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA13516A400; Fri, 13 Apr 2007 16:07:25 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C226213C48A; Fri, 13 Apr 2007 16:07:25 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DG7PQk077676; Fri, 13 Apr 2007 16:07:25 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DG7PZr077675; Fri, 13 Apr 2007 16:07:25 GMT (envelope-from kientzle) Message-Id: <200704131607.l3DG7PZr077675@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 13 Apr 2007 16:07:25 +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/lib/libarchive archive_read_support_format_cpio.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: Fri, 13 Apr 2007 16:07:26 -0000 kientzle 2007-04-13 16:07:25 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_cpio.c Log: Portability. Revision Changes Path 1.23 +2 -0 src/lib/libarchive/archive_read_support_format_cpio.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 16:07:30 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08C9916A476; Fri, 13 Apr 2007 16:07:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CAC7813C44B; Fri, 13 Apr 2007 16:07:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DG7TMU077736; Fri, 13 Apr 2007 16:07:29 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DG7TjC077735; Fri, 13 Apr 2007 16:07:29 GMT (envelope-from alc) Message-Id: <200704131607.l3DG7TjC077735@repoman.freebsd.org> From: Alan Cox Date: Fri, 13 Apr 2007 16:07:29 +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/amd64/amd64 pmap.c src/sys/i386/i386 pmap.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: Fri, 13 Apr 2007 16:07:30 -0000 alc 2007-04-13 16:07:29 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c Log: Eliminate the misuse of PG_FRAME to truncate a virtual address to a virtual page boundary. Reviewed by: ru@ Revision Changes Path 1.582 +1 -1 src/sys/amd64/amd64/pmap.c 1.587 +3 -3 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 16:08:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35E4416A402; Fri, 13 Apr 2007 16:08:24 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0E97513C45B; Fri, 13 Apr 2007 16:08:24 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DG8NMw077834; Fri, 13 Apr 2007 16:08:23 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DG8Nci077833; Fri, 13 Apr 2007 16:08:23 GMT (envelope-from kientzle) Message-Id: <200704131608.l3DG8Nci077833@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 13 Apr 2007 16:08:23 +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/usr.bin/tar read.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: Fri, 13 Apr 2007 16:08:24 -0000 kientzle 2007-04-13 16:08:23 UTC FreeBSD src repository Modified files: usr.bin/tar read.c Log: Portability. Thanks to: Martin Koeppe for testing on Interix Revision Changes Path 1.30 +2 -0 src/usr.bin/tar/read.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 16:21:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EE1716A402 for ; Fri, 13 Apr 2007 16:21:39 +0000 (UTC) (envelope-from rnsanchez@wait4.org) Received: from sumo.dreamhost.com (sumo.dreamhost.com [66.33.216.29]) by mx1.freebsd.org (Postfix) with ESMTP id 8A3DE13C487 for ; Fri, 13 Apr 2007 16:21:39 +0000 (UTC) (envelope-from rnsanchez@wait4.org) Received: from spunkymail-a19.g.dreamhost.com (sd-green-bigip-66.dreamhost.com [208.97.132.66]) by sumo.dreamhost.com (Postfix) with ESMTP id 6E78A1854E8 for ; Fri, 13 Apr 2007 08:59:50 -0700 (PDT) Received: from sauron.lan.box (unknown [200.180.163.208]) by spunkymail-a19.g.dreamhost.com (Postfix) with ESMTP id F1942116E1; Fri, 13 Apr 2007 08:59:45 -0700 (PDT) Date: Fri, 13 Apr 2007 12:59:45 -0300 From: Ricardo Nabinger Sanchez To: Ruslan Ermilov Message-Id: <20070413125945.5af1ced5.rnsanchez@wait4.org> In-Reply-To: <200704130349.l3D3nM4X011212@repoman.freebsd.org> References: <200704130349.l3D3nM4X011212@repoman.freebsd.org> Organization: SYS_WAIT4 X-Mailer: Sylpheed 2.4.0beta7 (GTK+ 2.10.9; i386-unknown-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/stdlib strtol.3 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: Fri, 13 Apr 2007 16:21:39 -0000 On Fri, 13 Apr 2007 03:49:22 +0000 (UTC) Ruslan Ermilov wrote: > MFC: 1.23: Swap "underflow"/"overflow" in the table header. Thank you! :) -- Ricardo Nabinger Sanchez Powered by FreeBSD "Left to themselves, things tend to go from bad to worse." From owner-cvs-src@FreeBSD.ORG Fri Apr 13 17:27:30 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0496616A405; Fri, 13 Apr 2007 17:27:30 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: from mx1.ethionet.et (mx1.ethionet.et [213.55.64.53]) by mx1.freebsd.org (Postfix) with ESMTP id 516A113C48C; Fri, 13 Apr 2007 17:27:29 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: from mx1.ethionet.et (localhost [127.0.0.1]) by localhost.ethionet.et (Postfix) with ESMTP id 67F6B4791; Fri, 13 Apr 2007 20:23:45 +0300 (EAT) Received: from rogue.navcom.lan (unknown [213.55.64.99])by mx1.ethionet.et ( Postfix) with SMTP id 20F195099;Fri, 13 Apr 2007 20:23:44 +0300 (EAT) Received: by rogue.navcom.lan (Postfix, from userid 1001)id 76AED115B; Fri, 13 Apr 2007 20:30:16 +0300 (EAT) Date: Fri, 13 Apr 2007 20:30:16 +0300 From: Mike Makonnen To: Pawel Jakub Dawidek Message-ID: <20070413173016.GA2248@rogue.navcom.lan> References: <200704131102.l3DB269B007247@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200704131102.l3DB269B007247@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i X-Operating-System: FreeBSD/7.0-CURRENT (i386) X-imss-version: 2.46 X-imss-result: Passed X-imss-scores: Clean:99.90000 C:2 M:3 S:5 R:5 X-imss-settings: Baseline:4 C:3 M:3 S:4 R:3 (1.0000 1.0000) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d zfs 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: Fri, 13 Apr 2007 17:27:30 -0000 On Fri, Apr 13, 2007 at 11:02:06AM +0000, Pawel Jakub Dawidek wrote: > pjd 2007-04-13 11:02:06 UTC > > - Move 'zfs volinit' before 'zfs mount -a' and 'zfs volfini' after > 'zfs unmount -a'. > Hi Pawel, Is it necessary to run this script on shutdown? The reason I ask is because I usually get "device busy" errors on shutdown when this script is run. Also, I often shutdown to single-user to install packages or do an installworld from my portable usb hard drive and I end up having to remount it. It's no big deal but it's an inconvenience. Given that data integrity is one of the big pluses of ZFS can we NOT have this script run at shutdown? Cheers. -- Mike Makonnen | GPG-KEY: http://people.freebsd.org/~mtm/mtm.asc mmakonnen @ gmail.com | AC7B 5672 2D11 F4D0 EBF8 5279 5359 2B82 7CD4 1F55 mtm @ FreeBSD.Org | FreeBSD - http://www.freebsd.org From owner-cvs-src@FreeBSD.ORG Fri Apr 13 18:09:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3F5516A401; Fri, 13 Apr 2007 18:09:08 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 8726E13C458; Fri, 13 Apr 2007 18:09:08 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 90C822090; Fri, 13 Apr 2007 20:08:48 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 11C492087; Fri, 13 Apr 2007 20:08:48 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id EC2B150DD; Fri, 13 Apr 2007 20:08:47 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Mike Makonnen References: <200704131102.l3DB269B007247@repoman.freebsd.org> <20070413173016.GA2248@rogue.navcom.lan> Date: Fri, 13 Apr 2007 20:08:47 +0200 In-Reply-To: <20070413173016.GA2248@rogue.navcom.lan> (Mike Makonnen's message of "Fri, 13 Apr 2007 20:30:16 +0300") Message-ID: <86zm5ckuz4.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Pawel Jakub Dawidek , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d zfs 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: Fri, 13 Apr 2007 18:09:09 -0000 Mike Makonnen writes: > On Fri, Apr 13, 2007 at 11:02:06AM +0000, Pawel Jakub Dawidek wrote: > > pjd 2007-04-13 11:02:06 UTC > > - Move 'zfs volinit' before 'zfs mount -a' and 'zfs volfini' after > > 'zfs unmount -a'. > Is it necessary to run this script on shutdown? Probably not... that was my decision, and I apparently didn't think it through. Still nice to have a 'stop' command, but we should remove the shutdown keyword. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Fri Apr 13 18:15:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABF7516A403; Fri, 13 Apr 2007 18:15:08 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8501A13C448; Fri, 13 Apr 2007 18:15:08 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DIF8jI011844; Fri, 13 Apr 2007 18:15:08 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DIF8kG011842; Fri, 13 Apr 2007 18:15:08 GMT (envelope-from maxim) Message-Id: <200704131815.l3DIF8kG011842@repoman.freebsd.org> From: Maxim Konovalov Date: Fri, 13 Apr 2007 18:15:07 +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/dev/usb usbdevs 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: Fri, 13 Apr 2007 18:15:08 -0000 maxim 2007-04-13 18:15:07 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs Log: o Extend the list of supported CDMA-2000 terminals. Submitted by: R.Mahmatkhanov MFC after: 10 days Revision Changes Path 1.291 +2 -2 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Fri Apr 13 18:25:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F3D216A502; Fri, 13 Apr 2007 18:25:04 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 77EF413C45A; Fri, 13 Apr 2007 18:25:04 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DIP4x8013541; Fri, 13 Apr 2007 18:25:04 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DIP43J013540; Fri, 13 Apr 2007 18:25:04 GMT (envelope-from jkim) Message-Id: <200704131825.l3DIP43J013540@repoman.freebsd.org> From: Jung-uk Kim Date: Fri, 13 Apr 2007 18:25:04 +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/dev/bge if_bge.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: Fri, 13 Apr 2007 18:25:04 -0000 jkim 2007-04-13 18:25:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/bge if_bge.c Log: MFC: 1.187 Enable MSI support on RELENG_6. Revision Changes Path 1.91.2.22 +3 -3 src/sys/dev/bge/if_bge.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 18:46:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 791E116A400; Fri, 13 Apr 2007 18:46:36 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5231113C489; Fri, 13 Apr 2007 18:46:36 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DIka4B016848; Fri, 13 Apr 2007 18:46:36 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DIkaNt016847; Fri, 13 Apr 2007 18:46:36 GMT (envelope-from des) Message-Id: <200704131846.l3DIkaNt016847@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 13 Apr 2007 18:46:35 +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/etc/rc.d zfs 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: Fri, 13 Apr 2007 18:46:36 -0000 des 2007-04-13 18:46:35 UTC FreeBSD src repository Modified files: etc/rc.d zfs Log: Remove the shutdown keyword. It just adds noise to the shutdown process. Revision Changes Path 1.3 +1 -1 src/etc/rc.d/zfs From owner-cvs-src@FreeBSD.ORG Fri Apr 13 18:50:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 312F816A404; Fri, 13 Apr 2007 18:50:05 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 08BE113C46E; Fri, 13 Apr 2007 18:50:05 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DIo471016956; Fri, 13 Apr 2007 18:50:04 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DIo47w016954; Fri, 13 Apr 2007 18:50:04 GMT (envelope-from pjd) Message-Id: <200704131850.l3DIo47w016954@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 18:50:04 +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/contrib/opensolaris/uts/common/fs/zfs arc.c dbuf.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: Fri, 13 Apr 2007 18:50:05 -0000 pjd 2007-04-13 18:50:03 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs arc.c dbuf.c Log: Fix overflow, which was causing endless loops when 32bit machine had more than 2GB of RAM. This was because our physmem is long and 'physmem*PAGESIZE' can be negative for more than 2GB of memory. Reported by: Andrey V. Elsukov It is not yet tested by Andrey, so there can be other problems, but this was definiately a bug, so I'm committing a fix now. Revision Changes Path 1.8 +2 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/arc.c 1.2 +1 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/dbuf.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 19:04:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D3C016A403; Fri, 13 Apr 2007 19:04:13 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: from mx1.ethionet.et (mx1.ethionet.et [213.55.64.53]) by mx1.freebsd.org (Postfix) with ESMTP id 9DBBA13C448; Fri, 13 Apr 2007 19:04:12 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: from mx1.ethionet.et (localhost [127.0.0.1]) by localhost.ethionet.et (Postfix) with ESMTP id 171A35052; Fri, 13 Apr 2007 22:00:29 +0300 (EAT) Received: from rogue.navcom.lan (unknown [213.55.64.99])by mx1.ethionet.et ( Postfix) with SMTP id DA66B5020;Fri, 13 Apr 2007 22:00:28 +0300 (EAT) Received: by rogue.navcom.lan (Postfix, from userid 1001)id 80C211182; Fri, 13 Apr 2007 22:07:02 +0300 (EAT) Date: Fri, 13 Apr 2007 22:07:01 +0300 From: Mike Makonnen To: Dag-Erling Smorgrav Message-ID: <20070413190701.GA26941@rogue.navcom.lan> References: <200704131846.l3DIkaNt016847@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200704131846.l3DIkaNt016847@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i X-Operating-System: FreeBSD/7.0-CURRENT (i386) X-imss-version: 2.46 X-imss-result: Passed X-imss-scores: Clean:99.90000 C:2 M:3 S:5 R:5 X-imss-settings: Baseline:4 C:3 M:3 S:4 R:3 (1.0000 1.0000) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d zfs 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: Fri, 13 Apr 2007 19:04:13 -0000 On Fri, Apr 13, 2007 at 06:46:35PM +0000, Dag-Erling Smorgrav wrote: > des 2007-04-13 18:46:35 UTC > > FreeBSD src repository > > Modified files: > etc/rc.d zfs > Log: > Remove the shutdown keyword. It just adds noise to the shutdown process. > > Revision Changes Path > 1.3 +1 -1 src/etc/rc.d/zfs Thanks! -- Mike Makonnen | GPG-KEY: http://people.freebsd.org/~mtm/mtm.asc mmakonnen @ gmail.com | AC7B 5672 2D11 F4D0 EBF8 5279 5359 2B82 7CD4 1F55 mtm @ FreeBSD.Org | FreeBSD - http://www.freebsd.org From owner-cvs-src@FreeBSD.ORG Fri Apr 13 21:03:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2209416A402; Fri, 13 Apr 2007 21:03:43 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ED91E13C480; Fri, 13 Apr 2007 21:03:42 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DL3g0S051955; Fri, 13 Apr 2007 21:03:42 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DL3gKa051953; Fri, 13 Apr 2007 21:03:42 GMT (envelope-from ru) Message-Id: <200704132103.l3DL3gKa051953@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Apr 2007 21:03:42 +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/usr.sbin/pkg_install/sign main.c stand.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: Fri, 13 Apr 2007 21:03:43 -0000 ru 2007-04-13 21:03:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/sign main.c stand.c Log: MFC: Fix the logic bug and static linkage. Revision Changes Path 1.2.14.1 +2 -2 src/usr.sbin/pkg_install/sign/main.c 1.2.14.1 +1 -1 src/usr.sbin/pkg_install/sign/stand.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 21:30:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B25E116A400; Fri, 13 Apr 2007 21:30:48 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 891D613C46E; Fri, 13 Apr 2007 21:30:48 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DLUmao057039; Fri, 13 Apr 2007 21:30:48 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DLUmsE057038; Fri, 13 Apr 2007 21:30:48 GMT (envelope-from phk) Message-Id: <200704132130.l3DLUmsE057038@repoman.freebsd.org> From: Poul-Henning Kamp Date: Fri, 13 Apr 2007 21:30:48 +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/sbin/mount mount.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: Fri, 13 Apr 2007 21:30:48 -0000 phk 2007-04-13 21:30:48 UTC FreeBSD src repository Modified files: sbin/mount mount.c Log: Align -p output in TAB built columns suitable for /etc/fstab. Revision Changes Path 1.95 +19 -2 src/sbin/mount/mount.c From owner-cvs-src@FreeBSD.ORG Fri Apr 13 23:54:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0531316A401; Fri, 13 Apr 2007 23:54:23 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D0A1A13C468; Fri, 13 Apr 2007 23:54:22 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3DNsMxO082258; Fri, 13 Apr 2007 23:54:22 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3DNsMVp082257; Fri, 13 Apr 2007 23:54:22 GMT (envelope-from pjd) Message-Id: <200704132354.l3DNsMVp082257@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 13 Apr 2007 23:54:22 +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/kern kern_jail.c vfs_mount.c vfs_subr.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: Fri, 13 Apr 2007 23:54:23 -0000 pjd 2007-04-13 23:54:22 UTC FreeBSD src repository Modified files: sys/kern kern_jail.c vfs_mount.c vfs_subr.c Log: Fix jails and jail-friendly file systems handling: - We need to allow for PRIV_VFS_MOUNT_OWNER inside a jail. - Move security checks to vfs_suser() and deny unmounting and updating for jailed root from different jails, etc. OK'ed by: rwatson Revision Changes Path 1.70 +1 -0 src/sys/kern/kern_jail.c 1.257 +0 -5 src/sys/kern/vfs_mount.c 1.700 +24 -0 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 01:01:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B47616A401; Sat, 14 Apr 2007 01:01:47 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E744E13C46C; Sat, 14 Apr 2007 01:01:46 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E11kqx000737; Sat, 14 Apr 2007 01:01:46 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E11kum000736; Sat, 14 Apr 2007 01:01:46 GMT (envelope-from bms) Message-Id: <200704140101.l3E11kum000736@repoman.freebsd.org> From: Bruce M Simpson Date: Sat, 14 Apr 2007 01:01:46 +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/contrib/pf/net if_pfsync.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: Sat, 14 Apr 2007 01:01:47 -0000 bms 2007-04-14 01:01:46 UTC FreeBSD src repository Modified files: sys/contrib/pf/net if_pfsync.c Log: In member interface detach event handler, do not attempt to free state which has already been freed by in_ifdetach(). With this cumulative change, the removal of a member interface will not cause a panic in pfsync(4). Requested by: yar PR: 86848 Revision Changes Path 1.34 +9 -1 src/sys/contrib/pf/net/if_pfsync.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 02:27:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68F7B16A408; Sat, 14 Apr 2007 02:27:53 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from out4.smtp.messagingengine.com (out4.smtp.messagingengine.com [66.111.4.28]) by mx1.freebsd.org (Postfix) with ESMTP id 3C0EA13C4BD; Sat, 14 Apr 2007 02:27:53 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from compute1.internal (compute1.internal [10.202.2.41]) by out1.messagingengine.com (Postfix) with ESMTP id 03E70215376; Fri, 13 Apr 2007 22:27:54 -0400 (EDT) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 13 Apr 2007 22:27:53 -0400 X-Sasl-enc: DhM76VjhM9S2Ea7uWUo57Gs9R7871kQPH4n3WcydhNLD 1176517673 Received: from [192.168.123.18] (82-35-112-254.cable.ubr07.dals.blueyonder.co.uk [82.35.112.254]) by mail.messagingengine.com (Postfix) with ESMTP id B1133B656; Fri, 13 Apr 2007 22:27:52 -0400 (EDT) Message-ID: <46203C27.3060606@FreeBSD.org> Date: Sat, 14 Apr 2007 03:27:51 +0100 From: "Bruce M. Simpson" User-Agent: Thunderbird 1.5.0.10 (X11/20070407) MIME-Version: 1.0 To: Bruce M Simpson References: <200704100026.l3A0QDau007183@repoman.freebsd.org> In-Reply-To: <200704100026.l3A0QDau007183@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/ifmcstat Makefile ifmcstat.8 ifmcstat.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: Sat, 14 Apr 2007 02:27:53 -0000 Bruce M Simpson wrote: > bms 2007-04-10 00:26:13 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/ifmcstat Makefile ifmcstat.8 ifmcstat.c > Log: > Considerably rework the ifmcstat utility. > * Build with or without INET, INET6, or KVM features. > This is a wee bit broken for INET6 and sysctl (getifmaddrs()). It would be good to get it fixed, but I'm fairly well in need of a short break, so if anyone would like to wade in they are more than welcome... BMS From owner-cvs-src@FreeBSD.ORG Sat Apr 14 02:37:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C83E16A404; Sat, 14 Apr 2007 02:37:23 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DA61C13C4BA; Sat, 14 Apr 2007 02:37:22 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E2bMMX022274; Sat, 14 Apr 2007 02:37:22 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E2bMtt022273; Sat, 14 Apr 2007 02:37:22 GMT (envelope-from kientzle) Message-Id: <200704140237.l3E2bMtt022273@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 02:37:22 +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/lib/libarchive archive_entry.c archive_write_disk.c config_freebsd.h 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: Sat, 14 Apr 2007 02:37:23 -0000 kientzle 2007-04-14 02:37:22 UTC FreeBSD src repository Modified files: lib/libarchive archive_entry.c archive_write_disk.c config_freebsd.h Log: More portability improvements from Martin Koeppe: conditionally use utime() when utimes() is not available; allow the most common wide-char functions to be replaced when local alternatives are lacking. Revision Changes Path 1.42 +17 -11 src/lib/libarchive/archive_entry.c 1.8 +51 -0 src/lib/libarchive/archive_write_disk.c 1.3 +7 -0 src/lib/libarchive/config_freebsd.h From owner-cvs-src@FreeBSD.ORG Sat Apr 14 02:39:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 351F216A402; Sat, 14 Apr 2007 02:39:34 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 235F113C45B; Sat, 14 Apr 2007 02:39:34 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E2dYcV022370; Sat, 14 Apr 2007 02:39:34 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E2dXKS022369; Sat, 14 Apr 2007 02:39:33 GMT (envelope-from yongari) Message-Id: <200704140239.l3E2dXKS022369@repoman.freebsd.org> From: Pyun YongHyeon Date: Sat, 14 Apr 2007 02:39:33 +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/dev/msk if_msk.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: Sat, 14 Apr 2007 02:39:34 -0000 yongari 2007-04-14 02:39:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/msk if_msk.c Log: MFC if_msk.c, rev. 1.13 to RELENG_6 Add work around for hardware Tx checksum offload bug in Yukon II. Yukon II generated corrupted TCP checksum for short TCP packets that's less than 60 bytes in size(e.g. window probe packet, pure ACK packet etc). Padding the frame with zeros to make the frame minimum ethernet frame size didn't work at all. Instead of dropping Tx checksum offload support we calculate TCP checksum with S/W method when we encounter short TCP frames. Fortunately it seems that short UDP datagrams appear to be handled correctly by Yukon II. While I'm here simplify ethernet/VLAN header size calculation logic. PR: 111384 Revision Changes Path 1.11.2.4 +25 -5 src/sys/dev/msk/if_msk.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 05:04:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DBE5E16A401; Sat, 14 Apr 2007 05:04:10 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B933613C455; Sat, 14 Apr 2007 05:04:10 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E54A8j059036; Sat, 14 Apr 2007 05:04:10 GMT (envelope-from will@repoman.freebsd.org) Received: (from will@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E54AOH059035; Sat, 14 Apr 2007 05:04:10 GMT (envelope-from will) Message-Id: <200704140504.l3E54AOH059035@repoman.freebsd.org> From: Will Andrews Date: Sat, 14 Apr 2007 05:04:10 +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/usr.bin/make job.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: Sat, 14 Apr 2007 05:04:11 -0000 will 2007-04-14 05:04:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/make job.c Log: MFC: r1.125: Fix -j with Makefiles specified via stdin. Requested by: Ulrich Spoerlein Revision Changes Path 1.122.2.2 +1 -1 src/usr.bin/make/job.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 05:17:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3C4A16A401; Sat, 14 Apr 2007 05:17:07 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C07D913C484; Sat, 14 Apr 2007 05:17:07 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E5H7tA060711; Sat, 14 Apr 2007 05:17:07 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E5H7DL060710; Sat, 14 Apr 2007 05:17:07 GMT (envelope-from kientzle) Message-Id: <200704140517.l3E5H7DL060710@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 05:17:07 +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/lib/libarchive/test main.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: Sat, 14 Apr 2007 05:17:08 -0000 kientzle 2007-04-14 05:17:07 UTC FreeBSD src repository Modified files: lib/libarchive/test main.c Log: Portability: Don't use mkdtemp() when mkdir() will suffice. If we can't create the dir, just give up. Revision Changes Path 1.2 +2 -2 src/lib/libarchive/test/main.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 06:30:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13AE216A400; Sat, 14 Apr 2007 06:30:32 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E5E8D13C480; Sat, 14 Apr 2007 06:30:31 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E6UVWw073142; Sat, 14 Apr 2007 06:30:31 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E6UVfK073141; Sat, 14 Apr 2007 06:30:31 GMT (envelope-from ru) Message-Id: <200704140630.l3E6UVfK073141@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 14 Apr 2007 06:30:31 +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/release Makefile.inc.docports 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: Sat, 14 Apr 2007 06:30:32 -0000 ru 2007-04-14 06:30:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release Makefile.inc.docports Log: MFC: 1.27: Fix "doc without ports" build. Revision Changes Path 1.26.2.1 +6 -4 src/release/Makefile.inc.docports From owner-cvs-src@FreeBSD.ORG Sat Apr 14 08:20:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0368716A401; Sat, 14 Apr 2007 08:20:32 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ECD8B13C457; Sat, 14 Apr 2007 08:20:31 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E8KVGn092405; Sat, 14 Apr 2007 08:20:31 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E8KVqP092404; Sat, 14 Apr 2007 08:20:31 GMT (envelope-from kientzle) Message-Id: <200704140820.l3E8KVqP092404@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 08:20:31 +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/lib/libarchive Makefile archive_write_set_format_pax.c archive_write_set_format_ustar.c src/lib/libarchive/test Makefile test_tar_filenames.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: Sat, 14 Apr 2007 08:20:32 -0000 kientzle 2007-04-14 08:20:31 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_write_set_format_pax.c archive_write_set_format_ustar.c lib/libarchive/test Makefile Added files: lib/libarchive/test test_tar_filenames.c Log: Conventionally, tar archives have always included a trailing '/' for directories. bsdtar used to add this, but that recently got lost somehow. So now I'm adding it back in libarchive. The only odd part of doing this in libarchive: Adding a directory to a tar archive and then reading it back again can yield a different name. Add a test case to exercise some boundary conditions with tar filenames and ensure that trailing slashes are added to dir names only as necessary. Thanks to: Oliver Lehmann for bringing this regression to my attention. Revision Changes Path 1.66 +1 -1 src/lib/libarchive/Makefile 1.40 +87 -65 src/lib/libarchive/archive_write_set_format_pax.c 1.22 +16 -8 src/lib/libarchive/archive_write_set_format_ustar.c 1.4 +1 -0 src/lib/libarchive/test/Makefile 1.1 +156 -0 src/lib/libarchive/test/test_tar_filenames.c (new) From owner-cvs-src@FreeBSD.ORG Sat Apr 14 08:30:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FF5816A400; Sat, 14 Apr 2007 08:30:23 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4EB3213C487; Sat, 14 Apr 2007 08:30:23 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E8UNs2094210; Sat, 14 Apr 2007 08:30:23 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E8UNru094209; Sat, 14 Apr 2007 08:30:23 GMT (envelope-from kientzle) Message-Id: <200704140830.l3E8UNru094209@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 08:30:22 +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/lib/libarchive archive_read_support_format_ar.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: Sat, 14 Apr 2007 08:30:23 -0000 kientzle 2007-04-14 08:30:21 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_ar.c Log: Fixes from Joerg Sonnenberger, reviewed by Kai Wang. Revision Changes Path 1.2 +81 -49 src/lib/libarchive/archive_read_support_format_ar.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 08:42:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AB6A16A400; Sat, 14 Apr 2007 08:42:51 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 490C613C455; Sat, 14 Apr 2007 08:42:51 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E8gplE096737; Sat, 14 Apr 2007 08:42:51 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E8gpYr096736; Sat, 14 Apr 2007 08:42:51 GMT (envelope-from kientzle) Message-Id: <200704140842.l3E8gpYr096736@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 08:42:51 +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/lib/libarchive Makefile archive_read_support_format_ar.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: Sat, 14 Apr 2007 08:42:51 -0000 kientzle 2007-04-14 08:42:51 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_read_support_format_ar.c Log: Fix the build. N.B. 'ar' format support is broken right now, it's not passing tests. If I can't find the problem soon, I'll back out the last commit. Revision Changes Path 1.67 +1 -1 src/lib/libarchive/Makefile 1.3 +1 -1 src/lib/libarchive/archive_read_support_format_ar.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 08:54:28 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4943216A406 for ; Sat, 14 Apr 2007 08:54:28 +0000 (UTC) (envelope-from kaiw27@gmail.com) Received: from hu-out-0506.google.com (hu-out-0506.google.com [72.14.214.239]) by mx1.freebsd.org (Postfix) with ESMTP id CE3AD13C458 for ; Sat, 14 Apr 2007 08:54:27 +0000 (UTC) (envelope-from kaiw27@gmail.com) Received: by hu-out-0506.google.com with SMTP id 38so1536520huc for ; Sat, 14 Apr 2007 01:54:26 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:date:from:to:cc:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=KjxgehwdFUBi9htgPhaulqcDRTMnnzL+/NOX/+3rAqCHeedGHP4ZyHuPInGwHdEp+xCu6MS38J88udjrjwMhokOiPLrLikzOLduFckzMpSFnjxPdHetC3S5UfG1jZJtrwzsw+7khYt/GwZfucU+Lpy3Rlj+5gz8rnxSCAzlo3V8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:cc:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=gBJ8Od5rDTo2i1UZeA4xIx5zOBAT8z0VVQM2Y6Lsilbd3767SlOlrrdRMkDrI9ANXDpQ6F4MNNxgbz2DWFgfcWj9PDxWUfH0VGMiQPXfVdSth6NHBaqeyKZ6SvMbURPbXmFsFoi7m3x2btPJtkAdz8aEREWu8cReOnypeYOAe5o= Received: by 10.67.30.3 with SMTP id h3mr2632889ugj.1176540010600; Sat, 14 Apr 2007 01:40:10 -0700 (PDT) Received: from plan0.kaiwan.csbnet.se ( [193.11.244.12]) by mx.google.com with ESMTP id c25sm6884445ika.2007.04.14.01.40.09; Sat, 14 Apr 2007 01:40:10 -0700 (PDT) Received: by plan0.kaiwan.csbnet.se (Postfix, from userid 1001) id 4DBF3B8E5; Sat, 14 Apr 2007 10:40:09 +0200 (CEST) Date: Sat, 14 Apr 2007 10:40:09 +0200 From: Kai Wang To: Tim Kientzle Message-ID: <20070414084009.GA17176@plan0.kaiwan.csbnet.se> Mail-Followup-To: Tim Kientzle , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200704140830.l3E8UNru094209@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=gb2312 Content-Disposition: inline In-Reply-To: <200704140830.l3E8UNru094209@repoman.freebsd.org> User-Agent: Mutt/1.5.14 (2007-02-12) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libarchive archive_read_support_format_ar.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: Sat, 14 Apr 2007 08:54:28 -0000 On Sat, Apr 14, 2007 at 08:30:22AM +0000, Tim Kientzle wrote: > kientzle 2007-04-14 08:30:21 UTC > > FreeBSD src repository > > Modified files: > lib/libarchive archive_read_support_format_ar.c > Log: > Fixes from Joerg Sonnenberger, reviewed by Kai Wang. > > Revision Changes Path > 1.2 +81 -49 src/lib/libarchive/archive_read_support_format_ar.c Thank you! From owner-cvs-src@FreeBSD.ORG Sat Apr 14 09:44:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6AB116A401; Sat, 14 Apr 2007 09:44:10 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BAF1E13C4BC; Sat, 14 Apr 2007 09:44:10 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3E9iACT016159; Sat, 14 Apr 2007 09:44:10 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E9iApu016158; Sat, 14 Apr 2007 09:44:10 GMT (envelope-from rrs) Message-Id: <200704140944.l3E9iApu016158@repoman.freebsd.org> From: Randall Stewart Date: Sat, 14 Apr 2007 09:44:10 +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/netinet6 sctp6_usrreq.c src/sys/netinet sctp_constants.h sctp_crc32.c sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_peeloff.c sctp_timer.c sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.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: Sat, 14 Apr 2007 09:44:10 -0000 rrs 2007-04-14 09:44:10 UTC FreeBSD src repository Modified files: sys/netinet6 sctp6_usrreq.c sys/netinet sctp_constants.h sctp_crc32.c sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_peeloff.c sctp_timer.c sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c Log: - fix source address selection when picking an acceptable address - name change of prefered -> preferred - CMT fast recover code added. - Comment fixes in CMT. - We were not giving a reason of cant_start_asoc per socket api if we failed to get init/or/cookie to bring up an assoc. Change so we don't just give a generic "comm lost" but look at actual states of dying assoc. - change "crc32" arguments to "crc32c" to silence strict/noisy compiler warnings when crc32() is also declared - A few minor tweaks to get the portable stuff truely portable for sctp6_usrreq.c :-D - one-2-one style vrf match problem. - window recovery would leave chks marked for retran during window probes on the sent queue. This would then cause an out-of-order problem and assure that the flight size "problem" would occur. - Solves a flight size logging issue that caused rwnd overruns, flight size off as well as false retransmissions.g - Macroize the up and down of flight size. - Fix a ECNE bug in its counting. - The strict_sacks options was causing aborts when window probing was active, fix to make strict sacks a bit smarter about what the next unsent TSN is. - Fixes a one-2-one wakeup bug found by Martin Kulas. - If-defed out form, Andre's copy routines pending his commit of at least m_last().. need to adjust for 6.2 as well.. since m_last won't exist. Reviewed by: gnn Revision Changes Path 1.11 +10 -2 src/sys/netinet/sctp_constants.h 1.7 +11 -11 src/sys/netinet/sctp_crc32.c 1.15 +197 -220 src/sys/netinet/sctp_indata.c 1.18 +3 -17 src/sys/netinet/sctp_input.c 1.17 +118 -92 src/sys/netinet/sctp_output.c 1.19 +20 -4 src/sys/netinet/sctp_pcb.c 1.6 +2 -0 src/sys/netinet/sctp_peeloff.c 1.11 +54 -42 src/sys/netinet/sctp_timer.c 1.11 +3 -2 src/sys/netinet/sctp_uio.h 1.17 +9 -11 src/sys/netinet/sctp_usrreq.c 1.8 +51 -0 src/sys/netinet/sctp_var.h 1.19 +11 -3 src/sys/netinet/sctputil.c 1.15 +21 -27 src/sys/netinet6/sctp6_usrreq.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 10:16:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B63316A401; Sat, 14 Apr 2007 10:16:53 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 028D413C457; Sat, 14 Apr 2007 10:16:53 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EAGq3W023799; Sat, 14 Apr 2007 10:16:52 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EAGqIs023798; Sat, 14 Apr 2007 10:16:52 GMT (envelope-from stas) Message-Id: <200704141016.l3EAGqIs023798@repoman.freebsd.org> From: Stanislav Sedov Date: Sat, 14 Apr 2007 10:16:52 +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/contrib/top top.X top.c top.h src/usr.bin/top machine.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: Sat, 14 Apr 2007 10:16:53 -0000 stas 2007-04-14 10:16:52 UTC FreeBSD src repository (ports committer) Modified files: contrib/top top.X top.c top.h usr.bin/top machine.c Log: - Add new 'a' switch and runtime option that allows 'top' to display process titles extracted from argv vector instead of the real executable names. This is useful when you want to watch applications that set their status information via setproctitle(3). Approved by: alfred MFC after: 2 weeks Revision Changes Path 1.17 +7 -1 src/contrib/top/top.X 1.20 +16 -5 src/contrib/top/top.c 1.4 +5 -0 src/contrib/top/top.h 1.79 +70 -3 src/usr.bin/top/machine.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 10:26:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0A2B16A402 for ; Sat, 14 Apr 2007 10:26:36 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from raven.customer.vol.cz (raven.customer.vol.cz [195.250.144.108]) by mx1.freebsd.org (Postfix) with ESMTP id 7B16513C484 for ; Sat, 14 Apr 2007 10:26:36 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (r3b159.net.upc.cz [213.220.193.159]) (authenticated bits=0) by raven.customer.vol.cz (8.13.6/8.13.6) with ESMTP id l3EAQSkQ082279 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 14 Apr 2007 12:26:30 +0200 (CEST) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Stanislav Sedov In-Reply-To: <200704141016.l3EAGqIs023798@repoman.freebsd.org> References: <200704141016.l3EAGqIs023798@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-slW11WMIPcGRf/1lMKEQ" Date: Sat, 14 Apr 2007 12:26:28 +0200 Message-Id: <1176546388.54822.11.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port X-Spam-Score: -2.332 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 213.220.193.159; Sender-helo: [192.168.0.23]; ) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/top top.X top.c top.h src/usr.bin/top machine.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Apr 2007 10:26:37 -0000 --=-slW11WMIPcGRf/1lMKEQ Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Stanislav Sedov p=ED=B9e v so 14. 04. 2007 v 10:16 +0000: > stas 2007-04-14 10:16:52 UTC >=20 > FreeBSD src repository (ports committer) >=20 > Modified files: > contrib/top top.X top.c top.h=20 > usr.bin/top machine.c=20 > Log: > - Add new 'a' switch and runtime option that allows 'top' to display pr= ocess > titles extracted from argv vector instead of the real executable name= s. > This is useful when you want to watch applications that set their sta= tus > information via setproctitle(3). > =20 > Approved by: alfred > MFC after: 2 weeks Shiny! --=20 Pav Lucistnik God is real unless declared integer. --=-slW11WMIPcGRf/1lMKEQ Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGIKxQntdYP8FOsoIRArxJAKCT/5vnkgcB2xE/xWJTPrfFtuvipwCfVO4p ocTdw0TpRk/6v+3ucIRYL9E= =/27h -----END PGP SIGNATURE----- --=-slW11WMIPcGRf/1lMKEQ-- From owner-cvs-src@FreeBSD.ORG Sat Apr 14 10:35:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3691816A400; Sat, 14 Apr 2007 10:35:10 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 156E513C45A; Sat, 14 Apr 2007 10:35:10 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EAZ9KX028352; Sat, 14 Apr 2007 10:35:09 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EAZ96H028351; Sat, 14 Apr 2007 10:35:09 GMT (envelope-from rwatson) Message-Id: <200704141035.l3EAZ96H028351@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Apr 2007 10:35:09 +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/compat/linux linux_socket.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: Sat, 14 Apr 2007 10:35:10 -0000 rwatson 2007-04-14 10:35:09 UTC FreeBSD src repository Modified files: sys/compat/linux linux_socket.c Log: Some Linux applications (ping) pass a non-NULL msg_control argument to sendmsg() while using a 0-length msg_controllen. This isn't allowed in the FreeBSD system call ABI, so detect this case and set msg_control to NULL. This allows Linux ping to work. Submitted by: rdivacky Revision Changes Path 1.73 +10 -0 src/sys/compat/linux/linux_socket.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 10:36:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B273016A407 for ; Sat, 14 Apr 2007 10:36:07 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from raven.customer.vol.cz (raven.customer.vol.cz [195.250.144.108]) by mx1.freebsd.org (Postfix) with ESMTP id 3882013C4B0 for ; Sat, 14 Apr 2007 10:36:06 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (r3b159.net.upc.cz [213.220.193.159]) (authenticated bits=0) by raven.customer.vol.cz (8.13.6/8.13.6) with ESMTP id l3EAZxGO083035 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 14 Apr 2007 12:36:01 +0200 (CEST) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Stanislav Sedov In-Reply-To: <1176546388.54822.11.camel@ikaros.oook.cz> References: <200704141016.l3EAGqIs023798@repoman.freebsd.org> <1176546388.54822.11.camel@ikaros.oook.cz> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-D85e5iWsqzIaKfEEbj7K" Date: Sat, 14 Apr 2007 12:35:59 +0200 Message-Id: <1176546959.54822.14.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port X-Spam-Score: -2.333 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 213.220.193.159; Sender-helo: [192.168.0.23]; ) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/top top.X top.c top.h src/usr.bin/top machine.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Apr 2007 10:36:07 -0000 --=-D85e5iWsqzIaKfEEbj7K Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Pav Lucistnik p=ED=B9e v so 14. 04. 2007 v 12:26 +0200: > Stanislav Sedov p=ED=B9e v so 14. 04. 2007 v 10:16 +0000: > > stas 2007-04-14 10:16:52 UTC > >=20 > > FreeBSD src repository (ports committer) > >=20 > > Modified files: > > contrib/top top.X top.c top.h=20 > > usr.bin/top machine.c=20 > > Log: > > - Add new 'a' switch and runtime option that allows 'top' to display = process > > titles extracted from argv vector instead of the real executable na= mes. > > This is useful when you want to watch applications that set their s= tatus > > information via setproctitle(3). > > =20 > > Approved by: alfred > > MFC after: 2 weeks >=20 > Shiny! Also, is the width cut-off technical problem, or is it fixable? See http://people.freebsd.org/~pav/top.png for what I mean. --=20 Pav Lucistnik arch> I went grocery shopping, made a pot of chilli, played ey, then ate some chilli --=-D85e5iWsqzIaKfEEbj7K Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGIK6LntdYP8FOsoIRAnpKAJwO2FuydEtM4zXwAa7IM9fTeUMGjwCeJoLl 5WtEwRCo805zug/wczWIb2Y= =I67p -----END PGP SIGNATURE----- --=-D85e5iWsqzIaKfEEbj7K-- From owner-cvs-src@FreeBSD.ORG Sat Apr 14 10:46:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 059EB16A501; Sat, 14 Apr 2007 10:46:54 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id B537613C4AE; Sat, 14 Apr 2007 10:46:53 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id F22312094; Sat, 14 Apr 2007 12:46:49 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by smtp.des.no (Postfix) with ESMTP id 690872087; Sat, 14 Apr 2007 12:46:49 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 38A5B508D; Sat, 14 Apr 2007 12:46:49 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Tim Kientzle References: <200704140820.l3E8KVqP092404@repoman.freebsd.org> Date: Sat, 14 Apr 2007 12:46:48 +0200 In-Reply-To: <200704140820.l3E8KVqP092404@repoman.freebsd.org> (Tim Kientzle's message of "Sat, 14 Apr 2007 08:20:31 +0000 (UTC)") Message-ID: <86ejmnz10n.fsf@dwp.des.no> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libarchive Makefile archive_write_set_format_pax.c archive_write_set_format_ustar.c src/lib/libarchive/test Makefile test_tar_filenames.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: Sat, 14 Apr 2007 10:46:54 -0000 Tim Kientzle writes: > Log: > Conventionally, tar archives have always included a trailing '/' > for directories. bsdtar used to add this, but that recently got > lost somehow. So now I'm adding it back in libarchive. Is that really a good idea? Shouldn't this just be fixed in bsdtar's display code? > The only odd part of doing this in libarchive: Adding a directory to > a tar archive and then reading it back again can yield a different name. I can imagine how this might trip up other (hypothetical) libarchive consumers... DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:20:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D61E16A404; Sat, 14 Apr 2007 12:20:07 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3762513C44B; Sat, 14 Apr 2007 12:20:07 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECK79B049834; Sat, 14 Apr 2007 12:20:07 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECK7B7049833; Sat, 14 Apr 2007 12:20:07 GMT (envelope-from pjd) Message-Id: <200704141220.l3ECK7B7049833@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 12:20:06 +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/contrib/opensolaris/uts/common/fs/zfs spa.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: Sat, 14 Apr 2007 12:20:07 -0000 pjd 2007-04-14 12:20:06 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs spa.c Log: MFp4: - Allow to tune number of spa_zio_* threads. - Reduce default number of spa_zio_* threads to N*spa_zio_issue plus N*spa_zio_intr threads per ZIO type, where N is the number of CPUs. - Put ZIO type number in thread's name. Revision Changes Path 1.3 +17 -7 src/sys/contrib/opensolaris/uts/common/fs/zfs/spa.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:21:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F025016A401; Sat, 14 Apr 2007 12:21:04 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.freebsd.org (Postfix) with ESMTP id A309613C4AE; Sat, 14 Apr 2007 12:21:04 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from [83.97.105.114] (helo=phonon.SpringDaemons.com ident=postfix) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1Hcgf7-0003Hp-04; Sat, 14 Apr 2007 15:43:25 +0400 Received: from localhost (localhost [127.0.0.1]) by phonon.SpringDaemons.com (Postfix) with SMTP id 66A2211497; Sat, 14 Apr 2007 15:42:47 +0400 (MSD) Date: Sat, 14 Apr 2007 15:42:46 +0400 From: Stanislav Sedov To: pav@FreeBSD.org Message-Id: <20070414154246.89ad2946.stas@FreeBSD.org> In-Reply-To: <1176546959.54822.14.camel@ikaros.oook.cz> References: <200704141016.l3EAGqIs023798@repoman.freebsd.org> <1176546388.54822.11.camel@ikaros.oook.cz> <1176546959.54822.14.camel@ikaros.oook.cz> Organization: The FreeBSD Project X-Mailer: carrier-pigeon X-Voice: +7 916 849 20 23 X-XMPP: ssedov@jabber.ru X-ICQ: 208105021 X-Yahoo: stanislav_sedov X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-University: MEPhI Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Sat__14_Apr_2007_15_42_46_+0400_X4.=ndj+OLjS1zXT" X-Spam-Flag: SKIP Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/top top.X top.c top.h src/usr.bin/top machine.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: Sat, 14 Apr 2007 12:21:05 -0000 --Signature=_Sat__14_Apr_2007_15_42_46_+0400_X4.=ndj+OLjS1zXT Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Sat, 14 Apr 2007 12:35:59 +0200 Pav Lucistnik mentioned: > > Also, is the width cut-off technical problem, or is it fixable? > See http://people.freebsd.org/~pav/top.png for what I mean. > Well, they allocate a static buffer of 128 byte lenght, so the result doesn't fit into it. Also, there's buffer overrun, since sprintf is used, not snprintf. Probably we should allocate the buffer dynamically depending on the screen width, but that requires some interface redesign between machine-dependent and independent parts. Already working on it. Thanks for info! -- Stanislav Sedov ST4096-RIPE --Signature=_Sat__14_Apr_2007_15_42_46_+0400_X4.=ndj+OLjS1zXT Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGIL42K/VZk+smlYERAq+cAJ44lsGc8jg2jRln4sZYzeuZvO5L7ACePJTD eqoIkGvsHvwdZRtVPmoK5GA= =8MYB -----END PGP SIGNATURE----- --Signature=_Sat__14_Apr_2007_15_42_46_+0400_X4.=ndj+OLjS1zXT-- From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:21:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E38216A578; Sat, 14 Apr 2007 12:21:07 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D3AB913C4B7; Sat, 14 Apr 2007 12:21:06 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECL6a8050244; Sat, 14 Apr 2007 12:21:06 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECL62T050243; Sat, 14 Apr 2007 12:21:06 GMT (envelope-from pjd) Message-Id: <200704141221.l3ECL62T050243@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 12:21:06 +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/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.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: Sat, 14 Apr 2007 12:21:07 -0000 pjd 2007-04-14 12:21:06 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.c Log: MFp4: Allow to tune vfs.zfs.debug from loader.conf. Revision Changes Path 1.3 +1 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:23:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9786C16A404; Sat, 14 Apr 2007 12:23:04 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 71E3613C44B; Sat, 14 Apr 2007 12:23:04 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECN4x7050772; Sat, 14 Apr 2007 12:23:04 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECN4tM050771; Sat, 14 Apr 2007 12:23:04 GMT (envelope-from pjd) Message-Id: <200704141223.l3ECN4tM050771@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 12:23:04 +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/contrib/opensolaris/uts/common/fs/zfs spa_config.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: Sat, 14 Apr 2007 12:23:04 -0000 pjd 2007-04-14 12:23:04 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs spa_config.c Log: MFp4: Add more debug, so we can see if zpool.cache was loaded or why it wasn't loaded. Revision Changes Path 1.4 +11 -3 src/sys/contrib/opensolaris/uts/common/fs/zfs/spa_config.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:33:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF36716A400; Sat, 14 Apr 2007 12:33:47 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8566413C487; Sat, 14 Apr 2007 12:33:47 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECXlOA052825; Sat, 14 Apr 2007 12:33:47 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECXlle052824; Sat, 14 Apr 2007 12:33:47 GMT (envelope-from pjd) Message-Id: <200704141233.l3ECXlle052824@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 12:33:47 +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/contrib/opensolaris/uts/common/fs/zfs spa.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: Sat, 14 Apr 2007 12:33:47 -0000 pjd 2007-04-14 12:33:47 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs spa.c Log: MFp4: Use max_ncpus, which is used in other places in the code. Revision Changes Path 1.4 +1 -1 src/sys/contrib/opensolaris/uts/common/fs/zfs/spa.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:37:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6498316A403; Sat, 14 Apr 2007 12:37:52 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3E6BD13C43E; Sat, 14 Apr 2007 12:37:52 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECbq50053066; Sat, 14 Apr 2007 12:37:52 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECbqWY053065; Sat, 14 Apr 2007 12:37:52 GMT (envelope-from ru) Message-Id: <200704141237.l3ECbqWY053065@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 14 Apr 2007 12:37:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: distrib/cvsup/sup README distrib/cvsup/sup/src-cddl list.cvs releases 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: Sat, 14 Apr 2007 12:37:52 -0000 ru 2007-04-14 12:37:52 UTC FreeBSD src repository Modified files: cvsup/sup README Added files: cvsup/sup/src-cddl list.cvs releases Log: Add the new collection, src-cddl. Revision Changes Path 1.39 +2 -1 distrib/cvsup/sup/README 1.1 +6 -0 distrib/cvsup/sup/src-cddl/list.cvs (new) 1.1 +1 -0 distrib/cvsup/sup/src-cddl/releases (new) From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:38:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DA9A16A402; Sat, 14 Apr 2007 12:38:35 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2868A13C44B; Sat, 14 Apr 2007 12:38:35 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECcZWW053107; Sat, 14 Apr 2007 12:38:35 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECcZBQ053106; Sat, 14 Apr 2007 12:38:35 GMT (envelope-from ru) Message-Id: <200704141238.l3ECcZBQ053106@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 14 Apr 2007 12:38:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: distrib/cvsup/sup README 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: Sat, 14 Apr 2007 12:38:35 -0000 ru 2007-04-14 12:38:34 UTC FreeBSD src repository Modified files: cvsup/sup README Log: Add the forgotten src-rescue collection. Revision Changes Path 1.40 +2 -1 distrib/cvsup/sup/README From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:46:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFA4616A402; Sat, 14 Apr 2007 12:46:57 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.freebsd.org (Postfix) with ESMTP id A082513C4B0; Sat, 14 Apr 2007 12:46:57 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 1C03D2D4B98; Sat, 14 Apr 2007 12:46:56 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id DDCE71142C; Sat, 14 Apr 2007 14:46:55 +0200 (CEST) Date: Sat, 14 Apr 2007 14:46:55 +0200 From: "Simon L. Nielsen" To: Stanislav Sedov Message-ID: <20070414124654.GB1687@zaphod.nitro.dk> References: <200704141016.l3EAGqIs023798@repoman.freebsd.org> <1176546388.54822.11.camel@ikaros.oook.cz> <1176546959.54822.14.camel@ikaros.oook.cz> <20070414154246.89ad2946.stas@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070414154246.89ad2946.stas@FreeBSD.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, pav@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/contrib/top top.X top.c top.h src/usr.bin/top machine.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: Sat, 14 Apr 2007 12:46:58 -0000 On 2007.04.14 15:42:46 +0400, Stanislav Sedov wrote: > On Sat, 14 Apr 2007 12:35:59 +0200 > Pav Lucistnik mentioned: > > > > Also, is the width cut-off technical problem, or is it fixable? > > See http://people.freebsd.org/~pav/top.png for what I mean. > > > > Well, they allocate a static buffer of 128 byte lenght, so the result > doesn't fit into it. Also, there's buffer overrun, since sprintf is > used, not snprintf. So, if a user sets a very long proctitle now and some other user runs top with the new feature the buffer will overflow? -- Simon L. Nielsen From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:53:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7530C16A400; Sat, 14 Apr 2007 12:53:38 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4F12313C4AE; Sat, 14 Apr 2007 12:53:38 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECrc2c064214; Sat, 14 Apr 2007 12:53:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECrcVH064212; Sat, 14 Apr 2007 12:53:38 GMT (envelope-from ru) Message-Id: <200704141253.l3ECrcVH064212@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 14 Apr 2007 12:53:37 +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/share/examples/cvsup cvs-supfile stable-supfile standard-supfile 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: Sat, 14 Apr 2007 12:53:38 -0000 ru 2007-04-14 12:53:37 UTC FreeBSD src repository Modified files: share/examples/cvsup cvs-supfile stable-supfile standard-supfile Log: Add src-cddl and src-rescue. Revision Changes Path 1.44 +2 -0 src/share/examples/cvsup/cvs-supfile 1.31 +2 -0 src/share/examples/cvsup/stable-supfile 1.24 +2 -0 src/share/examples/cvsup/standard-supfile From owner-cvs-src@FreeBSD.ORG Sat Apr 14 12:54:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2F8116A401; Sat, 14 Apr 2007 12:54:38 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7D84613C457; Sat, 14 Apr 2007 12:54:38 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ECscBj064461; Sat, 14 Apr 2007 12:54:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ECscUr064460; Sat, 14 Apr 2007 12:54:38 GMT (envelope-from ru) Message-Id: <200704141254.l3ECscUr064460@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 14 Apr 2007 12:54:38 +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/share/examples/cvsup cvs-supfile 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: Sat, 14 Apr 2007 12:54:38 -0000 ru 2007-04-14 12:54:38 UTC FreeBSD src repository Modified files: share/examples/cvsup cvs-supfile Log: Add ports-net-im, ports-net-p2p and ports-ports-mgmt collections. Revision Changes Path 1.45 +3 -0 src/share/examples/cvsup/cvs-supfile From owner-cvs-src@FreeBSD.ORG Sat Apr 14 13:06:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A53A816A400; Sat, 14 Apr 2007 13:06:57 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7FD7A13C44C; Sat, 14 Apr 2007 13:06:57 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3ED6vtY067229; Sat, 14 Apr 2007 13:06:57 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3ED6vtD067228; Sat, 14 Apr 2007 13:06:57 GMT (envelope-from pjd) Message-Id: <200704141306.l3ED6vtD067228@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 13:06:57 +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/lib/libc/gen sysconf.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: Sat, 14 Apr 2007 13:06:57 -0000 pjd 2007-04-14 13:06:57 UTC FreeBSD src repository Modified files: lib/libc/gen sysconf.c Log: Cleanup sysconf(3) a bit. sysconf(3) assumes in some places it operates on int, but in fact it should operate on long. - Introduce 'lvalue' variable, which is long. - Fix _SC_XOPEN_SHM for 64bit archs. - Fix _SC_PHYS_PAGES for 64bit archs. Reported by: simokawa - Use lvalue for pathconf(3), as it returns long. - Cast value explicitly to long on return. Revision Changes Path 1.25 +18 -21 src/lib/libc/gen/sysconf.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 13:51:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2621016A404; Sat, 14 Apr 2007 13:51:52 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0090113C44C; Sat, 14 Apr 2007 13:51:52 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EDppFU076465; Sat, 14 Apr 2007 13:51:51 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EDppcj076464; Sat, 14 Apr 2007 13:51:51 GMT (envelope-from blackend) Message-Id: <200704141351.l3EDppcj076464@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 14 Apr 2007 13:51:51 +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/share/man/man4 uftdi.4 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: Sat, 14 Apr 2007 13:51:52 -0000 blackend 2007-04-14 13:51:51 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 uftdi.4 Log: Elexol USB MOD1 is supported by the uftdi driver. Revision Changes Path 1.9 +2 -0 src/share/man/man4/uftdi.4 From owner-cvs-src@FreeBSD.ORG Sat Apr 14 14:08:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0241F16A400; Sat, 14 Apr 2007 14:08:31 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E780613C459; Sat, 14 Apr 2007 14:08:30 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EE8Uoe081102; Sat, 14 Apr 2007 14:08:30 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EE8UHP081101; Sat, 14 Apr 2007 14:08:30 GMT (envelope-from des) Message-Id: <200704141408.l3EE8UHP081101@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 14 Apr 2007 14:08:30 +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/fs/pseudofs pseudofs.c pseudofs.h pseudofs_fileno.c pseudofs_internal.h pseudofs_vncache.c pseudofs_vnops.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: Sat, 14 Apr 2007 14:08:31 -0000 des 2007-04-14 14:08:30 UTC FreeBSD src repository Modified files: sys/fs/pseudofs pseudofs.c pseudofs.h pseudofs_fileno.c pseudofs_internal.h pseudofs_vncache.c pseudofs_vnops.c Log: Further pseudofs improvements: The pfs_info mutex is only needed to lock pi_unrhdr. Everything else in struct pfs_info is modified only while Giant is held (during vfs_init() / vfs_uninit()); add assertions to that effect. Simplify pfs_destroy somewhat. Remove superfluous arguments from pfs_fileno_{alloc,free}(), and the assertions which were added in the previous commit to ensure they were consistent. Assert that Giant is held while the vnode cache is initialized and destroyed. Also assert that the cache is empty when it is destroyed. Rename the vnode cache mutex for consistency. Fix a long-standing bug in pfs_getattr(): it would uncritically return the node's pn_fileno as st_ino. This would result in st_ino being 0 if the node had not previously been visited by readdir(), and also in an incorrect st_ino for process directories and any files contained therein. Correct this by abstracting the fileno manipulations previously done in pfs_readdir() into a new function, pfs_fileno(), which is used by both pfs_getattr() and pfs_readdir(). Revision Changes Path 1.31 +13 -21 src/sys/fs/pseudofs/pseudofs.c 1.35 +6 -2 src/sys/fs/pseudofs/pseudofs.h 1.14 +14 -24 src/sys/fs/pseudofs/pseudofs_fileno.c 1.6 +2 -2 src/sys/fs/pseudofs/pseudofs_internal.h 1.36 +7 -4 src/sys/fs/pseudofs/pseudofs_vncache.c 1.61 +17 -9 src/sys/fs/pseudofs/pseudofs_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 14:18:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A19C716A402; Sat, 14 Apr 2007 14:18:11 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.freebsd.org (Postfix) with ESMTP id 1F14113C46C; Sat, 14 Apr 2007 14:18:11 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from [83.97.105.114] (helo=phonon.SpringDaemons.com ident=postfix) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1Hcj4q-0008Vj-Vx; Sat, 14 Apr 2007 18:18:09 +0400 Received: from localhost (localhost [127.0.0.1]) by phonon.SpringDaemons.com (Postfix) with SMTP id E6DBC11497; Sat, 14 Apr 2007 18:17:30 +0400 (MSD) Date: Sat, 14 Apr 2007 18:17:30 +0400 From: Stanislav Sedov To: "Simon L. Nielsen" Message-Id: <20070414181730.eca262c0.stas@FreeBSD.org> In-Reply-To: <20070414124654.GB1687@zaphod.nitro.dk> References: <200704141016.l3EAGqIs023798@repoman.freebsd.org> <1176546388.54822.11.camel@ikaros.oook.cz> <1176546959.54822.14.camel@ikaros.oook.cz> <20070414154246.89ad2946.stas@FreeBSD.org> <20070414124654.GB1687@zaphod.nitro.dk> Organization: The FreeBSD Project X-Mailer: carrier-pigeon X-Voice: +7 916 849 20 23 X-XMPP: ssedov@jabber.ru X-ICQ: 208105021 X-Yahoo: stanislav_sedov X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-University: MEPhI Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Sat__14_Apr_2007_18_17_30_+0400_JQ6psQbLV46yZVHJ" X-Spam-Flag: SKIP Cc: cvs-src@FreeBSD.org, pav@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/contrib/top top.X top.c top.h src/usr.bin/top machine.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: Sat, 14 Apr 2007 14:18:11 -0000 --Signature=_Sat__14_Apr_2007_18_17_30_+0400_JQ6psQbLV46yZVHJ Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Sat, 14 Apr 2007 14:46:55 +0200 "Simon L. Nielsen" mentioned: > On 2007.04.14 15:42:46 +0400, Stanislav Sedov wrote: > > On Sat, 14 Apr 2007 12:35:59 +0200 > > Pav Lucistnik mentioned: > > > > > > Also, is the width cut-off technical problem, or is it fixable? > > > See http://people.freebsd.org/~pav/top.png for what I mean. > > > > > > > Well, they allocate a static buffer of 128 byte lenght, so the result > > doesn't fit into it. Also, there's buffer overrun, since sprintf is > > used, not snprintf. > > So, if a user sets a very long proctitle now and some other user runs > top with the new feature the buffer will overflow? > Well, not quite right. If you screen is wider then 128 symbols, there could be an overflow, since the row buffer is 128 bytes length. I have not touched any limits, just replaced the string it displays. So there can be overflow with patch or without it, if both the command name and screen width is wider then 128. Well, anyway i'm going to fix that right now. -- Stanislav Sedov ST4096-RIPE --Signature=_Sat__14_Apr_2007_18_17_30_+0400_JQ6psQbLV46yZVHJ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGIOJ6K/VZk+smlYERAg9EAJ4+T4qRlGvcUVv8352AzyzSKXdwXACfcUUY baXyjthbdINms/fgeIuCjD4= =+3/J -----END PGP SIGNATURE----- --Signature=_Sat__14_Apr_2007_18_17_30_+0400_JQ6psQbLV46yZVHJ-- From owner-cvs-src@FreeBSD.ORG Sat Apr 14 14:32:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9916C16A401; Sat, 14 Apr 2007 14:32:54 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 73E3713C48A; Sat, 14 Apr 2007 14:32:54 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EEWnjh085239; Sat, 14 Apr 2007 14:32:49 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EEWn0d085238; Sat, 14 Apr 2007 14:32:49 GMT (envelope-from ache) Message-Id: <200704141432.l3EEWn0d085238@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 14 Apr 2007 14:32:48 +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/usr.bin/whois whois.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: Sat, 14 Apr 2007 14:32:54 -0000 ache 2007-04-14 14:32:48 UTC FreeBSD src repository Modified files: usr.bin/whois whois.c Log: Use proper type cast for ctype macro Revision Changes Path 1.46 +1 -1 src/usr.bin/whois/whois.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 14:39:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EFBC16A400; Sat, 14 Apr 2007 14:39:38 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 44EB513C44C; Sat, 14 Apr 2007 14:39:38 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EEdcI3086005; Sat, 14 Apr 2007 14:39:38 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EEdcPZ086004; Sat, 14 Apr 2007 14:39:38 GMT (envelope-from simokawa) Message-Id: <200704141439.l3EEdcPZ086004@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sat, 14 Apr 2007 14:39:38 +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/contrib/opensolaris/lib/libzpool/common kernel.c src/contrib/opensolaris/lib/libzpool/common/sys zfs_context.h 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: Sat, 14 Apr 2007 14:39:38 -0000 simokawa 2007-04-14 14:39:38 UTC FreeBSD src repository Modified files: contrib/opensolaris/lib/libzpool/common kernel.c contrib/opensolaris/lib/libzpool/common/sys zfs_context.h Log: In FreeBSD, - cv_timedwait() takes delta instead of absolute time, - we need ioctl() for mediasize. Reviewed by: pjd Revision Changes Path 1.3 +5 -2 src/contrib/opensolaris/lib/libzpool/common/kernel.c 1.5 +1 -0 src/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h From owner-cvs-src@FreeBSD.ORG Sat Apr 14 14:43:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8EE816A406; Sat, 14 Apr 2007 14:43:11 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8379B13C46A; Sat, 14 Apr 2007 14:43:11 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EEhBlJ087203; Sat, 14 Apr 2007 14:43:11 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EEhBSR087202; Sat, 14 Apr 2007 14:43:11 GMT (envelope-from simon) Message-Id: <200704141443.l3EEhBSR087202@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 14 Apr 2007 14:43:11 +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/usr.sbin/sysinstall config.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: Sat, 14 Apr 2007 14:43:11 -0000 simon 2007-04-14 14:43:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/sysinstall config.c Log: MFC 1.242: Update postfix MTA selection code to point at postfix 2.4 which is the current version. Revision Changes Path 1.233.2.5 +1 -1 src/usr.sbin/sysinstall/config.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 14:47:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C9EC16A404; Sat, 14 Apr 2007 14:47:08 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.freebsd.org (Postfix) with ESMTP id 119B813C458; Sat, 14 Apr 2007 14:47:08 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from [83.97.105.114] (helo=phonon.SpringDaemons.com ident=postfix) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1HcjWs-00073h-CC; Sat, 14 Apr 2007 18:47:06 +0400 Received: from localhost (localhost [127.0.0.1]) by phonon.SpringDaemons.com (Postfix) with SMTP id 5ACE311497; Sat, 14 Apr 2007 18:46:27 +0400 (MSD) Date: Sat, 14 Apr 2007 18:46:27 +0400 From: Stanislav Sedov To: Stanislav Sedov Message-Id: <20070414184627.746fa559.stas@FreeBSD.org> In-Reply-To: <20070414181730.eca262c0.stas@FreeBSD.org> References: <200704141016.l3EAGqIs023798@repoman.freebsd.org> <1176546388.54822.11.camel@ikaros.oook.cz> <1176546959.54822.14.camel@ikaros.oook.cz> <20070414154246.89ad2946.stas@FreeBSD.org> <20070414124654.GB1687@zaphod.nitro.dk> <20070414181730.eca262c0.stas@FreeBSD.org> Organization: The FreeBSD Project X-Mailer: carrier-pigeon X-Voice: +7 916 849 20 23 X-XMPP: ssedov@jabber.ru X-ICQ: 208105021 X-Yahoo: stanislav_sedov X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-University: MEPhI Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Sat__14_Apr_2007_18_46_27_+0400_UJ4gfRinSpSVmy9e" X-Spam-Flag: SKIP Cc: cvs-src@FreeBSD.org, pav@FreeBSD.org, cvs-all@FreeBSD.org, "Simon L. Nielsen" , src-committers@FreeBSD.org Subject: Re: cvs commit: src/contrib/top top.X top.c top.h src/usr.bin/top machine.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: Sat, 14 Apr 2007 14:47:08 -0000 --Signature=_Sat__14_Apr_2007_18_46_27_+0400_UJ4gfRinSpSVmy9e Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Sat, 14 Apr 2007 18:17:30 +0400 Stanislav Sedov mentioned: > Well, not quite right. If you screen is wider then 128 symbols, there > could be an overflow, since the row buffer is 128 bytes length. > > I have not touched any limits, just replaced the string it displays. So > there can be overflow with patch or without it, if both the command > name and screen width is wider then 128. > That's even better. In contrib src display.c it always NULL-terminate string at the screen_width point, so it's always write '\0' to the unknown area if screen_width is larger than 128. Hopefully, the storage is allocated last in .data section, so it doesn't overwrite any important data and code. -- Stanislav Sedov ST4096-RIPE --Signature=_Sat__14_Apr_2007_18_46_27_+0400_UJ4gfRinSpSVmy9e Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFGIOlDK/VZk+smlYERAhzhAJ94yecJV3nbgsIhmCDMo/hmQDWJ3ACeNXhr m+xJX8Vfwz5W7zD2pnXT4eQ= =DMO0 -----END PGP SIGNATURE----- --Signature=_Sat__14_Apr_2007_18_46_27_+0400_UJ4gfRinSpSVmy9e-- From owner-cvs-src@FreeBSD.ORG Sat Apr 14 15:01:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A3D116A404; Sat, 14 Apr 2007 15:01:52 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 242FE13C4BE; Sat, 14 Apr 2007 15:01:52 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EF1qwP089935; Sat, 14 Apr 2007 15:01:52 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EF1pVG089934; Sat, 14 Apr 2007 15:01:51 GMT (envelope-from pjd) Message-Id: <200704141501.l3EF1pVG089934@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 15:01:51 +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/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.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: Sat, 14 Apr 2007 15:01:52 -0000 pjd 2007-04-14 15:01:51 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.c Log: MFp4: Hmm, it seems to work now. Revision Changes Path 1.4 +1 -8 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 15:53:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF40E16A408; Sat, 14 Apr 2007 15:53:38 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BA5B913C448; Sat, 14 Apr 2007 15:53:38 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EFrcUv099085; Sat, 14 Apr 2007 15:53:38 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EFrcuM099084; Sat, 14 Apr 2007 15:53:38 GMT (envelope-from bmah) Message-Id: <200704141553.l3EFrcuM099084@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 14 Apr 2007 15:53:38 +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/release/doc/en_US.ISO8859-1/relnotes article.sgml 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: Sat, 14 Apr 2007 15:53:39 -0000 bmah 2007-04-14 15:53:38 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New (but slightly overdue) release notes: snd_envy24ht(4), snd_spicds(4). Revision Changes Path 1.1015 +6 -0 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Sat Apr 14 16:09:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B09516A403; Sat, 14 Apr 2007 16:09:24 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DA35913C480; Sat, 14 Apr 2007 16:09:23 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EG9N4Z002605; Sat, 14 Apr 2007 16:09:23 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EG9Naj002604; Sat, 14 Apr 2007 16:09:23 GMT (envelope-from maxim) Message-Id: <200704141609.l3EG9Naj002604@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 14 Apr 2007 16:09:23 +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/sbin/atm/atmconfig diag.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: Sat, 14 Apr 2007 16:09:24 -0000 maxim 2007-04-14 16:09:23 UTC FreeBSD src repository Modified files: sbin/atm/atmconfig diag.c Log: o IFNAMSIZ includes a terminating null byte. Submitted by: rdivacky MFC after: 1 week Revision Changes Path 1.8 +1 -1 src/sbin/atm/atmconfig/diag.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 16:26:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1FCA16A401; Sat, 14 Apr 2007 16:26:06 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AD48D13C468; Sat, 14 Apr 2007 16:26:06 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EGQ1bB010366; Sat, 14 Apr 2007 16:26:01 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EGQ17F010365; Sat, 14 Apr 2007 16:26:01 GMT (envelope-from gshapiro) Message-Id: <200704141626.l3EGQ17F010365@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sat, 14 Apr 2007 16:26:01 +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 UPDATING 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: Sat, 14 Apr 2007 16:26:06 -0000 gshapiro 2007-04-14 16:26:01 UTC FreeBSD src repository Modified files: . UPDATING Log: Include a note about recompiling ports which use the base libmilter. Submitted by: Matthew Seaman Revision Changes Path 1.485 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Apr 14 16:26:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD34D16A408; Sat, 14 Apr 2007 16:26:41 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9839013C4C5; Sat, 14 Apr 2007 16:26:41 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EGQfCW010436; Sat, 14 Apr 2007 16:26:41 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EGQfKX010435; Sat, 14 Apr 2007 16:26:41 GMT (envelope-from gshapiro) Message-Id: <200704141626.l3EGQfKX010435@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sat, 14 Apr 2007 16:26:41 +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 UPDATING 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: Sat, 14 Apr 2007 16:26:41 -0000 gshapiro 2007-04-14 16:26:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING Log: MFC: Include a note about recompiling ports which use the base libmilter. Submitted by: Matthew Seaman Revision Changes Path 1.416.2.31 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Apr 14 16:26:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C85016A401; Sat, 14 Apr 2007 16:26:59 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4722B13C48C; Sat, 14 Apr 2007 16:26:59 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EGQxqg010507; Sat, 14 Apr 2007 16:26:59 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EGQxHJ010506; Sat, 14 Apr 2007 16:26:59 GMT (envelope-from gshapiro) Message-Id: <200704141626.l3EGQxHJ010506@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sat, 14 Apr 2007 16:26:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src UPDATING 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: Sat, 14 Apr 2007 16:26:59 -0000 gshapiro 2007-04-14 16:26:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) . UPDATING Log: MFC: Include a note about recompiling ports which use the base libmilter. Submitted by: Matthew Seaman Revision Changes Path 1.342.2.37 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Apr 14 16:27:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D627F16A480; Sat, 14 Apr 2007 16:27:16 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B142C13C448; Sat, 14 Apr 2007 16:27:16 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EGRGAm010551; Sat, 14 Apr 2007 16:27:16 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EGRGAX010550; Sat, 14 Apr 2007 16:27:16 GMT (envelope-from gshapiro) Message-Id: <200704141627.l3EGRGAX010550@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sat, 14 Apr 2007 16:27:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src UPDATING 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: Sat, 14 Apr 2007 16:27:17 -0000 gshapiro 2007-04-14 16:27:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) . UPDATING Log: MFC: Include a note about recompiling ports which use the base libmilter. Submitted by: Matthew Seaman Revision Changes Path 1.73.2.95 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Apr 14 16:29:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA32416A407; Sat, 14 Apr 2007 16:29:15 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C5ACC13C489; Sat, 14 Apr 2007 16:29:15 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EGTFok010773; Sat, 14 Apr 2007 16:29:15 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EGTFja010772; Sat, 14 Apr 2007 16:29:15 GMT (envelope-from maxim) Message-Id: <200704141629.l3EGTFja010772@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 14 Apr 2007 16:29:15 +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 Makefile 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: Sat, 14 Apr 2007 16:29:16 -0000 maxim 2007-04-14 16:29:15 UTC FreeBSD src repository Modified files: sys Makefile Log: o Add bsm and security to a list of cscope dirs. Revision Changes Path 1.42 +3 -3 src/sys/Makefile From owner-cvs-src@FreeBSD.ORG Sat Apr 14 17:11:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 258D116A406; Sat, 14 Apr 2007 17:11:18 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.freebsd.org (Postfix) with ESMTP id CB31A13C45D; Sat, 14 Apr 2007 17:11:17 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 7C87E6D8B; Sat, 14 Apr 2007 21:11:16 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 566446D8A; Sat, 14 Apr 2007 21:11:16 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id l3EHAv2w035466; Sat, 14 Apr 2007 21:10:57 +0400 (MSD) (envelope-from ru) Date: Sat, 14 Apr 2007 21:10:57 +0400 From: Ruslan Ermilov To: Tim Kientzle Message-ID: <20070414171057.GC35266@rambler-co.ru> References: <200704140842.l3E8gpYr096736@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="H+4ONPRPur6+Ovig" Content-Disposition: inline In-Reply-To: <200704140842.l3E8gpYr096736@repoman.freebsd.org> User-Agent: Mutt/1.5.14 (2007-02-12) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libarchive Makefile archive_read_support_format_ar.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: Sat, 14 Apr 2007 17:11:18 -0000 --H+4ONPRPur6+Ovig Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 14, 2007 at 08:42:51AM +0000, Tim Kientzle wrote: > kientzle 2007-04-14 08:42:51 UTC >=20 > FreeBSD src repository >=20 > Modified files: > lib/libarchive Makefile archive_read_support_format_ar.c=20 > Log: > Fix the build. > N.B. 'ar' format support is broken right now, it's not > passing tests. If I can't find the problem soon, I'll > back out the last commit. > =20 > Revision Changes Path > 1.67 +1 -1 src/lib/libarchive/Makefile > 1.3 +1 -1 src/lib/libarchive/archive_read_support_format_ar.c >=20 It's still broken, please see the tindebox reports. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --H+4ONPRPur6+Ovig Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (FreeBSD) iD8DBQFGIQshqRfpzJluFF4RAvqEAJ9mbC0k+WBUZI7RzY3XrfNp7I1WkgCdGOux WTvRn0zAaXqUkPu/z5VioqA= =UZyS -----END PGP SIGNATURE----- --H+4ONPRPur6+Ovig-- From owner-cvs-src@FreeBSD.ORG Sat Apr 14 18:24:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B734216A409; Sat, 14 Apr 2007 18:24:43 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 91FE213C4B7; Sat, 14 Apr 2007 18:24:43 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EIOhv3049494; Sat, 14 Apr 2007 18:24:43 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EIOhck049492; Sat, 14 Apr 2007 18:24:43 GMT (envelope-from kientzle) Message-Id: <200704141824.l3EIOhck049492@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 18:24:42 +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/lib/libarchive Makefile 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: Sat, 14 Apr 2007 18:24:43 -0000 kientzle 2007-04-14 18:24:42 UTC FreeBSD src repository Modified files: lib/libarchive Makefile Log: Fix the build by temporarily disabling 'ar' support until I can clean it up. Revision Changes Path 1.68 +0 -1 src/lib/libarchive/Makefile From owner-cvs-src@FreeBSD.ORG Sat Apr 14 18:27:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F8EC16A4CA; Sat, 14 Apr 2007 18:27:35 +0000 (UTC) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3B20E13C465; Sat, 14 Apr 2007 18:27:35 +0000 (UTC) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EIRZc3049805; Sat, 14 Apr 2007 18:27:35 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EIRYJM049804; Sat, 14 Apr 2007 18:27:34 GMT (envelope-from mlaier) Message-Id: <200704141827.l3EIRYJM049804@repoman.freebsd.org> From: Max Laier Date: Sat, 14 Apr 2007 18:27:34 +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/netinet sctp_indata.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: Sat, 14 Apr 2007 18:27:35 -0000 mlaier 2007-04-14 18:27:34 UTC FreeBSD src repository Modified files: sys/netinet sctp_indata.c Log: Fix a typeo - unbreak the build. Revision Changes Path 1.16 +1 -1 src/sys/netinet/sctp_indata.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 18:31:05 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BDB6916A401; Sat, 14 Apr 2007 18:31:05 +0000 (UTC) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.freebsd.org (Postfix) with ESMTP id 5213F13C43E; Sat, 14 Apr 2007 18:31:05 +0000 (UTC) (envelope-from max@love2party.net) Received: from [88.64.191.0] (helo=amd64.laiers.local) by mrelayeu.kundenserver.de (node=mrelayeu2) with ESMTP (Nemesis), id 0MKwtQ-1Hcn1b3wh0-0004jN; Sat, 14 Apr 2007 20:31:04 +0200 From: Max Laier Organization: FreeBSD To: rrs@freebsd.org Date: Sat, 14 Apr 2007 20:30:54 +0200 User-Agent: KMail/1.9.5 References: <200704141827.l3EIRYJM049804@repoman.freebsd.org> In-Reply-To: <200704141827.l3EIRYJM049804@repoman.freebsd.org> X-Face: ,,8R(x[kmU]tKN@>gtH1yQE4aslGdu+2]; R]*pL,U>^H?)gW@49@wdJ`H<=?utf-8?q?=25=7D*=5FBD=0A=09U=5For=3D=5CmOZf764=26nYj=3DJYbR1PW0ud?=>|!~,,CPC.1-D$FG@0h3#'5"k{V]a~.<=?utf-8?q?mZ=7D44=23Se=7Em=0A=09Fe=7E=5C=5DX5B=5D=5Fxj?=(ykz9QKMw_l0C2AQ]}Ym8)fU MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart5685518.s82r0KPGXG"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200704142031.02804.max@love2party.net> X-Provags-ID: V01U2FsdGVkX1+R4/gF2sWVr4b8xuKIpv3XPe4Qki10XvS/r2w Vmj4VGF1u1qoUHxeSsbO2vd93TgqEH6hh7sk8s0WxbJjw14hGj wMUBGydBuZJkcNc3KaGAQ== Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet sctp_indata.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: Sat, 14 Apr 2007 18:31:05 -0000 --nextPart5685518.s82r0KPGXG Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 14 April 2007 20:27, Max Laier wrote: > mlaier 2007-04-14 18:27:34 UTC > > FreeBSD src repository > > Modified files: > sys/netinet sctp_indata.c > Log: > Fix a typeo - unbreak the build. While checking this, I came across the fact that SCTP_SACK_LOGGING depends= =20 on SCTP_STATS_LOGGING. Not sure if that's intended, but it's fixable=20 with a bit of shuffling in sctputil.c/h > Revision Changes Path > 1.16 +1 -1 src/sys/netinet/sctp_indata.c =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --nextPart5685518.s82r0KPGXG Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQBGIR3mXyyEoT62BG0RAvh9AJ4kj+65Kw1pQy8FF+dedudKieeHSwCfdnyf jDURFrrp12D/VohvDMwENhU= =QlK5 -----END PGP SIGNATURE----- --nextPart5685518.s82r0KPGXG-- From owner-cvs-src@FreeBSD.ORG Sat Apr 14 18:51:26 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1258416A403; Sat, 14 Apr 2007 18:51:26 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id DD17A13C44C; Sat, 14 Apr 2007 18:51:25 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l3EIpJH7021566; Sat, 14 Apr 2007 11:51:20 -0700 (PDT) (envelope-from kientzle@freebsd.org) Message-ID: <462122A7.7080102@freebsd.org> Date: Sat, 14 Apr 2007 11:51:19 -0700 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= References: <200704140820.l3E8KVqP092404@repoman.freebsd.org> <86ejmnz10n.fsf@dwp.des.no> In-Reply-To: <86ejmnz10n.fsf@dwp.des.no> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libarchive Makefile archive_write_set_format_pax.c archive_write_set_format_ustar.c src/lib/libarchive/test Makefile test_tar_filenames.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: Sat, 14 Apr 2007 18:51:26 -0000 >> Conventionally, tar archives have always included a trailing '/' >> for directories. bsdtar used to add this, but that recently got >> lost somehow. So now I'm adding it back in libarchive. > > Is that really a good idea? Shouldn't this just be fixed in bsdtar's > display code? It's not a display problem, it's an archive creation problem. Very old tar implementations didn't recognize dirs stored in archives, but could actually extract them correctly as long as the name ended in '/'. >> The only odd part of doing this in libarchive: Adding a directory to >> a tar archive and then reading it back again can yield a different name. > > I can imagine how this might trip up other (hypothetical) libarchive > consumers... You may be right. But not all archive formats necessarily require trailing '/' on directories and I've (so far) done pretty well at keeping format-specific knowledge out of bsdtar. I could force trailing '/' when creating archives from bsdtar or ensure the trailing '/' in libarchive for those formats that require it. Neither solution is ideal. I think I'll stick with it in libarchive, though I'll change it so that libarchive actually edits the name in the entry; that way, the client will see the changed name immediately after writing the header. (There's precedent for this; some libarchive formats edit the file size field to indicate how much data they expect; this allows clients to function efficiently with formats that do or don't store duplicate bodies for hard links.) Thanks for the comments. Tim From owner-cvs-src@FreeBSD.ORG Sat Apr 14 19:42:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA03616A406; Sat, 14 Apr 2007 19:42:20 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C52BA13C48C; Sat, 14 Apr 2007 19:42:20 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EJgKOb063714; Sat, 14 Apr 2007 19:42:20 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EJgKBM063712; Sat, 14 Apr 2007 19:42:20 GMT (envelope-from kmacy) Message-Id: <200704141942.l3EJgKBM063712@repoman.freebsd.org> From: Kip Macy Date: Sat, 14 Apr 2007 19:42:20 +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/sys mbuf.h 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: Sat, 14 Apr 2007 19:42:21 -0000 kmacy 2007-04-14 19:42:20 UTC FreeBSD src repository Modified files: sys/sys mbuf.h Log: pad out m_hdr to make pkthdr word-aligned shuffle pkthdr.len so that pkthdr.header is aligned without compiler added padding Reviewed by: rwatson, andre, sam Revision Changes Path 1.208 +8 -1 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Sat Apr 14 20:16:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE9AB16A401; Sat, 14 Apr 2007 20:16:04 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8A01313C4C2; Sat, 14 Apr 2007 20:16:04 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EKG49H070023; Sat, 14 Apr 2007 20:16:04 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EKG4nK070022; Sat, 14 Apr 2007 20:16:04 GMT (envelope-from kmacy) Message-Id: <200704142016.l3EKG4nK070022@repoman.freebsd.org> From: Kip Macy Date: Sat, 14 Apr 2007 20:16:03 +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/conf options src/sys/sys mbuf.h 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: Sat, 14 Apr 2007 20:16:04 -0000 kmacy 2007-04-14 20:16:03 UTC FreeBSD src repository Modified files: sys/conf options sys/sys mbuf.h Log: Add option for disabling allocation from the packet zone Revision Changes Path 1.586 +1 -0 src/sys/conf/options 1.209 +4 -0 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Sat Apr 14 20:19:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6635E16A408; Sat, 14 Apr 2007 20:19:17 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 40F9F13C4B9; Sat, 14 Apr 2007 20:19:17 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EKJHPT070179; Sat, 14 Apr 2007 20:19:17 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EKJHCc070178; Sat, 14 Apr 2007 20:19:17 GMT (envelope-from kmacy) Message-Id: <200704142019.l3EKJHCc070178@repoman.freebsd.org> From: Kip Macy Date: Sat, 14 Apr 2007 20:19:17 +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/kern uipc_mbuf.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: Sat, 14 Apr 2007 20:19:17 -0000 kmacy 2007-04-14 20:19:16 UTC FreeBSD src repository Modified files: sys/kern uipc_mbuf.c Log: remove now invalid check from m_sanity panic on m_sanity check failure with INVARIANTS Revision Changes Path 1.172 +5 -10 src/sys/kern/uipc_mbuf.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 20:31:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7CC416A482; Sat, 14 Apr 2007 20:31:05 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B072C13C455; Sat, 14 Apr 2007 20:31:05 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EKV50p072701; Sat, 14 Apr 2007 20:31:05 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EKV5wA072698; Sat, 14 Apr 2007 20:31:05 GMT (envelope-from kmacy) Message-Id: <200704142031.l3EKV5wA072698@repoman.freebsd.org> From: Kip Macy Date: Sat, 14 Apr 2007 20:31:05 +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/sys mbuf.h 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: Sat, 14 Apr 2007 20:31:06 -0000 kmacy 2007-04-14 20:31:05 UTC FreeBSD src repository Modified files: sys/sys mbuf.h Log: hide static declaration remove extra white space Revision Changes Path 1.210 +4 -2 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Sat Apr 14 20:38:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C327416A403; Sat, 14 Apr 2007 20:38:38 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9E88C13C4B8; Sat, 14 Apr 2007 20:38:38 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EKcc3j074048; Sat, 14 Apr 2007 20:38:38 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EKcc3P074047; Sat, 14 Apr 2007 20:38:38 GMT (envelope-from kmacy) Message-Id: <200704142038.l3EKcc3P074047@repoman.freebsd.org> From: Kip Macy Date: Sat, 14 Apr 2007 20:38:38 +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/dev/cxgb/sys mvec.h uipc_mvec.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: Sat, 14 Apr 2007 20:38:38 -0000 kmacy 2007-04-14 20:38:38 UTC FreeBSD src repository Modified files: sys/dev/cxgb/sys mvec.h uipc_mvec.c Log: add reference count pointer to mbuf iovec implement robust version of m_collapse add support for sf_buf add fix for m_iovappend add calls to m_sanity under INVARIANTS fix m_freem_vec to correctly travese the mbuf iovec chain Revision Changes Path 1.4 +81 -38 src/sys/dev/cxgb/sys/mvec.h 1.5 +300 -123 src/sys/dev/cxgb/sys/uipc_mvec.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 20:40:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5A9216A402; Sat, 14 Apr 2007 20:40:22 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9108513C4B9; Sat, 14 Apr 2007 20:40:22 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EKeM1W074198; Sat, 14 Apr 2007 20:40:22 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EKeMHD074197; Sat, 14 Apr 2007 20:40:22 GMT (envelope-from kmacy) Message-Id: <200704142040.l3EKeMHD074197@repoman.freebsd.org> From: Kip Macy Date: Sat, 14 Apr 2007 20:40:22 +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/dev/cxgb cxgb_main.c cxgb_sge.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: Sat, 14 Apr 2007 20:40:22 -0000 kmacy 2007-04-14 20:40:22 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_main.c cxgb_sge.c Log: Add support for mbuf iovec in the TX path Revision Changes Path 1.13 +38 -4 src/sys/dev/cxgb/cxgb_main.c 1.11 +49 -36 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 20:50:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5522116A40E; Sat, 14 Apr 2007 20:50:15 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2FB8F13C4DE; Sat, 14 Apr 2007 20:50:15 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EKoFI4084282; Sat, 14 Apr 2007 20:50:15 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EKoFT7084281; Sat, 14 Apr 2007 20:50:15 GMT (envelope-from pjd) Message-Id: <200704142050.l3EKoFT7084281@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 20:50: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/contrib/opensolaris/uts/common/fs/zfs vdev_raidz.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: Sat, 14 Apr 2007 20:50:15 -0000 pjd 2007-04-14 20:50:14 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs vdev_raidz.c Log: Fix RAID-Z resilvering. Obtained from: OpenSolaris Revision Changes Path 1.2 +16 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 22:20:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 854B616A407; Sat, 14 Apr 2007 22:20:32 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2685113C4B8; Sat, 14 Apr 2007 22:20:32 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EMKW42000499; Sat, 14 Apr 2007 22:20:32 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EMKWIx000498; Sat, 14 Apr 2007 22:20:32 GMT (envelope-from kientzle) Message-Id: <200704142220.l3EMKWIx000498@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 22:20:31 +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/lib/libarchive archive_write_disk.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: Sat, 14 Apr 2007 22:20:32 -0000 kientzle 2007-04-14 22:20:31 UTC FreeBSD src repository Modified files: lib/libarchive archive_write_disk.c Log: Invoke utime(2) properly. (It's only used on platforms that lack utimes(2).) Revision Changes Path 1.9 +2 -2 src/lib/libarchive/archive_write_disk.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 22:32:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26F2516A40D; Sat, 14 Apr 2007 22:32:59 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id C933A13C4C8; Sat, 14 Apr 2007 22:32:57 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l3EMWsGd012245; Sat, 14 Apr 2007 16:32:55 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <46215688.4040005@samsco.org> Date: Sat, 14 Apr 2007 16:32:40 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: Pawel Jakub Dawidek References: <200704141501.l3EF1pVG089934@repoman.freebsd.org> In-Reply-To: <200704141501.l3EF1pVG089934@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Sat, 14 Apr 2007 16:32:55 -0600 (MDT) X-Spam-Status: No, score=-1.4 required=5.5 tests=ALL_TRUSTED autolearn=failed version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.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: Sat, 14 Apr 2007 22:32:59 -0000 Pawel Jakub Dawidek wrote: > pjd 2007-04-14 15:01:51 UTC > > FreeBSD src repository > > Modified files: > sys/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.c > Log: > MFp4: Hmm, it seems to work now. > > Revision Changes Path > 1.4 +1 -8 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c And what exactly does this commit mean? Scott From owner-cvs-src@FreeBSD.ORG Sat Apr 14 22:34:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 626B616A406; Sat, 14 Apr 2007 22:34:11 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 52F1D13C458; Sat, 14 Apr 2007 22:34:11 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EMYBX2003429; Sat, 14 Apr 2007 22:34:11 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EMYAcb003428; Sat, 14 Apr 2007 22:34:10 GMT (envelope-from kientzle) Message-Id: <200704142234.l3EMYAcb003428@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 22:34:10 +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/lib/libarchive Makefile archive.h.in archive_read_support_format_ar.c archive_write_set_format_ar.c archive_write_set_format_by_name.c src/lib/libarchive/test test_read_format_ar.c test_write_format_ar.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: Sat, 14 Apr 2007 22:34:11 -0000 kientzle 2007-04-14 22:34:10 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive.h.in archive_read_support_format_ar.c archive_write_set_format_ar.c archive_write_set_format_by_name.c lib/libarchive/test test_read_format_ar.c test_write_format_ar.c Log: Overhaul of 'ar' support: * use "AR_GNU" as the format name instead of AR_SVR4 (it's what everyone is going to call it anyway) * Simplify numeric parsing to unsigned (none of the numeric values should ever be negative); don't run off end of numeric fields. * Finish parsing the common header fields before the next I/O request (which might dump the contents) * Be smarter about format guessing and trimming filenames. * Most of the magic values are only used in one place, so just inline them. * Many more comments. * Be smarter about handling damaged entries; return something reasonable. * Call it a "filename table" instead of a "string table" * Update tests. Enable selection of 'ar', 'arbsd', and 'argnu' formats by name (this allows bsdtar to create ar format archives). The 'ar' writer still needs some work; it should reject entries that aren't regular files and should probably also strip leading paths from filenames. Revision Changes Path 1.69 +1 -0 src/lib/libarchive/Makefile 1.42 +1 -1 src/lib/libarchive/archive.h.in 1.4 +206 -216 src/lib/libarchive/archive_read_support_format_ar.c 1.2 +2 -2 src/lib/libarchive/archive_write_set_format_ar.c 1.6 +4 -0 src/lib/libarchive/archive_write_set_format_by_name.c 1.2 +16 -5 src/lib/libarchive/test/test_read_format_ar.c 1.2 +5 -4 src/lib/libarchive/test/test_write_format_ar.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 22:49:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D66AD16A481; Sat, 14 Apr 2007 22:49:40 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0DD6A13C4BC; Sat, 14 Apr 2007 22:49:40 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EMnccK005121; Sat, 14 Apr 2007 22:49:38 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EMncvq005120; Sat, 14 Apr 2007 22:49:38 GMT (envelope-from kientzle) Message-Id: <200704142249.l3EMncvq005120@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Apr 2007 22:49:38 +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/lib/libarchive archive_read_extract.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: Sat, 14 Apr 2007 22:49:41 -0000 kientzle 2007-04-14 22:49:38 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_extract.c Log: Pass through error message if any operation fails, not just the last one. Revision Changes Path 1.56 +1 -1 src/lib/libarchive/archive_read_extract.c From owner-cvs-src@FreeBSD.ORG Sat Apr 14 23:06:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9CC2816A402; Sat, 14 Apr 2007 23:06:22 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 76DBE13C46E; Sat, 14 Apr 2007 23:06:22 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3EN6M15009257; Sat, 14 Apr 2007 23:06:22 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3EN6Mnb009256; Sat, 14 Apr 2007 23:06:22 GMT (envelope-from pjd) Message-Id: <200704142306.l3EN6Mnb009256@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 14 Apr 2007 23:06:22 +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/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.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: Sat, 14 Apr 2007 23:06:22 -0000 pjd 2007-04-14 23:06:22 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.c Log: Force commit to actually document what was changed: At some point in ZFS porting cycle I wasn't able to open snapshot datasets in DS_MODE_PRIMARY mode and I changed it to DS_MODE_STANDARD. It seems that it works just fine with DS_MODE_PRIMARY mode now, but I don't really know what have changed. Requested by: scottl Revision Changes Path 1.5 +0 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c