From owner-cvs-src@FreeBSD.ORG Sun Sep 24 00:26:34 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9178D16A403; Sun, 24 Sep 2006 00:26:34 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 528E943D45; Sun, 24 Sep 2006 00:26:34 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O0QY3r039548; Sun, 24 Sep 2006 00:26:34 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O0QYqf039547; Sun, 24 Sep 2006 00:26:34 GMT (envelope-from imp) Message-Id: <200609240026.k8O0QYqf039547@repoman.freebsd.org> From: Warner Losh Date: Sun, 24 Sep 2006 00:26: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/dev/exca exca.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, 24 Sep 2006 00:26:34 -0000 imp 2006-09-24 00:26:34 UTC FreeBSD src repository Modified files: sys/dev/exca exca.c Log: Cleanup sloppy ifdef. Revision Changes Path 1.25 +1 -5 src/sys/dev/exca/exca.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 02:23:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12A4016A40F; Sun, 24 Sep 2006 02:23:30 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C476743D49; Sun, 24 Sep 2006 02:23:29 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O2NTu5054801; Sun, 24 Sep 2006 02:23:29 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O2NT5S054800; Sun, 24 Sep 2006 02:23:29 GMT (envelope-from jmg) Message-Id: <200609240223.k8O2NT5S054800@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 24 Sep 2006 02:23: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/kern kern_event.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, 24 Sep 2006 02:23:30 -0000 jmg 2006-09-24 02:23:29 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: add KTRACE hooks into kevent... This will help people debug their kqueue programs to find out exactly which events were registered and which were returned... This should be lower in kern_kevent, but that would require special munging due to locks and the functions used to copyin/copyout kevents... If someone wants to teach ktrace how to output pretty kevents, I have a kevent prety printer that can be used... Revision Changes Path 1.104 +38 -2 src/sys/kern/kern_event.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 02:29:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F0516A407; Sun, 24 Sep 2006 02:29:53 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7196543D55; Sun, 24 Sep 2006 02:29:53 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O2Tr6H055063; Sun, 24 Sep 2006 02:29:53 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O2TrSg055062; Sun, 24 Sep 2006 02:29:53 GMT (envelope-from jmg) Message-Id: <200609240229.k8O2TrSg055062@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 24 Sep 2006 02:29: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/sys/kern kern_descrip.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, 24 Sep 2006 02:29:53 -0000 jmg 2006-09-24 02:29:53 UTC FreeBSD src repository Modified files: sys/kern kern_descrip.c Log: return EBADF instead of successfully attaching (and then panicing) when an fd is dieing.. Convinced by: jhb PR: 103127 Revision Changes Path 1.298 +1 -1 src/sys/kern/kern_descrip.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 04:47:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E426316A407; Sun, 24 Sep 2006 04:47:47 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E9A543D45; Sun, 24 Sep 2006 04:47:47 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O4llPx072060; Sun, 24 Sep 2006 04:47:47 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O4llex072059; Sun, 24 Sep 2006 04:47:47 GMT (envelope-from jmg) Message-Id: <200609240447.k8O4llex072059@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 24 Sep 2006 04:47: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/kern kern_event.c vfs_aio.c src/sys/sys event.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, 24 Sep 2006 04:47:48 -0000 jmg 2006-09-24 04:47:47 UTC FreeBSD src repository Modified files: sys/kern kern_event.c vfs_aio.c sys/sys event.h Log: hide kqueue_register from public view, and replace it w/ kqfd_register... this eliminates a possible race in aio registering a kevent.. Revision Changes Path 1.105 +30 -2 src/sys/kern/kern_event.c 1.227 +6 -33 src/sys/kern/vfs_aio.c 1.37 +2 -2 src/sys/sys/event.h From owner-cvs-src@FreeBSD.ORG Sun Sep 24 08:23:48 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12EF216A403; Sun, 24 Sep 2006 08:23:48 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FCF843D5A; Sun, 24 Sep 2006 08:23:47 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout1.pacific.net.au (Postfix) with ESMTP id D266832867F; Sun, 24 Sep 2006 18:23:45 +1000 (EST) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8O8Ng9I013977; Sun, 24 Sep 2006 18:23:43 +1000 Date: Sun, 24 Sep 2006 18:23:41 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Tim Kientzle In-Reply-To: <45156E4E.6040806@kientzle.com> Message-ID: <20060924165852.O74016@delplex.bde.org> References: <200609150804.k8F84O1H056038@repoman.freebsd.org> <20060915155912.GA71796@xor.obsecurity.org> <450AD508.10608@freebsd.org> <20060915180315.GB74735@xor.obsecurity.org> <450C30ED.7090901@freebsd.org> <20060916192437.GA15425@xor.obsecurity.org> <45156E4E.6040806@kientzle.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@FreeBSD.org, Andre Oppermann , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Tim Kientzle , Ruslan Ermilov , Kris Kennaway Subject: Re: bsdtar vs gtar performance X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 08:23:48 -0000 On Sat, 23 Sep 2006, Tim Kientzle wrote: > Kris and Ruslan were recently discussing the performance of bsdtar > relative to gtar, which prompted me to do some measurements > of my own. I used /usr/ports as my test, because it stresses > file and directory creation over extracting large files. > > Here are some initial results, based on ten runs of each test on a > quiescent system, comparing results with PHK's "ministat": > > [... ones with no difference] > > * Extracting uncompressed archives: gtar is about 13% faster > than bsdtar in my test. Interestingly (to me), this was the same > with or without -m. (I've long suspected dir timestamp restores > as a contributor; this shows otherwise.) Changes to attributes by syscalls (utimes(), chown()... are always written asynchronously, so -m should always have little effect. A quick test showed that the main difference for extraction is that bsdtar does an lchmod() for every file extracted. gtar apparently optimizes away null chmod()'s. I would expect -m to make little difference for bsdtar since the writes for the changes to the attributes from utimes() + lchmod() are coalesced, but for gtar -m would be noticeable faster since it usually eliminates these writes. Bruce From owner-cvs-src@FreeBSD.ORG Sun Sep 24 09:16:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77EDB16A407; Sun, 24 Sep 2006 09:16:29 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3372B43D6A; Sun, 24 Sep 2006 09:16:29 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9GTpB001351; Sun, 24 Sep 2006 09:16:29 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9GSCw001350; Sun, 24 Sep 2006 09:16:28 GMT (envelope-from bms) Message-Id: <200609240916.k8O9GSCw001350@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 24 Sep 2006 09:16: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/tcpdump 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, 24 Sep 2006 09:16:29 -0000 bms 2006-09-24 09:16:27 UTC FreeBSD src repository Modified files: usr.sbin/tcpdump Makefile Log: Disconnect tcpslice from build. Reviewed by: sam, bmah Revision Changes Path 1.3 +1 -1 src/usr.sbin/tcpdump/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 24 09:18:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1436516A415; Sun, 24 Sep 2006 09:18:39 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8220C43D7F; Sun, 24 Sep 2006 09:18:37 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9IbH1001477; Sun, 24 Sep 2006 09:18:37 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9IbHF001476; Sun, 24 Sep 2006 09:18:37 GMT (envelope-from bms) Message-Id: <200609240918.k8O9IbHF001476@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 24 Sep 2006 09:18: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/usr.sbin/tcpdump/tcpslice Makefile gwtm2secs.c search.c tcpslice.1 tcpslice.c tcpslice.h 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, 24 Sep 2006 09:18:39 -0000 bms 2006-09-24 09:18:37 UTC FreeBSD src repository Removed files: usr.sbin/tcpdump/tcpslice Makefile gwtm2secs.c search.c tcpslice.1 tcpslice.c tcpslice.h util.c Log: De-orbit burn tcpslice. Reviewed by: sam, bmah Revision Changes Path 1.14 +0 -23 src/usr.sbin/tcpdump/tcpslice/Makefile (dead) 1.6 +0 -79 src/usr.sbin/tcpdump/tcpslice/gwtm2secs.c (dead) 1.6 +0 -566 src/usr.sbin/tcpdump/tcpslice/search.c (dead) 1.16 +0 -293 src/usr.sbin/tcpdump/tcpslice/tcpslice.1 (dead) 1.14 +0 -626 src/usr.sbin/tcpdump/tcpslice/tcpslice.c (dead) 1.2 +0 -59 src/usr.sbin/tcpdump/tcpslice/tcpslice.h (dead) 1.4 +0 -56 src/usr.sbin/tcpdump/tcpslice/util.c (dead) From owner-cvs-src@FreeBSD.ORG Sun Sep 24 09:39:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 927A216A412; Sun, 24 Sep 2006 09:39:18 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C651E43D64; Sun, 24 Sep 2006 09:39:17 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9dHYO002502; Sun, 24 Sep 2006 09:39:17 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9dHK5002501; Sun, 24 Sep 2006 09:39:17 GMT (envelope-from hrs) Message-Id: <200609240939.k8O9dHK5002501@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 24 Sep 2006 09:39: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/dev/acpica/Osd OsdHardware.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, 24 Sep 2006 09:39:18 -0000 hrs 2006-09-24 09:39:17 UTC FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdHardware.c Log: Disable an overly-verbose warning message by default. Suggested by: njl MFC after: 3 days Revision Changes Path 1.21 +6 -3 src/sys/dev/acpica/Osd/OsdHardware.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 10:57:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9240516A40F; Sun, 24 Sep 2006 10:57:35 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F8743D68; Sun, 24 Sep 2006 10:57:35 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OAvZ9v007480; Sun, 24 Sep 2006 10:57:35 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OAvZYD007479; Sun, 24 Sep 2006 10:57:35 GMT (envelope-from simon) Message-Id: <200609241057.k8OAvZYD007479@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 24 Sep 2006 10:57: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 ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 10:57:35 -0000 simon 2006-09-24 10:57:35 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Remove tcpslice files. Revision Changes Path 1.51 +3 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Sun Sep 24 13:35:59 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C283116A403; Sun, 24 Sep 2006 13:35:59 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB45043D46; Sun, 24 Sep 2006 13:35:58 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODZwU0027660; Sun, 24 Sep 2006 13:35:58 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODZwSP027659; Sun, 24 Sep 2006 13:35:58 GMT (envelope-from rwatson) Message-Id: <200609241335.k8ODZwSP027659@repoman.freebsd.org> From: Robert Watson Date: Sun, 24 Sep 2006 13: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/sys/security/audit audit_worker.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, 24 Sep 2006 13:35:59 -0000 rwatson 2006-09-24 13:35:58 UTC FreeBSD src repository Modified files: sys/security/audit audit_worker.c Log: Rework the way errors are handled with respect to how audit records are written to the audit trail file: - audit_record_write() now returns void, and all file system specific error handling occurs inside this function. This pushes error handling complexity out of the record demux routine that hands off to both the trail and audit pipes, and makes trail behavior more consistent with pipes as a record destination. - Rate limit kernel printfs associated with running low on space. Rate limit audit triggers for low space. Rate limit printfs for fail stop events. Rate limit audit worker write error printfs. - Document in detail the types of limits and space checks we perform, and combine common cases. This improves the audit subsystems tolerance to low space conditions by avoiding toasting the console with printfs are waking up the audit daemon continuously. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.12 +146 -101 src/sys/security/audit/audit_worker.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 13:39:07 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F419A16A415; Sun, 24 Sep 2006 13:39:06 +0000 (UTC) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DE1043D66; Sun, 24 Sep 2006 13:39:05 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODd5nE027876; Sun, 24 Sep 2006 13:39:05 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODd5Ex027875; Sun, 24 Sep 2006 13:39:05 GMT (envelope-from iedowse) Message-Id: <200609241339.k8ODd5Ex027875@repoman.freebsd.org> From: Ian Dowse Date: Sun, 24 Sep 2006 13:39: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/usb ehci.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, 24 Sep 2006 13:39:07 -0000 iedowse 2006-09-24 13:39:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb ehci.c Log: MFC 1.42, 1.43: Let the EHCI hardware track the toggle state for bulk and interrupt transfers. This fixes some cases where the software toggle tracking was not doing the right thing. For example, a short transfer that transferred 0 bytes of the requested qTD transfer size does cause a toggle change, but the existing code was assuming it didn't. Approved by: re (mux) Revision Changes Path 1.36.2.3 +29 -50 src/sys/dev/usb/ehci.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 13:58:45 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 066EF16A40F; Sun, 24 Sep 2006 13:58:45 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8F9B43D49; Sun, 24 Sep 2006 13:58:44 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODwiN6028766; Sun, 24 Sep 2006 13:58:44 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODwidf028765; Sun, 24 Sep 2006 13:58:44 GMT (envelope-from danger) Message-Id: <200609241358.k8ODwidf028765@repoman.freebsd.org> From: Daniel Gerzo Date: Sun, 24 Sep 2006 13:58: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/share/man/man4 divert.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: Sun, 24 Sep 2006 13:58:45 -0000 danger 2006-09-24 13:58:44 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 divert.4 Log: - move steps describing how to gain ipdivert support to SYNOPSIS and follow the style of other section 4 manual pages - add ipfw(4) to SEE ALSO section Reviewed by: ru Approved by: trhodes (mentor), keramida (mentor) Revision Changes Path 1.38 +18 -8 src/share/man/man4/divert.4 From owner-cvs-src@FreeBSD.ORG Sun Sep 24 14:35:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E7D616A403; Sun, 24 Sep 2006 14:35:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 667D543D88; Sun, 24 Sep 2006 14:35:27 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEZR88032045; Sun, 24 Sep 2006 14:35:27 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEZRDT032044; Sun, 24 Sep 2006 14:35:27 GMT (envelope-from delphij) Message-Id: <200609241435.k8OEZRDT032044@repoman.freebsd.org> From: Xin LI Date: Sun, 24 Sep 2006 14:35:27 +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/fs/msdosfs msdosfs_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: Sun, 24 Sep 2006 14:35:29 -0000 delphij 2006-09-24 14:35:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/msdosfs msdosfs_vfsops.c Log: MFC 1.152: When the volume is being downgraded from a read-write mode, mark it as clean. PR: kern/85366 Submitted by: Dan Lukes Approved by: re (hrs) Revision Changes Path 1.144.2.5 +4 -0 src/sys/fs/msdosfs/msdosfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 14:55:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66E8016A416; Sun, 24 Sep 2006 14:55:49 +0000 (UTC) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1093843D53; Sun, 24 Sep 2006 14:55:49 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEtmrV032948; Sun, 24 Sep 2006 14:55:48 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEtmhf032947; Sun, 24 Sep 2006 14:55:48 GMT (envelope-from iedowse) Message-Id: <200609241455.k8OEtmhf032947@repoman.freebsd.org> From: Ian Dowse Date: Sun, 24 Sep 2006 14:55:48 +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/usb ugen.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, 24 Sep 2006 14:55:49 -0000 iedowse 2006-09-24 14:55:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb ugen.c Log: MFC 1.106: Fix a number of cases where ugen would panic, especially when the device went away while open or if you tried to change the config number while devices were open. Approved by: re (hrs) Revision Changes Path 1.103.2.1 +85 -32 src/sys/dev/usb/ugen.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 14:59:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C592516A40F; Sun, 24 Sep 2006 14:59:18 +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 7D7DC43D64; Sun, 24 Sep 2006 14:59:10 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id CBA84EB3E45; Sun, 24 Sep 2006 22:59:08 +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 fI0sKl2wQKOK; Sun, 24 Sep 2006 22:59:07 +0800 (CST) Received: from [192.168.1.32] (unknown [221.219.156.20]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id C8281EB2CC9; Sun, 24 Sep 2006 22:59:06 +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=jYpNR45cuKdKEgEIpTbznIU5ff3mOxLPrMgz7WO8TYKyCdhU+m2pYOVJDXvfrbwRi S3sflMNM3OHZZEsupemDw== Message-ID: <45169D29.7040504@delphij.net> Date: Sun, 24 Sep 2006 22:58:49 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Ian Dowse References: <200609241455.k8OEtmhf032947@repoman.freebsd.org> In-Reply-To: <200609241455.k8OEtmhf032947@repoman.freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig896B0D2394CCA99BBF512E64" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/usb ugen.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, 24 Sep 2006 14:59:18 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig896B0D2394CCA99BBF512E64 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Ian Dowse wrote: > iedowse 2006-09-24 14:55:48 UTC >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_6) > sys/dev/usb ugen.c=20 > Log: > MFC 1.106: Fix a number of cases where ugen would panic, especially > when the device went away while open or if you tried to change the > config number while devices were open. > =20 > Approved by: re (hrs) > =20 > Revision Changes Path > 1.103.2.1 +85 -32 src/sys/dev/usb/ugen.c Thanks! Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig896B0D2394CCA99BBF512E64 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.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFFp0pOfuToMruuMARA3SfAJwOPm3yT0Fp6Jltq29YlKcyLV0HXACfQL2Q k+kyL5vIz6W2zBRvvOkMOq8= =2fW8 -----END PGP SIGNATURE----- --------------enig896B0D2394CCA99BBF512E64-- From owner-cvs-src@FreeBSD.ORG Sun Sep 24 16:02:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8B4A16A407; Sun, 24 Sep 2006 16:02:32 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7546043D55; Sun, 24 Sep 2006 16:02:32 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OG2WQ9038229; Sun, 24 Sep 2006 16:02:32 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OG2WAn038228; Sun, 24 Sep 2006 16:02:32 GMT (envelope-from emax) Message-Id: <200609241602.k8OG2WAn038228@repoman.freebsd.org> From: Maksim Yevmenkin Date: Sun, 24 Sep 2006 16:02:32 +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/kbdcontrol kbdcontrol.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, 24 Sep 2006 16:02:32 -0000 emax 2006-09-24 16:02:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/kbdcontrol kbdcontrol.c Log: MFC: Make op parameter to mux_keyboard() u_int instead of int. This should fix sparc64 messages like Sep 15 11:17:39 peahi kernel: WARNING pid 5477 (kbdcontrol): ioctl sign-extension ioctl ffffffff80244b45 PR: sparc64/96798 Approved by: re (hrs) Revision Changes Path 1.48.8.2 +2 -2 src/usr.sbin/kbdcontrol/kbdcontrol.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 17:31:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 932AF16A525; Sun, 24 Sep 2006 17:31:05 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C80543D53; Sun, 24 Sep 2006 17:31:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OHV5iU053133; Sun, 24 Sep 2006 17:31:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OHV5mZ053132; Sun, 24 Sep 2006 17:31:05 GMT (envelope-from rwatson) Message-Id: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> From: Robert Watson Date: Sun, 24 Sep 2006 17:31: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/etc/rc.d auditd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:31:05 -0000 rwatson 2006-09-24 17:31:04 UTC FreeBSD src repository Modified files: etc/rc.d auditd Log: Sleep for one second after calling audit -t to give the audit daemon a chance to actually terminate the audit service and exit. Otherwise, on an rc.d/auditd restart, the new audit daemon instance may try to start auditing while the previous session is still running. Likewise, this ensures a chance for auditd to terminate the audit trail at system shutdown. Perhaps more ideally, the script would wait synchronously for auditd to exit rather than for an arbitrary but short period of time. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.3 +1 -0 src/etc/rc.d/auditd From owner-cvs-src@FreeBSD.ORG Sun Sep 24 17:37:08 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BFFD16A403; Sun, 24 Sep 2006 17:37:08 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBB3F43D6D; Sun, 24 Sep 2006 17:37:03 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OHb3tJ053586; Sun, 24 Sep 2006 17:37:03 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OHb3AY053585; Sun, 24 Sep 2006 17:37:03 GMT (envelope-from netchild) Message-Id: <200609241737.k8OHb3AY053585@repoman.freebsd.org> From: Alexander Leidinger Date: Sun, 24 Sep 2006 17:37: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/dev/sound/pcm mixer.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, 24 Sep 2006 17:37:08 -0000 netchild 2006-09-24 17:37:03 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.c Log: Fix uninitialized variable warning. Submitted by: dhw Reviewed by: ryanb Revision Changes Path 1.51 +1 -0 src/sys/dev/sound/pcm/mixer.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 18:37:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A08716A403; Sun, 24 Sep 2006 18:37: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 7CD7D43D46; Sun, 24 Sep 2006 18:37:29 +0000 (GMT) (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 k8OIbSPV007909; Sun, 24 Sep 2006 22:37: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 k8OIbRVx007908; Sun, 24 Sep 2006 22:37:27 +0400 (MSD) (envelope-from ache) Date: Sun, 24 Sep 2006 22:37:27 +0400 From: Andrey Chernov To: Robert Watson Message-ID: <20060924183727.GA7823@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Robert Watson , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609241731.k8OHV5mZ053132@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: src/etc/rc.d auditd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 18:37:30 -0000 On Sun, Sep 24, 2006 at 05:31:04PM +0000, Robert Watson wrote: > rwatson 2006-09-24 17:31:04 UTC > > FreeBSD src repository > > Modified files: > etc/rc.d auditd > Log: > Sleep for one second after calling audit -t to give the audit daemon a > chance to actually terminate the audit service and exit. Otherwise, on > an rc.d/auditd restart, the new audit daemon instance may try to start > auditing while the previous session is still running. Likewise, this > ensures a chance for auditd to terminate the audit trail at system > shutdown. You can't be sure about 1 second (or any N seconds) and should choouse another method like pid file or pipe file or some sysctl value presence checking loop. -- http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Sun Sep 24 19:24:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED6CD16A492; Sun, 24 Sep 2006 19:24:26 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB17B43D45; Sun, 24 Sep 2006 19:24:26 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJOQ3v063005; Sun, 24 Sep 2006 19:24:26 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJOQOr063004; Sun, 24 Sep 2006 19:24:26 GMT (envelope-from imp) Message-Id: <200609241924.k8OJOQOr063004@repoman.freebsd.org> From: Warner Losh Date: Sun, 24 Sep 2006 19:24: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/sys/i386/i386 busdma_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: Sun, 24 Sep 2006 19:24:27 -0000 imp 2006-09-24 19:24:26 UTC FreeBSD src repository Modified files: sys/i386/i386 busdma_machdep.c Log: Add a newline to the printf. Revision Changes Path 1.83 +1 -1 src/sys/i386/i386/busdma_machdep.c From owner-cvs-src@FreeBSD.ORG Sun Sep 24 19:48:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F9D916A407; Sun, 24 Sep 2006 19:48:39 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAD5343D4C; Sun, 24 Sep 2006 19:48:38 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 81C0A46B0A; Sun, 24 Sep 2006 15:48:38 -0400 (EDT) Date: Sun, 24 Sep 2006 20:48:38 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Andrey Chernov In-Reply-To: <20060924183727.GA7823@nagual.pp.ru> Message-ID: <20060924204729.V42437@fledge.watson.org> References: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> <20060924183727.GA7823@nagual.pp.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/rc.d auditd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:48:39 -0000 On Sun, 24 Sep 2006, Andrey Chernov wrote: > On Sun, Sep 24, 2006 at 05:31:04PM +0000, Robert Watson wrote: >> rwatson 2006-09-24 17:31:04 UTC >> >> FreeBSD src repository >> >> Modified files: >> etc/rc.d auditd >> Log: >> Sleep for one second after calling audit -t to give the audit daemon a >> chance to actually terminate the audit service and exit. Otherwise, on >> an rc.d/auditd restart, the new audit daemon instance may try to start >> auditing while the previous session is still running. Likewise, this >> ensures a chance for auditd to terminate the audit trail at system >> shutdown. > > You can't be sure about 1 second (or any N seconds) and should choouse > another method like pid file or pipe file or some sysctl value presence > checking loop. Yes, the comment you helpfully cut from my commit message in your reply said pretty much exactly that. However, fixing this is non-trivial, and not something that will happen by 6.2, hence the workaround. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Mon Sep 25 01:29:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 840A016A417; Mon, 25 Sep 2006 01:29:49 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 404CB43D45; Mon, 25 Sep 2006 01:29:49 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P1Tnsk013229; Mon, 25 Sep 2006 01:29:49 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P1Tn0m013228; Mon, 25 Sep 2006 01:29:49 GMT (envelope-from jmg) Message-Id: <200609250129.k8P1Tn0m013228@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 25 Sep 2006 01:29: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_event.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, 25 Sep 2006 01:29:49 -0000 jmg 2006-09-25 01:29:49 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: remove unnecessary NULL check... Coverity ID: 1545 Revision Changes Path 1.106 +1 -2 src/sys/kern/kern_event.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 02:53:33 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C8AC16A403; Mon, 25 Sep 2006 02:53:33 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15B8943D45; Mon, 25 Sep 2006 02:53:33 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P2rWuF019933; Mon, 25 Sep 2006 02:53:32 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P2rWCB019932; Mon, 25 Sep 2006 02:53:32 GMT (envelope-from emax) Message-Id: <200609250253.k8P2rWCB019932@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 25 Sep 2006 02:53:32 +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/uart uart_kbd_sun.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, 25 Sep 2006 02:53:33 -0000 emax 2006-09-25 02:53:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/uart uart_kbd_sun.c Log: MFC: Do not try to call keyboard callback unless keyboard is active and busy. This should fix 'kbdcontrol -K < /dev/console' panic on sparc64 with sunkbd(4). PR: sparc64/96798 Approved by: re (hrs) Revision Changes Path 1.5.2.2 +6 -4 src/sys/dev/uart/uart_kbd_sun.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 04:01:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E7A916A403; Mon, 25 Sep 2006 04:01:21 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4818E43D45; Mon, 25 Sep 2006 04:01:21 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P41LNk025051; Mon, 25 Sep 2006 04:01:21 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P41Lpb025050; Mon, 25 Sep 2006 04:01:21 GMT (envelope-from thompsa) Message-Id: <200609250401.k8P41Lpb025050@repoman.freebsd.org> From: Andrew Thompson Date: Mon, 25 Sep 2006 04:01:21 +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 if_bridge.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, 25 Sep 2006 04:01:21 -0000 thompsa 2006-09-25 04:01:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_bridge.c Log: MFC r1.81 Revert r1.11.2.38 as the ethernet header was inadvertently stripped from ARP packets. Reimplement this correctly and use a sysctl that defaults to off so the user doesnt get any suprises if ipfw blocks the ARP packet. Approved by: re (hrs) Revision Changes Path 1.11.2.39 +36 -14 src/sys/net/if_bridge.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 06:19:41 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A963B16A407; Mon, 25 Sep 2006 06:19:41 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 745AF43D55; Mon, 25 Sep 2006 06:19:41 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P6Jf6A044049; Mon, 25 Sep 2006 06:19:41 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P6JfRq044048; Mon, 25 Sep 2006 06:19:41 GMT (envelope-from ru) Message-Id: <200609250619.k8P6JfRq044048@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 25 Sep 2006 06:19: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/contrib/gcc cccp.1 cpp.1 gcc.1 src/contrib/gcc/doc cpp.1 gcc.1 gcov.1 src/gnu/usr.bin/cc/cc Makefile src/gnu/usr.bin/cc/cpp 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, 25 Sep 2006 06:19:41 -0000 ru 2006-09-25 06:19:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/gcc/doc cpp.1 gcc.1 gcov.1 gnu/usr.bin/cc/cc Makefile gnu/usr.bin/cc/cpp Makefile Removed files: (Branch: RELENG_6) contrib/gcc cccp.1 cpp.1 gcc.1 Log: MFC: Bring GCC manpages back to reality. Approved by: re (kensmith) Revision Changes Path 1.3.36.1 +0 -668 src/contrib/gcc/cccp.1 (dead) 1.1.1.2.14.1 +0 -1 src/contrib/gcc/cpp.1 (dead) 1.1.1.2.12.1 +296 -195 src/contrib/gcc/doc/cpp.1 1.1.1.2.12.1 +4930 -3668 src/contrib/gcc/doc/gcc.1 1.1.1.2.12.1 +290 -136 src/contrib/gcc/doc/gcov.1 1.21.2.1 +0 -4272 src/contrib/gcc/gcc.1 (dead) 1.31.2.1 +1 -1 src/gnu/usr.bin/cc/cc/Makefile 1.24.8.1 +1 -6 src/gnu/usr.bin/cc/cpp/Makefile From owner-cvs-src@FreeBSD.ORG Mon Sep 25 07:22:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE95D16A412; Mon, 25 Sep 2006 07:22:39 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A920843D5D; Mon, 25 Sep 2006 07:22:39 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P7MdR0049096; Mon, 25 Sep 2006 07:22:39 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P7Md1i049095; Mon, 25 Sep 2006 07:22:39 GMT (envelope-from jmg) Message-Id: <200609250722.k8P7Md1i049095@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 25 Sep 2006 07:22: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/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: Mon, 25 Sep 2006 07:22:40 -0000 jmg 2006-09-25 07:22:39 UTC FreeBSD src repository Modified files: sys/netinet tcp_timer.h Log: if min is greater than max, prefer max over min... I managed to get a retransmit timer that was going to take 19 days to trigger... Reviewed by: silby Revision Changes Path 1.31 +1 -1 src/sys/netinet/tcp_timer.h From owner-cvs-src@FreeBSD.ORG Mon Sep 25 07:26:07 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F296016A417; Mon, 25 Sep 2006 07:26:06 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FBBB43D5E; Mon, 25 Sep 2006 07:25:49 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5D62E.dip.t-dialin.net [84.165.214.46]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k8P71OHD051113; Mon, 25 Sep 2006 09:01:25 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (webmail.Leidinger.net [192.168.1.102]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k8P7PhHf087178; Mon, 25 Sep 2006 09:25:43 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from psbru.cec.eu.int (psbru.cec.eu.int [158.169.131.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Mon, 25 Sep 2006 09:25:11 +0200 Message-ID: <20060925092511.tufo9uura8ocowk8@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Mon, 25 Sep 2006 09:25:11 +0200 From: Alexander Leidinger To: Robert Watson , joel@FreeBSD.org References: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> In-Reply-To: <200609241731.k8OHV5mZ053132@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-Virus-Scanned: by amavisd-new Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d auditd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 07:26:07 -0000 Quoting Robert Watson (from Sun, 24 Sep 2006 17:31:04 +0000 (UTC)): > Perhaps more ideally, the script would wait synchronously for auditd to > exit rather than for an arbitrary but short period of time. Yes, pwait(1) would be handy... maybe we should add an entry in the ideas list for this tool. Bye, Alexander. -- QOTD: "My shampoo lasts longer than my relationships." 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 Mon Sep 25 09:37:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29A2716A40F; Mon, 25 Sep 2006 09:37:38 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 537C043D67; Mon, 25 Sep 2006 09:37:36 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P9baiD071864; Mon, 25 Sep 2006 09:37:36 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P9baJ6071863; Mon, 25 Sep 2006 09:37:36 GMT (envelope-from des) Message-Id: <200609250937.k8P9baJ6071863@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 25 Sep 2006 09:37: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/crypto/openssh monitor.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, 25 Sep 2006 09:37:38 -0000 des 2006-09-25 09:37:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssh monitor.c Log: MFC: vendor patch for BSM problem in protocol version 1. Approved by: re (mux) Revision Changes Path 1.17.2.2 +2 -5 src/crypto/openssh/monitor.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 10:05:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF92C16A492; Mon, 25 Sep 2006 10:05:38 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69FDF43D45; Mon, 25 Sep 2006 10:05:38 +0000 (GMT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PA5cBx080738; Mon, 25 Sep 2006 10:05:38 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PA5cbT080737; Mon, 25 Sep 2006 10:05:38 GMT (envelope-from thomas) Message-Id: <200609251005.k8PA5cbT080737@repoman.freebsd.org> From: Thomas Quinot Date: Mon, 25 Sep 2006 10:05: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/lib/libutil pw_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: Mon, 25 Sep 2006 10:05:38 -0000 thomas 2006-09-25 10:05:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libutil pw_util.c Log: MFC rev 1.36 to RELENG_6: (pw_copy): Handle the case of a malformed line in master.passwd (copy it silently, do not dereference NULL pointer). MFC rev. 1.37 to RELENG_6: Minor comment fix to the change above. PR: bin/102848 Approved by: re (hrs) Revision Changes Path 1.35.8.1 +11 -2 src/lib/libutil/pw_util.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 10:11:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51DD916A412; Mon, 25 Sep 2006 10:11:18 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24FD743D79; Mon, 25 Sep 2006 10:11:17 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PABGH7081088; Mon, 25 Sep 2006 10:11:16 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PABGaL081087; Mon, 25 Sep 2006 10:11:16 GMT (envelope-from bms) Message-Id: <200609251011.k8PABGaL081087@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 10:11: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 in_var.h ip_output.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, 25 Sep 2006 10:11:18 -0000 bms 2006-09-25 10:11:16 UTC FreeBSD src repository Modified files: sys/netinet in_var.h ip_output.c Log: Account for output IP datagrams on the ifaddr where they originated from, *not* the first ifaddr on the ifp. This is similar to what NetBSD does. PR: kern/72936 Submitted by: alfred Reviewed by: andre Revision Changes Path 1.57 +14 -3 src/sys/netinet/in_var.h 1.264 +12 -5 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 10:12:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F31116A412; Mon, 25 Sep 2006 10:12:21 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7272243D66; Mon, 25 Sep 2006 10:12:07 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PAC7Gr081150; Mon, 25 Sep 2006 10:12:07 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PAC7HD081149; Mon, 25 Sep 2006 10:12:07 GMT (envelope-from bms) Message-Id: <200609251012.k8PAC7HD081149@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 10:12: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/netinet ip_output.c ip_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: Mon, 25 Sep 2006 10:12:21 -0000 bms 2006-09-25 10:12:07 UTC FreeBSD src repository Modified files: sys/netinet ip_output.c ip_var.h Log: Forced commit to note this change should be MFCed. MFC after: 1 week Revision Changes Path 1.265 +0 -0 src/sys/netinet/ip_output.c 1.99 +0 -0 src/sys/netinet/ip_var.h From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:16:59 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B415A16A40F; Mon, 25 Sep 2006 11:16:59 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78A5243D45; Mon, 25 Sep 2006 11:16:59 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBGxj7090148; Mon, 25 Sep 2006 11:16:59 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBGx5f090147; Mon, 25 Sep 2006 11:16:59 GMT (envelope-from des) Message-Id: <200609251116.k8PBGx5f090147@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 25 Sep 2006 11:16:59 +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/libz ChangeLog FAQ README adler32.c compress.c crc32.c deflate.c deflate.h example.c gzio.c infback.c inffast.c inflate.c inflate.h inftrees.c minigzip.c trees.c zconf.h zlib.3 zlib.h zutil.c zutil.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, 25 Sep 2006 11:16:59 -0000 des 2006-09-25 11:16:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libz ChangeLog FAQ README adler32.c compress.c crc32.c deflate.c deflate.h example.c gzio.c infback.c inffast.c inflate.c inflate.h inftrees.c minigzip.c trees.c zconf.h zlib.3 zlib.h zutil.c zutil.h Log: MFC: upgrade to 1.2.3. Approved by: re (hrs) Revision Changes Path 1.1.1.6.2.1 +92 -1 src/lib/libz/ChangeLog 1.1.1.4.2.1 +14 -12 src/lib/libz/FAQ 1.1.1.6.2.1 +4 -5 src/lib/libz/README 1.9.2.1 +95 -20 src/lib/libz/adler32.c 1.9.2.1 +1 -1 src/lib/libz/compress.c 1.9.2.1 +96 -6 src/lib/libz/crc32.c 1.9.2.1 +258 -24 src/lib/libz/deflate.c 1.8.2.1 +8 -2 src/lib/libz/deflate.h 1.9.2.1 +1 -3 src/lib/libz/example.c 1.11.2.1 +35 -18 src/lib/libz/gzio.c 1.3.2.1 +6 -5 src/lib/libz/infback.c 1.5.2.1 +13 -0 src/lib/libz/inffast.c 1.6.2.1 +110 -16 src/lib/libz/inflate.c 1.1.1.1.8.1 +3 -5 src/lib/libz/inflate.h 1.6.2.1 +5 -4 src/lib/libz/inftrees.c 1.14.8.1 +4 -4 src/lib/libz/minigzip.c 1.9.2.1 +20 -16 src/lib/libz/trees.c 1.9.2.1 +10 -4 src/lib/libz/zconf.h 1.8.2.1 +3 -3 src/lib/libz/zlib.3 1.1.1.6.2.1 +193 -36 src/lib/libz/zlib.h 1.9.2.1 +16 -17 src/lib/libz/zutil.c 1.8.2.1 +18 -12 src/lib/libz/zutil.h From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:26:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F34DC16A403; Mon, 25 Sep 2006 11:26:31 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 294F943D7C; Mon, 25 Sep 2006 11:26:30 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBQU8c090693; Mon, 25 Sep 2006 11:26:30 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBQTad090692; Mon, 25 Sep 2006 11:26:30 GMT (envelope-from sos) Message-Id: <200609251126.k8PBQTad090692@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 25 Sep 2006 11:26: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/ata ata-chipset.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, 25 Sep 2006 11:26:32 -0000 sos 2006-09-25 11:26:29 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c Log: add support for the ALI/ULI M5288 AHCI part. patch by: Sven Petai Revision Changes Path 1.176 +7 -0 src/sys/dev/ata/ata-chipset.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:35:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1182216A403; Mon, 25 Sep 2006 11:35:35 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B077F43D7C; Mon, 25 Sep 2006 11:35:34 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBZY2m091224; Mon, 25 Sep 2006 11:35:34 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBZYqt091223; Mon, 25 Sep 2006 11:35:34 GMT (envelope-from scottl) Message-Id: <200609251135.k8PBZYqt091223@repoman.freebsd.org> From: Scott Long Date: Mon, 25 Sep 2006 11:35: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/dev/mfi mfi.c mfi_debug.c mfivar.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, 25 Sep 2006 11:35:35 -0000 scottl 2006-09-25 11:35:34 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi.c mfivar.h Added files: sys/dev/mfi mfi_debug.c Log: Add a command debugging module and a periodic watchdog timer. Sponsored by: IronPort Revision Changes Path 1.18 +44 -0 src/sys/dev/mfi/mfi.c 1.1 +228 -0 src/sys/dev/mfi/mfi_debug.c (new) 1.5 +15 -0 src/sys/dev/mfi/mfivar.h From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:40:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6365F16A403; Mon, 25 Sep 2006 11:40:23 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A132543DA7; Mon, 25 Sep 2006 11:40:15 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBeFVK091489; Mon, 25 Sep 2006 11:40:15 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBeFaR091488; Mon, 25 Sep 2006 11:40:15 GMT (envelope-from scottl) Message-Id: <200609251140.k8PBeFaR091488@repoman.freebsd.org> From: Scott Long Date: Mon, 25 Sep 2006 11:40: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/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: Mon, 25 Sep 2006 11:40:23 -0000 scottl 2006-09-25 11:40:15 UTC FreeBSD src repository Modified files: sys/conf NOTES files Log: Add the mfi_debug.c file and MFI_DEBUG option. Revision Changes Path 1.1382 +1 -0 src/sys/conf/NOTES 1.1143 +1 -0 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:40:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F2D616A4A7; Mon, 25 Sep 2006 11:40:53 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7A4143D69; Mon, 25 Sep 2006 11:40:34 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBeYAD091560; Mon, 25 Sep 2006 11:40:34 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBeYsb091559; Mon, 25 Sep 2006 11:40:34 GMT (envelope-from rwatson) Message-Id: <200609251140.k8PBeYsb091559@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:40:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: TrustedBSD Cc: Subject: cvs commit: src/contrib/openbsm - 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, 25 Sep 2006 11:40:53 -0000 rwatson 2006-09-25 11:40:34 UTC FreeBSD src repository src/contrib/openbsm - Imported sources Update of /home/ncvs/src/contrib/openbsm In directory repoman.freebsd.org:/tmp/cvs-serv91410 Log Message: Vendor import TrustedBSD OpenBSM 1.0 alpha 12, with the following change history notes since the last import: OpenBSM 1.0 alpha 12 - Correct bug in auditreduce which prevented the -c option from working correctly when the user specifies to process successful or failed events. The problem stemmed from not having access to the return token at the time the initial preselection occurred, but now a second preselection process occurs while processing the return token. - getacfilesz(3) API added to read new audit_control(5) filesz setting, which auditd(8) now sets the kernel audit trail rotation size to. - auditreduce(1) now uses stdin if no file names are specified on the command line; this was the documented behavior previously, but it was not implemented. Be more specific in auditreduce(1)'s examples section about what might be done with the output of auditreduce. - Add audit_warn(5) closefile event so that administrators can hook termination of an audit trail file. For example, this might be used to compress the trail file after it is closed. - auditreduce(1) now uses regular expressions for pathname matching. Users can now supply one or more (comma delimited) regular expressions for searching the pathnames. If one of the regular expressions is prefixed with a tilde (~), and a path matches, it will be excluded from the search results. MFC after: 3 days Obtained from: TrustedBSD Project Status: Vendor Tag: TrustedBSD Release Tags: OPENBSM_1_0_ALPHA_12 U src/contrib/openbsm/HISTORY U src/contrib/openbsm/LICENSE U src/contrib/openbsm/Makefile.am U src/contrib/openbsm/Makefile.in U src/contrib/openbsm/README U src/contrib/openbsm/TODO U src/contrib/openbsm/VERSION U src/contrib/openbsm/aclocal.m4 U src/contrib/openbsm/autogen.sh U src/contrib/openbsm/configure U src/contrib/openbsm/configure.ac U src/contrib/openbsm/bin/Makefile.am U src/contrib/openbsm/bin/Makefile.in U src/contrib/openbsm/bin/audit/Makefile.am U src/contrib/openbsm/bin/audit/Makefile.in U src/contrib/openbsm/bin/audit/audit.8 U src/contrib/openbsm/bin/audit/audit.c U src/contrib/openbsm/bin/auditd/Makefile.am U src/contrib/openbsm/bin/auditd/Makefile.in U src/contrib/openbsm/bin/auditd/audit_warn.c U src/contrib/openbsm/bin/auditd/auditd.8 U src/contrib/openbsm/bin/auditd/auditd.c U src/contrib/openbsm/bin/auditd/auditd.h U src/contrib/openbsm/bin/auditfilterd/Makefile.am U src/contrib/openbsm/bin/auditfilterd/Makefile.in U src/contrib/openbsm/bin/auditfilterd/auditfilterd.8 U src/contrib/openbsm/bin/auditfilterd/auditfilterd.c U src/contrib/openbsm/bin/auditfilterd/auditfilterd.h U src/contrib/openbsm/bin/auditfilterd/auditfilterd_conf.c U src/contrib/openbsm/bin/auditreduce/Makefile.am U src/contrib/openbsm/bin/auditreduce/Makefile.in U src/contrib/openbsm/bin/auditreduce/auditreduce.1 U src/contrib/openbsm/bin/auditreduce/auditreduce.c U src/contrib/openbsm/bin/auditreduce/auditreduce.h U src/contrib/openbsm/bin/praudit/Makefile.am U src/contrib/openbsm/bin/praudit/Makefile.in U src/contrib/openbsm/bin/praudit/praudit.1 U src/contrib/openbsm/bin/praudit/praudit.c U src/contrib/openbsm/bsm/Makefile.am U src/contrib/openbsm/bsm/Makefile.in U src/contrib/openbsm/bsm/audit.h U src/contrib/openbsm/bsm/audit_filter.h U src/contrib/openbsm/bsm/audit_internal.h C src/contrib/openbsm/bsm/audit_kevents.h U src/contrib/openbsm/bsm/audit_record.h U src/contrib/openbsm/bsm/audit_uevents.h U src/contrib/openbsm/bsm/libbsm.h U src/contrib/openbsm/compat/endian.h U src/contrib/openbsm/compat/queue.h U src/contrib/openbsm/compat/strlcat.h U src/contrib/openbsm/config/config.guess U src/contrib/openbsm/config/config.h.in U src/contrib/openbsm/config/config.sub U src/contrib/openbsm/config/depcomp U src/contrib/openbsm/config/install-sh U src/contrib/openbsm/config/ltmain.sh U src/contrib/openbsm/config/missing U src/contrib/openbsm/etc/audit_class C src/contrib/openbsm/etc/audit_control C src/contrib/openbsm/etc/audit_event U src/contrib/openbsm/etc/audit_filter U src/contrib/openbsm/etc/audit_user U src/contrib/openbsm/etc/audit_warn U src/contrib/openbsm/libbsm/Makefile.am U src/contrib/openbsm/libbsm/Makefile.in U src/contrib/openbsm/libbsm/au_class.3 U src/contrib/openbsm/libbsm/au_control.3 U src/contrib/openbsm/libbsm/au_event.3 U src/contrib/openbsm/libbsm/au_free_token.3 U src/contrib/openbsm/libbsm/au_io.3 U src/contrib/openbsm/libbsm/au_mask.3 U src/contrib/openbsm/libbsm/au_open.3 U src/contrib/openbsm/libbsm/au_token.3 U src/contrib/openbsm/libbsm/au_user.3 U src/contrib/openbsm/libbsm/audit_submit.3 U src/contrib/openbsm/libbsm/bsm_audit.c U src/contrib/openbsm/libbsm/bsm_class.c U src/contrib/openbsm/libbsm/bsm_control.c U src/contrib/openbsm/libbsm/bsm_event.c U src/contrib/openbsm/libbsm/bsm_flags.c U src/contrib/openbsm/libbsm/bsm_io.c U src/contrib/openbsm/libbsm/bsm_mask.c U src/contrib/openbsm/libbsm/bsm_notify.c U src/contrib/openbsm/libbsm/bsm_token.c U src/contrib/openbsm/libbsm/bsm_user.c U src/contrib/openbsm/libbsm/libbsm.3 U src/contrib/openbsm/libbsm/bsm_wrappers.c U src/contrib/openbsm/man/Makefile.am U src/contrib/openbsm/man/Makefile.in U src/contrib/openbsm/man/audit.2 U src/contrib/openbsm/man/audit.log.5 U src/contrib/openbsm/man/audit_class.5 U src/contrib/openbsm/man/audit_control.5 U src/contrib/openbsm/man/audit_event.5 U src/contrib/openbsm/man/audit_user.5 U src/contrib/openbsm/man/audit_warn.5 U src/contrib/openbsm/man/auditctl.2 U src/contrib/openbsm/man/auditon.2 U src/contrib/openbsm/man/getaudit.2 U src/contrib/openbsm/man/getauid.2 U src/contrib/openbsm/man/setaudit.2 U src/contrib/openbsm/man/setauid.2 U src/contrib/openbsm/modules/Makefile.am U src/contrib/openbsm/modules/Makefile.in U src/contrib/openbsm/modules/auditfilter_noop/Makefile.am U src/contrib/openbsm/modules/auditfilter_noop/Makefile.in U src/contrib/openbsm/modules/auditfilter_noop/auditfilter_noop.c U src/contrib/openbsm/test/Makefile.am U src/contrib/openbsm/test/Makefile.in U src/contrib/openbsm/test/bsm/Makefile.am U src/contrib/openbsm/test/bsm/Makefile.in U src/contrib/openbsm/test/bsm/generate.c U src/contrib/openbsm/test/reference/arg32_record U src/contrib/openbsm/test/reference/arg32_token U src/contrib/openbsm/test/reference/data_record U src/contrib/openbsm/test/reference/data_token U src/contrib/openbsm/test/reference/file_record U src/contrib/openbsm/test/reference/file_token U src/contrib/openbsm/test/reference/header32_token U src/contrib/openbsm/test/reference/in_addr_record U src/contrib/openbsm/test/reference/in_addr_token U src/contrib/openbsm/test/reference/ip_record U src/contrib/openbsm/test/reference/ip_token U src/contrib/openbsm/test/reference/ipc_record U src/contrib/openbsm/test/reference/ipc_token U src/contrib/openbsm/test/reference/iport_record U src/contrib/openbsm/test/reference/iport_token U src/contrib/openbsm/test/reference/opaque_record U src/contrib/openbsm/test/reference/opaque_token U src/contrib/openbsm/test/reference/path_record U src/contrib/openbsm/test/reference/path_token U src/contrib/openbsm/test/reference/process32_record U src/contrib/openbsm/test/reference/process32_token U src/contrib/openbsm/test/reference/process32ex_record U src/contrib/openbsm/test/reference/process32ex_token U src/contrib/openbsm/test/reference/return32_record U src/contrib/openbsm/test/reference/return32_token U src/contrib/openbsm/test/reference/seq_record U src/contrib/openbsm/test/reference/seq_token U src/contrib/openbsm/test/reference/subject32_record U src/contrib/openbsm/test/reference/subject32_token U src/contrib/openbsm/test/reference/subject32ex_record U src/contrib/openbsm/test/reference/subject32ex_token-IPv4 U src/contrib/openbsm/test/reference/subject32ex_token-IPv6 U src/contrib/openbsm/test/reference/text_record U src/contrib/openbsm/test/reference/text_token U src/contrib/openbsm/test/reference/trailer_token U src/contrib/openbsm/test/samples/execve-long-args.trail U src/contrib/openbsm/tools/Makefile.am U src/contrib/openbsm/tools/Makefile.in U src/contrib/openbsm/tools/audump.c 3 conflicts created by this import. Use the following command to help the merge: cvs checkout -jTrustedBSD:yesterday -jTrustedBSD src/contrib/openbsm From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:42:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBC6516A492; Mon, 25 Sep 2006 11:42:18 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6318B43D94; Mon, 25 Sep 2006 11:42:13 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBgDoi091698; Mon, 25 Sep 2006 11:42:13 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBgDna091697; Mon, 25 Sep 2006 11:42:13 GMT (envelope-from scottl) Message-Id: <200609251142.k8PBgDna091697@repoman.freebsd.org> From: Scott Long Date: Mon, 25 Sep 2006 11:42: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/modules/mfi 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, 25 Sep 2006 11:42:18 -0000 scottl 2006-09-25 11:42:13 UTC FreeBSD src repository Modified files: sys/modules/mfi Makefile Log: Update the mfi module build with the mfi_debug.c file. Revision Changes Path 1.4 +3 -1 src/sys/modules/mfi/Makefile From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:49:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02A5C16A49E; Mon, 25 Sep 2006 11:49:32 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36DDE43D66; Mon, 25 Sep 2006 11:48:08 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBm8GC092167; Mon, 25 Sep 2006 11:48:08 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBm8NT092166; Mon, 25 Sep 2006 11:48:08 GMT (envelope-from bms) Message-Id: <200609251148.k8PBm8NT092166@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 11: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/sys/netinet in_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: Mon, 25 Sep 2006 11:49:32 -0000 bms 2006-09-25 11:48:08 UTC FreeBSD src repository Modified files: sys/netinet in_var.h Log: Spleling Submitted by: pjd Revision Changes Path 1.58 +1 -1 src/sys/netinet/in_var.h From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:55:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0874B16A40F; Mon, 25 Sep 2006 11:55:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52AD143E82; Mon, 25 Sep 2006 11:53:23 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBr68Z092560; Mon, 25 Sep 2006 11:53:06 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBr61C092559; Mon, 25 Sep 2006 11:53:06 GMT (envelope-from rwatson) Message-Id: <200609251153.k8PBr61C092559@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:53: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/contrib/openbsm/etc audit_control audit_event X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:55:30 -0000 rwatson 2006-09-25 11:53:06 UTC FreeBSD src repository Modified files: contrib/openbsm/etc audit_control audit_event Log: Resolve conflicts from OpenBSM 1.0 alpha 12 import. Obtained from: TrustedBSD Project Revision Changes Path 1.4 +2 -1 src/contrib/openbsm/etc/audit_control 1.6 +5 -1 src/contrib/openbsm/etc/audit_event From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:55:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55C4C16A4B3; Mon, 25 Sep 2006 11:55:55 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CD1C43D46; Mon, 25 Sep 2006 11:54:05 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBrtOT092625; Mon, 25 Sep 2006 11:53:55 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBrtlK092624; Mon, 25 Sep 2006 11:53:55 GMT (envelope-from bms) Message-Id: <200609251153.k8PBrtlK092624@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 11:53: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/netinet ip_carp.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, 25 Sep 2006 11:55:55 -0000 bms 2006-09-25 11:53:55 UTC FreeBSD src repository Modified files: sys/netinet ip_carp.c Log: Fix an incompatibility between CARP and IPv4 multicast routing, whereby the VRRPv2 advertisements will originate from the wrong source address. This only affects kernels compiled with MROUTING and after the MRT_INIT ioctl() has been issued. Set imo_multicast_vif in carp's softc to the invalid value -1 after it is zeroed by softc allocation, to stop the ip_output() path looking up the incorrect source address thinking a vif is set. PR: kern/100532 Submitted by: Bohus Plucinsky MFC after: 1 week Revision Changes Path 1.43 +1 -0 src/sys/netinet/ip_carp.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:55:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60C4E16A4C8; Mon, 25 Sep 2006 11:55:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 899F943D62; Mon, 25 Sep 2006 11:54:06 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBrxff092652; Mon, 25 Sep 2006 11:53:59 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBrxl3092651; Mon, 25 Sep 2006 11:53:59 GMT (envelope-from rwatson) Message-Id: <200609251153.k8PBrxl3092651@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:53: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/libbsm 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, 25 Sep 2006 11:55:55 -0000 rwatson 2006-09-25 11:53:58 UTC FreeBSD src repository Modified files: lib/libbsm Makefile Log: Hook up additional OpenBSM man page aliases following OpenBSM 1.0 alpha 12 import. Most of these should have existed previously, but didn't. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.5 +20 -11 src/lib/libbsm/Makefile From owner-cvs-src@FreeBSD.ORG Mon Sep 25 11:59:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E95816A403; Mon, 25 Sep 2006 11:59:40 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91A4743ED9; Mon, 25 Sep 2006 11:56:25 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBuKuX092796; Mon, 25 Sep 2006 11:56:20 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBuKgo092795; Mon, 25 Sep 2006 11:56:20 GMT (envelope-from rwatson) Message-Id: <200609251156.k8PBuKgo092795@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:56: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/usr.sbin/auditreduce 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, 25 Sep 2006 11:59:40 -0000 rwatson 2006-09-25 11:56:20 UTC FreeBSD src repository Modified files: usr.sbin/auditreduce Makefile Log: auditreduce now requires OpenBSM's config/config.h, so add that to the build include path. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.2 +2 -0 src/usr.sbin/auditreduce/Makefile From owner-cvs-src@FreeBSD.ORG Mon Sep 25 12:22:08 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7660616A407; Mon, 25 Sep 2006 12:22:08 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30FCA43D69; Mon, 25 Sep 2006 12:22:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PCM8oP095611; Mon, 25 Sep 2006 12:22:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PCM8G2095610; Mon, 25 Sep 2006 12:22:08 GMT (envelope-from rwatson) Message-Id: <200609251222.k8PCM8G2095610@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 12:22: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/bsm audit_kevents.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, 25 Sep 2006 12:22:08 -0000 rwatson 2006-09-25 12:22:07 UTC FreeBSD src repository Modified files: sys/bsm audit_kevents.h Log: Merge OpenBSM 1.0 alpha 12 import changes into src/sys/bsm. New events for the Linuxulator. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.9 +5 -1 src/sys/bsm/audit_kevents.h From owner-cvs-src@FreeBSD.ORG Mon Sep 25 13:02:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCD9016A403; Mon, 25 Sep 2006 13:02:00 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9913A43D53; Mon, 25 Sep 2006 13:02:00 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PD203t028433; Mon, 25 Sep 2006 13:02:00 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PD20LN028429; Mon, 25 Sep 2006 13:02:00 GMT (envelope-from bms) Message-Id: <200609251302.k8PD20LN028429@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 13:02: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/netinet ip_carp.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, 25 Sep 2006 13:02:01 -0000 bms 2006-09-25 13:02:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_carp.c Log: MFC: Fix an incompatibility between CARP and IPv4 multicast routing, whereby advertisements originate from the wrong source address. This only affects MROUTING kernels. PR: kern/100532 Submitted by: Bohus Plucinsky Approved by: re@ Revision Changes Path 1.27.2.8 +1 -0 src/sys/netinet/ip_carp.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 13:02:59 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 652FA16A415; Mon, 25 Sep 2006 13:02:59 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ED0843D45; Mon, 25 Sep 2006 13:02:59 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PD2wId029664; Mon, 25 Sep 2006 13:02:58 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PD2wcG029663; Mon, 25 Sep 2006 13:02:58 GMT (envelope-from bms) Message-Id: <200609251302.k8PD2wcG029663@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 13:02: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/sys/netinet in_var.h ip_output.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, 25 Sep 2006 13:02:59 -0000 bms 2006-09-25 13:02:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet in_var.h ip_output.c Log: MFC: Account for output IP datagrams on the ifaddr where they will be sent from, not the first ifaddr on the ifp. PR: kern/72936 Submitted by: alfred Reviewed by: andre Approved by: re@ Revision Changes Path 1.53.2.3 +14 -3 src/sys/netinet/in_var.h 1.242.2.13 +11 -4 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 13:12:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAC4A16A415; Mon, 25 Sep 2006 13:12:43 +0000 (UTC) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DA7643D49; Mon, 25 Sep 2006 13:12:40 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost.int.ru [127.0.0.1] (may be forged)) by mp2.macomnet.net (8.13.7/8.13.3) with ESMTP id k8PDCZqX038940; Mon, 25 Sep 2006 17:12:39 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Mon, 25 Sep 2006 17:12:35 +0400 (MSD) From: Maxim Konovalov To: Bruce M Simpson In-Reply-To: <200609251153.k8PBrtlK092624@repoman.freebsd.org> Message-ID: <20060925170809.Y38706@mp2.macomnet.net> References: <200609251153.k8PBrtlK092624@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netinet ip_carp.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, 25 Sep 2006 13:12:44 -0000 On Mon, 25 Sep 2006, 11:53-0000, Bruce M Simpson wrote: > bms 2006-09-25 11:53:55 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_carp.c > Log: > Fix an incompatibility between CARP and IPv4 multicast routing, whereby > the VRRPv2 advertisements will originate from the wrong source address. > This only affects kernels compiled with MROUTING and after the MRT_INIT > ioctl() has been issued. > Set imo_multicast_vif in carp's softc to the invalid value -1 after it is > zeroed by softc allocation, to stop the ip_output() path looking up the > incorrect source address thinking a vif is set. > > PR: kern/100532 > Submitted by: Bohus Plucinsky > MFC after: 1 week [...] > bms 2006-09-25 13:02:00 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/netinet ip_carp.c > Log: > MFC: Fix an incompatibility between CARP and IPv4 multicast routing, > whereby advertisements originate from the wrong source address. > This only affects MROUTING kernels. > > PR: kern/100532 > Submitted by: Bohus Plucinsky > Approved by: re@ That was a really short week. -- Maxim Konovalov From owner-cvs-src@FreeBSD.ORG Mon Sep 25 14:16:31 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A8DD16A403; Mon, 25 Sep 2006 14:16:31 +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 12CC343D5F; Mon, 25 Sep 2006 14:16:20 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id CCA365E2D; Mon, 25 Sep 2006 18:16:18 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id C276C5E2C; Mon, 25 Sep 2006 18:16:18 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8PEGOFY018560; Mon, 25 Sep 2006 18:16:24 +0400 (MSD) (envelope-from ru) Date: Mon, 25 Sep 2006 18:16:24 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060925141624.GA99043@rambler-co.ru> References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tThc/1wpZn/ma/RB" Content-Disposition: inline In-Reply-To: <200609251302.k8PD2wcG029663@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.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, 25 Sep 2006 14:16:31 -0000 --tThc/1wpZn/ma/RB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Sep 25, 2006 at 01:02:58PM +0000, Bruce M Simpson wrote: > bms 2006-09-25 13:02:58 UTC >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_6) > sys/netinet in_var.h ip_output.c=20 > Log: > MFC: Account for output IP datagrams on the ifaddr where they will > be sent from, not the first ifaddr on the ifp. > =20 > PR: kern/72936 > Submitted by: alfred > Reviewed by: andre > Approved by: re@ > =20 > Revision Changes Path > 1.53.2.3 +14 -3 src/sys/netinet/in_var.h > 1.242.2.13 +11 -4 src/sys/netinet/ip_output.c >=20 Why are these insta MFCs? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --tThc/1wpZn/ma/RB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFF+S4qRfpzJluFF4RApgvAJ9hpn+pLn/3USLo5fvqrSNhcUURewCfWjAP oWCqcqxhA1DVj9SRGvaFisE= =fuGw -----END PGP SIGNATURE----- --tThc/1wpZn/ma/RB-- From owner-cvs-src@FreeBSD.ORG Mon Sep 25 14:31:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A219016A407; Mon, 25 Sep 2006 14:31:12 +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 A283443D58; Mon, 25 Sep 2006 14:31:10 +0000 (GMT) (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 k8PEV9FU052090 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 25 Sep 2006 18:31:09 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8PEV8pp052089; Mon, 25 Sep 2006 18:31:08 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Mon, 25 Sep 2006 18:31:08 +0400 From: Gleb Smirnoff To: Bruce M Simpson Message-ID: <20060925143108.GW27667@FreeBSD.org> References: <200609251011.k8PABGaL081087@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200609251011.k8PABGaL081087@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/sys/netinet in_var.h ip_output.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, 25 Sep 2006 14:31:12 -0000 On Mon, Sep 25, 2006 at 10:11:16AM +0000, Bruce M Simpson wrote: B> bms 2006-09-25 10:11:16 UTC B> B> FreeBSD src repository B> B> Modified files: B> sys/netinet in_var.h ip_output.c B> Log: B> Account for output IP datagrams on the ifaddr where they originated from, B> *not* the first ifaddr on the ifp. This is similar to what NetBSD does. B> B> PR: kern/72936 B> Submitted by: alfred B> Reviewed by: andre This adds an additional hash lookup per packet, doesn't it? Have you measured performance impact of this change? -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Mon Sep 25 15:06:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE18C16A403; Mon, 25 Sep 2006 15:06:25 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F0643D46; Mon, 25 Sep 2006 15:06:25 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PF6Pg7072550; Mon, 25 Sep 2006 15:06:25 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PF6PqI072549; Mon, 25 Sep 2006 15:06:25 GMT (envelope-from marck) Message-Id: <200609251506.k8PF6PqI072549@repoman.freebsd.org> From: Dmitry Morozovsky Date: Mon, 25 Sep 2006 15:06: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/usr.bin/chpass chpass.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, 25 Sep 2006 15:06:26 -0000 marck 2006-09-25 15:06:24 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/chpass chpass.c Log: Fix bug introduced in rev 1.23: pw_equal does not check crypted password field, so one cannot change crypted password keeping other fields intact. Approved by: des MCF after: 3 days Revision Changes Path 1.28 +6 -1 src/usr.bin/chpass/chpass.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 15:15:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6A7A16A403; Mon, 25 Sep 2006 15:15:58 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from opus.cse.buffalo.edu (opus.cse.Buffalo.EDU [128.205.32.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56FDD43D4C; Mon, 25 Sep 2006 15:15:58 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from localhost.cse.buffalo.edu (localhost.cse.buffalo.edu [127.0.0.1]) by opus.cse.buffalo.edu (8.13.8/8.12.4) with ESMTP id k8PFFv5W067920; Mon, 25 Sep 2006 11:15:57 -0400 (EDT) From: Ken Smith To: Ruslan Ermilov In-Reply-To: <20060925141624.GA99043@rambler-co.ru> References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> <20060925141624.GA99043@rambler-co.ru> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-FsK7a9qUasHKE2WsJW4f" Organization: U. Buffalo CSE Department Date: Mon, 25 Sep 2006 11:15:57 -0400 Message-Id: <1159197357.67224.16.camel@opus.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Bruce M Simpson , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.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, 25 Sep 2006 15:15:58 -0000 --=-FsK7a9qUasHKE2WsJW4f Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2006-09-25 at 18:16 +0400, Ruslan Ermilov wrote: > On Mon, Sep 25, 2006 at 01:02:58PM +0000, Bruce M Simpson wrote: > > bms 2006-09-25 13:02:58 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: (Branch: RELENG_6) > > sys/netinet in_var.h ip_output.c=20 > > Log: > > MFC: Account for output IP datagrams on the ifaddr where they will > > be sent from, not the first ifaddr on the ifp. > > =20 > > PR: kern/72936 > > Submitted by: alfred > > Reviewed by: andre > > Approved by: re@ > > =20 > > Revision Changes Path > > 1.53.2.3 +14 -3 src/sys/netinet/in_var.h > > 1.242.2.13 +11 -4 src/sys/netinet/ip_output.c > >=20 > Why are these insta MFCs? >=20 >=20 Sorry, I'm usually much better at making sure things have been in HEAD for long enough before approving them. But morning coffee hadn't kicked in before I started processing email today. :-( It helps a *little* bit if you folks only send in MFC requests after the minimal 3-day wait period. Some people do that, which is great. But others are in the habit of asking for the MFC approval immediately after the initial commit expecting us to hold on to it and reply later. Usually we manage to sort them out and do the right thing but that second approach has a higher risk factor and not just the risk of a premature approval (i.e. if you expect us to hold on to it we *might* forget about it by the time it's appropriate for approval and it'll be lost in the shuffle...). --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-FsK7a9qUasHKE2WsJW4f Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBFF/Kt/G14VSmup/YRAomTAKCLsx1e/m2wurAnwPlrT4nZJ5lshgCgk4I3 GepAkKXqQShERnCyYXQUHhs= =lSkK -----END PGP SIGNATURE----- --=-FsK7a9qUasHKE2WsJW4f-- From owner-cvs-src@FreeBSD.ORG Mon Sep 25 15:34:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE12816A531; Mon, 25 Sep 2006 15:34:00 +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 4AE0643DAA; Mon, 25 Sep 2006 15:33:58 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 817032094; Mon, 25 Sep 2006 17:33:52 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 64B03208D; Mon, 25 Sep 2006 17:33:52 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id E9187B80E; Mon, 25 Sep 2006 17:33:51 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Ken Smith References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> <20060925141624.GA99043@rambler-co.ru> <1159197357.67224.16.camel@opus.cse.buffalo.edu> Date: Mon, 25 Sep 2006 17:33:51 +0200 In-Reply-To: <1159197357.67224.16.camel@opus.cse.buffalo.edu> (Ken Smith's message of "Mon, 25 Sep 2006 11:15:57 -0400") Message-ID: <86psdkq7ts.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Bruce M Simpson , src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.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, 25 Sep 2006 15:34:01 -0000 Ken Smith writes: > It helps a *little* bit if you folks only send in MFC requests after the > minimal 3-day wait period. Some people do that, which is great. But > others are in the habit of asking for the MFC approval immediately after > the initial commit expecting us to hold on to it and reply later. > Usually we manage to sort them out and do the right thing but that > second approach has a higher risk factor and not just the risk of a > premature approval (i.e. if you expect us to hold on to it we *might* > forget about it by the time it's appropriate for approval and it'll be > lost in the shuffle...). Don't take the blame for this! The fact that you responded quickly does not give the committer license to break the three-day rule. Common sense still applies... You re@ guys have work to do, you can't be expected to examine every MFC request in excruciating detail. You should be able to trust the requesting committer to do the right thing. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Sep 25 15:49:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1451A16A415; Mon, 25 Sep 2006 15:49:52 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C458243D73; Mon, 25 Sep 2006 15:49:51 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PFnptv076508; Mon, 25 Sep 2006 15:49:51 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PFnpx8076507; Mon, 25 Sep 2006 15:49:51 GMT (envelope-from marcel) Message-Id: <200609251549.k8PFnpx8076507@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 25 Sep 2006 15:49:51 +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/pci pci.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, 25 Sep 2006 15:49:52 -0000 marcel 2006-09-25 15:49:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/pci pci.c Log: MFC rev 1.311: Allow 16 byte memory mapped I/O ranges. Approved by: re (hrs) Revision Changes Path 1.292.2.9 +2 -2 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 16:04:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6995C16A585; Mon, 25 Sep 2006 16:04:26 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from opus.cse.buffalo.edu (opus.cse.Buffalo.EDU [128.205.32.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E3843D53; Mon, 25 Sep 2006 16:04:25 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from localhost.cse.buffalo.edu (localhost.cse.buffalo.edu [127.0.0.1]) by opus.cse.buffalo.edu (8.13.8/8.12.4) with ESMTP id k8PG4MwI068065; Mon, 25 Sep 2006 12:04:22 -0400 (EDT) From: Ken Smith To: Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?= In-Reply-To: <86psdkq7ts.fsf@dwp.des.no> References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> <20060925141624.GA99043@rambler-co.ru> <1159197357.67224.16.camel@opus.cse.buffalo.edu> <86psdkq7ts.fsf@dwp.des.no> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-756ZAomIX8Rnw+kOoeZp" Organization: U. Buffalo CSE Department Date: Mon, 25 Sep 2006 12:04:22 -0400 Message-Id: <1159200262.67224.29.camel@opus.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Cc: Bruce M Simpson , src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.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, 25 Sep 2006 16:04:26 -0000 --=-756ZAomIX8Rnw+kOoeZp Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Mon, 2006-09-25 at 17:33 +0200, Dag-Erling Sm=F8rgrav wrote: > Don't take the blame for this! Thanks for the thought, but given the current hat that's not an option... ;-) People can do things to make life wearing the hat a bit easier and we appreciate it when they do. But bottom line is the approval for this one should have been held for a bit and I didn't notice that as part of reviewing it. I might not be *fully* to blame but I did screw up. --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-756ZAomIX8Rnw+kOoeZp Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBFF/4G/G14VSmup/YRAsvMAJ9wtNOw0vZDalVayeg/Tv9sf+5RZwCfb/E1 rC0Sw8jEZaM80UNQiEGb+/o= =VB8+ -----END PGP SIGNATURE----- --=-756ZAomIX8Rnw+kOoeZp-- From owner-cvs-src@FreeBSD.ORG Mon Sep 25 17:12:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2971C16A412; Mon, 25 Sep 2006 17:12:21 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC0B743D53; Mon, 25 Sep 2006 17:12:20 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHCKEH090669; Mon, 25 Sep 2006 17:12:20 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHCKfu090668; Mon, 25 Sep 2006 17:12:20 GMT (envelope-from ache) Message-Id: <200609251712.k8PHCKfu090668@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 25 Sep 2006 17:12:20 +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/timedef sv_SE.UTF-8.src X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:12:21 -0000 ache 2006-09-25 17:12:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/timedef sv_SE.UTF-8.src Log: MFC v1.2 PR: 88222 Approved by: re (bmah) Revision Changes Path 1.1.8.1 +1 -1 src/share/timedef/sv_SE.UTF-8.src From owner-cvs-src@FreeBSD.ORG Mon Sep 25 17:19:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F020416A415; Mon, 25 Sep 2006 17:19:28 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92BF043D5C; Mon, 25 Sep 2006 17:19:28 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHJSG6090940; Mon, 25 Sep 2006 17:19:28 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHJS1o090939; Mon, 25 Sep 2006 17:19:28 GMT (envelope-from ache) Message-Id: <200609251719.k8PHJS1o090939@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 25 Sep 2006 17:19:28 +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 getopt_long.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, 25 Sep 2006 17:19:29 -0000 ache 2006-09-25 17:19:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/stdlib getopt_long.c Log: MFC 1.13-1.15 Approved by: re (hrs) Revision Changes Path 1.12.8.1 +7 -24 src/lib/libc/stdlib/getopt_long.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 18:20:57 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E9F316A407; Mon, 25 Sep 2006 18:20:57 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29FB543D45; Mon, 25 Sep 2006 18:20:57 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIKvk2095195; Mon, 25 Sep 2006 18:20:57 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIKvTx095194; Mon, 25 Sep 2006 18:20:57 GMT (envelope-from bms) Message-Id: <200609251820.k8PIKvTx095194@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 18:20: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/sbin/ifconfig af_inet6.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, 25 Sep 2006 18:20:57 -0000 bms 2006-09-25 18:20:56 UTC FreeBSD src repository Modified files: sbin/ifconfig af_inet6.c Log: Fix a typo in af_inet6.c such that IPv6 addresses may be deleted from interfaces. PR: bin/102701 Submitted by: George Mitchell MFC after: 3 days Revision Changes Path 1.4 +1 -1 src/sbin/ifconfig/af_inet6.c From owner-cvs-src@FreeBSD.ORG Mon Sep 25 18:50:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D811C16A403; Mon, 25 Sep 2006 18:50:54 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A04B43D53; Mon, 25 Sep 2006 18:50:54 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIosYn099038; Mon, 25 Sep 2006 18:50:54 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIoskn099037; Mon, 25 Sep 2006 18:50:54 GMT (envelope-from blackend) Message-Id: <200609251850.k8PIoskn099037@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 25 Sep 2006 18:50: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: CVSROOT access.doc_src X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:50:55 -0000 blackend 2006-09-25 18:50:54 UTC FreeBSD src repository (doc committer) Modified files: . access.doc_src Log: Take ue@'s bit to the safekeeping since he has no time to work on FreeBSD. With Hat: doceng@ Approved by: core (implicit) Revision Changes Path 1.44 +0 -1 CVSROOT/access.doc_src From owner-cvs-src@FreeBSD.ORG Mon Sep 25 19:50:53 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4551616A403; Mon, 25 Sep 2006 19:50:53 +0000 (UTC) (envelope-from ambrisko@ambrisko.com) Received: from mail.ambrisko.com (mail.ambrisko.com [64.174.51.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E8843D5E; Mon, 25 Sep 2006 19:50:52 +0000 (GMT) (envelope-from ambrisko@ambrisko.com) Received: from server2.ambrisko.com (HELO www.ambrisko.com) ([192.168.1.2]) by mail.ambrisko.com with ESMTP; 25 Sep 2006 12:48:04 -0700 Received: from ambrisko.com (localhost [127.0.0.1]) by www.ambrisko.com (8.13.1/8.12.11) with ESMTP id k8PJoq2D055326; Mon, 25 Sep 2006 12:50:52 -0700 (PDT) (envelope-from ambrisko@ambrisko.com) Received: (from ambrisko@localhost) by ambrisko.com (8.13.1/8.13.1/Submit) id k8PJoqgM055325; Mon, 25 Sep 2006 12:50:52 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <200609251950.k8PJoqgM055325@ambrisko.com> In-Reply-To: <200609222211.k8MMBUJI069799@repoman.freebsd.org> To: John Baldwin Date: Mon, 25 Sep 2006 12:50:52 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/conf NOTES src/sys/conf files.amd64 files.i386 src/sys/dev/ipmi ipmi.c ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_pci.c ipmi_smbios.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c ipmivars.h src/sys/i386/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: Mon, 25 Sep 2006 19:50:53 -0000 John Baldwin writes: | jhb 2006-09-22 22:11:29 UTC | | FreeBSD src repository | | Modified files: | sys/amd64/conf NOTES | sys/conf files.amd64 files.i386 | sys/dev/ipmi ipmi.c ipmi_pci.c ipmi_smbios.c | ipmivars.h | sys/i386/conf NOTES | sys/modules/ipmi Makefile | sys/sys ipmi.h | Added files: | sys/dev/ipmi ipmi_acpi.c ipmi_isa.c ipmi_kcs.c | ipmi_smbus.c ipmi_smic.c ipmi_ssif.c | Log: | Update the ipmi(4) driver: [snip] | - Add an ACPI attachment. This should work, however, my one test machine doesn't attach with it. Since it doesn't break anything having it, it is safe to add. That machine attached fine with the SMBIOS info. so it's not a big deal. Just don't expect it to work out of the box. There are some issues that need to get investigated. Thanks to John for helping to finish some loose ends and add a lot more polish. Doug A. From owner-cvs-src@FreeBSD.ORG Mon Sep 25 20:12:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E36A116A5A9; Mon, 25 Sep 2006 20:12:13 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FC8D43D55; Mon, 25 Sep 2006 20:12:13 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKCDXE006110; Mon, 25 Sep 2006 20:12:13 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKCDQg006109; Mon, 25 Sep 2006 20:12:13 GMT (envelope-from imp) Message-Id: <200609252012.k8PKCDQg006109@repoman.freebsd.org> From: Warner Losh Date: Mon, 25 Sep 2006 20:12: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/share/man/man9 Makefile config_intrhook.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:12:14 -0000 imp 2006-09-25 20:12:13 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Added files: share/man/man9 config_intrhook.9 Log: Document config_intrhook. MFC After: 250 millifortnights Revision Changes Path 1.278 +3 -0 src/share/man/man9/Makefile 1.1 +102 -0 src/share/man/man9/config_intrhook.9 (new) From owner-cvs-src@FreeBSD.ORG Mon Sep 25 22:32:14 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6141D16A403; Mon, 25 Sep 2006 22:32:14 +0000 (UTC) (envelope-from dmitry@atlantis.dp.ua) Received: from postman.atlantis.dp.ua (postman.atlantis.dp.ua [193.108.47.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77A5343D68; Mon, 25 Sep 2006 22:32:13 +0000 (GMT) (envelope-from dmitry@atlantis.dp.ua) Received: from atlantis.dp.ua (localhost [127.0.0.1]) by postman.atlantis.dp.ua (8.13.1/8.13.1) with ESMTP id k8PMW89I084400; Tue, 26 Sep 2006 01:32:08 +0300 (EEST) (envelope-from dmitry@atlantis.dp.ua) Received: from localhost (dmitry@localhost) by atlantis.dp.ua (8.13.1/8.13.1/Submit) with ESMTP id k8PMW82c084396; Tue, 26 Sep 2006 01:32:08 +0300 (EEST) (envelope-from dmitry@atlantis.dp.ua) Date: Tue, 26 Sep 2006 01:32:08 +0300 (EEST) From: Dmitry Pryanishnikov To: John Baldwin In-Reply-To: <200609221919.k8MJJGmW048924@repoman.freebsd.org> Message-ID: <20060926011834.H69674@atlantis.atlantis.dp.ua> References: <200609221919.k8MJJGmW048924@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, freebsd-stable@freebsd.org Subject: SMBus regression (Re: cvs commit: src/sys/dev/bktr bktr_i2c.c bktr_i2c.h src/sys/dev/ichsmb ichsmb.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, 25 Sep 2006 22:32:14 -0000 Hello! On Fri, 22 Sep 2006, John Baldwin wrote: >jhb 2006-09-22 19:19:16 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/dev/bktr bktr_i2c.c bktr_i2c.h > sys/dev/ichsmb ichsmb.c > sys/dev/iicbus iicsmb.c > sys/dev/smbus smb.c smb.h smbconf.c smbconf.h smbus.c > smbus.h smbus_if.m > sys/pci alpm.c amdpm.c amdsmb.c intpm.c nfsmb.c > viapm.c > Log: > MFC: Minor overhaul of SMBus support including: This commit has broken SMBus attachment at least on ICH4; boot messages difference (diff -u old new) gives only 1 line missing: ichsmb0: port 0xe000-0xe01f irq 17 at device 31.3 on pci0 ichsmb0: [GIANT-LOCKED] smbus0: on ichsmb0 -smb0: on smbus0 So with the new SMBus modules smb0 no longer attaches to the smbus0 despite having all 3 modules loaded as before: dmitry@homelynx$ kldstat|grep smb 21 3 0xc07b9000 29ac smbus.ko 23 1 0xc07c0000 4ff8 ichsmb.ko 45 1 0xc6974000 3000 smb.ko After reverting the contents of /sys/dev/{ichsmb,smbus} to the pre-commit state (date=2006.09.22.19.19.00) and recompiling the modules (smbus, ichsmb, smb) I've got working SMBus subsystem again. Please look into this problem. Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE From owner-cvs-src@FreeBSD.ORG Mon Sep 25 23:19:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25C7816A403; Mon, 25 Sep 2006 23:19:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8AEE43D60; Mon, 25 Sep 2006 23:19:01 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PNJ16f032221; Mon, 25 Sep 2006 23:19:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PNJ17F032220; Mon, 25 Sep 2006 23:19:01 GMT (envelope-from rwatson) Message-Id: <200609252319.k8PNJ17F032220@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 23:19: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 copyright.h src/sys/kern init_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: Mon, 25 Sep 2006 23:19:02 -0000 rwatson 2006-09-25 23:19:01 UTC FreeBSD src repository Modified files: sys/sys copyright.h sys/kern init_main.c Log: Add "FreeBSD" trademark statement to copyright section of boot messages. MFC after: 3 days Approved by: core, board at FreeBSDFoundation dot org Revision Changes Path 1.266 +4 -3 src/sys/kern/init_main.c 1.22 +5 -0 src/sys/sys/copyright.h From owner-cvs-src@FreeBSD.ORG Tue Sep 26 00:15:57 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BDE616A407; Tue, 26 Sep 2006 00:15:57 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C1F943D62; Tue, 26 Sep 2006 00:15:57 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q0FvR6037187; Tue, 26 Sep 2006 00:15:57 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q0Fv4d037186; Tue, 26 Sep 2006 00:15:57 GMT (envelope-from rwatson) Message-Id: <200609260015.k8Q0Fv4d037186@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Sep 2006 00:15: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/kern init_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: Tue, 26 Sep 2006 00:15:57 -0000 rwatson 2006-09-26 00:15:57 UTC FreeBSD src repository Modified files: sys/kern init_main.c Log: SI_ORDER_THIRD + 2, not SI_ORDER_FOURTH + 2. MFC after: 3 days Submitted by: mlaier Revision Changes Path 1.267 +1 -1 src/sys/kern/init_main.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 01:02:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EBAE16A403; Tue, 26 Sep 2006 01:02:03 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 437C143D46; Tue, 26 Sep 2006 01:02:03 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q123u3046926; Tue, 26 Sep 2006 01:02:03 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q123lL046925; Tue, 26 Sep 2006 01:02:03 GMT (envelope-from brooks) Message-Id: <200609260102.k8Q123lL046925@repoman.freebsd.org> From: Brooks Davis Date: Tue, 26 Sep 2006 01:02: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/sbin/dhclient bpf.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, 26 Sep 2006 01:02:03 -0000 brooks 2006-09-26 01:02:03 UTC FreeBSD src repository Modified files: sbin/dhclient bpf.c Log: It is possible for bpf to return a length such that: length != BPF_WORDALIGN(length) This meeans that it is possible for this to be true: interface->rbuf_offset > interface->rbuf_len Handle this case in the test for running out of packets. While OpenBSD's solution of setting interface->rbuf_len to BPF_WORDALIGN(length) is safe due to the size of the buffer, I think this solution results in less hidden assumptions. This should fix the problem of dhclient running away and consuming 100% CPU. PR: bin/102226 Submitted by: Joost Bekkers MFC after: 3 days Revision Changes Path 1.7 +1 -1 src/sbin/dhclient/bpf.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 01:21:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1C3F16A407; Tue, 26 Sep 2006 01:21:47 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F0543D5C; Tue, 26 Sep 2006 01:21:47 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q1LlK6049118; Tue, 26 Sep 2006 01:21:47 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q1Llo8049117; Tue, 26 Sep 2006 01:21:47 GMT (envelope-from jmg) Message-Id: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> From: John-Mark Gurney Date: Tue, 26 Sep 2006 01:21: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/netinet tcp_input.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, 26 Sep 2006 01:21:47 -0000 jmg 2006-09-26 01:21:47 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: fix calculating to_tsecr... This prevents the rtt calculations from going all wonky... Revision Changes Path 1.309 +1 -1 src/sys/netinet/tcp_input.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 01:53:43 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9666916A40F; Tue, 26 Sep 2006 01:53:43 +0000 (UTC) (envelope-from arr@watson.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E12643D7C; Tue, 26 Sep 2006 01:53:40 +0000 (GMT) (envelope-from arr@watson.org) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.13.8/8.13.8) with ESMTP id k8Q1reMZ075855; Mon, 25 Sep 2006 21:53:40 -0400 (EDT) (envelope-from arr@watson.org) Received: from localhost (arr@localhost) by fledge.watson.org (8.13.8/8.13.8/Submit) with ESMTP id k8Q1rePZ075852; Mon, 25 Sep 2006 21:53:40 -0400 (EDT) (envelope-from arr@watson.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Mon, 25 Sep 2006 21:53:40 -0400 (EDT) From: "Andrew R. Reiter" To: John-Mark Gurney In-Reply-To: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> Message-ID: <20060925215235.C46437@fledge.watson.org> References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.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, 26 Sep 2006 01:53:43 -0000 On Tue, 26 Sep 2006, John-Mark Gurney wrote: :jmg 2006-09-26 01:21:47 UTC : : FreeBSD src repository : : Modified files: : sys/netinet tcp_input.c : Log: : fix calculating to_tsecr... This prevents the rtt calculations from : going all wonky... : : Revision Changes Path : 1.309 +1 -1 src/sys/netinet/tcp_input.c At some point will it be safe to remove that min/max check? Thanks for doing this, andrew -- arr@watson.org From owner-cvs-src@FreeBSD.ORG Tue Sep 26 02:12:06 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F297F16A415; Tue, 26 Sep 2006 02:12:05 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C404A43D5D; Tue, 26 Sep 2006 02:12:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2C5hG055055; Tue, 26 Sep 2006 02:12:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2C5ul055054; Tue, 26 Sep 2006 02:12:05 GMT (envelope-from rwatson) Message-Id: <200609260212.k8Q2C5ul055054@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Sep 2006 02:12:05 +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/id Makefile id.1 id.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, 26 Sep 2006 02:12:06 -0000 rwatson 2006-09-26 02:12:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/id Makefile id.1 id.c Log: Merge Makefile:1.12, id.1:1.16,1.17, id.c:1.28,1.29 from HEAD to RELENG_6: Add a -a argument to id(1), which causes id(1) to print out process audit properties, including the audit user id. This can be quite helpful in debugging audit problems. Obtained from: TrustedBSD Project Rename "-a" flag to "-A" in order to avoid conflicting with the "-a" flag as found on Solaris. Requested by: ceri Approved by: re (hrs) Revision Changes Path 1.11.8.1 +6 -0 src/usr.bin/id/Makefile 1.15.2.1 +5 -0 src/usr.bin/id/id.1 1.26.2.2 +43 -3 src/usr.bin/id/id.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 02:15:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DC8816A403; Tue, 26 Sep 2006 02:15:16 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E24943D81; Tue, 26 Sep 2006 02:15:15 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2FF7g055191; Tue, 26 Sep 2006 02:15:15 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2FFTu055190; Tue, 26 Sep 2006 02:15:15 GMT (envelope-from brooks) Message-Id: <200609260215.k8Q2FFTu055190@repoman.freebsd.org> From: Brooks Davis Date: Tue, 26 Sep 2006 02:15:15 +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 devd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:15:16 -0000 brooks 2006-09-26 02:15:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d devd Log: MFC rev 1.10 network_ipv6 also does some interface configuration so require it to run before starting devd so they don't trip over each other. PR: conf/103428 Approved by: re (hrs) Revision Changes Path 1.7.2.3 +1 -1 src/etc/rc.d/devd From owner-cvs-src@FreeBSD.ORG Tue Sep 26 02:17:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2CAC16A4F8; Tue, 26 Sep 2006 02:17:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9842443D6A; Tue, 26 Sep 2006 02:17:43 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2HhIm055323; Tue, 26 Sep 2006 02:17:43 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2HhqH055322; Tue, 26 Sep 2006 02:17:43 GMT (envelope-from brooks) Message-Id: <200609260217.k8Q2HhqH055322@repoman.freebsd.org> From: Brooks Davis Date: Tue, 26 Sep 2006 02:17:43 +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 network.subr pccard_ether X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:17:43 -0000 brooks 2006-09-26 02:17:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc network.subr pccard_ether Log: MFC pccard_ether rev 1.51: Search the list of up interfaces provided by "ifconfig -ul" instead of greping for UP in "ifconfig $ifn". This eliminates a dependancy on /usr. pccard_ether rev 1.53 and network.subr rev 1.173: Introduce a new method ipv6if which attemptes to figure out if an interface is an IPv6 interface. Use this method to decide if we should attempt to configure an interface with an IPv6 address in pccard_ether. The mechanism pccard_ether uses to do this is unsuited to the task because it assumes the list of interfaces it is passed is the full list of IPv6 interfaces and makes decissions based on that. This is at least a step in the right direction and is probably about as much as we can MFC safely. PR: conf/103428 Approved by: re (hrs) Revision Changes Path 1.164.2.4 +24 -0 src/etc/network.subr 1.45.2.4 +12 -6 src/etc/pccard_ether From owner-cvs-src@FreeBSD.ORG Tue Sep 26 02:18:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15FDD16A403; Tue, 26 Sep 2006 02:18:36 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE30043D64; Tue, 26 Sep 2006 02:18:35 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2IZ3C055415; Tue, 26 Sep 2006 02:18:35 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2IZ3E055414; Tue, 26 Sep 2006 02:18:35 GMT (envelope-from obrien) Message-Id: <200609260218.k8Q2IZ3E055414@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 26 Sep 2006 02:18: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.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: Tue, 26 Sep 2006 02:18:36 -0000 obrien 2006-09-26 02:18:35 UTC FreeBSD src repository Modified files: usr.sbin/sendmail Makefile Log: Catch up with share/mk/bsd.sys.mk rev. 1.38. Revision Changes Path 1.54 +0 -1 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:12:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE60016A403; Tue, 26 Sep 2006 04:12:49 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75FF843D5D; Tue, 26 Sep 2006 04:12:49 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4CnPo065233; Tue, 26 Sep 2006 04:12:49 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4Cn5m065232; Tue, 26 Sep 2006 04:12:49 GMT (envelope-from tegge) Message-Id: <200609260412.k8Q4Cn5m065232@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:12: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/fs/devfs devfs_vfsops.c src/sys/fs/hpfs hpfs_vfsops.c src/sys/fs/msdosfs msdosfs_vfsops.c src/sys/fs/ntfs ntfs_vfsops.c src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/portalfs portal_vfsops.c src/sys/fs/smbfs ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:12:49 -0000 tegge 2006-09-26 04:12:49 UTC FreeBSD src repository Modified files: sys/fs/devfs devfs_vfsops.c sys/fs/hpfs hpfs_vfsops.c sys/fs/msdosfs msdosfs_vfsops.c sys/fs/ntfs ntfs_vfsops.c sys/fs/nullfs null_vfsops.c sys/fs/nwfs nwfs_vfsops.c sys/fs/portalfs portal_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/fs/udf udf_vfsops.c sys/fs/umapfs umap_vfsops.c sys/fs/unionfs union_vfsops.c sys/gnu/fs/ext2fs ext2_vfsops.c sys/gnu/fs/reiserfs reiserfs_vfsops.c sys/isofs/cd9660 cd9660_vfsops.c sys/kern uipc_mqueue.c vfs_export.c vfs_mount.c vfs_subr.c vfs_syscalls.c sys/nfsclient nfs_vfsops.c sys/sys mount.h sys/ufs/ffs ffs_snapshot.c ffs_softdep.c ffs_vfsops.c sys/ufs/ufs ufs_quota.c Log: Use mount interlock to protect all changes to mnt_flag and mnt_kern_flag. This eliminates a race where MNT_UPDATE flag could be lost when nmount() raced against sync(), sync_fsync() or quotactl(). Revision Changes Path 1.52 +2 -0 src/sys/fs/devfs/devfs_vfsops.c 1.58 +4 -0 src/sys/fs/hpfs/hpfs_vfsops.c 1.153 +4 -0 src/sys/fs/msdosfs/msdosfs_vfsops.c 1.84 +4 -0 src/sys/fs/ntfs/ntfs_vfsops.c 1.80 +6 -1 src/sys/fs/nullfs/null_vfsops.c 1.44 +2 -0 src/sys/fs/nwfs/nwfs_vfsops.c 1.59 +2 -0 src/sys/fs/portalfs/portal_vfsops.c 1.41 +2 -0 src/sys/fs/smbfs/smbfs_vfsops.c 1.44 +6 -0 src/sys/fs/udf/udf_vfsops.c 1.65 +4 -1 src/sys/fs/umapfs/umap_vfsops.c 1.78 +8 -1 src/sys/fs/unionfs/union_vfsops.c 1.158 +6 -0 src/sys/gnu/fs/ext2fs/ext2_vfsops.c 1.6 +4 -0 src/sys/gnu/fs/reiserfs/reiserfs_vfsops.c 1.146 +6 -0 src/sys/isofs/cd9660/cd9660_vfsops.c 1.16 +2 -0 src/sys/kern/uipc_mqueue.c 1.336 +10 -0 src/sys/kern/vfs_export.c 1.234 +13 -0 src/sys/kern/vfs_mount.c 1.683 +4 -0 src/sys/kern/vfs_subr.c 1.424 +4 -0 src/sys/kern/vfs_syscalls.c 1.187 +13 -3 src/sys/nfsclient/nfs_vfsops.c 1.212 +1 -1 src/sys/sys/mount.h 1.129 +6 -1 src/sys/ufs/ffs/ffs_snapshot.c 1.199 +2 -0 src/sys/ufs/ffs/ffs_softdep.c 1.319 +43 -13 src/sys/ufs/ffs/ffs_vfsops.c 1.84 +6 -1 src/sys/ufs/ufs/ufs_quota.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:14:11 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C99C116A412; Tue, 26 Sep 2006 04:14:11 +0000 (UTC) (envelope-from jmg@hydrogen.funkthat.com) Received: from hydrogen.funkthat.com (gate.funkthat.com [69.17.45.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68F0C43D5D; Tue, 26 Sep 2006 04:14:11 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: from hydrogen.funkthat.com (h57xvhyefrp14fo8@localhost.funkthat.com [127.0.0.1]) by hydrogen.funkthat.com (8.13.6/8.13.3) with ESMTP id k8Q4E8Dj008425; Mon, 25 Sep 2006 21:14:08 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.13.6/8.13.3/Submit) id k8Q4E7CD008424; Mon, 25 Sep 2006 21:14:07 -0700 (PDT) (envelope-from jmg) Date: Mon, 25 Sep 2006 21:14:07 -0700 From: John-Mark Gurney To: "Andrew R. Reiter" Message-ID: <20060926041406.GE80527@funkthat.com> References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> <20060925215235.C46437@fledge.watson.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060925215235.C46437@fledge.watson.org> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 5.4-RELEASE-p6 i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Sep 2006 04:14:11 -0000 Andrew R. Reiter wrote this message on Mon, Sep 25, 2006 at 21:53 -0400: > On Tue, 26 Sep 2006, John-Mark Gurney wrote: > > :jmg 2006-09-26 01:21:47 UTC > : > : FreeBSD src repository > : > : Modified files: > : sys/netinet tcp_input.c > : Log: > : fix calculating to_tsecr... This prevents the rtt calculations from > : going all wonky... > : > : Revision Changes Path > : 1.309 +1 -1 src/sys/netinet/tcp_input.c > > At some point will it be safe to remove that min/max check? Do you mean replace the else? or do you mean change it entirely? Unless someone can think of a reason why the retransmit timer should ever be allowed to go above 64 seconds, I'd consider replacing the else, but as I see it, it prevents run away code, though w/o the else I probably wouldn't of found this bug... -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:15:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8863F16A407; Tue, 26 Sep 2006 04:15:05 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01BA143D68; Tue, 26 Sep 2006 04:15:05 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4F4Rp065350; Tue, 26 Sep 2006 04:15:04 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4F4pY065349; Tue, 26 Sep 2006 04:15:04 GMT (envelope-from tegge) Message-Id: <200609260415.k8Q4F4pY065349@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:15: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: Tue, 26 Sep 2006 04:15:05 -0000 tegge 2006-09-26 04:15:04 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Don't restore mnt_kern_flag on failed MNT_UPDATE mount, it can race with dounmount(), causing loss of MNTK_UNMOUNT flag. Revision Changes Path 1.235 +2 -5 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:15:59 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF98016A494; Tue, 26 Sep 2006 04:15:59 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70B7E43D70; Tue, 26 Sep 2006 04:15:59 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4FxeQ065535; Tue, 26 Sep 2006 04:15:59 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4FxE6065534; Tue, 26 Sep 2006 04:15:59 GMT (envelope-from tegge) Message-Id: <200609260415.k8Q4FxE6065534@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:15: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/boot/pc98/boot2 inode.h src/sys/gnu/fs/ext2fs ext2_inode.c src/sys/kern vfs_cluster.c vfs_mount.c vfs_subr.c vfs_syscalls.c src/sys/nfsclient nfs_vnops.c src/sys/sys mount.h src/sys/ufs/ufs inode.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, 26 Sep 2006 04:16:00 -0000 tegge 2006-09-26 04:15:59 UTC FreeBSD src repository Modified files: sys/boot/pc98/boot2 inode.h sys/gnu/fs/ext2fs ext2_inode.c sys/kern vfs_cluster.c vfs_mount.c vfs_subr.c vfs_syscalls.c sys/nfsclient nfs_vnops.c sys/sys mount.h sys/ufs/ufs inode.h Log: Add mnt_noasync counter to better handle interleaved calls to nmount(), sync() and sync_fsync() without losing MNT_ASYNC. Add MNTK_ASYNC flag which is set only when MNT_ASYNC is set and mnt_noasync is zero, and check that flag instead of MNT_ASYNC before initiating async io. Revision Changes Path 1.5 +1 -1 src/sys/boot/pc98/boot2/inode.h 1.58 +1 -1 src/sys/gnu/fs/ext2fs/ext2_inode.c 1.173 +1 -1 src/sys/kern/vfs_cluster.c 1.236 +15 -0 src/sys/kern/vfs_mount.c 1.684 +6 -5 src/sys/kern/vfs_subr.c 1.425 +6 -4 src/sys/kern/vfs_syscalls.c 1.269 +1 -1 src/sys/nfsclient/nfs_vnops.c 1.213 +2 -0 src/sys/sys/mount.h 1.50 +1 -1 src/sys/ufs/ufs/inode.h From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:17:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E124116A412; Tue, 26 Sep 2006 04:17:17 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A80243D53; Tue, 26 Sep 2006 04:17:17 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4HH6W065731; Tue, 26 Sep 2006 04:17:17 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4HHe9065730; Tue, 26 Sep 2006 04:17:17 GMT (envelope-from tegge) Message-Id: <200609260417.k8Q4HHe9065730@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:17: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/sys mount.h 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, 26 Sep 2006 04:17:18 -0000 tegge 2006-09-26 04:17:17 UTC FreeBSD src repository Modified files: sys/sys mount.h sys/ufs/ffs ffs_softdep.c Log: Increase mnt_noasync once in softdep_mount() to disallow async io, closing a window where a file system using softupdates could be async for a short while if both MNT_UPDATE and MNT_ASYNC were passed as flags to nmount(). Add MNTK_SOFTDEP flag to ensure that softdep_mount() doesn't increase mnt_noasync multiple times. Revision Changes Path 1.214 +1 -0 src/sys/sys/mount.h 1.200 +5 -0 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:18:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2825516A403; Tue, 26 Sep 2006 04:18:37 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D884643D64; Tue, 26 Sep 2006 04:18:36 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4IaLh065819; Tue, 26 Sep 2006 04:18:36 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4Iasx065818; Tue, 26 Sep 2006 04:18:36 GMT (envelope-from tegge) Message-Id: <200609260418.k8Q4Iasx065818@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:18: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/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: Tue, 26 Sep 2006 04:18:37 -0000 tegge 2006-09-26 04:18:36 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Don't restore MNT_QUOTA bit in mnt_flag after a failed mount with MNT_UPDATE flag, closing a race between nmount() and quotactl(). Revision Changes Path 1.237 +2 -1 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:19:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 518CA16A492; Tue, 26 Sep 2006 04:19:12 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6843E43D64; Tue, 26 Sep 2006 04:19:11 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4JBIE065855; Tue, 26 Sep 2006 04:19:11 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4JB02065854; Tue, 26 Sep 2006 04:19:11 GMT (envelope-from tegge) Message-Id: <200609260419.k8Q4JB02065854@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:19: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/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, 26 Sep 2006 04:19:12 -0000 tegge 2006-09-26 04:19:11 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_snapshot.c Log: Don't restore MNT_QUOTA bit in mnt_flag after snapshot creation, closing a race between nmount() and quotactl(). Revision Changes Path 1.130 +1 -1 src/sys/ufs/ffs/ffs_snapshot.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:20:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0897416A47B; Tue, 26 Sep 2006 04:20:09 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AB2543D5E; Tue, 26 Sep 2006 04:20:09 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4K9nh065925; Tue, 26 Sep 2006 04:20:09 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4K9l2065924; Tue, 26 Sep 2006 04:20:09 GMT (envelope-from tegge) Message-Id: <200609260420.k8Q4K9l2065924@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:20: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/kern vfs_mount.c 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, 26 Sep 2006 04:20:10 -0000 tegge 2006-09-26 04:20:09 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c sys/ufs/ffs ffs_softdep.c Log: Reduce fluctuations of mnt_flag to allow unlocked readers to get a slightly more consistent view. Revision Changes Path 1.238 +6 -6 src/sys/kern/vfs_mount.c 1.201 +1 -2 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:21:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AC1B16A407; Tue, 26 Sep 2006 04:21:23 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64FC843D53; Tue, 26 Sep 2006 04:21:21 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4LLmJ066088; Tue, 26 Sep 2006 04:21:21 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4LLpS066087; Tue, 26 Sep 2006 04:21:21 GMT (envelope-from tegge) Message-Id: <200609260421.k8Q4LLpS066087@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:21: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/ufs/ffs ffs_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: Tue, 26 Sep 2006 04:21:23 -0000 tegge 2006-09-26 04:21:21 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_vfsops.c Log: Protect change to bo_flag by holding the bufobj mutex. Revision Changes Path 1.320 +2 -0 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 04:59:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 951B716A403; Tue, 26 Sep 2006 04:59:53 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 231DA43D5D; Tue, 26 Sep 2006 04:59:53 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4xrOY075899; Tue, 26 Sep 2006 04:59:53 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4xqZS075898; Tue, 26 Sep 2006 04:59:52 GMT (envelope-from mjacob) Message-Id: <200609260459.k8Q4xqZS075898@repoman.freebsd.org> From: Matt Jacob Date: Tue, 26 Sep 2006 04:59: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/isp isp_freebsd.c isp_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: Tue, 26 Sep 2006 04:59:53 -0000 mjacob 2006-09-26 04:59:52 UTC FreeBSD src repository Modified files: sys/dev/isp isp_freebsd.c isp_freebsd.h Log: Begin the process of moving info to sysctl stuff for FreeBSD by providing OIDs for WWNN/WWPN and Initiator ID. Revision Changes Path 1.123 +38 -1 src/sys/dev/isp/isp_freebsd.c 1.93 +9 -0 src/sys/dev/isp/isp_freebsd.h From owner-cvs-src@FreeBSD.ORG Tue Sep 26 05:46:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A4BB16A403; Tue, 26 Sep 2006 05:46:56 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 497FC43D45; Tue, 26 Sep 2006 05:46:56 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q5kuSJ079412; Tue, 26 Sep 2006 05:46:56 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q5kuI7079411; Tue, 26 Sep 2006 05:46:56 GMT (envelope-from ru) Message-Id: <200609260546.k8Q5kuI7079411@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 05:46: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/usr.bin/id id.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, 26 Sep 2006 05:46:56 -0000 ru 2006-09-26 05:46:55 UTC FreeBSD src repository Modified files: usr.bin/id id.c Log: Fix both arguments to err(). Revision Changes Path 1.30 +1 -1 src/usr.bin/id/id.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 09:28:08 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E76116A417 for ; Tue, 26 Sep 2006 09:28:08 +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 47D4443D49 for ; Tue, 26 Sep 2006 09:28:06 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 47026 invoked from network); 26 Sep 2006 09:29:57 -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 ; 26 Sep 2006 09:29:57 -0000 Message-ID: <4518F2A7.2040506@freebsd.org> Date: Tue, 26 Sep 2006 11:28:07 +0200 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: John-Mark Gurney References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> In-Reply-To: <200609260121.k8Q1Llo8049117@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/netinet tcp_input.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, 26 Sep 2006 09:28:08 -0000 John-Mark Gurney wrote: > jmg 2006-09-26 01:21:47 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_input.c > Log: > fix calculating to_tsecr... This prevents the rtt calculations from > going all wonky... *blushes*, looks for pointy hat. -- Andre From owner-cvs-src@FreeBSD.ORG Tue Sep 26 09:47:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CF8216A415; Tue, 26 Sep 2006 09:47:51 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 045F143D6A; Tue, 26 Sep 2006 09:47:46 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q9lk7b006258; Tue, 26 Sep 2006 09:47:46 GMT (envelope-from vd@repoman.freebsd.org) Received: (from vd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q9lkRZ006257; Tue, 26 Sep 2006 09:47:46 GMT (envelope-from vd) Message-Id: <200609260947.k8Q9lkRZ006257@repoman.freebsd.org> From: Vasil Dimov Date: Tue, 26 Sep 2006 09:47: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/lib/libc/sys aio_error.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: Tue, 26 Sep 2006 09:47:51 -0000 vd 2006-09-26 09:47:46 UTC FreeBSD src repository (ports committer) Modified files: lib/libc/sys aio_error.2 Log: Fix typo PR: docs/103666 Submitted by: vd Approved by: maxim Revision Changes Path 1.20 +1 -2 src/lib/libc/sys/aio_error.2 From owner-cvs-src@FreeBSD.ORG Tue Sep 26 10:11:41 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C858616A407; Tue, 26 Sep 2006 10:11:41 +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 1B8E143D4C; Tue, 26 Sep 2006 10:11:41 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 2D5DD6113; Tue, 26 Sep 2006 14:11:40 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 0B7FA60EF; Tue, 26 Sep 2006 14:11:40 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QABW4m012326; Tue, 26 Sep 2006 14:11:32 +0400 (MSD) (envelope-from ru) Date: Tue, 26 Sep 2006 14:11:32 +0400 From: Ruslan Ermilov To: Martin Blapp Message-ID: <20060926101132.GD11800@rambler-co.ru> References: <200609231452.k8NEql6w078197@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TybLhxa8M7aNoW+V" Content-Disposition: inline In-Reply-To: <200609231452.k8NEql6w078197@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c tty_pty.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, 26 Sep 2006 10:11:41 -0000 --TybLhxa8M7aNoW+V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Sep 23, 2006 at 02:52:47PM +0000, Martin Blapp wrote: > mbr 2006-09-23 14:52:47 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/kern tty.c tty_pty.c=20 > Log: > Check for tp->t_refcnt =3D=3D 0 before doing anything in tty_open(). > =20 > PR: 103520 > MFC after: 1 week > =20 > Revision Changes Path > 1.260 +6 -0 src/sys/kern/tty.c > 1.146 +12 -0 src/sys/kern/tty_pty.c >=20 Does kern_pts.c have the same problem? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --TybLhxa8M7aNoW+V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGPzUqRfpzJluFF4RAmLJAKCQS84qTXWcGjO2+3Jv7gDYRfEOSQCaAvdy srrNFu2DCUj2qrwd9zV+ZeQ= =Ro/q -----END PGP SIGNATURE----- --TybLhxa8M7aNoW+V-- From owner-cvs-src@FreeBSD.ORG Tue Sep 26 12:06:06 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC07C16A412; Tue, 26 Sep 2006 12:06:06 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E87543D7B; Tue, 26 Sep 2006 12:05:53 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8QC5oWK009909; Tue, 26 Sep 2006 14:05:50 +0200 (CEST) (envelope-from mb@imp.ch) Date: Tue, 26 Sep 2006 14:05:50 +0200 (CEST) From: Martin Blapp To: Ruslan Ermilov In-Reply-To: <20060926101132.GD11800@rambler-co.ru> Message-ID: <20060926133931.K91466@godot.imp.ch> References: <200609231452.k8NEql6w078197@repoman.freebsd.org> <20060926101132.GD11800@rambler-co.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c tty_pty.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, 26 Sep 2006 12:06:06 -0000 Hi, > Does kern_pts.c have the same problem? Smilar but different problems. Those are addressed in a PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=99758 Martin From owner-cvs-src@FreeBSD.ORG Tue Sep 26 12:37:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64B0216A651; Tue, 26 Sep 2006 12:37:15 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 425FE43D77; Tue, 26 Sep 2006 12:36:47 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCaZ1S018490; Tue, 26 Sep 2006 12:36:35 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCaZ9C018489; Tue, 26 Sep 2006 12:36:35 GMT (envelope-from ru) Message-Id: <200609261236.k8QCaZ9C018489@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 12:36: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/amd64/conf GENERIC src/sys/conf NOTES options 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 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:37:15 -0000 ru 2006-09-26 12:36:35 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC sys/conf NOTES options sys/i386/conf GENERIC sys/ia64/conf GENERIC sys/pc98/conf GENERIC sys/powerpc/conf GENERIC sys/sparc64/conf GENERIC Log: Added COMPAT_FREEBSD6 option. Revision Changes Path 1.465 +1 -0 src/sys/amd64/conf/GENERIC 1.1383 +3 -0 src/sys/conf/NOTES 1.559 +1 -0 src/sys/conf/options 1.456 +1 -0 src/sys/i386/conf/GENERIC 1.83 +1 -0 src/sys/ia64/conf/GENERIC 1.284 +1 -0 src/sys/pc98/conf/GENERIC 1.60 +2 -1 src/sys/powerpc/conf/GENERIC 1.115 +1 -0 src/sys/sparc64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Tue Sep 26 12:41:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C049016A407; Tue, 26 Sep 2006 12:41:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C22543D45; Tue, 26 Sep 2006 12:41:13 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCfD7v018885; Tue, 26 Sep 2006 12:41:13 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCfDuU018884; Tue, 26 Sep 2006 12:41:13 GMT (envelope-from ru) Message-Id: <200609261241.k8QCfDuU018884@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 12:41: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/modules/wlan Makefile src/sys/net80211 ieee80211_ioctl.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, 26 Sep 2006 12:41:13 -0000 ru 2006-09-26 12:41:13 UTC FreeBSD src repository Modified files: sys/modules/wlan Makefile sys/net80211 ieee80211_ioctl.c Log: Now that we have COMPAT_FREEBSD6 officially, use it from opt_compat.h. Revision Changes Path 1.6 +4 -1 src/sys/modules/wlan/Makefile 1.50 +2 -1 src/sys/net80211/ieee80211_ioctl.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 12:44:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6393F16A40F; Tue, 26 Sep 2006 12:44:21 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21E7543D49; Tue, 26 Sep 2006 12:44:21 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCiLs5019121; Tue, 26 Sep 2006 12:44:21 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCiKeu019120; Tue, 26 Sep 2006 12:44:20 GMT (envelope-from ru) Message-Id: <200609261244.k8QCiKeu019120@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 12:44: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/modules/wlan 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, 26 Sep 2006 12:44:21 -0000 ru 2006-09-26 12:44:20 UTC FreeBSD src repository Modified files: sys/modules/wlan Makefile Log: Add a value to the define I forgot, for the purity's sake. Revision Changes Path 1.7 +1 -1 src/sys/modules/wlan/Makefile From owner-cvs-src@FreeBSD.ORG Tue Sep 26 12:45:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC48616A417; Tue, 26 Sep 2006 12:45:52 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0A3043D7E; Tue, 26 Sep 2006 12:45:48 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCjmY1019209; Tue, 26 Sep 2006 12:45:48 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCjmiE019208; Tue, 26 Sep 2006 12:45:48 GMT (envelope-from rwatson) Message-Id: <200609261245.k8QCjmiE019208@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Sep 2006 12:45: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/sys copyright.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, 26 Sep 2006 12:45:53 -0000 rwatson 2006-09-26 12:45:47 UTC FreeBSD src repository Modified files: sys/sys copyright.h Log: PC98 would also like a trademark. Who would have thought that getting a kernel printf right would be so tricky? MFC after: 3 days Submitted by: Gavin Atkinson Revision Changes Path 1.23 +2 -1 src/sys/sys/copyright.h From owner-cvs-src@FreeBSD.ORG Tue Sep 26 12:46:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3C1116A403; Tue, 26 Sep 2006 12:46:15 +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 7A50943D53; Tue, 26 Sep 2006 12:46:13 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 604095CAA; Tue, 26 Sep 2006 16:46:12 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 479745C91; Tue, 26 Sep 2006 16:46:12 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QCkCJg001239; Tue, 26 Sep 2006 16:46:12 +0400 (MSD) (envelope-from ru) Date: Tue, 26 Sep 2006 16:46:12 +0400 From: Ruslan Ermilov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20060926124612.GA855@rambler-co.ru> References: <200609261236.k8QCaZ9C018489@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WIyZ46R2i8wDzkSu" Content-Disposition: inline In-Reply-To: <200609261236.k8QCaZ9C018489@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: Subject: Re: cvs commit: src/sys/amd64/conf GENERIC src/sys/conf NOTES options 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 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:46:16 -0000 --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 12:36:35PM +0000, Ruslan Ermilov wrote: > ru 2006-09-26 12:36:35 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/amd64/conf GENERIC=20 > sys/conf NOTES options=20 > sys/i386/conf GENERIC=20 > sys/ia64/conf GENERIC=20 > sys/pc98/conf GENERIC=20 > sys/powerpc/conf GENERIC=20 > sys/sparc64/conf GENERIC=20 > Log: > Added COMPAT_FREEBSD6 option. > =20 > Revision Changes Path > 1.465 +1 -0 src/sys/amd64/conf/GENERIC > 1.1383 +3 -0 src/sys/conf/NOTES > 1.559 +1 -0 src/sys/conf/options > 1.456 +1 -0 src/sys/i386/conf/GENERIC > 1.83 +1 -0 src/sys/ia64/conf/GENERIC > 1.284 +1 -0 src/sys/pc98/conf/GENERIC > 1.60 +2 -1 src/sys/powerpc/conf/GENERIC > 1.115 +1 -0 src/sys/sparc64/conf/GENERIC >=20 For the curious, I have some WIP code that fixes ioctl(2) and it will need this option. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --WIyZ46R2i8wDzkSu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGSEUqRfpzJluFF4RAsDJAKCKSWV9tRrRMyXitorphjQ2wQK+TACggBCq +eGAgkwhzvTBpp6wnZuu5Qc= =79Pn -----END PGP SIGNATURE----- --WIyZ46R2i8wDzkSu-- From owner-cvs-src@FreeBSD.ORG Tue Sep 26 12:47:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E181216A47C; Tue, 26 Sep 2006 12:47:49 +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 597C943D80; Tue, 26 Sep 2006 12:47:41 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 695DA5CD2; Tue, 26 Sep 2006 16:47:40 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 48D9D5CCD; Tue, 26 Sep 2006 16:47:40 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QClemc001335; Tue, 26 Sep 2006 16:47:40 +0400 (MSD) (envelope-from ru) Date: Tue, 26 Sep 2006 16:47:40 +0400 From: Ruslan Ermilov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20060926124740.GB855@rambler-co.ru> References: <200609261241.k8QCfDuU018884@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rJwd6BRFiFCcLxzm" Content-Disposition: inline In-Reply-To: <200609261241.k8QCfDuU018884@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: Subject: Re: cvs commit: src/sys/modules/wlan Makefile src/sys/net80211 ieee80211_ioctl.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, 26 Sep 2006 12:47:50 -0000 --rJwd6BRFiFCcLxzm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 12:41:13PM +0000, Ruslan Ermilov wrote: > ru 2006-09-26 12:41:13 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/modules/wlan Makefile=20 > sys/net80211 ieee80211_ioctl.c=20 > Log: > Now that we have COMPAT_FREEBSD6 officially, use it from opt_compat.h. > =20 > Revision Changes Path > 1.6 +4 -1 src/sys/modules/wlan/Makefile > 1.50 +2 -1 src/sys/net80211/ieee80211_ioctl.c >=20 That should read: "pick it up from opt_compat.h". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --rJwd6BRFiFCcLxzm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGSFsqRfpzJluFF4RApFJAKCMfPviXjM0+lLUFRJyHzID8ErS1gCcDptx pi4Xjlwu3QcDEwiiQoMLOz0= =bMhR -----END PGP SIGNATURE----- --rJwd6BRFiFCcLxzm-- From owner-cvs-src@FreeBSD.ORG Tue Sep 26 14:38:57 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48EB116A403; Tue, 26 Sep 2006 14:38:57 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D987143D46; Tue, 26 Sep 2006 14:38:56 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEcuRp036831; Tue, 26 Sep 2006 14:38:56 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEcucu036830; Tue, 26 Sep 2006 14:38:56 GMT (envelope-from jhb) Message-Id: <200609261438.k8QEcucu036830@repoman.freebsd.org> From: John Baldwin Date: Tue, 26 Sep 2006 14:38: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/dev/smbus smb.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, 26 Sep 2006 14:38:57 -0000 jhb 2006-09-26 14:38:56 UTC FreeBSD src repository Modified files: sys/dev/smbus smb.c Log: Only support the SMB_OLD_BREAD ioctl if one of COMPAT_FREEBSD[456] is defined. Revision Changes Path 1.38 +6 -0 src/sys/dev/smbus/smb.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 14:51:34 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C0EF16A49E; Tue, 26 Sep 2006 14:51:34 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC83F43D49; Tue, 26 Sep 2006 14:51:33 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEpXd5037707; Tue, 26 Sep 2006 14:51:33 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEpXKs037706; Tue, 26 Sep 2006 14:51:33 GMT (envelope-from kensmith) Message-Id: <200609261451.k8QEpXKs037706@repoman.freebsd.org> From: Ken Smith Date: Tue, 26 Sep 2006 14:51: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/usr.sbin/pkg_install/add 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: Tue, 26 Sep 2006 14:51:34 -0000 kensmith 2006-09-26 14:51:33 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add main.c Log: Oops. Catch up on the last couple of releases and prepare for the next one. Revision Changes Path 1.69 +3 -0 src/usr.sbin/pkg_install/add/main.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 15:48:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E18F216A4CE; Tue, 26 Sep 2006 15:48:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC3CC43D67; Tue, 26 Sep 2006 15:48:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QFmDUS041744; Tue, 26 Sep 2006 15:48:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QFmDkE041743; Tue, 26 Sep 2006 15:48:13 GMT (envelope-from jhb) Message-Id: <200609261548.k8QFmDkE041743@repoman.freebsd.org> From: John Baldwin Date: Tue, 26 Sep 2006 15:48: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/dev/ipmi ipmi.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, 26 Sep 2006 15:48:31 -0000 jhb 2006-09-26 15:48:13 UTC FreeBSD src repository Modified files: sys/dev/ipmi ipmi.c Log: Fix a memory leak in ipmi_unload(). CID: 1542 Found by: Coverity Prevent Revision Changes Path 1.5 +3 -1 src/sys/dev/ipmi/ipmi.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 15:49:13 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB76A16A4DA; Tue, 26 Sep 2006 15:49:13 +0000 (UTC) (envelope-from arr@watson.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244F443D5A; Tue, 26 Sep 2006 15:48:43 +0000 (GMT) (envelope-from arr@watson.org) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.13.8/8.13.8) with ESMTP id k8QFmVBl038833; Tue, 26 Sep 2006 11:48:31 -0400 (EDT) (envelope-from arr@watson.org) Received: from localhost (arr@localhost) by fledge.watson.org (8.13.8/8.13.8/Submit) with ESMTP id k8QFmUSl038828; Tue, 26 Sep 2006 11:48:31 -0400 (EDT) (envelope-from arr@watson.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Tue, 26 Sep 2006 11:48:30 -0400 (EDT) From: "Andrew R. Reiter" To: John-Mark Gurney In-Reply-To: <20060926041406.GE80527@funkthat.com> Message-ID: <20060926114811.F46437@fledge.watson.org> References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> <20060925215235.C46437@fledge.watson.org> <20060926041406.GE80527@funkthat.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.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, 26 Sep 2006 15:49:13 -0000 On Mon, 25 Sep 2006, John-Mark Gurney wrote: :Andrew R. Reiter wrote this message on Mon, Sep 25, 2006 at 21:53 -0400: :> On Tue, 26 Sep 2006, John-Mark Gurney wrote: :> :> :jmg 2006-09-26 01:21:47 UTC :> : :> : FreeBSD src repository :> : :> : Modified files: :> : sys/netinet tcp_input.c :> : Log: :> : fix calculating to_tsecr... This prevents the rtt calculations from :> : going all wonky... :> : :> : Revision Changes Path :> : 1.309 +1 -1 src/sys/netinet/tcp_input.c :> :> At some point will it be safe to remove that min/max check? : :Do you mean replace the else? or do you mean change it entirely? : :Unless someone can think of a reason why the retransmit timer should :ever be allowed to go above 64 seconds, I'd consider replacing the :else, but as I see it, it prevents run away code, though w/o the :else I probably wouldn't of found this bug... : turn into KASSERT or something -- arr@watson.org From owner-cvs-src@FreeBSD.ORG Tue Sep 26 16:08:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EACB116A412; Tue, 26 Sep 2006 16:08:29 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6CE943D82; Tue, 26 Sep 2006 16:08:29 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QG8TBr044267; Tue, 26 Sep 2006 16:08:29 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QG8TYB044266; Tue, 26 Sep 2006 16:08:29 GMT (envelope-from sobomax) Message-Id: <200609261608.k8QG8TYB044266@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 26 Sep 2006 16:08: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/sys/i386/i386 local_apic.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, 26 Sep 2006 16:08:30 -0000 sobomax 2006-09-26 16:08:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/i386 local_apic.c Log: Revert 1.17.2.8, which reportedly causes problems on some hardware. Approved by: re Reported by: glebius Revision Changes Path 1.17.2.9 +0 -12 src/sys/i386/i386/local_apic.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 16:14:56 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29FB516A40F; Tue, 26 Sep 2006 16:14:56 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF12443D72; Tue, 26 Sep 2006 16:14:54 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8QGEcjE049248; Tue, 26 Sep 2006 12:14:46 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Martin Blapp Date: Tue, 26 Sep 2006 10:32:09 -0400 User-Agent: KMail/1.9.1 References: <200609231735.k8NHZPWn003039@repoman.freebsd.org> In-Reply-To: <200609231735.k8NHZPWn003039@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609261032.10254.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 26 Sep 2006 12:14:46 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1946/Tue Sep 26 09:18:37 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_proc.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, 26 Sep 2006 16:14:56 -0000 On Saturday 23 September 2006 13:35, Martin Blapp wrote: > mbr 2006-09-23 17:35:24 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_proc.c > Log: > Protect enterpgrp() against another tty/proc race case until the tty locking work > has been fixed. I would move Giant up even further since P_CONTROLT isn't really fully locked yet (p_flag is, but P_CONTROLT isn't really, I have some old WIP for P_CONTROLT). -- John Baldwin From owner-cvs-src@FreeBSD.ORG Tue Sep 26 16:15:36 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43C7D16A4F0; Tue, 26 Sep 2006 16:15:36 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9989443D7F; Tue, 26 Sep 2006 16:15:16 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8QGEcjF049248; Tue, 26 Sep 2006 12:14:52 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Doug Ambrisko Date: Tue, 26 Sep 2006 10:49:06 -0400 User-Agent: KMail/1.9.1 References: <200609251950.k8PJoqgM055325@ambrisko.com> In-Reply-To: <200609251950.k8PJoqgM055325@ambrisko.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609261049.07379.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 26 Sep 2006 12:14:53 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1946/Tue Sep 26 09:18:37 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.0 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00, SUBJ_HAS_SPACES autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/conf NOTES src/sys/conf files.amd64 files.i386 src/sys/dev/ipmi ipmi.c ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_pci.c ipmi_smbios.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c ipmivars.h src/sys/i386/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, 26 Sep 2006 16:15:36 -0000 On Monday 25 September 2006 15:50, Doug Ambrisko wrote: > John Baldwin writes: > | jhb 2006-09-22 22:11:29 UTC > | > | FreeBSD src repository > | > | Modified files: > | sys/amd64/conf NOTES > | sys/conf files.amd64 files.i386 > | sys/dev/ipmi ipmi.c ipmi_pci.c ipmi_smbios.c > | ipmivars.h > | sys/i386/conf NOTES > | sys/modules/ipmi Makefile > | sys/sys ipmi.h > | Added files: > | sys/dev/ipmi ipmi_acpi.c ipmi_isa.c ipmi_kcs.c > | ipmi_smbus.c ipmi_smic.c ipmi_ssif.c > | Log: > | Update the ipmi(4) driver: > [snip] > | - Add an ACPI attachment. > > This should work, however, my one test machine doesn't attach with it. > Since it doesn't break anything having it, it is safe to add. That > machine attached fine with the SMBIOS info. so it's not a big deal. > Just don't expect it to work out of the box. There are some issues > that need to get investigated. > > Thanks to John for helping to finish some loose ends and add a lot more > polish. Did you get a chance to test the last snap of the patch with the ACPI attachment? It now does a loop to alloc multiple resources if they exist which should fix the machine you have I think. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Tue Sep 26 17:41:23 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDAE516A47B; Tue, 26 Sep 2006 17:41:23 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D75E43D49; Tue, 26 Sep 2006 17:41:23 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8QHfHel049839; Tue, 26 Sep 2006 13:41:21 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Maxim Sobolev Date: Tue, 26 Sep 2006 13:13:03 -0400 User-Agent: KMail/1.9.1 References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> In-Reply-To: <200609261608.k8QG8TYB044266@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609261313.03759.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 26 Sep 2006 13:41:22 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1946/Tue Sep 26 09:18:37 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.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, 26 Sep 2006 17:41:24 -0000 On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: > sobomax 2006-09-26 16:08:29 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/i386/i386 local_apic.c > Log: > Revert 1.17.2.8, which reportedly causes problems on some hardware. The report I saw was that it broke ULE in general. Are you going to revert it from amd64 as well? -- John Baldwin From owner-cvs-src@FreeBSD.ORG Tue Sep 26 18:06:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B89D16A47B; Tue, 26 Sep 2006 18:06:10 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAEB743D78; Tue, 26 Sep 2006 18:06:09 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QI69pw060291; Tue, 26 Sep 2006 18:06:09 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QI69YC060290; Tue, 26 Sep 2006 18:06:09 GMT (envelope-from brian) Message-Id: <200609261806.k8QI69YC060290@repoman.freebsd.org> From: Brian Somers Date: Tue, 26 Sep 2006 18:06: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.sbin/cron/lib entry.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, 26 Sep 2006 18:06:10 -0000 brian 2006-09-26 18:06:09 UTC FreeBSD src repository Modified files: usr.sbin/cron/lib entry.c Log: Behave as documented when reading fields saying "X/Y" where X != * rather than mis-parsing them as "X". MFC after: 1 day Revision Changes Path 1.17 +3 -1 src/usr.sbin/cron/lib/entry.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 18:28:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F27F516A40F; Tue, 26 Sep 2006 18:28:39 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3412243D7C; Tue, 26 Sep 2006 18:28:39 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QISc0g061507; Tue, 26 Sep 2006 18:28:38 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIScvZ061506; Tue, 26 Sep 2006 18:28:38 GMT (envelope-from bms) Message-Id: <200609261828.k8QIScvZ061506@repoman.freebsd.org> From: Bruce M Simpson Date: Tue, 26 Sep 2006 18: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/netinet ip_output.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, 26 Sep 2006 18:28:40 -0000 bms 2006-09-26 18:28:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_output.c Log: Back out rev 1.242.2.13 as it introduces a potentially expensive hash lookup to the ip output path. A better way needs to be found to resolve this. Approved by: re@ Revision Changes Path 1.242.2.14 +4 -11 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 18:45:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6CAB16A407; Tue, 26 Sep 2006 18:45:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 613A043D58; Tue, 26 Sep 2006 18:44:57 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QIivuE062542; Tue, 26 Sep 2006 18:44:57 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIiv0j062541; Tue, 26 Sep 2006 18:44:57 GMT (envelope-from jhb) Message-Id: <200609261844.k8QIiv0j062541@repoman.freebsd.org> From: John Baldwin Date: Tue, 26 Sep 2006 18:44: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/smbus smbus.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, 26 Sep 2006 18:45:00 -0000 jhb 2006-09-26 18:44:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/smbus smbus.c Log: MFC: Add an explicit bus_add_child method for smbus(4). Approved by: re (kensmith) Revision Changes Path 1.18.10.4 +1 -0 src/sys/dev/smbus/smbus.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 19:16:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E368216A403; Tue, 26 Sep 2006 19:16:44 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17FE743E2D; Tue, 26 Sep 2006 19:12:17 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QJCBE0065231; Tue, 26 Sep 2006 19:12:11 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QJCBqR065230; Tue, 26 Sep 2006 19:12:11 GMT (envelope-from sobomax) Message-Id: <200609261912.k8QJCBqR065230@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 26 Sep 2006 19:12: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/sys/amd64/amd64 local_apic.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, 26 Sep 2006 19:16:45 -0000 sobomax 2006-09-26 19:12:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 local_apic.c Log: Revert 1.17.2.8, it causes some problems. Approved by: re Reported by: glebius Revision Changes Path 1.17.2.9 +0 -12 src/sys/amd64/amd64/local_apic.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 19:59:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09E3116A407; Tue, 26 Sep 2006 19:59:53 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B388643D6A; Tue, 26 Sep 2006 19:59:52 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QJxqMH068351; Tue, 26 Sep 2006 19:59:52 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QJxqkh068350; Tue, 26 Sep 2006 19:59:52 GMT (envelope-from danger) Message-Id: <200609261959.k8QJxqkh068350@repoman.freebsd.org> From: Daniel Gerzo Date: Tue, 26 Sep 2006 19:59: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/share/examples/mdoc example.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, 26 Sep 2006 19:59:53 -0000 danger 2006-09-26 19:59:52 UTC FreeBSD src repository (doc committer) Modified files: share/examples/mdoc example.4 Log: Remove second person from the sentece and rephrase a bit. Approved by: trhodes (mentor), keramida (mentor) Revision Changes Path 1.26 +6 -8 src/share/examples/mdoc/example.4 From owner-cvs-src@FreeBSD.ORG Tue Sep 26 20:48:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3627D16A407; Tue, 26 Sep 2006 20:48:25 +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 8E47643D5A; Tue, 26 Sep 2006 20:48:24 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 506D85C62; Wed, 27 Sep 2006 00:48:23 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 2E7BC5C28; Wed, 27 Sep 2006 00:48:23 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QKmN3T043112; Wed, 27 Sep 2006 00:48:23 +0400 (MSD) (envelope-from ru) Date: Wed, 27 Sep 2006 00:48:23 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060926204823.GB42964@rambler-co.ru> References: <200609251011.k8PABGaL081087@repoman.freebsd.org> <20060925143108.GW27667@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mojUlQ0s9EVzWg2t" Content-Disposition: inline In-Reply-To: <20060925143108.GW27667@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, Gleb Smirnoff , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.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, 26 Sep 2006 20:48:25 -0000 --mojUlQ0s9EVzWg2t Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Bruce, Can you please reply to this email? Thanks. On Mon, Sep 25, 2006 at 06:31:08PM +0400, Gleb Smirnoff wrote: > On Mon, Sep 25, 2006 at 10:11:16AM +0000, Bruce M Simpson wrote: > B> bms 2006-09-25 10:11:16 UTC > B>=20 > B> FreeBSD src repository > B>=20 > B> Modified files: > B> sys/netinet in_var.h ip_output.c=20 > B> Log: > B> Account for output IP datagrams on the ifaddr where they originated = =66rom, > B> *not* the first ifaddr on the ifp. This is similar to what NetBSD d= oes. > B> =20 > B> PR: kern/72936 > B> Submitted by: alfred > B> Reviewed by: andre >=20 > This adds an additional hash lookup per packet, doesn't it? Have you meas= ured > performance impact of this change? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --mojUlQ0s9EVzWg2t Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGZIXqRfpzJluFF4RAmCKAJ93wokFOJt35qWsfbhhsaAJylgUPwCeNwmB tJAYDpFHOnS9wrBUEboVnqY= =u9jS -----END PGP SIGNATURE----- --mojUlQ0s9EVzWg2t-- From owner-cvs-src@FreeBSD.ORG Tue Sep 26 20:55:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1EFE16A47C; Tue, 26 Sep 2006 20:55:58 +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 E7C9A43D5E; Tue, 26 Sep 2006 20:55:54 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 0C9FB618C; Wed, 27 Sep 2006 00:55:54 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id DCDFE5D99; Wed, 27 Sep 2006 00:55:53 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QKts5L043221; Wed, 27 Sep 2006 00:55:54 +0400 (MSD) (envelope-from ru) Date: Wed, 27 Sep 2006 00:55:54 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060926205554.GD42964@rambler-co.ru> References: <200609261828.k8QIScvZ061506@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+KJYzRxRHjYqLGl5" Content-Disposition: inline In-Reply-To: <200609261828.k8QIScvZ061506@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_output.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, 26 Sep 2006 20:55:58 -0000 --+KJYzRxRHjYqLGl5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 06:28:38PM +0000, Bruce M Simpson wrote: > bms 2006-09-26 18:28:38 UTC >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_6) > sys/netinet ip_output.c=20 > Log: > Back out rev 1.242.2.13 as it introduces a potentially expensive hash l= ookup > to the ip output path. A better way needs to be found to resolve this. > =20 > Approved by: re@ > =20 > Revision Changes Path > 1.242.2.14 +4 -11 src/sys/netinet/ip_output.c >=20 Thanks! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --+KJYzRxRHjYqLGl5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGZPaqRfpzJluFF4RAgPJAJ998brGoVYeHvqK+rrp7rVQpBWpNQCeIP2s ToTdUXOfG8IMQd6luHJpZX4= =6D1f -----END PGP SIGNATURE----- --+KJYzRxRHjYqLGl5-- From owner-cvs-src@FreeBSD.ORG Tue Sep 26 21:46:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5A3B16A415; Tue, 26 Sep 2006 21:46:12 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C17B43D6B; Tue, 26 Sep 2006 21:46:12 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QLkC0X086745; Tue, 26 Sep 2006 21:46:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QLkCYm086744; Tue, 26 Sep 2006 21:46:12 GMT (envelope-from ru) Message-Id: <200609262146.k8QLkCYm086744@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 21:46: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/contrib/telnet/telnetd telnetd.c src/usr.sbin/vidcontrol vidcontrol.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, 26 Sep 2006 21:46:13 -0000 ru 2006-09-26 21:46:12 UTC FreeBSD src repository Modified files: contrib/telnet/telnetd telnetd.c usr.sbin/vidcontrol vidcontrol.c Log: Remove bogus casts of valid integer ioctl() arguments. Revision Changes Path 1.29 +4 -4 src/contrib/telnet/telnetd/telnetd.c 1.54 +2 -2 src/usr.sbin/vidcontrol/vidcontrol.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 22:28:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66AF216A407; Tue, 26 Sep 2006 22:28:15 +0000 (UTC) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7945643D68; Tue, 26 Sep 2006 22:28:13 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QMSDv5092635; Tue, 26 Sep 2006 22:28:13 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QMSDv9092634; Tue, 26 Sep 2006 22:28:13 GMT (envelope-from ceri) Message-Id: <200609262228.k8QMSDv9092634@repoman.freebsd.org> From: Ceri Davies Date: Tue, 26 Sep 2006 22:28: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.bin/id id.1 id.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, 26 Sep 2006 22:28:15 -0000 ceri 2006-09-26 22:28:13 UTC FreeBSD src repository Modified files: usr.bin/id id.1 id.c Log: Add a -a option as a no-op for Solaris compatibility, as briefly discussed on src-committers. This is intentionally not included in the usage() function as it would confuse the output too much. Approved by: jhb MFC after: 1 week Revision Changes Path 1.18 +5 -1 src/usr.bin/id/id.1 1.31 +3 -1 src/usr.bin/id/id.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 23:08:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F51416A40F; Tue, 26 Sep 2006 23:08:44 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB5D343D46; Tue, 26 Sep 2006 23:08:43 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.6) with ESMTP id k8QN8crb057089 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 26 Sep 2006 16:08:42 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4519B2E5.9000304@FreeBSD.org> Date: Tue, 26 Sep 2006 16:08:21 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: John Baldwin References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609261313.03759.jhb@freebsd.org> In-Reply-To: <200609261313.03759.jhb@freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; 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/i386/i386 local_apic.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, 26 Sep 2006 23:08:44 -0000 John Baldwin wrote: > On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: >> sobomax 2006-09-26 16:08:29 UTC >> >> FreeBSD src repository >> >> Modified files: (Branch: RELENG_6) >> sys/i386/i386 local_apic.c >> Log: >> Revert 1.17.2.8, which reportedly causes problems on some hardware. > > The report I saw was that it broke ULE in general. Are you going to revert it > from amd64 as well? Yes, you are right - this is ULE specific bug. In fact, quick grep of the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the problem is with ULE, not with the change in question. -Maxim From owner-cvs-src@FreeBSD.ORG Tue Sep 26 23:14:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BD6816A412; Tue, 26 Sep 2006 23:14:43 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DECAD43D45; Tue, 26 Sep 2006 23:14:42 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QNEg3b096308; Tue, 26 Sep 2006 23:14:42 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QNEgPM096307; Tue, 26 Sep 2006 23:14:42 GMT (envelope-from scottl) Message-Id: <200609262314.k8QNEgPM096307@repoman.freebsd.org> From: Scott Long Date: Tue, 26 Sep 2006 23:14: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/i386/i386 busdma_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: Tue, 26 Sep 2006 23:14:43 -0000 scottl 2006-09-26 23:14:42 UTC FreeBSD src repository Modified files: sys/i386/i386 busdma_machdep.c Log: The need to run a filter also implies that bouncing could be possible, so just use the COULD_BOUNCE flag for both and retire the USE_FILTER flag. This fixes the problem that rev 1.81 introduced with the if_bfe driver (and possibly others). Revision Changes Path 1.84 +4 -5 src/sys/i386/i386/busdma_machdep.c From owner-cvs-src@FreeBSD.ORG Tue Sep 26 23:26:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8180D16A415; Tue, 26 Sep 2006 23:26:54 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20ED443D5A; Tue, 26 Sep 2006 23:26:54 +0000 (GMT) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QNQsGW098028; Tue, 26 Sep 2006 23:26:54 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QNQrtW098027; Tue, 26 Sep 2006 23:26:53 GMT (envelope-from piso) Message-Id: <200609262326.k8QNQrtW098027@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 26 Sep 2006 23:26: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/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 23:26:54 -0000 piso 2006-09-26 23:26:53 UTC FreeBSD src repository Modified files: etc Makefile lib/libalias Makefile sbin/natd natd.c sys/conf files sys/modules/libalias Makefile sys/netinet/libalias alias.c alias.h alias_cuseeme.c alias_db.c alias_ftp.c alias_irc.c alias_local.h alias_nbt.c alias_old.c alias_pptp.c alias_proxy.c alias_skinny.c alias_smedia.c alias_util.c libalias.3 Added files: etc libalias.conf lib/libalias/libalias Makefile lib/libalias/modules Makefile Makefile.inc lib/libalias/modules/cuseeme Makefile lib/libalias/modules/dummy Makefile lib/libalias/modules/ftp Makefile lib/libalias/modules/irc Makefile lib/libalias/modules/nbt Makefile lib/libalias/modules/pptp Makefile lib/libalias/modules/skinny Makefile lib/libalias/modules/smedia Makefile sys/modules/libalias/libalias Makefile sys/modules/libalias/modules Makefile Makefile.inc modules.inc sys/modules/libalias/modules/cuseeme Makefile sys/modules/libalias/modules/dummy Makefile sys/modules/libalias/modules/ftp Makefile sys/modules/libalias/modules/irc Makefile sys/modules/libalias/modules/nbt Makefile sys/modules/libalias/modules/pptp Makefile sys/modules/libalias/modules/skinny Makefile sys/modules/libalias/modules/smedia Makefile sys/netinet/libalias alias_dummy.c alias_mod.c alias_mod.h Log: Summer of Code 2005: improve libalias - part 1 of 2 With the first part of my previous Summer of Code work, we get: -made libalias modular: -support for 'particular' protocols (like ftp/irc/etcetc) is no more hardcoded inside libalias, but it's available through external modules loadable at runtime -modules are available both in kernel (/boot/kernel/alias_*.ko) and user land (/lib/libalias_*) -protocols/applications modularized are: cuseeme, ftp, irc, nbt, pptp, skinny and smedia -added logging support for kernel side -cleanup After a buildworld, do a 'mergemaster -i' to install the file libalias.conf in /etc or manually copy it. During startup (and after every HUP signal) user land applications running the new libalias will try to read a file in /etc called libalias.conf: that file contains the list of modules to load. User land applications affected by this commit are ppp and natd: if libalias.conf is present in /etc you won't notice any difference. The only kernel land bit affected by this commit is ng_nat: if you are using ng_nat, and it doesn't correctly handle ftp/irc/etcetc sessions anymore, remember to kldload the correspondent module (i.e. kldload alias_ftp). General information and details about the inner working are available in the libalias man page under the section 'MODULAR ARCHITECTURE (AND ipfw(4) SUPPORT)'. NOTA BENE: this commit affects _ONLY_ libalias, ipfw in-kernel nat support will be part of the next libalias-related commit. Approved by: glebius Reviewed by: glebius, ru Revision Changes Path 1.358 +1 -1 src/etc/Makefile 1.1 +8 -0 src/etc/libalias.conf (new) 1.32 +26 -13 src/lib/libalias/Makefile 1.1 +13 -0 src/lib/libalias/libalias/Makefile (new) 1.1 +7 -0 src/lib/libalias/modules/Makefile (new) 1.1 +7 -0 src/lib/libalias/modules/Makefile.inc (new) 1.1 +6 -0 src/lib/libalias/modules/cuseeme/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/dummy/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/ftp/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/irc/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/nbt/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/pptp/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/skinny/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/smedia/Makefile (new) 1.50 +2 -1 src/sbin/natd/natd.c 1.1144 +2 -7 src/sys/conf/files 1.3 +2 -30 src/sys/modules/libalias/Makefile 1.1 +8 -0 src/sys/modules/libalias/libalias/Makefile (new) 1.1 +7 -0 src/sys/modules/libalias/modules/Makefile (new) 1.1 +3 -0 src/sys/modules/libalias/modules/Makefile.inc (new) 1.1 +6 -0 src/sys/modules/libalias/modules/cuseeme/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/dummy/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/ftp/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/irc/Makefile (new) 1.1 +11 -0 src/sys/modules/libalias/modules/modules.inc (new) 1.1 +6 -0 src/sys/modules/libalias/modules/nbt/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/pptp/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/skinny/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/smedia/Makefile (new) 1.54 +211 -80 src/sys/netinet/libalias/alias.c 1.33 +10 -4 src/sys/netinet/libalias/alias.h 1.13 +97 -2 src/sys/netinet/libalias/alias_cuseeme.c 1.69 +83 -66 src/sys/netinet/libalias/alias_db.c 1.1 +153 -0 src/sys/netinet/libalias/alias_dummy.c (new) 1.28 +78 -4 src/sys/netinet/libalias/alias_ftp.c 1.22 +79 -4 src/sys/netinet/libalias/alias_irc.c 1.33 +12 -52 src/sys/netinet/libalias/alias_local.h 1.1 +284 -0 src/sys/netinet/libalias/alias_mod.c (new) 1.1 +157 -0 src/sys/netinet/libalias/alias_mod.h (new) 1.20 +129 -9 src/sys/netinet/libalias/alias_nbt.c 1.8 +1 -0 src/sys/netinet/libalias/alias_old.c 1.15 +167 -26 src/sys/netinet/libalias/alias_pptp.c 1.27 +3 -9 src/sys/netinet/libalias/alias_proxy.c 1.13 +73 -7 src/sys/netinet/libalias/alias_skinny.c 1.16 +85 -3 src/sys/netinet/libalias/alias_smedia.c 1.19 +1 -0 src/sys/netinet/libalias/alias_util.c 1.56 +429 -0 src/sys/netinet/libalias/libalias.3 From owner-cvs-src@FreeBSD.ORG Tue Sep 26 23:56:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB1FA16A403; Tue, 26 Sep 2006 23:56:51 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66B9F43D46; Tue, 26 Sep 2006 23:56:51 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.6) with ESMTP id k8QNulVn058236 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 26 Sep 2006 16:56:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4519BE2F.4000503@FreeBSD.org> Date: Tue, 26 Sep 2006 16:56:31 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Paolo Pisati References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> In-Reply-To: <200609262326.k8QNQrtW098027@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 23:56:52 -0000 Looks cool. Do you have any numbers comparing performance of the old libalias and a new one running in kernel/userland mode? -Maxim Paolo Pisati wrote: > piso 2006-09-26 23:26:53 UTC > > FreeBSD src repository > > Modified files: > etc Makefile > lib/libalias Makefile > sbin/natd natd.c > sys/conf files > sys/modules/libalias Makefile > sys/netinet/libalias alias.c alias.h alias_cuseeme.c > alias_db.c alias_ftp.c alias_irc.c > alias_local.h alias_nbt.c alias_old.c > alias_pptp.c alias_proxy.c alias_skinny.c > alias_smedia.c alias_util.c libalias.3 > Added files: > etc libalias.conf > lib/libalias/libalias Makefile > lib/libalias/modules Makefile Makefile.inc > lib/libalias/modules/cuseeme Makefile > lib/libalias/modules/dummy Makefile > lib/libalias/modules/ftp Makefile > lib/libalias/modules/irc Makefile > lib/libalias/modules/nbt Makefile > lib/libalias/modules/pptp Makefile > lib/libalias/modules/skinny Makefile > lib/libalias/modules/smedia Makefile > sys/modules/libalias/libalias Makefile > sys/modules/libalias/modules Makefile Makefile.inc modules.inc > sys/modules/libalias/modules/cuseeme Makefile > sys/modules/libalias/modules/dummy Makefile > sys/modules/libalias/modules/ftp Makefile > sys/modules/libalias/modules/irc Makefile > sys/modules/libalias/modules/nbt Makefile > sys/modules/libalias/modules/pptp Makefile > sys/modules/libalias/modules/skinny Makefile > sys/modules/libalias/modules/smedia Makefile > sys/netinet/libalias alias_dummy.c alias_mod.c alias_mod.h > Log: > Summer of Code 2005: improve libalias - part 1 of 2 > > With the first part of my previous Summer of Code work, we get: > > -made libalias modular: > > -support for 'particular' protocols (like ftp/irc/etcetc) is no more > hardcoded inside libalias, but it's available through external > modules loadable at runtime > > -modules are available both in kernel (/boot/kernel/alias_*.ko) and > user land (/lib/libalias_*) > > -protocols/applications modularized are: cuseeme, ftp, irc, nbt, pptp, > skinny and smedia > > -added logging support for kernel side > > -cleanup > > After a buildworld, do a 'mergemaster -i' to install the file libalias.conf > in /etc or manually copy it. > > During startup (and after every HUP signal) user land applications running > the new libalias will try to read a file in /etc called libalias.conf: > that file contains the list of modules to load. > > User land applications affected by this commit are ppp and natd: > if libalias.conf is present in /etc you won't notice any difference. > > The only kernel land bit affected by this commit is ng_nat: > if you are using ng_nat, and it doesn't correctly handle > ftp/irc/etcetc sessions anymore, remember to kldload > the correspondent module (i.e. kldload alias_ftp). > > General information and details about the inner working are available > in the libalias man page under the section 'MODULAR ARCHITECTURE > (AND ipfw(4) SUPPORT)'. > > NOTA BENE: this commit affects _ONLY_ libalias, ipfw in-kernel nat > support will be part of the next libalias-related commit. > > Approved by: glebius > Reviewed by: glebius, ru > > Revision Changes Path > 1.358 +1 -1 src/etc/Makefile > 1.1 +8 -0 src/etc/libalias.conf (new) > 1.32 +26 -13 src/lib/libalias/Makefile > 1.1 +13 -0 src/lib/libalias/libalias/Makefile (new) > 1.1 +7 -0 src/lib/libalias/modules/Makefile (new) > 1.1 +7 -0 src/lib/libalias/modules/Makefile.inc (new) > 1.1 +6 -0 src/lib/libalias/modules/cuseeme/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/dummy/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/ftp/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/irc/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/nbt/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/pptp/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/skinny/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/smedia/Makefile (new) > 1.50 +2 -1 src/sbin/natd/natd.c > 1.1144 +2 -7 src/sys/conf/files > 1.3 +2 -30 src/sys/modules/libalias/Makefile > 1.1 +8 -0 src/sys/modules/libalias/libalias/Makefile (new) > 1.1 +7 -0 src/sys/modules/libalias/modules/Makefile (new) > 1.1 +3 -0 src/sys/modules/libalias/modules/Makefile.inc (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/cuseeme/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/dummy/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/ftp/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/irc/Makefile (new) > 1.1 +11 -0 src/sys/modules/libalias/modules/modules.inc (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/nbt/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/pptp/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/skinny/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/smedia/Makefile (new) > 1.54 +211 -80 src/sys/netinet/libalias/alias.c > 1.33 +10 -4 src/sys/netinet/libalias/alias.h > 1.13 +97 -2 src/sys/netinet/libalias/alias_cuseeme.c > 1.69 +83 -66 src/sys/netinet/libalias/alias_db.c > 1.1 +153 -0 src/sys/netinet/libalias/alias_dummy.c (new) > 1.28 +78 -4 src/sys/netinet/libalias/alias_ftp.c > 1.22 +79 -4 src/sys/netinet/libalias/alias_irc.c > 1.33 +12 -52 src/sys/netinet/libalias/alias_local.h > 1.1 +284 -0 src/sys/netinet/libalias/alias_mod.c (new) > 1.1 +157 -0 src/sys/netinet/libalias/alias_mod.h (new) > 1.20 +129 -9 src/sys/netinet/libalias/alias_nbt.c > 1.8 +1 -0 src/sys/netinet/libalias/alias_old.c > 1.15 +167 -26 src/sys/netinet/libalias/alias_pptp.c > 1.27 +3 -9 src/sys/netinet/libalias/alias_proxy.c > 1.13 +73 -7 src/sys/netinet/libalias/alias_skinny.c > 1.16 +85 -3 src/sys/netinet/libalias/alias_smedia.c > 1.19 +1 -0 src/sys/netinet/libalias/alias_util.c > 1.56 +429 -0 src/sys/netinet/libalias/libalias.3 > > From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:14:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88E4216A407; Wed, 27 Sep 2006 00:14:35 +0000 (UTC) (envelope-from flag@newluxor.wired.org) Received: from mail.oltrelinux.com (krisma.oltrelinux.com [194.242.226.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id D017143D7D; Wed, 27 Sep 2006 00:14:26 +0000 (GMT) (envelope-from flag@newluxor.wired.org) Received: from newluxor.wired.org (ip-64-88.sn2.eutelia.it [83.211.64.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.oltrelinux.com (Postfix) with ESMTP id 6915E11B1C8; Wed, 27 Sep 2006 02:14:28 +0200 (CEST) Received: (from flag@localhost) by newluxor.wired.org (8.13.8/8.13.8/Submit) id k8R0ED0b062883; Wed, 27 Sep 2006 02:14:13 +0200 (CEST) (envelope-from flag) Date: Wed, 27 Sep 2006 02:14:07 +0200 From: Paolo Pisati To: Maxim Sobolev Message-ID: <20060927001407.GB62281@tin.it> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> <4519BE2F.4000503@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4519BE2F.4000503@FreeBSD.org> User-Agent: Mutt/1.4.2.2i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at krisma.oltrelinux.com Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Paolo Pisati Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:14:35 -0000 On Tue, Sep 26, 2006 at 04:56:31PM -0700, Maxim Sobolev wrote: > Looks cool. Do you have any numbers comparing performance of the old > libalias and a new one running in kernel/userland mode? no unfortunately, but we can ask someone with a busy nat box to test it and see if there's any noticeable difference. bye -- Paolo Piso's first law: nothing works as expected! From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:32:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 506BE16A403; Wed, 27 Sep 2006 00:32:37 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F79443D45; Wed, 27 Sep 2006 00:32:37 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0WaB4002421; Wed, 27 Sep 2006 00:32:36 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0WaJ6002420; Wed, 27 Sep 2006 00:32:36 GMT (envelope-from tegge) Message-Id: <200609270032.k8R0WaJ6002420@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:32: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/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: Wed, 27 Sep 2006 00:32:37 -0000 tegge 2006-09-27 00:32:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys mount.h Log: MFC rev 1.209: Prepare for type stable struct mount. Approved by: re (kensmith) Revision Changes Path 1.197.2.5 +4 -0 src/sys/sys/mount.h From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:33:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 799AE16A415; Wed, 27 Sep 2006 00:33:32 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3614C43D4C; Wed, 27 Sep 2006 00:33:32 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0XWib002522; Wed, 27 Sep 2006 00:33:32 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0XW08002521; Wed, 27 Sep 2006 00:33:32 GMT (envelope-from tegge) Message-Id: <200609270033.k8R0XW08002521@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:33:32 +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/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: Wed, 27 Sep 2006 00:33:32 -0000 tegge 2006-09-27 00:33:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_mount.c Log: MFC rev 1.220: Make struct mount type stable. Approved by: re (kensmith) Revision Changes Path 1.196.2.13 +34 -8 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:34:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E38B616A416; Wed, 27 Sep 2006 00:34:51 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A432243D53; Wed, 27 Sep 2006 00:34:51 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0YpAK002605; Wed, 27 Sep 2006 00:34:51 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0YpFT002604; Wed, 27 Sep 2006 00:34:51 GMT (envelope-from tegge) Message-Id: <200609270034.k8R0YpFT002604@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:34:51 +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/kern vfs_default.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, 27 Sep 2006 00:34:52 -0000 tegge 2006-09-27 00:34:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_default.c Log: MFC rev 1.133: VOP_GETWRITEMOUNT() returns a referenced mount. Approved by: re (kensmith) Revision Changes Path 1.127.2.3 +15 -1 src/sys/kern/vfs_default.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:36:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67A2816A40F; Wed, 27 Sep 2006 00:36:14 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7106143D77; Wed, 27 Sep 2006 00:36:10 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0aAd0002726; Wed, 27 Sep 2006 00:36:10 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0aAlC002725; Wed, 27 Sep 2006 00:36:10 GMT (envelope-from tegge) Message-Id: <200609270036.k8R0aAlC002725@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:36: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/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: Wed, 27 Sep 2006 00:36:14 -0000 tegge 2006-09-27 00:36:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_subr.c Log: MFC rev 1.667: vfs_busy() holds reference on mount until vfs_unbusy() is called. vfs_getvfs() returns a referenced mount. Approved by: re (kensmith) Revision Changes Path 1.635.2.21 +9 -3 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:37:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60AA416A403; Wed, 27 Sep 2006 00:37:47 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FAC943D4C; Wed, 27 Sep 2006 00:37:47 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0bl3n002838; Wed, 27 Sep 2006 00:37:47 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0blMv002837; Wed, 27 Sep 2006 00:37:47 GMT (envelope-from tegge) Message-Id: <200609270037.k8R0blMv002837@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:37:47 +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/kern vfs_syscalls.c vfs_vnops.c src/sys/nfsserver nfs_serv.c nfs_srvsubs.c src/sys/ufs/ffs ffs_snapshot.c ffs_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: Wed, 27 Sep 2006 00:37:47 -0000 tegge 2006-09-27 00:37:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_syscalls.c vfs_vnops.c sys/nfsserver nfs_serv.c nfs_srvsubs.c sys/ufs/ffs ffs_snapshot.c ffs_vfsops.c Log: MFC: Release references acquired by VOP_GETWRITEMOUNT() and vfs_getvfs(). Approved by: re (kensmith) Revision Changes Path 1.392.2.11 +7 -6 src/sys/kern/vfs_syscalls.c 1.233.2.6 +16 -2 src/sys/kern/vfs_vnops.c 1.156.2.5 +11 -0 src/sys/nfsserver/nfs_serv.c 1.136.2.5 +4 -2 src/sys/nfsserver/nfs_srvsubs.c 1.103.2.18 +1 -0 src/sys/ufs/ffs/ffs_snapshot.c 1.290.2.15 +6 -1 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:39:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BFB516A403; Wed, 27 Sep 2006 00:39:20 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5A7E43D5C; Wed, 27 Sep 2006 00:39:19 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0dJ6t002900; Wed, 27 Sep 2006 00:39:19 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0dJKm002899; Wed, 27 Sep 2006 00:39:19 GMT (envelope-from tegge) Message-Id: <200609270039.k8R0dJKm002899@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:39: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/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: Wed, 27 Sep 2006 00:39:20 -0000 tegge 2006-09-27 00:39:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_mount.c Log: MFC rev 1.221 : Print dangling vnodes before panic at unmount. Approved by: re (kensmith) Revision Changes Path 1.196.2.14 +6 -1 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:40:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36FF816A403; Wed, 27 Sep 2006 00:40:12 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAACF43D45; Wed, 27 Sep 2006 00:40:11 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0eBvZ002966; Wed, 27 Sep 2006 00:40:11 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0eBq2002965; Wed, 27 Sep 2006 00:40:11 GMT (envelope-from tegge) Message-Id: <200609270040.k8R0eBq2002965@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:40: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/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: Wed, 27 Sep 2006 00:40:12 -0000 tegge 2006-09-27 00:40:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_mount.c Log: MFC rev 1.226: Unbusy mount before destruction. Approved by: re (kensmith) Revision Changes Path 1.196.2.15 +6 -5 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:41:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A973F16A416; Wed, 27 Sep 2006 00:41:04 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB8143D69; Wed, 27 Sep 2006 00:40:59 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0exKm003141; Wed, 27 Sep 2006 00:40:59 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0exmB003140; Wed, 27 Sep 2006 00:40:59 GMT (envelope-from tegge) Message-Id: <200609270040.k8R0exmB003140@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:40:59 +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/kern vfs_syscalls.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, 27 Sep 2006 00:41:04 -0000 tegge 2006-09-27 00:40:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_syscalls.c Log: MFC rev 1.419 and 1.420: Hold reference on mountpoint slightly longer in kern_statfs() and kern_fstatfs() Approved by: re (kensmith) Revision Changes Path 1.392.2.12 +16 -24 src/sys/kern/vfs_syscalls.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:41:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4B8216A412; Wed, 27 Sep 2006 00:41:51 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C15EF43D5A; Wed, 27 Sep 2006 00:41:50 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0forL003185; Wed, 27 Sep 2006 00:41:50 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0fo88003184; Wed, 27 Sep 2006 00:41:50 GMT (envelope-from tegge) Message-Id: <200609270041.k8R0fo88003184@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:41:50 +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/kern vfs_default.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, 27 Sep 2006 00:41:51 -0000 tegge 2006-09-27 00:41:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_default.c Log: MFC rev 1.134: Handle reclaimed vnode in VOP_GETWRITEMOUNT() Approved by: re (kensmith) Revision Changes Path 1.127.2.4 +6 -4 src/sys/kern/vfs_default.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 00:42:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DD3116A47B; Wed, 27 Sep 2006 00:42:43 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C28643D46; Wed, 27 Sep 2006 00:42:43 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0ghsQ003234; Wed, 27 Sep 2006 00:42:43 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0ghRi003231; Wed, 27 Sep 2006 00:42:43 GMT (envelope-from tegge) Message-Id: <200609270042.k8R0ghRi003231@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:42: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/sys/kern vfs_syscalls.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, 27 Sep 2006 00:42:43 -0000 tegge 2006-09-27 00:42:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_syscalls.c Log: MFC rev 1.422: Hold reference on mountpoint slightly longer in kern_fhstatfs() Approved by: re (kensmith) Revision Changes Path 1.392.2.13 +3 -4 src/sys/kern/vfs_syscalls.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 02:08:45 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7934216A415; Wed, 27 Sep 2006 02:08:45 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0CD543D49; Wed, 27 Sep 2006 02:08:44 +0000 (GMT) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R28ibA017523; Wed, 27 Sep 2006 02:08:44 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R28iZE017522; Wed, 27 Sep 2006 02:08:44 GMT (envelope-from piso) Message-Id: <200609270208.k8R28iZE017522@repoman.freebsd.org> From: Paolo Pisati Date: Wed, 27 Sep 2006 02:08: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/netinet/libalias alias_mod.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, 27 Sep 2006 02:08:45 -0000 piso 2006-09-27 02:08:44 UTC FreeBSD src repository Modified files: sys/netinet/libalias alias_mod.c Log: Compilation. Revision Changes Path 1.2 +1 -1 src/sys/netinet/libalias/alias_mod.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 02:10:24 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E4FC16A417; Wed, 27 Sep 2006 02:10:24 +0000 (UTC) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from mx09.ms.so-net.ne.jp (mx09.ms.so-net.ne.jp [202.238.82.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 186D743D55; Wed, 27 Sep 2006 02:10:23 +0000 (GMT) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from [127.0.0.1] (p62a1f6.tkyoac00.ap.so-net.ne.jp [219.98.161.246]) by mx09.ms.so-net.ne.jp with ESMTP id k8R29OvT021383; Wed, 27 Sep 2006 11:10:14 +0900 (JST) Message-ID: <4519DD53.8010005@ba2.so-net.ne.jp> Date: Wed, 27 Sep 2006 11:09:23 +0900 From: SANETO Takanori User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> In-Reply-To: <200609130838.k8D8cnW9063228@repoman.freebsd.org> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 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: Wed, 27 Sep 2006 02:10:24 -0000 As for mount.c, following part should be MFC'ed as well. > @@ -628,6 +633,15 @@ > * not a real mount option. > */ > continue; > + } else if (strcmp(p, "late") == 0) { > + /* > + * "late" is used to prevent certain file > + * systems from being mounted before late > + * in the boot cycle; for instance, > + * loopback NFS mounts can't be mounted > + * before mountd starts. > + */ > + continue; > } else if (strcmp(p, "userquota") == 0) { > continue; > } else if (strncmp(p, userquotaeq, Dag-Erling Smorgrav wrote: > des 2006-09-13 08:38:49 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > etc/rc.d mountcritlocal > sbin/mount mount.8 mount.c > Added files: (Branch: RELENG_6) > etc/rc.d mountlate > Log: > MFC: "late" flag in fstab + mountlate script + necessary changes to mount(8) > > Approved by: re (kensmith) > > Revision Changes Path > 1.12.2.1 +2 -0 src/etc/rc.d/mountcritlocal > 1.1.2.1 +36 -0 src/etc/rc.d/mountlate (new) > 1.73.2.2 +20 -3 src/sbin/mount/mount.8 > 1.69.2.2 +9 -4 src/sbin/mount/mount.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" From owner-cvs-src@FreeBSD.ORG Wed Sep 27 04:53:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 641C716A47E; Wed, 27 Sep 2006 04:53:43 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFF9843D77; Wed, 27 Sep 2006 04:53:40 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R4reNu036029; Wed, 27 Sep 2006 04:53:40 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R4reWr036028; Wed, 27 Sep 2006 04:53:40 GMT (envelope-from alc) Message-Id: <200609270453.k8R4reWr036028@repoman.freebsd.org> From: Alan Cox Date: Wed, 27 Sep 2006 04:53: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/sys/sparc64/sparc64 tsb.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, 27 Sep 2006 04:53:43 -0000 alc 2006-09-27 04:53:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sparc64/sparc64 tsb.c Log: MFC revision 1.38 The sparc64/sparc64/pmap.c implementations of pmap_remove(), pmap_protect(), and pmap_copy() have optimizations for regions larger than PMAP_TSB_THRESH (which works out to 16MB). This caused a panic in tsb_foreach for kernel mappings, since pm->pm_tsb is NULL in that case. This fix teaches tsb_foreach to use the kernel's tsb in that case. Approved by: re (mux) Revision Changes Path 1.37.2.1 +15 -6 src/sys/sparc64/sparc64/tsb.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 04:54:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBE8C16A40F; Wed, 27 Sep 2006 04:54:27 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF30E43D5C; Wed, 27 Sep 2006 04:54:23 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R4sNFG036075; Wed, 27 Sep 2006 04:54:23 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R4sNPk036074; Wed, 27 Sep 2006 04:54:23 GMT (envelope-from scottl) Message-Id: <200609270454.k8R4sNPk036074@repoman.freebsd.org> From: Scott Long Date: Wed, 27 Sep 2006 04: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/dev/mfi mfi_debug.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, 27 Sep 2006 04:54:28 -0000 scottl 2006-09-27 04:54:23 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi_debug.c Log: Fix a bad #include statment Revision Changes Path 1.2 +1 -1 src/sys/dev/mfi/mfi_debug.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 05:00:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E67916A403; Wed, 27 Sep 2006 05:00:11 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 161D243D46; Wed, 27 Sep 2006 05:00:11 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R50A4E036369; Wed, 27 Sep 2006 05:00:10 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R50Aci036368; Wed, 27 Sep 2006 05:00:10 GMT (envelope-from scottl) Message-Id: <200609270500.k8R50Aci036368@repoman.freebsd.org> From: Scott Long Date: Wed, 27 Sep 2006 05:00: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/dev/mfi mfi.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, 27 Sep 2006 05:00:11 -0000 scottl 2006-09-27 05:00:10 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi.c Log: Skip the AEN event command that is always hanging out on the card. Submitted by: Doug Ambrisko Revision Changes Path 1.19 +2 -0 src/sys/dev/mfi/mfi.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 05:49:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A117116A494; Wed, 27 Sep 2006 05:49:21 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCCC43D46; Wed, 27 Sep 2006 05:49:21 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R5nLvS040037; Wed, 27 Sep 2006 05:49:21 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R5nLSR040036; Wed, 27 Sep 2006 05:49:21 GMT (envelope-from delphij) Message-Id: <200609270549.k8R5nLSR040036@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Sep 2006 05:49: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/sbin/newfs mkfs.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, 27 Sep 2006 05:49:21 -0000 delphij 2006-09-27 05:49:21 UTC FreeBSD src repository Modified files: sbin/newfs mkfs.c Log: Explicitly say which gid do we use as a fallback, when operator is not found. Suggested by: kensmith Revision Changes Path 1.91 +1 -1 src/sbin/newfs/mkfs.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 06:38:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2C2316A407; Wed, 27 Sep 2006 06:38:55 +0000 (UTC) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE38843D46; Wed, 27 Sep 2006 06:38:54 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R6csED044992; Wed, 27 Sep 2006 06:38:54 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R6csJ0044991; Wed, 27 Sep 2006 06:38:54 GMT (envelope-from anholt) Message-Id: <200609270638.k8R6csJ0044991@repoman.freebsd.org> From: Eric Anholt Date: Wed, 27 Sep 2006 06:38: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/pci agp_i810.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, 27 Sep 2006 06:38:55 -0000 anholt 2006-09-27 06:38:54 UTC FreeBSD src repository Modified files: sys/pci agp_i810.c Log: Add support for 945G/GM AGP chipsets. The key problem was that the aperture size detection using the MSAC bit doesn't work -- the bit appears to be set even when it shouldn't be. Linux takes a different approach, testing for a bit of the GMADR (PCIR_BAR(2)) being set. However, as I don't think that's a safe way to test aperture size, we just allocate the resource and check its size. This also pointed out that agp_generic_attach hadn't been allocating our aperture resource, which may have caused problems in some cases. Also corrected is a minor copy-and-pasteo in an error case. PR: kern/103079 Submitted by: mnag Tested on: i945GM, i915GM MFC after: 2 weeks Revision Changes Path 1.39 +29 -13 src/sys/pci/agp_i810.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 06:51:33 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFBD416A4D0; Wed, 27 Sep 2006 06:51:33 +0000 (UTC) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from ms-dienst.rz.rwth-aachen.de (ms-1.rz.RWTH-Aachen.DE [134.130.3.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id E949243D53; Wed, 27 Sep 2006 06:51:32 +0000 (GMT) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J6800D5WOD3CJ@ms-dienst.rz.rwth-aachen.de>; Wed, 27 Sep 2006 08:51:04 +0200 (MEST) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Wed, 27 Sep 2006 08:51:03 +0200 (MEST) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.7/8.13.1/1) with ESMTP id k8R6p2PH027700; Wed, 27 Sep 2006 08:51:02 +0200 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GSTG2-0006Jh-Sl; Wed, 27 Sep 2006 08:51:02 +0200 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 132DB3F40B; Tue, 26 Sep 2006 22:23:40 +0200 (CEST) Date: Tue, 26 Sep 2006 22:23:39 +0200 From: Christian Brueffer In-reply-to: <200609261959.k8QJxqkh068350@repoman.freebsd.org> To: Daniel Gerzo Message-id: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary="u3/rZRmxL6MmkK24"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 06:51:34 -0000 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > danger 2006-09-26 19:59:52 UTC >=20 > FreeBSD src repository (doc committer) >=20 > Modified files: > share/examples/mdoc example.4=20 > Log: > Remove second person from the sentece and rephrase a bit. > =20 > Approved by: trhodes (mentor), keramida (mentor) > =20 > Revision Changes Path > 1.26 +6 -8 src/share/examples/mdoc/example.4 I don't agree to these changes, see below for details (also I don't see whe= re exactly you removed second person usage, it's still being used in the new version). > | =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > | RCS file: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/exampl= e.4,v > | retrieving revision 1.25 > | retrieving revision 1.26 > | diff -u -p -r1.25 -r1.26 > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > | @@ -22,7 +22,7 @@ > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILIT= Y OF > | .\" SUCH DAMAGE. > | .\" > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/e= xample.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/e= xample.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > | .\" > | .\" Note: The date here should be updated whenever a non-trivial > | .\" change is made to the manual page. > | @@ -33,11 +33,9 @@ > | .Nm example > | .Nd "example device driver manual page" > | .Sh SYNOPSIS > | -To compile the > | -.Ns Nm > | -driver into the kernel, > | -place the following lines in the > | -kernel configuration file: > | +To enable support for > | +.Ns Nm , > | +place the following lines in the kernel configuration file: The formulation used before was much more accurate WRT the distinction we make between compiling something into the kernel and loading it as a module. If we load something as a module we also "enable support for it". > | .Bd -ragged -offset indent > | .Cd "device example" > | .Cd "options EXAMPLE_DEBUG" > | @@ -45,9 +43,9 @@ kernel configuration file: > | .Pp > | Alternatively, to load the > | .Ns Nm > | -driver as a > | -module at boot time, place the following line in > | -.Xr loader.conf 5 : > | +as a module at boot time, add the following line into the > | +.Xr loader.conf 5 > | +file: > | .Bd -literal -offset indent > | example_load=3D"YES" > | .Ed >=20 Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm driver? The .Nm utility? It's just incorrect to rely on context here and it makes the sentence sound really awkward. IMHO the SYNOPSIS section in section 4 manpages is kind of a standard now, as it's being used in the majority of section 4 manpages. Changes to it should not be made without _good_ reason and with a sweep through all manpages that use it. Among other things, the purpose of this section is to achieve consistency across section 4 manpages. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --u3/rZRmxL6MmkK24 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGYxLbHYXjKDtmC0RAlwKAJ4moipL2zeAuIlKEIBwSK0gn/50RQCgxgET NnEER1136I5AXhji8/PxSmk= =kUH5 -----END PGP SIGNATURE----- --u3/rZRmxL6MmkK24-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 07:40:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A72116A407; Wed, 27 Sep 2006 07:40:56 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id C39BE43D53; Wed, 27 Sep 2006 07:40:55 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSU2I-0004jq-Ae; Wed, 27 Sep 2006 08:40:54 +0100 Date: Wed, 27 Sep 2006 08:40:54 +0100 From: Ceri Davies To: Christian Brueffer Message-ID: <20060927074054.GO54669@submonkey.net> Mail-Followup-To: Ceri Davies , Christian Brueffer , Daniel Gerzo , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Q59ABw34pTSIagmi" Content-Disposition: inline In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 07:40:56 -0000 --Q59ABw34pTSIagmi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 10:23:39PM +0200, Christian Brueffer wrote: > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > > danger 2006-09-26 19:59:52 UTC > >=20 > > FreeBSD src repository (doc committer) > >=20 > > Modified files: > > share/examples/mdoc example.4=20 > > Log: > > Remove second person from the sentece and rephrase a bit. > > =20 > > Approved by: trhodes (mentor), keramida (mentor) > > =20 > > Revision Changes Path > > 1.26 +6 -8 src/share/examples/mdoc/example.4 >=20 > I don't agree to these changes, see below for details (also I don't see w= here > exactly you removed second person usage, it's still being used in the new > version). >=20 > > | =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > | RCS file: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/exam= ple.4,v > > | retrieving revision 1.25 > > | retrieving revision 1.26 > > | diff -u -p -r1.25 -r1.26 > > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > > | @@ -22,7 +22,7 @@ > > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBIL= ITY OF > > | .\" SUCH DAMAGE. > > | .\" > > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc= /example.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc= /example.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > > | .\" > > | .\" Note: The date here should be updated whenever a non-trivial > > | .\" change is made to the manual page. > > | @@ -33,11 +33,9 @@ > > | .Nm example > > | .Nd "example device driver manual page" > > | .Sh SYNOPSIS > > | -To compile the > > | -.Ns Nm > > | -driver into the kernel, > > | -place the following lines in the > > | -kernel configuration file: > > | +To enable support for > > | +.Ns Nm , > > | +place the following lines in the kernel configuration file: >=20 > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". >=20 > > | .Bd -ragged -offset indent > > | .Cd "device example" > > | .Cd "options EXAMPLE_DEBUG" > > | @@ -45,9 +43,9 @@ kernel configuration file: > > | .Pp > > | Alternatively, to load the > > | .Ns Nm > > | -driver as a > > | -module at boot time, place the following line in > > | -.Xr loader.conf 5 : > > | +as a module at boot time, add the following line into the > > | +.Xr loader.conf 5 > > | +file: > > | .Bd -literal -offset indent > > | example_load=3D"YES" > > | .Ed > >=20 >=20 > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. >=20 > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. I agree. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --Q59ABw34pTSIagmi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGisGocfcwTS3JF8RAp6OAJ0WuxupMi61WEDWFAfGVwN74/K8KwCcDZLW 0zCnhko3Bylgp97/f+tT/CI= =Ku/r -----END PGP SIGNATURE----- --Q59ABw34pTSIagmi-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 07:41:33 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B03716A51A; Wed, 27 Sep 2006 07:41:33 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7829643D53; Wed, 27 Sep 2006 07:41:32 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R7fU1K019843 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 03:41:31 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 03:41:24 -0400 From: Tom Rhodes To: Christian Brueffer Message-Id: <20060927034124.2c57b517.trhodes@FreeBSD.org> In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 07:41:33 -0000 On Tue, 26 Sep 2006 22:23:39 +0200 Christian Brueffer wrote: > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > > danger 2006-09-26 19:59:52 UTC > > > > FreeBSD src repository (doc committer) > > > > Modified files: > > share/examples/mdoc example.4 > > Log: > > Remove second person from the sentece and rephrase a bit. > > > > Approved by: trhodes (mentor), keramida (mentor) > > > > Revision Changes Path > > 1.26 +6 -8 src/share/examples/mdoc/example.4 > > I don't agree to these changes, see below for details (also I don't see where > exactly you removed second person usage, it's still being used in the new > version). > > > | =================================================================== > > | RCS file: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v > > | retrieving revision 1.25 > > | retrieving revision 1.26 > > | diff -u -p -r1.25 -r1.26 > > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > > | @@ -22,7 +22,7 @@ > > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF > > | .\" SUCH DAMAGE. > > | .\" > > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > > | .\" > > | .\" Note: The date here should be updated whenever a non-trivial > > | .\" change is made to the manual page. > > | @@ -33,11 +33,9 @@ > > | .Nm example > > | .Nd "example device driver manual page" > > | .Sh SYNOPSIS > > | -To compile the > > | -.Ns Nm > > | -driver into the kernel, > > | -place the following lines in the > > | -kernel configuration file: > > | +To enable support for > > | +.Ns Nm , > > | +place the following lines in the kernel configuration file: > > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". What about in cases where other hoops must be jumped before the driver/feature/whatever is really supported? > > > | .Bd -ragged -offset indent > > | .Cd "device example" > > | .Cd "options EXAMPLE_DEBUG" > > | @@ -45,9 +43,9 @@ kernel configuration file: > > | .Pp > > | Alternatively, to load the > > | .Ns Nm > > | -driver as a > > | -module at boot time, place the following line in > > | -.Xr loader.conf 5 : > > | +as a module at boot time, add the following line into the > > | +.Xr loader.conf 5 > > | +file: > > | .Bd -literal -offset indent > > | example_load="YES" > > | .Ed > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. Leaving driver here is wrong. > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. The purpose of this file is to provide an example for people who are going to write section four manual pages; however, no one really "has" to follow this "lead." -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Sep 27 07:51:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5D7616A403; Wed, 27 Sep 2006 07:51:37 +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 488CC43D5C; Wed, 27 Sep 2006 07:51:37 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id ACACF209B; Wed, 27 Sep 2006 09:51:33 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 98F6C2099; Wed, 27 Sep 2006 09:51:33 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 8AF7DB812; Wed, 27 Sep 2006 09:51:33 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: SANETO Takanori References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> Date: Wed, 27 Sep 2006 09:51:33 +0200 In-Reply-To: <4519DD53.8010005@ba2.so-net.ne.jp> (SANETO Takanori's message of "Wed, 27 Sep 2006 11:09:23 +0900") Message-ID: <86wt7ppx16.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) 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/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 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: Wed, 27 Sep 2006 07:51:37 -0000 SANETO Takanori writes: > As for mount.c, following part should be MFC'ed as well. Thanks, I don't understand how it was left out. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Wed Sep 27 07:53:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FDE616A407; Wed, 27 Sep 2006 07:53:16 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id D685D43D45; Wed, 27 Sep 2006 07:53:15 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSUEF-0004i3-0a; Wed, 27 Sep 2006 08:53:15 +0100 Date: Wed, 27 Sep 2006 08:53:14 +0100 From: Ceri Davies To: Tom Rhodes Message-ID: <20060927075314.GQ54669@submonkey.net> Mail-Followup-To: Ceri Davies , Tom Rhodes , Christian Brueffer , danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LQAwcd5tHl0Qlnzi" Content-Disposition: inline In-Reply-To: <20060927034124.2c57b517.trhodes@FreeBSD.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Christian Brueffer Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 07:53:16 -0000 --LQAwcd5tHl0Qlnzi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > On Tue, 26 Sep 2006 22:23:39 +0200 > Christian Brueffer wrote: > > > | @@ -33,11 +33,9 @@ > > > | .Nm example > > > | .Nd "example device driver manual page" > > > | .Sh SYNOPSIS > > > | -To compile the > > > | -.Ns Nm > > > | -driver into the kernel, > > > | -place the following lines in the > > > | -kernel configuration file: > > > | +To enable support for > > > | +.Ns Nm , > > > | +place the following lines in the kernel configuration file: > >=20 > > The formulation used before was much more accurate WRT the distinction > > we make between compiling something into the kernel and loading it as a > > module. If we load something as a module we also "enable support for > > it". >=20 > What about in cases where other hoops must be jumped before the > driver/feature/whatever is really supported? They can be special cased in the real manual. In the wider sense, kldload is the easiest way to enable support for something, and I know that I'm personally well past encouraging users to recompile the kernel just to get, for example, sound working when a simple kldload does the job just as well in most cases. > > > | .Bd -ragged -offset indent > > > | .Cd "device example" > > > | .Cd "options EXAMPLE_DEBUG" > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > | .Pp > > > | Alternatively, to load the > > > | .Ns Nm > > > | -driver as a > > > | -module at boot time, place the following line in > > > | -.Xr loader.conf 5 : > > > | +as a module at boot time, add the following line into the > > > | +.Xr loader.conf 5 > > > | +file: > > > | .Bd -literal -offset indent > > > | example_load=3D"YES" > > > | .Ed > > >=20 > >=20 > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > driver? The .Nm utility? It's just incorrect to rely on context here > > and it makes the sentence sound really awkward. >=20 > Leaving driver here is wrong. Not if you also leave the word "the" before .Nm. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --LQAwcd5tHl0Qlnzi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGi3qocfcwTS3JF8RAir9AKCaBizkXRgF2V6Eb3hQzTy6P2rg2wCaAurt Ya+U8528FArx5VyvBFb6iRg= =4Sc0 -----END PGP SIGNATURE----- --LQAwcd5tHl0Qlnzi-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 07:54:48 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 613D716A415; Wed, 27 Sep 2006 07:54:48 +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 7976143D49; Wed, 27 Sep 2006 07:54:43 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 1D7CE209B; Wed, 27 Sep 2006 09:54:40 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 8C7422099; Wed, 27 Sep 2006 09:54:39 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 77B15B80E; Wed, 27 Sep 2006 09:54:39 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: SANETO Takanori References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> <86wt7ppx16.fsf@dwp.des.no> Date: Wed, 27 Sep 2006 09:54:39 +0200 In-Reply-To: <86wt7ppx16.fsf@dwp.des.no> (Dag-Erling =?iso-8859-1?Q?Sm=F8r?= =?iso-8859-1?Q?grav's?= message of "Wed, 27 Sep 2006 09:51:33 +0200") Message-ID: <86odt1pww0.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) 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/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 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: Wed, 27 Sep 2006 07:54:48 -0000 des@des.no (Dag-Erling Sm=F8rgrav) writes: > SANETO Takanori writes: > > As for mount.c, following part should be MFC'ed as well. > Thanks, I don't understand how it was left out. Uh, wait, it was left out for a reason: there is no equivalent code in RELENG_6. The hunk in question removes "late" from the list of options passed to nmount(), which isn't used in RELENG_6. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:14:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F21C16A407; Wed, 27 Sep 2006 08:14:42 +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 50E1043D68; Wed, 27 Sep 2006 08:14:34 +0000 (GMT) (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 k8R8EXpd068509 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 27 Sep 2006 12:14:33 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8R8EXWC068508; Wed, 27 Sep 2006 12:14:33 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Wed, 27 Sep 2006 12:14:32 +0400 From: Gleb Smirnoff To: Maxim Sobolev Message-ID: <20060927081432.GH59833@FreeBSD.org> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> <4519BE2F.4000503@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <4519BE2F.4000503@FreeBSD.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Paolo Pisati Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:14:42 -0000 On Tue, Sep 26, 2006 at 04:56:31PM -0700, Maxim Sobolev wrote: M> Looks cool. Do you have any numbers comparing performance of the old M> libalias and a new one running in kernel/userland mode? AFAIK, this change doesn't affect performance of the userland NAT. The main aim of this step was not performance, but separation of specific protocol NATing into separate pluggable modules. The kernel nat (I mean ng_nat) is probably pessimized be this change, because Paolo added locking to the list of plugins, this adds two atomic ops per packet. I hope, Paolo will rethink this. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:15:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3619316A417; Wed, 27 Sep 2006 08:15:49 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8134A43D6A; Wed, 27 Sep 2006 08:15:40 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R8FYWK020094 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 04:15:37 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 04:15:26 -0400 From: Tom Rhodes To: Ceri Davies Message-Id: <20060927041526.6b33a348.trhodes@FreeBSD.org> In-Reply-To: <20060927075314.GQ54669@submonkey.net> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 08:15:49 -0000 On Wed, 27 Sep 2006 08:53:14 +0100 Ceri Davies wrote: > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > On Tue, 26 Sep 2006 22:23:39 +0200 > > Christian Brueffer wrote: > > > > > | @@ -33,11 +33,9 @@ > > > > | .Nm example > > > > | .Nd "example device driver manual page" > > > > | .Sh SYNOPSIS > > > > | -To compile the > > > > | -.Ns Nm > > > > | -driver into the kernel, > > > > | -place the following lines in the > > > > | -kernel configuration file: > > > > | +To enable support for > > > > | +.Ns Nm , > > > > | +place the following lines in the kernel configuration file: > > > > > > The formulation used before was much more accurate WRT the distinction > > > we make between compiling something into the kernel and loading it as a > > > module. If we load something as a module we also "enable support for > > > it". > > > > What about in cases where other hoops must be jumped before the > > driver/feature/whatever is really supported? > > They can be special cased in the real manual. In the wider sense, > kldload is the easiest way to enable support for something, and I know > that I'm personally well past encouraging users to recompile the kernel > just to get, for example, sound working when a simple kldload does the > job just as well in most cases. That is of course that "something" has a module. ;) Seriously though, why handle one case any differently than another? We should be fair here, and the above version will work for anything ... although, to be exact, we should probably use: "place the following line(s) in the kernel configuration file:" > > > > > | .Bd -ragged -offset indent > > > > | .Cd "device example" > > > > | .Cd "options EXAMPLE_DEBUG" > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > | .Pp > > > > | Alternatively, to load the > > > > | .Ns Nm > > > > | -driver as a > > > > | -module at boot time, place the following line in > > > > | -.Xr loader.conf 5 : > > > > | +as a module at boot time, add the following line into the > > > > | +.Xr loader.conf 5 > > > > | +file: > > > > | .Bd -literal -offset indent > > > > | example_load="YES" > > > > | .Ed > > > > > > > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > > driver? The .Nm utility? It's just incorrect to rely on context here > > > and it makes the sentence sound really awkward. > > > > Leaving driver here is wrong. > > Not if you also leave the word "the" before .Nm. Then we should bloat it to handle "the XXX driver," "the XXX subsystem," "the XXX system," etc. To be honest, the sentence sounds better to me this way. And putting "driver" back in just does what Christian says it's there to prevent. We should not really "rely on the context" here, so I agree with Christian. We shouldn't believe that it will always be a "driver." In any sense, it's still just an "example." We are arguing over an "example" people. -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:22:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A05D16A407; Wed, 27 Sep 2006 08:22:46 +0000 (UTC) (envelope-from danger@rulez.sk) Received: from mail.rulez.sk (DaEmoN.RuLeZ.sK [84.16.32.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id E401143D53; Wed, 27 Sep 2006 08:22:43 +0000 (GMT) (envelope-from danger@rulez.sk) Received: from localhost (localhost [127.0.0.1]) by mail.rulez.sk (Postfix) with ESMTP id 883FF1CD1A; Wed, 27 Sep 2006 10:22:42 +0200 (CEST) X-Virus-Scanned: by amavisd-new at mail.rulez.sk X-Spam-Score: -1.745 X-Spam-Level: X-Spam-Status: No, score=-1.745 tagged_above=-999 required=5 tests=[ALL_TRUSTED=-1.8, AWL=1.693, BAYES_00=-2.599, NO_REAL_NAME=0.961] Received: by mail.rulez.sk (Postfix, from userid 80) id E56A21CC6D; Wed, 27 Sep 2006 10:22:34 +0200 (CEST) Received: from cpuxp-d08.cpu.elf.stuba.sk (cpuxp-d08.cpu.elf.stuba.sk [147.175.100.85]) by mail.rulez.sk (Horde MIME library) with HTTP; Wed, 27 Sep 2006 10:22:34 +0200 Message-ID: <20060927102234.dsupin91usswg4s0@mail.rulez.sk> Date: Wed, 27 Sep 2006 10:22:34 +0200 From: danger@rulez.sk To: Christian Brueffer References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.1) Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 08:22:46 -0000 Quoting Christian Brueffer : > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: >> danger 2006-09-26 19:59:52 UTC >> >> FreeBSD src repository (doc committer) >> >> Modified files: >> share/examples/mdoc example.4 >> Log: >> Remove second person from the sentece and rephrase a bit. >> >> Approved by: trhodes (mentor), keramida (mentor) >> >> Revision Changes Path >> 1.26 +6 -8 src/share/examples/mdoc/example.4 > > I don't agree to these changes, see below for details (also I don't see wh= ere > exactly you removed second person usage, it's still being used in the new > version). We want to aviod to use words like "you", "your" and so on. I have =20 talked about it with Ruslan and my mentors. >> | -To compile the >> | -.Ns Nm >> | -driver into the kernel, >> | -place the following lines in the >> | -kernel configuration file: >> | +To enable support for >> | +.Ns Nm , >> | +place the following lines in the kernel configuration file: > > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". I think it's certainly clear to users that they can either enable =20 support for something in kernel _or_ load it as a module which would =20 bring that support without need of kernel recompilation. > >> | .Bd -ragged -offset indent >> | .Cd "device example" >> | .Cd "options EXAMPLE_DEBUG" >> | @@ -45,9 +43,9 @@ kernel configuration file: >> | .Pp >> | Alternatively, to load the >> | .Ns Nm >> | -driver as a >> | -module at boot time, place the following line in >> | -.Xr loader.conf 5 : >> | +as a module at boot time, add the following line into the >> | +.Xr loader.conf 5 >> | +file: >> | .Bd -literal -offset indent >> | example_load=3D"YES" >> | .Ed >> > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. Yes, I know about this issue as it was pointed by Ruslan a few hours =20 after I have committed it (note, that I had an approval from my =20 mentors). Tom is native and he told that while it does not really =20 sounds correct, it is correct English, but depends on the context as =20 you have said. I have mailed my mentors and Ruslan with re-worded =20 sentence that should fix that. > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. > It is standard that should be fixed :-) and I'm about to do that; I =20 wanted to commit the change to the example.4 first and after that =20 start with changes to the affected section 4 manual pages. But if there are more people that think that this change is wrong, I'm =20 not going to argue about that or being upset or something, I will =20 revert the change and go ahead and start working on something else. > - Christian --=20 Best regards, Daniel -------------------------------------------------------- This message was sent from rulez.sk webamil using Horde. From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:25:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 337A116A407; Wed, 27 Sep 2006 08:25:56 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418EA43D76; Wed, 27 Sep 2006 08:25:54 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8PshK053092; Wed, 27 Sep 2006 08:25:54 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8Pstj053091; Wed, 27 Sep 2006 08:25:54 GMT (envelope-from stas) Message-Id: <200609270825.k8R8Pstj053091@repoman.freebsd.org> From: Stanislav Sedov Date: Wed, 27 Sep 2006 08:25: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/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:25:56 -0000 stas 2006-09-27 08:25:53 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: - Add my birthday entry to the chronicle. Approved by: sem (mentor) Revision Changes Path 1.186 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:38:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ECB816A403; Wed, 27 Sep 2006 08:38:42 +0000 (UTC) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from ms-dienst.rz.rwth-aachen.de (ms-1.rz.RWTH-Aachen.DE [134.130.3.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D3E043D46; Wed, 27 Sep 2006 08:38:41 +0000 (GMT) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J6800HVYTAMKQ@ms-dienst.rz.rwth-aachen.de>; Wed, 27 Sep 2006 10:37:35 +0200 (MEST) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Wed, 27 Sep 2006 10:37:34 +0200 (MEST) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.7/8.13.1/1) with ESMTP id k8R8bY4s011378; Wed, 27 Sep 2006 10:37:34 +0200 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GSUv8-0000Xu-Av; Wed, 27 Sep 2006 10:37:34 +0200 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 00C933F40A; Wed, 27 Sep 2006 10:37:33 +0200 (CEST) Date: Wed, 27 Sep 2006 10:37:33 +0200 From: Christian Brueffer In-reply-to: <20060927041526.6b33a348.trhodes@FreeBSD.org> To: Tom Rhodes Message-id: <20060927083733.GA1941@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary="/04w6evG8XlLl3ft"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 08:38:42 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > On Wed, 27 Sep 2006 08:53:14 +0100 > Ceri Davies wrote: >=20 > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > Christian Brueffer wrote: > >=20 > > > > > | @@ -33,11 +33,9 @@ > > > > > | .Nm example > > > > > | .Nd "example device driver manual page" > > > > > | .Sh SYNOPSIS > > > > > | -To compile the > > > > > | -.Ns Nm > > > > > | -driver into the kernel, > > > > > | -place the following lines in the > > > > > | -kernel configuration file: > > > > > | +To enable support for > > > > > | +.Ns Nm , > > > > > | +place the following lines in the kernel configuration file: > > > >=20 > > > > The formulation used before was much more accurate WRT the distinct= ion > > > > we make between compiling something into the kernel and loading it = as a > > > > module. If we load something as a module we also "enable support f= or > > > > it". > > >=20 > > > What about in cases where other hoops must be jumped before the > > > driver/feature/whatever is really supported? > >=20 > > They can be special cased in the real manual. In the wider sense, > > kldload is the easiest way to enable support for something, and I know > > that I'm personally well past encouraging users to recompile the kernel > > just to get, for example, sound working when a simple kldload does the > > job just as well in most cases. >=20 > That is of course that "something" has a module. ;) >=20 > Seriously though, why handle one case any differently than > another? We should be fair here, and the above version will > work for anything ... although, to be exact, we should probably > use: >=20 I don't understand your reasoning for using "to enable support". Using this would actually be wrong if there's more to do than recompiling the kernel, as that alone would not really enable support for $SOMETHING. OTOH if you have to e.g. set a sysctl value to enable this support, this would likely have to be done for the module case as well, so the old formulation would be better. Care to elaborate? > "place the following line(s) in the kernel configuration file:" >=20 >=20 > >=20 > > > > > | .Bd -ragged -offset indent > > > > > | .Cd "device example" > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > | .Pp > > > > > | Alternatively, to load the > > > > > | .Ns Nm > > > > > | -driver as a > > > > > | -module at boot time, place the following line in > > > > > | -.Xr loader.conf 5 : > > > > > | +as a module at boot time, add the following line into the > > > > > | +.Xr loader.conf 5 > > > > > | +file: > > > > > | .Bd -literal -offset indent > > > > > | example_load=3D"YES" > > > > > | .Ed > > > > >=20 > > > >=20 > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the= .Nm > > > > driver? The .Nm utility? It's just incorrect to rely on context h= ere > > > > and it makes the sentence sound really awkward. > > >=20 > > > Leaving driver here is wrong. > >=20 > > Not if you also leave the word "the" before .Nm. >=20 > Then we should bloat it to handle "the XXX driver," "the XXX > subsystem," "the XXX system," etc. To be honest, the sentence > sounds better to me this way. And putting "driver" back in > just does what Christian says it's there to prevent. We should > not really "rely on the context" here, so I agree with Christian. > We shouldn't believe that it will always be a "driver." >=20 You're twisting my argument here ;-) Of course this is an example, so I can't be said whether it's a driver or a subsystem. But anyone who is using this template _probably_ knows what he's modifying the example for and will just replace that word with whatever is correct. However leaving the word out will just result in an incorrect sentence (we still have several of those in our manpages, e.g. "utility" and "command" are among the favourite words that are left out). So in this case, put in driver/subsystem/whatever, but put in _something_. > In any sense, it's still just an "example." We are arguing over > an "example" people. >=20 I know :-) But having good examples means less editing to do when a new page based on this example hits the tree. That's exactly the reason for my last couple of commits to this manpage. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --/04w6evG8XlLl3ft Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGjhNbHYXjKDtmC0RArBhAKDY/9o5U4maorn8N/Kym85Mx5Mg7ACdEwND OVpUs3pi4pnr3QfI8ABUq8I= =0o9h -----END PGP SIGNATURE----- --/04w6evG8XlLl3ft-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:39:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4869916A580; Wed, 27 Sep 2006 08:39:01 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A46843D46; Wed, 27 Sep 2006 08:39:01 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8d0Hx053843; Wed, 27 Sep 2006 08:39:00 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8d0qO053842; Wed, 27 Sep 2006 08:39:00 GMT (envelope-from pjd) Message-Id: <200609270839.k8R8d0qO053842@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 27 Sep 2006 08:39: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/share/examples/mdoc example.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:39:01 -0000 pjd 2006-09-27 08:39:00 UTC FreeBSD src repository Modified files: share/examples/mdoc example.9 Log: - Use existing functions mtx_lock() and mtx_unlock(). - Change variable name to 'error', as this is what is mostly used for functions that return an error. - Add mutex(9) to the SEE ALSO section. - Bump the date. I don't really like the example code. I'd prefer symmetry where possible, eg. mtx_lock(&example_lock); error = example(NULL, EXAMPLE_ONE); mtx_unlock(&example_lock); if (error != 0) return (error); But I'll leave it as it is for now. Reviewed by: simon Revision Changes Path 1.4 +9 -8 src/share/examples/mdoc/example.9 From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:45:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 012DF16A571; Wed, 27 Sep 2006 08:45:15 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B9743D49; Wed, 27 Sep 2006 08:45:15 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSV2Y-000NL1-9Z; Wed, 27 Sep 2006 09:45:14 +0100 Date: Wed, 27 Sep 2006 09:45:14 +0100 From: Ceri Davies To: Tom Rhodes Message-ID: <20060927084514.GR54669@submonkey.net> Mail-Followup-To: Ceri Davies , Tom Rhodes , brueffer@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aqWxf8ydqYKP8htK" Content-Disposition: inline In-Reply-To: <20060927041526.6b33a348.trhodes@FreeBSD.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 08:45:16 -0000 --aqWxf8ydqYKP8htK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > On Wed, 27 Sep 2006 08:53:14 +0100 > Ceri Davies wrote: >=20 > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > Christian Brueffer wrote: > >=20 > > > > > | @@ -33,11 +33,9 @@ > > > > > | .Nm example > > > > > | .Nd "example device driver manual page" > > > > > | .Sh SYNOPSIS > > > > > | -To compile the > > > > > | -.Ns Nm > > > > > | -driver into the kernel, > > > > > | -place the following lines in the > > > > > | -kernel configuration file: > > > > > | +To enable support for > > > > > | +.Ns Nm , > > > > > | +place the following lines in the kernel configuration file: > > > >=20 > > > > The formulation used before was much more accurate WRT the distinct= ion > > > > we make between compiling something into the kernel and loading it = as a > > > > module. If we load something as a module we also "enable support f= or > > > > it". > > >=20 > > > What about in cases where other hoops must be jumped before the > > > driver/feature/whatever is really supported? > >=20 > > They can be special cased in the real manual. In the wider sense, > > kldload is the easiest way to enable support for something, and I know > > that I'm personally well past encouraging users to recompile the kernel > > just to get, for example, sound working when a simple kldload does the > > job just as well in most cases. >=20 > That is of course that "something" has a module. ;) Well yes, which is why the previous text explicitly said "to compile .Nm into the kernel", because that's what the example does. > Seriously though, why handle one case any differently than > another? Compiling something into the kernel and loading a module are different, that's why, and we should be clear about the distinction (because, as you state, some modules don't exist). > > > > > | .Bd -ragged -offset indent > > > > > | .Cd "device example" > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > | .Pp > > > > > | Alternatively, to load the > > > > > | .Ns Nm > > > > > | -driver as a > > > > > | -module at boot time, place the following line in > > > > > | -.Xr loader.conf 5 : > > > > > | +as a module at boot time, add the following line into the > > > > > | +.Xr loader.conf 5 > > > > > | +file: > > > > > | .Bd -literal -offset indent > > > > > | example_load=3D"YES" > > > > > | .Ed > > > > >=20 > > > >=20 > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the= .Nm > > > > driver? The .Nm utility? It's just incorrect to rely on context h= ere > > > > and it makes the sentence sound really awkward. > > >=20 > > > Leaving driver here is wrong. > >=20 > > Not if you also leave the word "the" before .Nm. >=20 > Then we should bloat it to handle "the XXX driver," "the XXX > subsystem," "the XXX system," etc. To be honest, the sentence > sounds better to me this way. And putting "driver" back in > just does what Christian says it's there to prevent. We should > not really "rely on the context" here, so I agree with Christian. > We shouldn't believe that it will always be a "driver." >=20 > In any sense, it's still just an "example." We are arguing over > an "example" people. No, we're arguing over grammar. The sentence currently renders as something like: Alternatively, to load the fxp(4) as a module at boot time... That's wrong. Getting rid of "the" works. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --aqWxf8ydqYKP8htK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGjoZocfcwTS3JF8RAnIjAJ41CgoEa+IX1KmZYzyqLOfWQyXYTgCfQIjd vT4JV/QHMe24WKNEKEtbmnQ= =84rg -----END PGP SIGNATURE----- --aqWxf8ydqYKP8htK-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:49:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F4F516A407; Wed, 27 Sep 2006 08:49:29 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from mail.rulez.sk (DaEmoN.RuLeZ.sK [84.16.32.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA34443D55; Wed, 27 Sep 2006 08:49:27 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by mail.rulez.sk (Postfix) with ESMTP id 2268A1CD3E; Wed, 27 Sep 2006 10:49:27 +0200 (CEST) X-Virus-Scanned: by amavisd-new at mail.rulez.sk X-Spam-Score: -3.654 X-Spam-Level: X-Spam-Status: No, score=-3.654 tagged_above=-999 required=5 tests=[ALL_TRUSTED=-1.8, AWL=0.545, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2] Received: by mail.rulez.sk (Postfix, from userid 80) id C92021CD39; Wed, 27 Sep 2006 10:49:21 +0200 (CEST) Received: from cpuxp-d08.cpu.elf.stuba.sk (cpuxp-d08.cpu.elf.stuba.sk [147.175.100.85]) by mail.rulez.sk (Horde MIME library) with HTTP; Wed, 27 Sep 2006 10:49:21 +0200 Message-ID: <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> Date: Wed, 27 Sep 2006 10:49:21 +0200 From: Daniel Gerzo To: Ceri Davies References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> In-Reply-To: <20060927084514.GR54669@submonkey.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.1) Cc: Tom Rhodes , src-committers@FreeBSD.org, brueffer@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 08:49:29 -0000 Quoting Ceri Davies : > > No, we're arguing over grammar. The sentence currently renders as > something like: > > Alternatively, to load the fxp(4) as a module at boot time... > I proposed the following change: Alternatively, to load .Ns Nm module at boot time... > That's wrong. Getting rid of "the" works. > -- Best Regards, Daniel -------------------------------------------------------- This message was sent from rulez.sk webamil using Horde. From owner-cvs-src@FreeBSD.ORG Wed Sep 27 08:54:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C612F16A403; Wed, 27 Sep 2006 08:54:26 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64E9743D53; Wed, 27 Sep 2006 08:54:26 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R8sOo9020410 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 04:54:25 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 04:54:17 -0400 From: Tom Rhodes To: Ceri Davies Message-Id: <20060927045417.639f3db1.trhodes@FreeBSD.org> In-Reply-To: <20060927084514.GR54669@submonkey.net> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 08:54:27 -0000 On Wed, 27 Sep 2006 09:45:14 +0100 Ceri Davies wrote: > On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > > On Wed, 27 Sep 2006 08:53:14 +0100 > > Ceri Davies wrote: > > > > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > > Christian Brueffer wrote: > > > > > > > > > | @@ -33,11 +33,9 @@ > > > > > > | .Nm example > > > > > > | .Nd "example device driver manual page" > > > > > > | .Sh SYNOPSIS > > > > > > | -To compile the > > > > > > | -.Ns Nm > > > > > > | -driver into the kernel, > > > > > > | -place the following lines in the > > > > > > | -kernel configuration file: > > > > > > | +To enable support for > > > > > > | +.Ns Nm , > > > > > > | +place the following lines in the kernel configuration file: > > > > > > > > > > The formulation used before was much more accurate WRT the distinction > > > > > we make between compiling something into the kernel and loading it as a > > > > > module. If we load something as a module we also "enable support for > > > > > it". > > > > > > > > What about in cases where other hoops must be jumped before the > > > > driver/feature/whatever is really supported? > > > > > > They can be special cased in the real manual. In the wider sense, > > > kldload is the easiest way to enable support for something, and I know > > > that I'm personally well past encouraging users to recompile the kernel > > > just to get, for example, sound working when a simple kldload does the > > > job just as well in most cases. > > > > That is of course that "something" has a module. ;) > > Well yes, which is why the previous text explicitly said "to compile .Nm > into the kernel", because that's what the example does. > > > Seriously though, why handle one case any differently than > > another? > > Compiling something into the kernel and loading a module are different, > that's why, and we should be clear about the distinction (because, as > you state, some modules don't exist). You're right we should. How about "To ... the ... ABC (or XYZ or ...)? > > > > > > > | .Bd -ragged -offset indent > > > > > > | .Cd "device example" > > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > > | .Pp > > > > > > | Alternatively, to load the > > > > > > | .Ns Nm > > > > > > | -driver as a > > > > > > | -module at boot time, place the following line in > > > > > > | -.Xr loader.conf 5 : > > > > > > | +as a module at boot time, add the following line into the > > > > > > | +.Xr loader.conf 5 > > > > > > | +file: > > > > > > | .Bd -literal -offset indent > > > > > > | example_load="YES" > > > > > > | .Ed > > > > > > > > > > > > > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > > > > driver? The .Nm utility? It's just incorrect to rely on context here > > > > > and it makes the sentence sound really awkward. > > > > > > > > Leaving driver here is wrong. > > > > > > Not if you also leave the word "the" before .Nm. > > > > Then we should bloat it to handle "the XXX driver," "the XXX > > subsystem," "the XXX system," etc. To be honest, the sentence > > sounds better to me this way. And putting "driver" back in > > just does what Christian says it's there to prevent. We should > > not really "rely on the context" here, so I agree with Christian. > > We shouldn't believe that it will always be a "driver." > > > > In any sense, it's still just an "example." We are arguing over > > an "example" people. > > No, we're arguing over grammar. The sentence currently renders as > something like: > > Alternatively, to load the fxp(4) as a module at boot time... > > That's wrong. Getting rid of "the" works. I like "enable" in the first bit, and I'll agree "the" should go, even though your argument works in some cases but fails in others. -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Sep 27 09:01:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD0AB16A416; Wed, 27 Sep 2006 09:01:15 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5BF143D6D; Wed, 27 Sep 2006 09:01:08 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R916v9020489 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 05:01:07 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 05:01:00 -0400 From: Tom Rhodes To: Christian Brueffer Message-Id: <20060927050100.15f00467.trhodes@FreeBSD.org> In-Reply-To: <20060927083733.GA1941@haakonia.hitnet.RWTH-Aachen.DE> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927083733.GA1941@haakonia.hitnet.RWTH-Aachen.DE> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, ceri@submonkey.net Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 09:01:16 -0000 On Wed, 27 Sep 2006 10:37:33 +0200 Christian Brueffer wrote: > On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > > On Wed, 27 Sep 2006 08:53:14 +0100 > > Ceri Davies wrote: > > > > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > > Christian Brueffer wrote: > > > > > > > > > | @@ -33,11 +33,9 @@ > > > > > > | .Nm example > > > > > > | .Nd "example device driver manual page" > > > > > > | .Sh SYNOPSIS > > > > > > | -To compile the > > > > > > | -.Ns Nm > > > > > > | -driver into the kernel, > > > > > > | -place the following lines in the > > > > > > | -kernel configuration file: > > > > > > | +To enable support for > > > > > > | +.Ns Nm , > > > > > > | +place the following lines in the kernel configuration file: > > > > > > > > > > The formulation used before was much more accurate WRT the distinction > > > > > we make between compiling something into the kernel and loading it as a > > > > > module. If we load something as a module we also "enable support for > > > > > it". > > > > > > > > What about in cases where other hoops must be jumped before the > > > > driver/feature/whatever is really supported? > > > > > > They can be special cased in the real manual. In the wider sense, > > > kldload is the easiest way to enable support for something, and I know > > > that I'm personally well past encouraging users to recompile the kernel > > > just to get, for example, sound working when a simple kldload does the > > > job just as well in most cases. > > > > That is of course that "something" has a module. ;) > > > > Seriously though, why handle one case any differently than > > another? We should be fair here, and the above version will > > work for anything ... although, to be exact, we should probably > > use: > > > > I don't understand your reasoning for using "to enable support". Using > this would actually be wrong if there's more to do than recompiling the > kernel, as that alone would not really enable support for $SOMETHING. > > OTOH if you have to e.g. set a sysctl value to enable this support, this > would likely have to be done for the module case as well, so the old > formulation would be better. > > Care to elaborate? Sure. Why can't we all go back to arguing the entire CVS thing again, least that I could ignore while pretending to care. It's like when some chick tries to get in my pants, she buys me a drink, she's "enabling" me. Doesn't mean she'll score, but she'll have a much better chance. But yea, we are creating opportunity. > > > "place the following line(s) in the kernel configuration file:" > > > > > > > > > > > > > | .Bd -ragged -offset indent > > > > > > | .Cd "device example" > > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > > | .Pp > > > > > > | Alternatively, to load the > > > > > > | .Ns Nm > > > > > > | -driver as a > > > > > > | -module at boot time, place the following line in > > > > > > | -.Xr loader.conf 5 : > > > > > > | +as a module at boot time, add the following line into the > > > > > > | +.Xr loader.conf 5 > > > > > > | +file: > > > > > > | .Bd -literal -offset indent > > > > > > | example_load="YES" > > > > > > | .Ed > > > > > > > > > > > > > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > > > > driver? The .Nm utility? It's just incorrect to rely on context here > > > > > and it makes the sentence sound really awkward. > > > > > > > > Leaving driver here is wrong. > > > > > > Not if you also leave the word "the" before .Nm. > > > > Then we should bloat it to handle "the XXX driver," "the XXX > > subsystem," "the XXX system," etc. To be honest, the sentence > > sounds better to me this way. And putting "driver" back in > > just does what Christian says it's there to prevent. We should > > not really "rely on the context" here, so I agree with Christian. > > We shouldn't believe that it will always be a "driver." > > > > You're twisting my argument here ;-) Of course this is an example, > so I can't be said whether it's a driver or a subsystem. But anyone > who is using this template _probably_ knows what he's modifying the > example for and will just replace that word with whatever is correct. > However leaving the word out will just result in an incorrect sentence > (we still have several of those in our manpages, e.g. "utility" and > "command" are among the favourite words that are left out). It's my job to twist arguments. :) We should let the writer decide if it's a driver, or subsystem, or some module simply made to call their ex girlfriend's phone a hundred times at 03:00. Surely if you can write a driver, you know the diffence. I guess that's my argument, make it as generic as plausible and let the author decide. Yea, the entire command/utility thing is bogus. > > So in this case, put in driver/subsystem/whatever, but put in > _something_. > > > In any sense, it's still just an "example." We are arguing over > > an "example" people. > > > > I know :-) But having good examples means less editing to do when a > new page based on this example hits the tree. That's exactly the reason > for my last couple of commits to this manpage. But Christian, you like typing. Just like I'm always telling the room mates. "Yes, you like to walk, you SHOULD get me that beer." "Yes, you SHOULD answer the door ... you like meeting people." -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Sep 27 09:11:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A2816A403; Wed, 27 Sep 2006 09:11:03 +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 3C3CC43D76; Wed, 27 Sep 2006 09:10:58 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8R92MBW017573; Wed, 27 Sep 2006 03:02:27 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451A3E1E.2070403@samsco.org> Date: Wed, 27 Sep 2006 03:02:22 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Daniel Gerzo References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> In-Reply-To: <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: Tom Rhodes , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 09:11:03 -0000 Daniel Gerzo wrote: > Quoting Ceri Davies : > >> >> No, we're arguing over grammar. The sentence currently renders as >> something like: >> >> Alternatively, to load the fxp(4) as a module at boot time... >> > > I proposed the following change: > > Alternatively, to load > .Ns Nm > module at boot time... > >> That's wrong. Getting rid of "the" works. >> > It should read: Alternatively, to load the fxp(4) driver as a module at boot time... not Alternatively, to load fxp(4) module at boot time... nor Alternatively, to load the fxp(4) as a module at boot time... nor Alternatively, to load the fxp(4) as a module at boot time... The following is correct, but is inconsistent with the preceding context. There has been no introduction in text of the term 'module', so trying to interchange it with the term 'driver', which has been introduced, is clumsy. Furthermore, the terms 'driver' and 'module' are not synonymous in the context, and thus are not interchangable. Alternatively, to load the fxp(4) module at boot time... That said, attention to detail in the docs is _always_ appreciated, and good, open discussions are always welcomed. It's just a bit surrealistic to watch a grammar discussion happen between a group of non-native speakers at 3am =-) Scott From owner-cvs-src@FreeBSD.ORG Wed Sep 27 09:24:45 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8369816A403; Wed, 27 Sep 2006 09:24:45 +0000 (UTC) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D7943D5A; Wed, 27 Sep 2006 09:24:45 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R9OjeB065824; Wed, 27 Sep 2006 09:24:45 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R9Oj8e065823; Wed, 27 Sep 2006 09:24:45 GMT (envelope-from mux) Message-Id: <200609270924.k8R9Oj8e065823@repoman.freebsd.org> From: Maxime Henrion Date: Wed, 27 Sep 2006 09:24: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/sys/netinet tcp_usrreq.c udp_usrreq.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, 27 Sep 2006 09:24:45 -0000 mux 2006-09-27 09:24:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet tcp_usrreq.c udp_usrreq.c Log: MFC udp_usrreq.c:1.180 and tcp_usrreq.c:1.128 : Fix a bunch of SYSCTL_INT() that should have been SYSCTL_ULONG() to match the type of the variable they are exporting. Spotted by: Thomas Hurst Approved by: re@ (rwatson) Forgotten by: mux Revision Changes Path 1.124.2.3 +2 -2 src/sys/netinet/tcp_usrreq.c 1.175.2.7 +2 -2 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 09:28:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B00D16A407; Wed, 27 Sep 2006 09:28:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 587C043D53; Wed, 27 Sep 2006 09:28:54 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R9SsYA065998; Wed, 27 Sep 2006 09:28:54 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R9Ss6N065997; Wed, 27 Sep 2006 09:28:54 GMT (envelope-from delphij) Message-Id: <200609270928.k8R9Ss6N065997@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Sep 2006 09:28: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/contrib/bc/bc 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: Wed, 27 Sep 2006 09:28:54 -0000 delphij 2006-09-27 09:28:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/bc/bc main.c Log: s/predefine/predefined/ PR: gnu/86627 Submitted by: Arne Woerner Approved by: re (mux) Revision Changes Path 1.6.8.1 +2 -2 src/contrib/bc/bc/main.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 09:29:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11B0516A407; Wed, 27 Sep 2006 09:29:30 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D2A043D5C; Wed, 27 Sep 2006 09:29:29 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R9TTQm066038; Wed, 27 Sep 2006 09:29:29 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R9TTDo066037; Wed, 27 Sep 2006 09:29:29 GMT (envelope-from delphij) Message-Id: <200609270929.k8R9TTDo066037@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Sep 2006 09:29:29 +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/bc/bc 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: Wed, 27 Sep 2006 09:29:30 -0000 delphij 2006-09-27 09:29:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) contrib/bc/bc main.c Log: s/predefine/predefined/ PR: gnu/86627 Submitted by: Arne Woerner Revision Changes Path 1.6.2.1 +2 -2 src/contrib/bc/bc/main.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 09:53:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3159816A47B; Wed, 27 Sep 2006 09:53:26 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DD7443D55; Wed, 27 Sep 2006 09:53:21 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R9rJl6020700 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 05:53:20 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 05:53:13 -0400 From: Tom Rhodes To: Scott Long Message-Id: <20060927055313.28313885.trhodes@FreeBSD.org> In-Reply-To: <451A3E1E.2070403@samsco.org> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> <451A3E1E.2070403@samsco.org> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, ceri@submonkey.net Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 09:53:26 -0000 On Wed, 27 Sep 2006 03:02:22 -0600 Scott Long wrote: > Daniel Gerzo wrote: > > > Quoting Ceri Davies : > > > >> > >> No, we're arguing over grammar. The sentence currently renders as > >> something like: > >> > >> Alternatively, to load the fxp(4) as a module at boot time... > >> > > > > I proposed the following change: > > > > Alternatively, to load > > .Ns Nm > > module at boot time... > > > >> That's wrong. Getting rid of "the" works. > >> > > > > It should read: > > Alternatively, to load the fxp(4) driver as a module at boot time... > > not > > Alternatively, to load fxp(4) module at boot time... > > nor > > Alternatively, to load the fxp(4) as a module at boot time... > > nor > > Alternatively, to load the fxp(4) as a module at boot time... > > The following is correct, but is inconsistent with the preceding > context. There has been no introduction in text of the term > 'module', so trying to interchange it with the term 'driver', which > has been introduced, is clumsy. Furthermore, the terms 'driver' and > 'module' are not synonymous in the context, and thus are not > interchangable. > > Alternatively, to load the fxp(4) module at boot time... I'd like to see "driver" and "module" removed from this particular example page. :) > > That said, attention to detail in the docs is _always_ appreciated, > and good, open discussions are always welcomed. It's just a bit > surrealistic to watch a grammar discussion happen between a group of > non-native speakers at 3am =-) Yea, why ARE you up right now? :P -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Sep 27 10:08:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C9FC16A415; Wed, 27 Sep 2006 10:08:04 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0E8843D46; Wed, 27 Sep 2006 10:08:03 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RA83Y2068993; Wed, 27 Sep 2006 10:08:03 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RA83CD068992; Wed, 27 Sep 2006 10:08:03 GMT (envelope-from rwatson) Message-Id: <200609271008.k8RA83CD068992@repoman.freebsd.org> From: Robert Watson Date: Wed, 27 Sep 2006 10:08:03 +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/security/audit audit_worker.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, 27 Sep 2006 10:08:04 -0000 rwatson 2006-09-27 10:08:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/security/audit audit_worker.c Log: Merge audit_worker.c:1.12 from HEAD to RELENG_6: Rework the way errors are handled with respect to how audit records are written to the audit trail file: - audit_record_write() now returns void, and all file system specific error handling occurs inside this function. This pushes error handling complexity out of the record demux routine that hands off to both the trail and audit pipes, and makes trail behavior more consistent with pipes as a record destination. - Rate limit kernel printfs associated with running low on space. Rate limit audit triggers for low space. Rate limit printfs for fail stop events. Rate limit audit worker write error printfs. - Document in detail the types of limits and space checks we perform, and combine common cases. This improves the audit subsystems tolerance to low space conditions by avoiding toasting the console with printfs are waking up the audit daemon continuously. Obtained from: TrustedBSD Project Approved by: re (mux) Revision Changes Path 1.9.2.3 +146 -101 src/sys/security/audit/audit_worker.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 10:08:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDD1416A492; Wed, 27 Sep 2006 10:08:47 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40BAE43D58; Wed, 27 Sep 2006 10:08:47 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RA8lRj069039; Wed, 27 Sep 2006 10:08:47 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RA8lfZ069038; Wed, 27 Sep 2006 10:08:47 GMT (envelope-from rwatson) Message-Id: <200609271008.k8RA8lfZ069038@repoman.freebsd.org> From: Robert Watson Date: Wed, 27 Sep 2006 10:08:47 +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 auditd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:08:47 -0000 rwatson 2006-09-27 10:08:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d auditd Log: Merge auditd:1.3 from HEAD to RELENG_6: Sleep for one second after calling audit -t to give the audit daemon a chance to actually terminate the audit service and exit. Otherwise, on an rc.d/auditd restart, the new audit daemon instance may try to start auditing while the previous session is still running. Likewise, this ensures a chance for auditd to terminate the audit trail at system shutdown. Perhaps more ideally, the script would wait synchronously for auditd to exit rather than for an arbitrary but short period of time. Obtained from: TrustedBSD Project Approved by: re (mux) Revision Changes Path 1.2.2.2 +1 -0 src/etc/rc.d/auditd From owner-cvs-src@FreeBSD.ORG Wed Sep 27 10:13:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF98616A403; Wed, 27 Sep 2006 10:13:17 +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 BA9A443D46; Wed, 27 Sep 2006 10:13:16 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8RADASA018037; Wed, 27 Sep 2006 04:13:15 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451A4EB5.4090208@samsco.org> Date: Wed, 27 Sep 2006 04:13:09 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.13) Gecko/20060414 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tom Rhodes References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> <451A3E1E.2070403@samsco.org> <20060927055313.28313885.trhodes@FreeBSD.org> In-Reply-To: <20060927055313.28313885.trhodes@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, ceri@submonkey.net Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 10:13:17 -0000 Tom Rhodes wrote: > On Wed, 27 Sep 2006 03:02:22 -0600 > Scott Long wrote: > > >>Daniel Gerzo wrote: >> >> >>>Quoting Ceri Davies : >>> >>> >>>>No, we're arguing over grammar. The sentence currently renders as >>>>something like: >>>> >>>> Alternatively, to load the fxp(4) as a module at boot time... >>>> >>> >>>I proposed the following change: >>> >>>Alternatively, to load >>>.Ns Nm >>>module at boot time... >>> >>> >>>>That's wrong. Getting rid of "the" works. >>>> >>> >>It should read: >> >>Alternatively, to load the fxp(4) driver as a module at boot time... >> >>not >> >>Alternatively, to load fxp(4) module at boot time... >> >>nor >> >>Alternatively, to load the fxp(4) as a module at boot time... >> >>nor >> >>Alternatively, to load the fxp(4) as a module at boot time... >> >>The following is correct, but is inconsistent with the preceding >>context. There has been no introduction in text of the term >>'module', so trying to interchange it with the term 'driver', which >>has been introduced, is clumsy. Furthermore, the terms 'driver' and >>'module' are not synonymous in the context, and thus are not >>interchangable. >> >>Alternatively, to load the fxp(4) module at boot time... > > > I'd like to see "driver" and "module" removed from this particular > example page. :) > Considering that this is meant for section 4 of the manual, and intro.4 says the following: INTRO(4) FreeBSD Kernel Interfaces Manual INTRO(4) NAME intro -- introduction to devices and device drivers The terms 'driver' and 'module' are very much appropriate when talking about 'device drivers'. Scott From owner-cvs-src@FreeBSD.ORG Wed Sep 27 10:30:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B6D816A403; Wed, 27 Sep 2006 10:30:18 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F90443D55; Wed, 27 Sep 2006 10:30:18 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RAUIJu069979; Wed, 27 Sep 2006 10:30:18 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RAUIYH069978; Wed, 27 Sep 2006 10:30:18 GMT (envelope-from ru) Message-Id: <200609271030.k8RAUIYH069978@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 10:30: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/lib/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: Wed, 27 Sep 2006 10:30:19 -0000 ru 2006-09-27 10:30:18 UTC FreeBSD src repository Modified files: lib/libalias/libalias Makefile Log: Put back NO_WERROR= to fix sparc64 build. Revision Changes Path 1.2 +1 -0 src/lib/libalias/libalias/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 27 10:46:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21BEE16A403; Wed, 27 Sep 2006 10:46:41 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95CDC43D4C; Wed, 27 Sep 2006 10:46:41 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RAkfT7070781; Wed, 27 Sep 2006 10:46:41 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RAkfvY070780; Wed, 27 Sep 2006 10:46:41 GMT (envelope-from maxim) Message-Id: <200609271046.k8RAkfvY070780@repoman.freebsd.org> From: Maxim Konovalov Date: Wed, 27 Sep 2006 10:46: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: Wed, 27 Sep 2006 10:46:42 -0000 maxim 2006-09-27 10:46:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING Log: MFC rev. 1.456: s/IP_FIREWALL_FORWARD/IPFIREWALL_FORWARD/. Approved by: re (mux) Revision Changes Path 1.416.2.28 +1 -1 src/UPDATING From owner-cvs-src@FreeBSD.ORG Wed Sep 27 10:48:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9EB316A501; Wed, 27 Sep 2006 10:48:35 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E1A343D5A; Wed, 27 Sep 2006 10:48:35 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RAmZn8070878; Wed, 27 Sep 2006 10:48:35 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RAmZow070877; Wed, 27 Sep 2006 10:48:35 GMT (envelope-from maxim) Message-Id: <200609271048.k8RAmZow070877@repoman.freebsd.org> From: Maxim Konovalov Date: Wed, 27 Sep 2006 10:48:35 +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/man7 ports.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:48:36 -0000 maxim 2006-09-27 10:48:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man7 ports.7 Log: MFC rev. 1.55: document 'make quicksearch'. Approved by: re (mux) Revision Changes Path 1.50.2.3 +6 -1 src/share/man/man7/ports.7 From owner-cvs-src@FreeBSD.ORG Wed Sep 27 10:50:24 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2709516A412; Wed, 27 Sep 2006 10:50:24 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av9-1-sn2.hy.skanova.net (av9-1-sn2.hy.skanova.net [81.228.8.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 575AB43D46; Wed, 27 Sep 2006 10:50:23 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av9-1-sn2.hy.skanova.net (Postfix, from userid 502) id 1E6E0381BE; Wed, 27 Sep 2006 12:50:22 +0200 (CEST) Received: from smtp4-1-sn2.hy.skanova.net (smtp4-1-sn2.hy.skanova.net [81.228.8.92]) by av9-1-sn2.hy.skanova.net (Postfix) with ESMTP id 0C7AF37E75; Wed, 27 Sep 2006 12:50:22 +0200 (CEST) Received: from dude.automatvapen.se (81-229-112-193-no21.tbcn.telia.com [81.229.112.193]) by smtp4-1-sn2.hy.skanova.net (Postfix) with ESMTP id C7D0537E45; Wed, 27 Sep 2006 12:50:21 +0200 (CEST) From: Joel Dahl To: Christian Brueffer In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> Content-Type: text/plain Date: Wed, 27 Sep 2006 12:50:21 +0200 Message-Id: <1159354221.670.10.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 10:50:24 -0000 On Tue, 2006-09-26 at 22:23 +0200, Christian Brueffer wrote: > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > > danger 2006-09-26 19:59:52 UTC > > > > FreeBSD src repository (doc committer) > > > > Modified files: > > share/examples/mdoc example.4 > > Log: > > Remove second person from the sentece and rephrase a bit. > > > > Approved by: trhodes (mentor), keramida (mentor) > > > > Revision Changes Path > > 1.26 +6 -8 src/share/examples/mdoc/example.4 > > I don't agree to these changes, see below for details (also I don't see where > exactly you removed second person usage, it's still being used in the new > version). > > > | =================================================================== > > | RCS file: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v > > | retrieving revision 1.25 > > | retrieving revision 1.26 > > | diff -u -p -r1.25 -r1.26 > > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > > | @@ -22,7 +22,7 @@ > > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF > > | .\" SUCH DAMAGE. > > | .\" > > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > > | .\" > > | .\" Note: The date here should be updated whenever a non-trivial > > | .\" change is made to the manual page. > > | @@ -33,11 +33,9 @@ > > | .Nm example > > | .Nd "example device driver manual page" > > | .Sh SYNOPSIS > > | -To compile the > > | -.Ns Nm > > | -driver into the kernel, > > | -place the following lines in the > > | -kernel configuration file: > > | +To enable support for > > | +.Ns Nm , > > | +place the following lines in the kernel configuration file: > > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". Agreed. The previous statement seems more clear and accurate. > > | .Bd -ragged -offset indent > > | .Cd "device example" > > | .Cd "options EXAMPLE_DEBUG" > > | @@ -45,9 +43,9 @@ kernel configuration file: > > | .Pp > > | Alternatively, to load the > > | .Ns Nm > > | -driver as a > > | -module at boot time, place the following line in > > | -.Xr loader.conf 5 : > > | +as a module at boot time, add the following line into the > > | +.Xr loader.conf 5 > > | +file: > > | .Bd -literal -offset indent > > | example_load="YES" > > | .Ed > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. Agreed, this change is just plain wrong. I've read the discussion and I believe this commit should be backed out. -- Joel From owner-cvs-src@FreeBSD.ORG Wed Sep 27 11:34:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EEDB16A416; Wed, 27 Sep 2006 11:34:50 +0000 (UTC) (envelope-from flag@newluxor.wired.org) Received: from mail.oltrelinux.com (krisma.oltrelinux.com [194.242.226.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6395943D86; Wed, 27 Sep 2006 11:34:41 +0000 (GMT) (envelope-from flag@newluxor.wired.org) Received: from newluxor.wired.org (ip-64-88.sn2.eutelia.it [83.211.64.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.oltrelinux.com (Postfix) with ESMTP id 52FDA11AE49; Wed, 27 Sep 2006 13:34:40 +0200 (CEST) Received: (from flag@localhost) by newluxor.wired.org (8.13.8/8.13.8/Submit) id k8RBYavt056573; Wed, 27 Sep 2006 13:34:36 +0200 (CEST) (envelope-from flag) Date: Wed, 27 Sep 2006 13:34:36 +0200 From: Paolo Pisati To: Ruslan Ermilov Message-ID: <20060927113436.GB1262@tin.it> References: <200609271030.k8RAUIYH069978@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609271030.k8RAUIYH069978@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at krisma.oltrelinux.com Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/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: Wed, 27 Sep 2006 11:34:50 -0000 On Wed, Sep 27, 2006 at 10:30:18AM +0000, Ruslan Ermilov wrote: > ru 2006-09-27 10:30:18 UTC > > FreeBSD src repository > > Modified files: > lib/libalias/libalias Makefile > Log: > Put back NO_WERROR= to fix sparc64 build. Thanks. -- Paolo Piso's first law: nothing works as expected! From owner-cvs-src@FreeBSD.ORG Wed Sep 27 12:02:28 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE27416A417; Wed, 27 Sep 2006 12:02:28 +0000 (UTC) (envelope-from babkin@verizon.net) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78A1D43D49; Wed, 27 Sep 2006 12:02:28 +0000 (GMT) (envelope-from babkin@verizon.net) Received: from vms064.mailsrvcs.net ([192.168.1.1]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J690085Y2RVL5P3@vms044.mailsrvcs.net>; Wed, 27 Sep 2006 07:02:19 -0500 (CDT) Received: from 198.190.8.100 ([198.190.8.100]) by vms064.mailsrvcs.net (Verizon Webmail) with HTTP; Wed, 27 Sep 2006 07:02:19 -0500 (CDT) Date: Wed, 27 Sep 2006 07:02:19 -0500 (CDT) From: Sergey Babkin X-Originating-IP: [198.190.8.100] To: danger@rulez.sk, Christian Brueffer Message-id: <12530240.6470551159358539962.JavaMail.root@vms064.mailsrvcs.net> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: babkin@users.sf.net List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2006 12:02:28 -0000 >From: danger@rulez.sk >Quoting Christian Brueffer : > >> I don't agree to these changes, see below for details (also I don't see where >> exactly you removed second person usage, it's still being used in the new >> version). > >We want to aviod to use words like "you", "your" and so on. I have >talked about it with Ruslan and my mentors. Why? They make the text more readable. I'd say that The Bureaucratic Style Is Bad. -SB From owner-cvs-src@FreeBSD.ORG Wed Sep 27 12:30:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A483916A407; Wed, 27 Sep 2006 12:30:29 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 930E943D6B; Wed, 27 Sep 2006 12:30:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RCUSsq078391; Wed, 27 Sep 2006 12:30:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RCUSh6078390; Wed, 27 Sep 2006 12:30:28 GMT (envelope-from ru) Message-Id: <200609271230.k8RCUSh6078390@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 12:30: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/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/sys/modules/libalias Makefile src/sys/modules/libalias/modules 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, 27 Sep 2006 12:30:29 -0000 ru 2006-09-27 12:30:27 UTC FreeBSD src repository Modified files: lib/libalias Makefile lib/libalias/libalias Makefile lib/libalias/modules Makefile Makefile.inc sys/modules/libalias Makefile sys/modules/libalias/modules Makefile Log: - Removed a copyright from makefile. - Added ${.CURDIR} to .include "...". - Whitespace fixes. OK'ed by: piso Revision Changes Path 1.33 +1 -25 src/lib/libalias/Makefile 1.3 +2 -2 src/lib/libalias/libalias/Makefile 1.2 +2 -2 src/lib/libalias/modules/Makefile 1.2 +2 -2 src/lib/libalias/modules/Makefile.inc 1.4 +1 -1 src/sys/modules/libalias/Makefile 1.2 +2 -2 src/sys/modules/libalias/modules/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 27 12:49:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83A1216A407; Wed, 27 Sep 2006 12:49:38 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82F7043D49; Wed, 27 Sep 2006 12:49:33 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSYqw-000LAf-Le; Wed, 27 Sep 2006 13:49:30 +0100 Date: Wed, 27 Sep 2006 13:49:30 +0100 From: Ceri Davies To: Scott Long Message-ID: <20060927124930.GS54669@submonkey.net> Mail-Followup-To: Ceri Davies , Scott Long , Daniel Gerzo , Tom Rhodes , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> <451A3E1E.2070403@samsco.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HLsZ5Z1opAQvdr2J" Content-Disposition: inline In-Reply-To: <451A3E1E.2070403@samsco.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: Tom Rhodes , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Gerzo , brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 12:49:38 -0000 --HLsZ5Z1opAQvdr2J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 03:02:22AM -0600, Scott Long wrote: > That said, attention to detail in the docs is _always_ appreciated, > and good, open discussions are always welcomed. It's just a bit=20 > surrealistic to watch a grammar discussion happen between a group of > non-native speakers at 3am =3D-) Hey, it's you who's the foreigner :) Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --HLsZ5Z1opAQvdr2J Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGnNaocfcwTS3JF8RAq4RAKCHC8FWeNPFV6tHuBD5uxyGfuPGHACeP3rH nNs1ciQlXd/nS1lQEkoGabs= =MyPB -----END PGP SIGNATURE----- --HLsZ5Z1opAQvdr2J-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 12:49:59 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4FC116A584; Wed, 27 Sep 2006 12:49:59 +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 1825D43D58; Wed, 27 Sep 2006 12:49:58 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id C4AC75CF2; Wed, 27 Sep 2006 16:49:56 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id BBADE5CDD; Wed, 27 Sep 2006 16:49:56 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RCnwFp025347; Wed, 27 Sep 2006 16:49:58 +0400 (MSD) (envelope-from ru) Date: Wed, 27 Sep 2006 16:49:58 +0400 From: Ruslan Ermilov To: Tom Rhodes Message-ID: <20060927124958.GD6346@rambler-co.ru> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927045417.639f3db1.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="65ImJOski3p8EhYV" Content-Disposition: inline In-Reply-To: <20060927045417.639f3db1.trhodes@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 12:49:59 -0000 --65ImJOski3p8EhYV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 04:54:17AM -0400, Tom Rhodes wrote: [...] > > That's wrong. Getting rid of "the" works. >=20 > I like "enable" in the first bit, and I'll agree "the" should > go, even though your argument works in some cases but fails > in others. >=20 I think a common sense should apply here -- i.e., make less work for manpage writers? What most of our section four manpages document? Drivers or subsystems? I think drivers. This is an example manpage, it's not a full skeleton manpage. To be a full skeleton manpage, some other words can be put into comments, like is already done for the .Dd argument. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --65ImJOski3p8EhYV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGnN2qRfpzJluFF4RAmH/AJ4oylF4ivbg1oQ6rKH0CbbtdjyIpACfU76j jfDSEKiW6d1BzeoA1DYPEf8= =nDWF -----END PGP SIGNATURE----- --65ImJOski3p8EhYV-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 15:29:17 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 443C416A535; Wed, 27 Sep 2006 15:29:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A98A43E3D; Wed, 27 Sep 2006 15:27:35 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RFROZN058728; Wed, 27 Sep 2006 11:27:34 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ceri Davies Date: Wed, 27 Sep 2006 11:24:59 -0400 User-Agent: KMail/1.9.1 References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> In-Reply-To: <20060927084514.GR54669@submonkey.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271125.00138.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 11:27:34 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1947/Tue Sep 26 20:46:56 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Tom Rhodes , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, danger@freebsd.org, brueffer@freebsd.org Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 15:29:17 -0000 On Wednesday 27 September 2006 04:45, Ceri Davies wrote: > On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > > On Wed, 27 Sep 2006 08:53:14 +0100 > > Ceri Davies wrote: > > > > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > > Christian Brueffer wrote: > > > > > > > > > | @@ -33,11 +33,9 @@ > > > > > > | .Nm example > > > > > > | .Nd "example device driver manual page" > > > > > > | .Sh SYNOPSIS > > > > > > | -To compile the > > > > > > | -.Ns Nm > > > > > > | -driver into the kernel, > > > > > > | -place the following lines in the > > > > > > | -kernel configuration file: > > > > > > | +To enable support for > > > > > > | +.Ns Nm , > > > > > > | +place the following lines in the kernel configuration file: > > > > > > > > > > The formulation used before was much more accurate WRT the distinction > > > > > we make between compiling something into the kernel and loading it as a > > > > > module. If we load something as a module we also "enable support for > > > > > it". > > > > > > > > What about in cases where other hoops must be jumped before the > > > > driver/feature/whatever is really supported? > > > > > > They can be special cased in the real manual. In the wider sense, > > > kldload is the easiest way to enable support for something, and I know > > > that I'm personally well past encouraging users to recompile the kernel > > > just to get, for example, sound working when a simple kldload does the > > > job just as well in most cases. > > > > That is of course that "something" has a module. ;) > > Well yes, which is why the previous text explicitly said "to compile .Nm > into the kernel", because that's what the example does. > > > Seriously though, why handle one case any differently than > > another? > > Compiling something into the kernel and loading a module are different, > that's why, and we should be clear about the distinction (because, as > you state, some modules don't exist). And it's not the same as enabling the driver. You can kldload ipmi but still disable it via a hw.ipmi.on sysctl and then re-enable it later w/o unloading it by toggling the sysctl back on. Enable is a poor word choice and very vague. Since you are mentioning the specific details of adding lines to a kernel config file, you should be as specific in stating what that does (adds driver to kernel). -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Sep 27 15:29:17 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6527516A53C; Wed, 27 Sep 2006 15:29:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C6F543E34; Wed, 27 Sep 2006 15:27:41 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RFROZO058728; Wed, 27 Sep 2006 11:27:35 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: danger@rulez.sk Date: Wed, 27 Sep 2006 11:27:09 -0400 User-Agent: KMail/1.9.1 References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> In-Reply-To: <20060927102234.dsupin91usswg4s0@mail.rulez.sk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271127.10798.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 11:27:35 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1947/Tue Sep 26 20:46:56 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, Daniel Gerzo , src-committers@freebsd.org, cvs-all@freebsd.org, Christian Brueffer Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 15:29:17 -0000 On Wednesday 27 September 2006 04:22, danger@rulez.sk wrote: > Quoting Christian Brueffer : > > > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > >> danger 2006-09-26 19:59:52 UTC > >> > >> FreeBSD src repository (doc committer) > >> > >> Modified files: > >> share/examples/mdoc example.4 > >> Log: > >> Remove second person from the sentece and rephrase a bit. > >> > >> Approved by: trhodes (mentor), keramida (mentor) > >> > >> Revision Changes Path > >> 1.26 +6 -8 src/share/examples/mdoc/example.4 > > > > I don't agree to these changes, see below for details (also I don't see where > > exactly you removed second person usage, it's still being used in the new > > version). > > We want to aviod to use words like "you", "your" and so on. I have > talked about it with Ruslan and my mentors. > > >> | -To compile the > >> | -.Ns Nm > >> | -driver into the kernel, > >> | -place the following lines in the > >> | -kernel configuration file: > >> | +To enable support for > >> | +.Ns Nm , > >> | +place the following lines in the kernel configuration file: > > > > The formulation used before was much more accurate WRT the distinction > > we make between compiling something into the kernel and loading it as a > > module. If we load something as a module we also "enable support for > > it". > > I think it's certainly clear to users that they can either enable > support for something in kernel _or_ load it as a module which would > bring that support without need of kernel recompilation. Not in the text you just wrote. The diff quoted above would now imply to at least some users that you have to compile drivers into the kernel since that's how one "enable[s] support for foo(4)". -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Sep 27 15:29:17 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE8B016A407; Wed, 27 Sep 2006 15:29:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46F8843E2D; Wed, 27 Sep 2006 15:27:34 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RFROZM058728; Wed, 27 Sep 2006 11:27:30 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Maxim Sobolev Date: Wed, 27 Sep 2006 11:17:25 -0400 User-Agent: KMail/1.9.1 References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609261313.03759.jhb@freebsd.org> <4519B2E5.9000304@FreeBSD.org> In-Reply-To: <4519B2E5.9000304@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271117.25831.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 11:27:31 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1947/Tue Sep 26 20:46:56 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.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, 27 Sep 2006 15:29:18 -0000 On Tuesday 26 September 2006 19:08, Maxim Sobolev wrote: > John Baldwin wrote: > > On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: > >> sobomax 2006-09-26 16:08:29 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: (Branch: RELENG_6) > >> sys/i386/i386 local_apic.c > >> Log: > >> Revert 1.17.2.8, which reportedly causes problems on some hardware. > > > > The report I saw was that it broke ULE in general. Are you going to revert it > > from amd64 as well? > > Yes, you are right - this is ULE specific bug. In fact, quick grep of > the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the > problem is with ULE, not with the change in question. Well, hlt_cpus_mask is really an x86-specific hack. :) -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Sep 27 15:30:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BCE116A98C; Wed, 27 Sep 2006 15:30:47 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA5AB43D55; Wed, 27 Sep 2006 15:30:46 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFUkc2003551; Wed, 27 Sep 2006 15:30:46 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFUkv0003550; Wed, 27 Sep 2006 15:30:46 GMT (envelope-from mjacob) Message-Id: <200609271530.k8RFUkv0003550@repoman.freebsd.org> From: Matt Jacob Date: Wed, 27 Sep 2006 15:30:46 +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: Wed, 27 Sep 2006 15:30:47 -0000 mjacob 2006-09-27 15:30:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mpt mpt_cam.c Log: MFC 1.34: Connect QFULL events up with decreasing openings. Approved by: re (mux) Revision Changes Path 1.1.2.6 +32 -2 src/sys/dev/mpt/mpt_cam.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 15:32:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A7E16A4CE; Wed, 27 Sep 2006 15:32:09 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F8A43D5E; Wed, 27 Sep 2006 15:32:04 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFW4Gh003672; Wed, 27 Sep 2006 15:32:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFW4gO003671; Wed, 27 Sep 2006 15:32:04 GMT (envelope-from ru) Message-Id: <200609271532.k8RFW4gO003671@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 15:32: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/kbdmux kbdmux.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, 27 Sep 2006 15:32:09 -0000 ru 2006-09-27 15:32:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/kbdmux kbdmux.c Log: MFC: Revert back to using *(int *)arg when accessing integer ioctl arguments. For now, this is a work-around only, as sparc64 remains broken for these ioctls, but it makes keyboard ioctls for little endian LP64 platforms such as amd64 work again when using kbdmux (it is used in the GENERIC kernel). A one true fix for all is in works, and will be committed to -CURRENT shortly. Approved by: re (kensmith) Revision Changes Path 1.2.2.7 +13 -13 src/sys/dev/kbdmux/kbdmux.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 15:38:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBE6F16A403; Wed, 27 Sep 2006 15:38:13 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A71A43D49; Wed, 27 Sep 2006 15:38:13 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFcD6G003978; Wed, 27 Sep 2006 15:38:13 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFcDkw003977; Wed, 27 Sep 2006 15:38:13 GMT (envelope-from mjacob) Message-Id: <200609271538.k8RFcDkw003977@repoman.freebsd.org> From: Matt Jacob Date: Wed, 27 Sep 2006 15:38: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/share/examples/scsi_target scsi_cmds.c scsi_target.c scsi_target.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, 27 Sep 2006 15:38:13 -0000 mjacob 2006-09-27 15:38:13 UTC FreeBSD src repository Modified files: share/examples/scsi_target scsi_cmds.c scsi_target.c scsi_target.h Log: Bump MAX_INITIATORS to 1024- the LSI-Logic can go even higher than this for 'initiator id'- this is a stopgap until a sparse map is added. Make compat defines for offset format (FreeBSD 5 or less). Add no-asyncio flag. There's some breakage with ASYNC I/O that every now and then drops us into an infinite loop. This also then does a fallback to no-asyncio if the AIO option isn't loaded/compiled into the kernel. A number of other chanes to try and track some breakage. Revision Changes Path 1.10 +72 -37 src/share/examples/scsi_target/scsi_cmds.c 1.18 +65 -58 src/share/examples/scsi_target/scsi_target.c 1.4 +14 -2 src/share/examples/scsi_target/scsi_target.h From owner-cvs-src@FreeBSD.ORG Wed Sep 27 16:11:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 738A716A4AB; Wed, 27 Sep 2006 16:11:01 +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 3B58643D6E; Wed, 27 Sep 2006 16:10:59 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([165.236.175.187]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8RFq4BG019520; Wed, 27 Sep 2006 09:52:10 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451A9E1E.30601@samsco.org> Date: Wed, 27 Sep 2006 09:51:58 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609261313.03759.jhb@freebsd.org> <4519B2E5.9000304@FreeBSD.org> <200609271117.25831.jhb@freebsd.org> In-Reply-To: <200609271117.25831.jhb@freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: Maxim Sobolev , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.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, 27 Sep 2006 16:11:01 -0000 John Baldwin wrote: > On Tuesday 26 September 2006 19:08, Maxim Sobolev wrote: > >>John Baldwin wrote: >> >>>On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: >>> >>>>sobomax 2006-09-26 16:08:29 UTC >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: (Branch: RELENG_6) >>>> sys/i386/i386 local_apic.c >>>> Log: >>>> Revert 1.17.2.8, which reportedly causes problems on some hardware. >>> >>>The report I saw was that it broke ULE in general. Are you going to > > revert it > >>>from amd64 as well? >> >>Yes, you are right - this is ULE specific bug. In fact, quick grep of >>the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the >>problem is with ULE, not with the change in question. > > > Well, hlt_cpus_mask is really an x86-specific hack. :) > x86 and amd64, which represent about 95% of FreeBSD. Scott From owner-cvs-src@FreeBSD.ORG Wed Sep 27 16:41:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 886D316A523; Wed, 27 Sep 2006 16:41:17 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E321243D68; Wed, 27 Sep 2006 16:41:15 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RGfFs6008211; Wed, 27 Sep 2006 16:41:15 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RGfFrf008210; Wed, 27 Sep 2006 16:41:15 GMT (envelope-from mbr) Message-Id: <200609271641.k8RGfFrf008210@repoman.freebsd.org> From: Martin Blapp Date: Wed, 27 Sep 2006 16:41: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/kern tty_tty.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, 27 Sep 2006 16:41:17 -0000 mbr 2006-09-27 16:41:15 UTC FreeBSD src repository Modified files: sys/kern tty_tty.c Log: Use ctty instead of just returning. ctty just has a simple open that returns ENXIO. Submitted by: jhb Revision Changes Path 1.59 +1 -1 src/sys/kern/tty_tty.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 16:42:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA0F16A4A7; Wed, 27 Sep 2006 16:42:14 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD14943D6E; Wed, 27 Sep 2006 16:42:10 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RGgA3F008264; Wed, 27 Sep 2006 16:42:10 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RGgAEX008263; Wed, 27 Sep 2006 16:42:10 GMT (envelope-from mbr) Message-Id: <200609271642.k8RGgAEX008263@repoman.freebsd.org> From: Martin Blapp Date: Wed, 27 Sep 2006 16:42: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/kern kern_proc.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, 27 Sep 2006 16:42:14 -0000 mbr 2006-09-27 16:42:10 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Move Giant up even further since P_CONTROLT isn't really fully locked yet (p_flag is, but P_CONTROLT isn't really). Submitted by: jhb Revision Changes Path 1.243 +1 -1 src/sys/kern/kern_proc.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 17:41:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04C4916A40F; Wed, 27 Sep 2006 17:41:23 +0000 (UTC) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from ms-dienst.rz.rwth-aachen.de (ms-1.rz.RWTH-Aachen.DE [134.130.3.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD7A443D77; Wed, 27 Sep 2006 17:41:11 +0000 (GMT) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J69004CPIGICL@ms-dienst.rz.rwth-aachen.de>; Wed, 27 Sep 2006 19:41:07 +0200 (MEST) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Wed, 27 Sep 2006 19:41:05 +0200 (MEST) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.7/8.13.1/1) with ESMTP id k8RHf5Rn020032; Wed, 27 Sep 2006 19:41:05 +0200 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GSdP7-0008C0-HF; Wed, 27 Sep 2006 19:41:05 +0200 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 545E63F41D; Wed, 27 Sep 2006 10:54:08 +0200 (CEST) Date: Wed, 27 Sep 2006 10:54:08 +0200 From: Christian Brueffer In-reply-to: <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> To: Daniel Gerzo Message-id: <20060927085408.GD1941@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary=M38YqGLZlgb6RLPS; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> Cc: Tom Rhodes , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 17:41:23 -0000 --M38YqGLZlgb6RLPS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 10:49:21AM +0200, Daniel Gerzo wrote: > Quoting Ceri Davies : >=20 > > > >No, we're arguing over grammar. The sentence currently renders as > >something like: > > > > Alternatively, to load the fxp(4) as a module at boot time... > > >=20 > I proposed the following change: >=20 > Alternatively, to load > .Ns Nm > module at boot time... >=20 That's wrong. In this case you'd _need_ the "the" or you'd have to remove "module". I prefer the former though, since it makes clean that we're talking about the module here. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --M38YqGLZlgb6RLPS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGjwwbHYXjKDtmC0RArlvAJ9qvjvNifE+w9l+yf7bbpNoAzkfSwCgrXau 5JraMwd2I0RH3428jg02OUE= =bqXs -----END PGP SIGNATURE----- --M38YqGLZlgb6RLPS-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 18:10:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34F4316A407; Wed, 27 Sep 2006 18:10:17 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB75543D53; Wed, 27 Sep 2006 18:10:16 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RIAGlx022080; Wed, 27 Sep 2006 18:10:16 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RIAGSu022079; Wed, 27 Sep 2006 18:10:16 GMT (envelope-from alc) Message-Id: <200609271810.k8RIAGSu022079@repoman.freebsd.org> From: Alan Cox Date: Wed, 27 Sep 2006 18:10: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/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: Wed, 27 Sep 2006 18:10:17 -0000 alc 2006-09-27 18:10:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c Log: MFC Correct a very old and very obscure bug: vmspace_fork() calls pmap_copy() if the mapping is VM_INHERIT_SHARE. Suppose the mapping is also wired. vmspace_fork() clears the wiring attributes in the vm map entry but pmap_copy() copies the PG_W attribute in the PTE. I don't think this is catastrophic. It blocks pmap_remove_pages() from destroying the mapping and corrupts the pmap's wiring count. This revision fixes the problem by changing pmap_copy() to clear the PG_W attribute. Approved by: re (mux) Revision Changes Path 1.516.2.8 +4 -3 src/sys/amd64/amd64/pmap.c 1.523.2.8 +5 -3 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 18:51:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 536C616A416; Wed, 27 Sep 2006 18:51:20 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C102543D55; Wed, 27 Sep 2006 18:51:19 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RIpJMW024278; Wed, 27 Sep 2006 18:51:19 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RIpJEf024277; Wed, 27 Sep 2006 18:51:19 GMT (envelope-from sobomax) Message-Id: <200609271851.k8RIpJEf024277@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 27 Sep 2006 18:51: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/i386/i386 local_apic.c src/sys/amd64/amd64 local_apic.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, 27 Sep 2006 18:51:20 -0000 sobomax 2006-09-27 18:51:19 UTC FreeBSD src repository Modified files: sys/i386/i386 local_apic.c sys/amd64/amd64 local_apic.c Log: Since ULE doesn't honor hlt_cpus_mask don't compile code that prevents timer interrupt servicing for disabled HTT cores in ULE case. Should be probably fixed in ULE code instead, but we have no real maintainer for ULE to do it. PR: 103697 Revision Changes Path 1.30 +1 -1 src/sys/amd64/amd64/local_apic.c 1.32 +1 -1 src/sys/i386/i386/local_apic.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 19:20:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A33516A403; Wed, 27 Sep 2006 19:20:44 +0000 (UTC) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDC9243D4C; Wed, 27 Sep 2006 19:20:43 +0000 (GMT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJKhai026785; Wed, 27 Sep 2006 19:20:43 GMT (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJKhuN026784; Wed, 27 Sep 2006 19:20:43 GMT (envelope-from schweikh) Message-Id: <200609271920.k8RJKhuN026784@repoman.freebsd.org> From: Jens Schweikhardt Date: Wed, 27 Sep 2006 19:20: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/games/fortune/datfiles limerick startrek X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 19:20:44 -0000 schweikh 2006-09-27 19:20:43 UTC FreeBSD src repository Modified files: games/fortune/datfiles limerick startrek Log: Correct typo. Revision Changes Path 1.11 +1 -1 src/games/fortune/datfiles/limerick 1.9 +1 -1 src/games/fortune/datfiles/startrek From owner-cvs-src@FreeBSD.ORG Wed Sep 27 19:32:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FB0016A40F; Wed, 27 Sep 2006 19:32:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F12AF43D55; Wed, 27 Sep 2006 19:32:26 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJWQsG027432; Wed, 27 Sep 2006 19:32:26 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJWQKx027431; Wed, 27 Sep 2006 19:32:26 GMT (envelope-from jhb) Message-Id: <200609271932.k8RJWQKx027431@repoman.freebsd.org> From: John Baldwin Date: Wed, 27 Sep 2006 19:32: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/sys/boot/i386/btx/btx btx.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, 27 Sep 2006 19:32:30 -0000 jhb 2006-09-27 19:32:26 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: Emulate moving cr0, cr2, cr3, or cr4 into any i386 general register rather than just emulating mov cr0, eax. This fixes some Compaq/HP BIOS with DMA (as the BIOS tried to read cr3 so it could translate addresses if paging was enabled). MFC after: 1 week Revision Changes Path 1.39 +18 -6 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-src@FreeBSD.ORG Wed Sep 27 19:57:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5F9C16A407; Wed, 27 Sep 2006 19:57:02 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7087843D45; Wed, 27 Sep 2006 19:57:02 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJv20X028903; Wed, 27 Sep 2006 19:57:02 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJv25Z028902; Wed, 27 Sep 2006 19:57:02 GMT (envelope-from ru) Message-Id: <200609271957.k8RJv25Z028902@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 19:57: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/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 27 Sep 2006 19:57:02 -0000 ru 2006-09-27 19:57:02 UTC FreeBSD src repository Modified files: sys/dev/atkbdc atkbd.c sys/dev/digi digi.c sys/dev/kbdmux kbdmux.c sys/dev/syscons scvidctl.c syscons.c sys/dev/uart uart_kbd_sun.c sys/dev/usb ukbd.c sys/dev/vkbd vkbd.c sys/fs/procfs procfs_ioctl.c sys/kern sys_generic.c tty_pts.c tty_pty.c sys/modules/digi/digi Makefile sys/modules/if_tap Makefile sys/modules/kbdmux Makefile sys/modules/procfs Makefile sys/modules/ukbd Makefile sys/modules/vkbd Makefile sys/net if_tap.c if_tap.h sys/pc98/cbus pckbd.c sys/sys consio.h digiio.h ioccom.h kbio.h pioctl.h ttycom.h Log: Fix our ioctl(2) implementation when the argument is "int". New ioctls passing integer arguments should use the _IOWINT() macro. This fixes a lot of ioctl's not working on sparc64, most notable being keyboard/syscons ioctls. Full ABI compatibility is provided, with the bonus of fixing the handling of old ioctls on sparc64. Reviewed by: bde (with contributions) Tested by: emax, marius MFC after: 1 week Revision Changes Path 1.51 +33 -0 src/sys/dev/atkbdc/atkbd.c 1.63 +12 -1 src/sys/dev/digi/digi.c 1.14 +29 -0 src/sys/dev/kbdmux/kbdmux.c 1.38 +28 -2 src/sys/dev/syscons/scvidctl.c 1.447 +80 -5 src/sys/dev/syscons/syscons.c 1.9 +24 -1 src/sys/dev/uart/uart_kbd_sun.c 1.56 +33 -0 src/sys/dev/usb/ukbd.c 1.11 +28 -0 src/sys/dev/vkbd/vkbd.c 1.13 +27 -4 src/sys/fs/procfs/procfs_ioctl.c 1.150 +15 -11 src/sys/kern/sys_generic.c 1.9 +11 -0 src/sys/kern/tty_pts.c 1.147 +11 -0 src/sys/kern/tty_pty.c 1.5 +1 -0 src/sys/modules/digi/digi/Makefile 1.6 +4 -1 src/sys/modules/if_tap/Makefile 1.4 +4 -1 src/sys/modules/kbdmux/Makefile 1.32 +1 -0 src/sys/modules/procfs/Makefile 1.22 +5 -1 src/sys/modules/ukbd/Makefile 1.4 +4 -1 src/sys/modules/vkbd/Makefile 1.63 +13 -1 src/sys/net/if_tap.c 1.3 +1 -1 src/sys/net/if_tap.h 1.32 +26 -0 src/sys/pc98/cbus/pckbd.c 1.18 +7 -7 src/sys/sys/consio.h 1.5 +2 -2 src/sys/sys/digiio.h 1.16 +10 -2 src/sys/sys/ioccom.h 1.11 +8 -8 src/sys/sys/kbio.h 1.15 +4 -4 src/sys/sys/pioctl.h 1.25 +1 -1 src/sys/sys/ttycom.h From owner-cvs-src@FreeBSD.ORG Wed Sep 27 21:03:39 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8C6416A415; Wed, 27 Sep 2006 21:03:39 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5487643D45; Wed, 27 Sep 2006 21:03:39 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RL3bw1061032; Wed, 27 Sep 2006 17:03:37 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Scott Long Date: Wed, 27 Sep 2006 13:38:21 -0400 User-Agent: KMail/1.9.1 References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> In-Reply-To: <451A9E1E.30601@samsco.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271338.22284.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:03:37 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.1 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00, DATE_IN_PAST_03_06 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Maxim Sobolev , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.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, 27 Sep 2006 21:03:40 -0000 On Wednesday 27 September 2006 11:51, Scott Long wrote: > John Baldwin wrote: > > On Tuesday 26 September 2006 19:08, Maxim Sobolev wrote: > > > >>John Baldwin wrote: > >> > >>>On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: > >>> > >>>>sobomax 2006-09-26 16:08:29 UTC > >>>> > >>>> FreeBSD src repository > >>>> > >>>> Modified files: (Branch: RELENG_6) > >>>> sys/i386/i386 local_apic.c > >>>> Log: > >>>> Revert 1.17.2.8, which reportedly causes problems on some hardware. > >>> > >>>The report I saw was that it broke ULE in general. Are you going to > > > > revert it > > > >>>from amd64 as well? > >> > >>Yes, you are right - this is ULE specific bug. In fact, quick grep of > >>the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the > >>problem is with ULE, not with the change in question. > > > > > > Well, hlt_cpus_mask is really an x86-specific hack. :) > > > > x86 and amd64, which represent about 95% of FreeBSD. My point is that we need a notion of taking CPUs offline and online with scheudler hooks, instead of exporting a simple x86-specific bitmask. Right now we don't notify the schedulers when a CPU goes offline so that they can try to do sensible things with pinned and bound threads, etc. Instead, they just have to "notice" which is rediculously lame. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Sep 27 21:03:50 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5984316A5A9; Wed, 27 Sep 2006 21:03:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id A766B43D7D; Wed, 27 Sep 2006 21:03:44 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RL3e9T061037; Wed, 27 Sep 2006 17:03:42 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Wed, 27 Sep 2006 17:03:42 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> In-Reply-To: <200609271957.k8RJv25Z028902@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271703.43643.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:03:42 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 27 Sep 2006 21:03:50 -0000 On Wednesday 27 September 2006 15:57, Ruslan Ermilov wrote: > ru 2006-09-27 19:57:02 UTC > > FreeBSD src repository > > Modified files: > sys/dev/atkbdc atkbd.c > sys/dev/digi digi.c > sys/dev/kbdmux kbdmux.c > sys/dev/syscons scvidctl.c syscons.c > sys/dev/uart uart_kbd_sun.c > sys/dev/usb ukbd.c > sys/dev/vkbd vkbd.c > sys/fs/procfs procfs_ioctl.c > sys/kern sys_generic.c tty_pts.c tty_pty.c > sys/modules/digi/digi Makefile > sys/modules/if_tap Makefile > sys/modules/kbdmux Makefile > sys/modules/procfs Makefile > sys/modules/ukbd Makefile > sys/modules/vkbd Makefile > sys/net if_tap.c if_tap.h > sys/pc98/cbus pckbd.c > sys/sys consio.h digiio.h ioccom.h kbio.h > pioctl.h ttycom.h > Log: > Fix our ioctl(2) implementation when the argument is "int". New > ioctls passing integer arguments should use the _IOWINT() macro. > This fixes a lot of ioctl's not working on sparc64, most notable > being keyboard/syscons ioctls. > > Full ABI compatibility is provided, with the bonus of fixing the > handling of old ioctls on sparc64. Eh? You just changed ioctl values breaking ABI all over the place, e.g. sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning different ioctl values and thus ABI breakage. Plus, what if you have: struct foo { int bar; }; #define FOOIO _IOW('y', 0, struct foo) that's going to have the same issue isn't it? This really just looks like a big hack and it doesn't help with ABI compat at all. :( I think instead the various ioctl handlers have to realize that for IOC_VOID ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the uap struct for ioctl clearly defines data as a caddr_t). Fix whatever crap you have to in the kernel to deal with it, but don't change the userland ABI. :( -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Sep 27 21:12:45 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11A9916A52B; Wed, 27 Sep 2006 21:12:45 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6432D43E00; Wed, 27 Sep 2006 21:10:56 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RLAenK061108; Wed, 27 Sep 2006 17:10:41 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Wed, 27 Sep 2006 17:10:51 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271703.43643.jhb@freebsd.org> In-Reply-To: <200609271703.43643.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271710.51869.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:10:41 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 27 Sep 2006 21:12:45 -0000 On Wednesday 27 September 2006 17:03, John Baldwin wrote: > Eh? You just changed ioctl values breaking ABI all over the place, e.g. > sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning > different ioctl values and thus ABI breakage. Bah, I see you did add compat hacks for the old ioctls. I don't see why we don't just fix the original ioctls to just use IOCPARM_IVAL() and be done with it, why do we have to add _IOWINT() and other hacks? > Plus, what if you have: > > struct foo { > int bar; > }; > > #define FOOIO _IOW('y', 0, struct foo) > > that's going to have the same issue isn't it? Ok, see now why this works. This is only for ioctl's that use int w/o specifying it (i.e. take an int directly instead of pointer to int). > I think instead the various ioctl handlers have to realize that for IOC_VOID > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the uap > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap you > have to in the kernel to deal with it, but don't change the userland ABI. :( I still think doing this (via IOCPARM_IVAL()) is best and is probably a much smaller diff. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Sep 27 21:30:14 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE91716A4A7; Wed, 27 Sep 2006 21:30:13 +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 5287143DCB; Wed, 27 Sep 2006 21:28:52 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id B829B618D; Thu, 28 Sep 2006 01:27:46 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 7DC166131; Thu, 28 Sep 2006 01:27:46 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RLRmYx099959; Thu, 28 Sep 2006 01:27:48 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 01:27:48 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060927212748.GA83490@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271703.43643.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <200609271703.43643.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 27 Sep 2006 21:30:14 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi John, On Wed, Sep 27, 2006 at 05:03:42PM -0400, John Baldwin wrote: > On Wednesday 27 September 2006 15:57, Ruslan Ermilov wrote: > > ru 2006-09-27 19:57:02 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sys/dev/atkbdc atkbd.c=20 > > sys/dev/digi digi.c=20 > > sys/dev/kbdmux kbdmux.c=20 > > sys/dev/syscons scvidctl.c syscons.c=20 > > sys/dev/uart uart_kbd_sun.c=20 > > sys/dev/usb ukbd.c=20 > > sys/dev/vkbd vkbd.c=20 > > sys/fs/procfs procfs_ioctl.c=20 > > sys/kern sys_generic.c tty_pts.c tty_pty.c=20 > > sys/modules/digi/digi Makefile=20 > > sys/modules/if_tap Makefile=20 > > sys/modules/kbdmux Makefile=20 > > sys/modules/procfs Makefile=20 > > sys/modules/ukbd Makefile=20 > > sys/modules/vkbd Makefile=20 > > sys/net if_tap.c if_tap.h=20 > > sys/pc98/cbus pckbd.c=20 > > sys/sys consio.h digiio.h ioccom.h kbio.h=20 > > pioctl.h ttycom.h=20 > > Log: > > Fix our ioctl(2) implementation when the argument is "int". New > > ioctls passing integer arguments should use the _IOWINT() macro. > > This fixes a lot of ioctl's not working on sparc64, most notable > > being keyboard/syscons ioctls. > > =20 > > Full ABI compatibility is provided, with the bonus of fixing the > > handling of old ioctls on sparc64. >=20 > Eh? You just changed ioctl values breaking ABI all over the place, e.g.= =20 > sys/pioctl.h. >=20 No, see also the sys/fs/procfs/procfs_ioctl.c part of a change. > The size field changed from 0 to sizeof(int) meaning different=20 > ioctl values and thus ABI breakage. >=20 No. Old ioctls are still supported, just not in headers. > Plus, what if you have: >=20 > struct foo { > int bar; > }; >=20 > #define FOOIO _IOW('y', 0, struct foo) >=20 > that's going to have the same issue isn't it? >=20 No. In this case, you're passing a pointer. Here's what happened when you called ioctl(fd, IOCTL, (int)1) on sparc64. "1" is passed in a register (64-bit). Due to the ioctl() prototype in the kernel, it sees 1 as "caddr_t data". This means that you have "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1" copied on the stack location pointed to by uap->data. Later on, a conversion from "int" to "int *" is made, and a pointer to that location of memory is passed to a device's ioctl() handler. It then accesses it as *(int *)arg and gets 0. > This really just looks like a=20 > big hack and it doesn't help with ABI compat at all. :( >=20 It does. It has been tested on i386/amd64/sparc64, with both old and new userland. > I think instead the various ioctl handlers have to realize that for IOC_V= OID=20 > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the ua= p=20 > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap y= ou=20 > have to in the kernel to deal with it, but don't change the userland ABI.= :( >=20 POSIX and our manpage both say that an argument should either be an "int" or a pointer. This means we need to support "int" arguments but do it properly. My first version of the patch fixed the kernel only, replacing "int" with intptr_t where a kernel initiated an ioctl(). This is very inconvenient for a driver writer, when a userland passes an "int" argument, and a kernel has to pass an "intptr_t" argument, due to the bogus implementation. I think you were too quick in replying, and didn't look at the whole patch in detail. :-) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGuzUqRfpzJluFF4RAsGRAKCD/T3vbZQ5k+dH/6Yt6UVh/vyJ4wCdExzc /Iq9FCi6fAIhVaNKUqk8Pm8= =fSbo -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 21:30:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8906916A47B; Wed, 27 Sep 2006 21:30:15 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 540DF43DEC; Wed, 27 Sep 2006 21:29:14 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RLSiPB066915; Wed, 27 Sep 2006 21:28:44 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RLSiJn066914; Wed, 27 Sep 2006 21:28:44 GMT (envelope-from danger) Message-Id: <200609272128.k8RLSiJn066914@repoman.freebsd.org> From: Daniel Gerzo Date: Wed, 27 Sep 2006 21:28: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/share/examples/mdoc example.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, 27 Sep 2006 21:30:15 -0000 danger 2006-09-27 21:28:44 UTC FreeBSD src repository (doc committer) Modified files: share/examples/mdoc example.4 Log: Revert my previous change as it does not seem to be entirely correct and popular. Revision Changes Path 1.27 +8 -6 src/share/examples/mdoc/example.4 From owner-cvs-src@FreeBSD.ORG Wed Sep 27 21:31:51 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFB8616A4E8; Wed, 27 Sep 2006 21:31:51 +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 0B96643DC0; Wed, 27 Sep 2006 21:30:31 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id D1BAB613E; Thu, 28 Sep 2006 01:29:47 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id B10226138; Thu, 28 Sep 2006 01:29:47 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RLTnhJ002362; Thu, 28 Sep 2006 01:29:49 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 01:29:49 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060927212949.GB83490@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271703.43643.jhb@freebsd.org> <200609271710.51869.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZfOjI3PrQbgiZnxM" Content-Disposition: inline In-Reply-To: <200609271710.51869.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 27 Sep 2006 21:31:52 -0000 --ZfOjI3PrQbgiZnxM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 05:10:51PM -0400, John Baldwin wrote: > On Wednesday 27 September 2006 17:03, John Baldwin wrote: > > Eh? You just changed ioctl values breaking ABI all over the place, e.g= =2E=20 > > sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning > > different ioctl values and thus ABI breakage. >=20 > Bah, I see you did add compat hacks for the old ioctls. I don't see why = we=20 > don't just fix the original ioctls to just use IOCPARM_IVAL() and be done= =20 > with it, why do we have to add _IOWINT() and other hacks? >=20 > > Plus, what if you have:=20 > >=20 > > struct foo { > > int bar; > > }; > >=20 > > #define FOOIO _IOW('y', 0, struct foo) > >=20 > > that's going to have the same issue isn't it? >=20 > Ok, see now why this works. This is only for ioctl's that use int w/o=20 > specifying it (i.e. take an int directly instead of pointer to int). >=20 > > I think instead the various ioctl handlers have to realize that for IOC= _VOID=20 > > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the = uap=20 > > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap= you=20 > > have to in the kernel to deal with it, but don't change the userland AB= I. :( >=20 > I still think doing this (via IOCPARM_IVAL()) is best and is probably a m= uch=20 > smaller diff. >=20 You don't consider that many ioctls are initiated inside the kernel, and this kernel code already uses (and passes) pointers to "int". While we could fix all of our kernel (and my first patch did exactly this), it's 1) very inconvenient, and 2) we cannot fix third-party kernel code this way. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --ZfOjI3PrQbgiZnxM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGu1NqRfpzJluFF4RAvfsAJwIFJYpBKJAg/ayA9iYaxDH2PnhKwCeOUH9 B6QkuX/z2jZO3S89hwUe0Io= =TfXP -----END PGP SIGNATURE----- --ZfOjI3PrQbgiZnxM-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 21:53:04 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14C6016A5AC; Wed, 27 Sep 2006 21:53:04 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6BDC43D80; Wed, 27 Sep 2006 21:52:56 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RLqn4Z061525; Wed, 27 Sep 2006 17:52:52 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Wed, 27 Sep 2006 17:52:56 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271710.51869.jhb@freebsd.org> <20060927212949.GB83490@rambler-co.ru> In-Reply-To: <20060927212949.GB83490@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271752.57082.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:52:54 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 27 Sep 2006 21:53:04 -0000 On Wednesday 27 September 2006 17:29, Ruslan Ermilov wrote: > On Wed, Sep 27, 2006 at 05:10:51PM -0400, John Baldwin wrote: > > On Wednesday 27 September 2006 17:03, John Baldwin wrote: > > > Eh? You just changed ioctl values breaking ABI all over the place, e.g. > > > sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning > > > different ioctl values and thus ABI breakage. > > > > Bah, I see you did add compat hacks for the old ioctls. I don't see why we > > don't just fix the original ioctls to just use IOCPARM_IVAL() and be done > > with it, why do we have to add _IOWINT() and other hacks? > > > > > Plus, what if you have: > > > > > > struct foo { > > > int bar; > > > }; > > > > > > #define FOOIO _IOW('y', 0, struct foo) > > > > > > that's going to have the same issue isn't it? > > > > Ok, see now why this works. This is only for ioctl's that use int w/o > > specifying it (i.e. take an int directly instead of pointer to int). > > > > > I think instead the various ioctl handlers have to realize that for IOC_VOID > > > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the uap > > > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap you > > > have to in the kernel to deal with it, but don't change the userland ABI. :( > > > > I still think doing this (via IOCPARM_IVAL()) is best and is probably a much > > smaller diff. > > > You don't consider that many ioctls are initiated inside the kernel, > and this kernel code already uses (and passes) pointers to "int". > While we could fix all of our kernel (and my first patch did exactly > this), it's 1) very inconvenient, and 2) we cannot fix third-party > kernel code this way. Could you avoid IOWINT by just assuming that any _IO() ioctl is getting an int as the arg? If an ioctl doesn't use the arg, then you don't lose anything.. do we have any ioctl's that use the arg directly but not as an int? The ioctl(2) manpage implies that 'data' is either a pointer or an int. If you go this route, you avoid changing all the ioctl values, basically just assume that IOC_VOID means the argument is an int. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Wed Sep 27 22:08:36 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 276C716A40F; Wed, 27 Sep 2006 22:08:36 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9BEA43D5C; Wed, 27 Sep 2006 22:08:33 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id ED46D46CFD; Wed, 27 Sep 2006 18:08:32 -0400 (EDT) Date: Wed, 27 Sep 2006 23:08:32 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: John Baldwin In-Reply-To: <200609271338.22284.jhb@freebsd.org> Message-ID: <20060927230635.D73166@fledge.watson.org> References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> <200609271338.22284.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Maxim Sobolev , Scott Long , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.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, 27 Sep 2006 22:08:36 -0000 On Wed, 27 Sep 2006, John Baldwin wrote: >>>>> from amd64 as well? >>>> >>>> Yes, you are right - this is ULE specific bug. In fact, quick grep of the >>>> ULE code reveals that it doesn't honor hlt_cpus_mask, so that the problem >>>> is with ULE, not with the change in question. >>> >>> Well, hlt_cpus_mask is really an x86-specific hack. :) >> >> x86 and amd64, which represent about 95% of FreeBSD. > > My point is that we need a notion of taking CPUs offline and online with > scheudler hooks, instead of exporting a simple x86-specific bitmask. Right > now we don't notify the schedulers when a CPU goes offline so that they can > try to do sensible things with pinned and bound threads, etc. Instead, they > just have to "notice" which is rediculously lame. It's pretty clear that if we're going to take the hypervisor + dynamic reconfiguration thing seriously, we need a structured notion of adding and removing CPUs from the active CPU pool, including things like event handlers so that subsystems can shut down operations on the CPU. For example, UMA needs a chance to drain per-CPU caches of various zones, services that have pinned threads on the CPU will need to decide how to deal with that, etc. It's work I'd very much like to see happen, and until it's done we basically need to make sure that CPUs either exist from boot and never cease existing, or don't exist at boot and are never used. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Wed Sep 27 22:09:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF17C16A407; Wed, 27 Sep 2006 22:09:35 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B3FD43D45; Wed, 27 Sep 2006 22:09:35 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RM9Zux070125; Wed, 27 Sep 2006 22:09:35 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RM9ZJe070124; Wed, 27 Sep 2006 22:09:35 GMT (envelope-from sobomax) Message-Id: <200609272209.k8RM9ZJe070124@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 27 Sep 2006 22:09: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/i386/i386 local_apic.c src/sys/amd64/amd64 local_apic.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, 27 Sep 2006 22:09:35 -0000 sobomax 2006-09-27 22:09:35 UTC FreeBSD src repository Modified files: sys/i386/i386 local_apic.c sys/amd64/amd64 local_apic.c Log: Extend comment explaining why code is conditional at !defined(SCHED_ULE). Suggested by: ru Revision Changes Path 1.31 +4 -0 src/sys/amd64/amd64/local_apic.c 1.33 +4 -0 src/sys/i386/i386/local_apic.c From owner-cvs-src@FreeBSD.ORG Wed Sep 27 22:12:52 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BDCD16A415; Wed, 27 Sep 2006 22:12:52 +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 D330643D45; Wed, 27 Sep 2006 22:12:51 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id E84AA6219; Thu, 28 Sep 2006 02:12:49 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id AF3FA620B; Thu, 28 Sep 2006 02:12:49 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RMCpkT052279; Thu, 28 Sep 2006 02:12:51 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 02:12:51 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060927221251.GA35467@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271710.51869.jhb@freebsd.org> <20060927212949.GB83490@rambler-co.ru> <200609271752.57082.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline In-Reply-To: <200609271752.57082.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 27 Sep 2006 22:12:52 -0000 --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 05:52:56PM -0400, John Baldwin wrote: > Could you avoid IOWINT by just assuming that any _IO() ioctl is getting a= n int=20 > as the arg? >=20 There are some _IO() ioctls that pass a pointer to variable sized data, and their ioctl handlers to uiocopy'ing rather than ioctl(). See sys/cam/scsi/scsi_ses.c, SESIOC_* ioctls for one such example. > If an ioctl doesn't use the arg, then you don't lose anything..=20 > do we have any ioctl's that use the arg directly but not as an int? >=20 Unfortunately yes. > The=20 > ioctl(2) manpage implies that 'data' is either a pointer or an int. If y= ou=20 > go this route, you avoid changing all the ioctl values, basically just as= sume=20 > that IOC_VOID means the argument is an int. >=20 That has been considered and found impossible due to the above. We also don't have any spare bits left in the ioctl type field, so IOC_VOID with size =3D=3D sizeof(int) have been used to implement _IOWINT(). IOC_VOID is incorrect name, the argument should either be a pointer or an "int", even when not used by ioctl(). Some ioctl() calls to "void" ioctls in userland don't pass a third argument. I think on architectures that pass arguments on the stack (such as i386) this causes return address to be accessed instead of the argument value. Ioctls that are "void" should either pass "0" or "NULL". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --BOKacYhQ+x31HxR3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGvdjqRfpzJluFF4RAs1RAJ41dFGKesyGojO26HDtr+Wq44sENQCeIp95 8s+w943o2ylJHs2QuGbsisY= =Llm5 -----END PGP SIGNATURE----- --BOKacYhQ+x31HxR3-- From owner-cvs-src@FreeBSD.ORG Wed Sep 27 22:28:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B94FB16A403; Wed, 27 Sep 2006 22:28:44 +0000 (UTC) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from mx07.ms.so-net.ne.jp (mx07.ms.so-net.ne.jp [202.238.82.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 570A943D6B; Wed, 27 Sep 2006 22:28:42 +0000 (GMT) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from [127.0.0.1] (p62a1f6.tkyoac00.ap.so-net.ne.jp [219.98.161.246]) by mx07.ms.so-net.ne.jp with ESMTP id k8RMSETg022825; Thu, 28 Sep 2006 07:28:34 +0900 (JST) Message-ID: <451AFAFD.6050700@ba2.so-net.ne.jp> Date: Thu, 28 Sep 2006 07:28:13 +0900 From: SANETO Takanori User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> <86wt7ppx16.fsf@dwp.des.no> <86odt1pww0.fsf@dwp.des.no> In-Reply-To: <86odt1pww0.fsf@dwp.des.no> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 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: Wed, 27 Sep 2006 22:28:44 -0000 DES, I think it affects argv for external mount commands as well as nmount. In fact, on RELENG_6, I got a message like "mount_smbfs: unknown option -o late" when I put "late" in my fstab like this: //SANEWO@SMBHOST/SMBDRIVE /smb/mnt1 smbfs rw,late 0 0 Thanks, Saneto Dag-Erling Smørgrav wrote: > des@des.no (Dag-Erling Smørgrav) writes: >> SANETO Takanori writes: >>> As for mount.c, following part should be MFC'ed as well. >> Thanks, I don't understand how it was left out. > > Uh, wait, it was left out for a reason: there is no equivalent code in > RELENG_6. The hunk in question removes "late" from the list of > options passed to nmount(), which isn't used in RELENG_6. > > DES From owner-cvs-src@FreeBSD.ORG Wed Sep 27 22:46:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB20116A4D2; Wed, 27 Sep 2006 22:46:20 +0000 (UTC) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from mx10.ms.so-net.ne.jp (mx10.ms.so-net.ne.jp [202.238.82.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA47643D82; Wed, 27 Sep 2006 22:45:32 +0000 (GMT) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from [127.0.0.1] (p62a1f6.tkyoac00.ap.so-net.ne.jp [219.98.161.246]) by mx10.ms.so-net.ne.jp with ESMTP id k8RMikFx022144; Thu, 28 Sep 2006 07:44:55 +0900 (JST) Message-ID: <451AFEDE.7020607@ba2.so-net.ne.jp> Date: Thu, 28 Sep 2006 07:44:46 +0900 From: SANETO Takanori User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> <86wt7ppx16.fsf@dwp.des.no> <86odt1pww0.fsf@dwp.des.no> <451AFAFD.6050700@ba2.so-net.ne.jp> In-Reply-To: <451AFAFD.6050700@ba2.so-net.ne.jp> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 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: Wed, 27 Sep 2006 22:46:20 -0000 I understand that the code around invoking external mount commands is quite different between -CURRENT and RELENG_6. I did not looked into the code but just saw commit message like "Do not pass noauto to nmount() or external mount program." in 1.73. What I actually did to avoid the error message I got was: > Index: mount.c > =================================================================== > RCS file: /export/cvs/src/sbin/mount/mount.c,v > retrieving revision 1.69.2.2 > diff -u -r1.69.2.2 mount.c > --- mount.c 13 Sep 2006 08:38:49 -0000 1.69.2.2 > +++ mount.c 26 Sep 2006 09:17:25 -0000 > @@ -429,6 +429,7 @@ > } > } > optbuf = catopt(strdup(mntopts), options); > + remopt(optbuf, "late"); > > if (strcmp(name, "/") == 0) > flags |= MNT_UPDATE; Can this be the correct fix for RELENG_6? Regards, Saneto SANETO Takanori wrote: > DES, > > I think it affects argv for external mount commands as well as nmount. > In fact, on RELENG_6, I got a message like "mount_smbfs: unknown option > -o late" when I put "late" in my fstab like this: > > //SANEWO@SMBHOST/SMBDRIVE /smb/mnt1 smbfs rw,late 0 0 > > Thanks, > > Saneto > > Dag-Erling Smørgrav wrote: >> des@des.no (Dag-Erling Smørgrav) writes: >>> SANETO Takanori writes: >>>> As for mount.c, following part should be MFC'ed as well. >>> Thanks, I don't understand how it was left out. >> Uh, wait, it was left out for a reason: there is no equivalent code in >> RELENG_6. The hunk in question removes "late" from the list of >> options passed to nmount(), which isn't used in RELENG_6. >> >> DES From owner-cvs-src@FreeBSD.ORG Wed Sep 27 22:57:31 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C09316A403; Wed, 27 Sep 2006 22:57:31 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 774ED43D93; Wed, 27 Sep 2006 22:57:27 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8RMvPSH025285 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 18:57:26 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 18:57:17 -0400 From: Tom Rhodes To: danger@rulez.sk Message-Id: <20060927185717.69661a1c.trhodes@FreeBSD.org> In-Reply-To: <20060927102234.dsupin91usswg4s0@mail.rulez.sk> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: [Back it out] was: Re: cvs commit: src/share/examples/mdoc example.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, 27 Sep 2006 22:57:31 -0000 On Wed, 27 Sep 2006 10:22:34 +0200 danger@rulez.sk wrote: Daniel, Please just back this commit out. While I don't disagree with the commit, I do see at least one back out request. In the project, we back out after a request if we are unable to change the requester's mind. Leaving it in is just not how we do things around here and I would prefer not to become the very person who annoys the hell out of me. We'll put our heads together and see if there is a better way of wording it so everyone is happy. Besides, I need to prepare for a conference - leaving tonight - so I need to stop being difficult around here and prepare to be difficult elsewhere. Thanks, -- Tom Rhodes > Quoting Christian Brueffer : > > > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > >> danger 2006-09-26 19:59:52 UTC > >> > >> FreeBSD src repository (doc committer) > >> > >> Modified files: > >> share/examples/mdoc example.4 > >> Log: > >> Remove second person from the sentece and rephrase a bit. > >> > >> Approved by: trhodes (mentor), keramida (mentor) > >> > >> Revision Changes Path > >> 1.26 +6 -8 src/share/examples/mdoc/example.4 > > > > I don't agree to these changes, see below for details (also I don't see where > > exactly you removed second person usage, it's still being used in the new > > version). > > We want to aviod to use words like "you", "your" and so on. I have > talked about it with Ruslan and my mentors. > > >> | -To compile the > >> | -.Ns Nm > >> | -driver into the kernel, > >> | -place the following lines in the > >> | -kernel configuration file: > >> | +To enable support for > >> | +.Ns Nm , > >> | +place the following lines in the kernel configuration file: > > > > The formulation used before was much more accurate WRT the distinction > > we make between compiling something into the kernel and loading it as a > > module. If we load something as a module we also "enable support for > > it". > > I think it's certainly clear to users that they can either enable > support for something in kernel _or_ load it as a module which would > bring that support without need of kernel recompilation. > > > > >> | .Bd -ragged -offset indent > >> | .Cd "device example" > >> | .Cd "options EXAMPLE_DEBUG" > >> | @@ -45,9 +43,9 @@ kernel configuration file: > >> | .Pp > >> | Alternatively, to load the > >> | .Ns Nm > >> | -driver as a > >> | -module at boot time, place the following line in > >> | -.Xr loader.conf 5 : > >> | +as a module at boot time, add the following line into the > >> | +.Xr loader.conf 5 > >> | +file: > >> | .Bd -literal -offset indent > >> | example_load="YES" > >> | .Ed > >> > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > driver? The .Nm utility? It's just incorrect to rely on context here > > and it makes the sentence sound really awkward. > > Yes, I know about this issue as it was pointed by Ruslan a few hours > after I have committed it (note, that I had an approval from my > mentors). Tom is native and he told that while it does not really > sounds correct, it is correct English, but depends on the context as > you have said. I have mailed my mentors and Ruslan with re-worded > sentence that should fix that. > > > > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > > now, as it's being used in the majority of section 4 manpages. > > Changes to it should not be made without _good_ reason and with a sweep > > through all manpages that use it. Among other things, the purpose of > > this section is to achieve consistency across section 4 manpages. > > > > It is standard that should be fixed :-) and I'm about to do that; I > wanted to commit the change to the example.4 first and after that > start with changes to the affected section 4 manual pages. > > But if there are more people that think that this change is wrong, I'm > not going to argue about that or being upset or something, I will > revert the change and go ahead and start working on something else. > > > - Christian > > -- > Best regards, > Daniel > > > > -------------------------------------------------------- > This message was sent from rulez.sk webamil using Horde. > > > -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Sep 27 23:04:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4341316A40F; Wed, 27 Sep 2006 23:04:10 +0000 (UTC) (envelope-from danger@rulez.sk) Received: from virtual.micronet.sk (smtp.micronet.sk [84.16.32.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E19143D77; Wed, 27 Sep 2006 23:04:09 +0000 (GMT) (envelope-from danger@rulez.sk) Received: from localhost (localhost [127.0.0.1]) by virtual.micronet.sk (Postfix) with ESMTP id 091F410E7D3; Thu, 28 Sep 2006 01:03:40 +0200 (CEST) X-Virus-Scanned: by amavisd-new at virtual.micronet.sk Received: from virtual.micronet.sk ([127.0.0.1]) by localhost (virtual.micronet.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NWfJmgYp7J-f; Thu, 28 Sep 2006 01:03:37 +0200 (CEST) Received: from danger.mcrn.sk (danger.mcrn.sk [84.16.37.254]) by virtual.micronet.sk (Postfix) with ESMTP id 2EFE410E7B7; Thu, 28 Sep 2006 01:03:37 +0200 (CEST) Date: Thu, 28 Sep 2006 01:04:04 +0200 From: Daniel Gerzo X-Priority: 3 (Normal) Message-ID: <1801869769.20060928010404@rulez.sk> To: Tom Rhodes In-Reply-To: <20060927185717.69661a1c.trhodes@FreeBSD.org> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> <20060927185717.69661a1c.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, brueffer@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: [Back it out] was: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Gerzo List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2006 23:04:10 -0000 Hello Tom, Thursday, September 28, 2006, 12:57:17 AM, you wrote: > On Wed, 27 Sep 2006 10:22:34 +0200 > danger@rulez.sk wrote: > Daniel, > Please just back this commit out. While I don't disagree with > the commit, I do see at least one back out request. In the > project, we back out after a request if we are unable to change > the requester's mind. Leaving it in is just not how we do things > around here and I would prefer not to become the very person who > annoys the hell out of me. I have already reverted the change as I saw the requests as well and that is what Giorgos advised me to do. > We'll put our heads together and see if there is a better way > of wording it so everyone is happy. Besides, I need to prepare > for a conference - leaving tonight - so I need to stop being > difficult around here and prepare to be difficult elsewhere. Have a nice time at the conference :-) > Thanks, You are welcome! -- Best regards, Daniel mailto:danger@rulez.sk From owner-cvs-src@FreeBSD.ORG Thu Sep 28 01:02:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87D4A16A4A0; Thu, 28 Sep 2006 01:02:42 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB1F43D55; Thu, 28 Sep 2006 01:02:39 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8S12b6R025989 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 21:02:38 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 21:02:23 -0400 From: Tom Rhodes To: Daniel Gerzo Message-Id: <20060927210223.76d8bd9b.trhodes@FreeBSD.org> In-Reply-To: <1801869769.20060928010404@rulez.sk> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> <20060927185717.69661a1c.trhodes@FreeBSD.org> <1801869769.20060928010404@rulez.sk> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, brueffer@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: [Back it out] was: Re: cvs commit: src/share/examples/mdoc example.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: Thu, 28 Sep 2006 01:02:42 -0000 On Thu, 28 Sep 2006 01:04:04 +0200 Daniel Gerzo wrote: > Hello Tom, > > Thursday, September 28, 2006, 12:57:17 AM, you wrote: > > > On Wed, 27 Sep 2006 10:22:34 +0200 > > danger@rulez.sk wrote: > > > Daniel, > > > Please just back this commit out. While I don't disagree with > > the commit, I do see at least one back out request. In the > > project, we back out after a request if we are unable to change > > the requester's mind. Leaving it in is just not how we do things > > around here and I would prefer not to become the very person who > > annoys the hell out of me. > > I have already reverted the change as I saw the requests as well and > that is what Giorgos advised me to do. Yep, I noticed, thanks. :) > > > We'll put our heads together and see if there is a better way > > of wording it so everyone is happy. Besides, I need to prepare > > for a conference - leaving tonight - so I need to stop being > > difficult around here and prepare to be difficult elsewhere. > > Have a nice time at the conference :-) I'll try, brother Giorgos is in charge while I'm gone. ;) > > > Thanks, > > You are welcome! > > -- > Best regards, > Daniel mailto:danger@rulez.sk > > -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Thu Sep 28 01:59:31 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B34D116A407; Thu, 28 Sep 2006 01:59:31 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 811F643D46; Thu, 28 Sep 2006 01:59:31 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S1xVLx097856; Thu, 28 Sep 2006 01:59:31 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S1xVkv097855; Thu, 28 Sep 2006 01:59:31 GMT (envelope-from delphij) Message-Id: <200609280159.k8S1xVkv097855@repoman.freebsd.org> From: Xin LI Date: Thu, 28 Sep 2006 01:59: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/etc/defaults periodic.conf src/share/man/man5 periodic.conf.5 src/etc/periodic/weekly 120.clean-kvmdb 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: Thu, 28 Sep 2006 01:59:31 -0000 delphij 2006-09-28 01:59:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/defaults periodic.conf share/man/man5 periodic.conf.5 etc/periodic/weekly Makefile Removed files: (Branch: RELENG_6) etc/periodic/weekly 120.clean-kvmdb Log: MFC: The kvm_mkdb(8) is long dead. Approved by: re (kensmith) Originally by: ru Revision Changes Path 1.33.2.2 +0 -5 src/etc/defaults/periodic.conf 1.7 +0 -49 src/etc/periodic/weekly/120.clean-kvmdb (dead) 1.8.14.1 +1 -2 src/etc/periodic/weekly/Makefile 1.55.2.2 +1 -18 src/share/man/man5/periodic.conf.5 From owner-cvs-src@FreeBSD.ORG Thu Sep 28 06:12:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 298ED16A403; Thu, 28 Sep 2006 06:12:38 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av7-1-sn3.vrr.skanova.net (av7-1-sn3.vrr.skanova.net [81.228.9.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD18F43D53; Thu, 28 Sep 2006 06:12:36 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av7-1-sn3.vrr.skanova.net (Postfix, from userid 502) id 53A5E38132; Thu, 28 Sep 2006 08:12:26 +0200 (CEST) Received: from smtp3-2-sn3.vrr.skanova.net (smtp3-2-sn3.vrr.skanova.net [81.228.9.102]) by av7-1-sn3.vrr.skanova.net (Postfix) with ESMTP id 2E22738170; Thu, 28 Sep 2006 08:12:26 +0200 (CEST) Received: from dude.automatvapen.se (81-229-112-193-no21.tbcn.telia.com [81.229.112.193]) by smtp3-2-sn3.vrr.skanova.net (Postfix) with ESMTP id 3FD2437E45; Thu, 28 Sep 2006 08:12:32 +0200 (CEST) From: Joel Dahl To: Eric Anholt In-Reply-To: <200609270638.k8R6csJ0044991@repoman.freebsd.org> References: <200609270638.k8R6csJ0044991@repoman.freebsd.org> Content-Type: multipart/mixed; boundary="=-9WiPoL6ukAE690k85eJA" Date: Thu, 28 Sep 2006 08:12:32 +0200 Message-Id: <1159423952.671.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_i810.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, 28 Sep 2006 06:12:38 -0000 --=-9WiPoL6ukAE690k85eJA Content-Type: text/plain Content-Transfer-Encoding: 7bit On Wed, 2006-09-27 at 06:38 +0000, Eric Anholt wrote: > anholt 2006-09-27 06:38:54 UTC > > FreeBSD src repository > > Modified files: > sys/pci agp_i810.c > Log: > Add support for 945G/GM AGP chipsets. > > The key problem was that the aperture size detection using the MSAC bit > doesn't work -- the bit appears to be set even when it shouldn't be. Linux > takes a different approach, testing for a bit of the GMADR (PCIR_BAR(2)) being > set. However, as I don't think that's a safe way to test aperture size, we > just allocate the resource and check its size. This also pointed out that > agp_generic_attach hadn't been allocating our aperture resource, which may > have caused problems in some cases. > > Also corrected is a minor copy-and-pasteo in an error case. Hmm, I have a HP NX7400 laptop with an Intel i945 chipset, and it's running a very fresh current (GENERIC, no changes made whatsoever). However, I see the following in my dmesg when I start X (I *think* it started appearing just after your commit to agp_i810.c): drm0: on vgapci0 info: [drm] AGP at 0xf4400000 0MB info: [drm] Initialized i915 1.5.0 20060119 malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d454ca58,c2bc15b0,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create +0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc +0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl +0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 It spits out a lot of this stuff (attached). -- Joel --=-9WiPoL6ukAE690k85eJA Content-Disposition: attachment; filename=dmesg.new Content-Type: text/plain; name=dmesg.new; charset=us-ascii Content-Transfer-Encoding: 7bit ata0: on atapci0 ata1: on atapci0 atapci1: port 0x13f0-0x13f7,0x15f4-0x15f7,0x1370-0x1377,0x1574-0x1577,0x40d0-0x40df mem 0xf4585000-0xf45853ff irq 17 at device 31.2 on pci0 atapci1: AHCI Version 01.10 controller with 4 ports detected ata2: on atapci1 ata3: on atapci1 ata4: on atapci1 ata5: on atapci1 battery0: on acpi0 battery1: on acpi0 acpi_acad0: on acpi0 acpi_button0: on acpi0 acpi_lid0: on acpi0 acpi_tz0: on acpi0 acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz1: on acpi0 acpi_tz2: on acpi0 acpi_tz3: on acpi0 acpi_tz4: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse, device ID 3 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xcffff pnpid ORM0000 on isa0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ppc0: [GIANT-LOCKED] sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> 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 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 8250 or not responding sio0: [FAST] 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 ugen0: on uhub0 Timecounters tick every 1.000 msec acd0: DVDR at ata0-master PIO4 acpi_tz0: _CRT value is absurd, ignored (256.0C) ad4: 76319MB at ata2-master SATA150 SMP: AP CPU #1 Launched! Trying to mount root from ufs:/dev/ad4s2a drm0: on vgapci0 info: [drm] AGP at 0xf4400000 0MB info: [drm] Initialized i915 1.5.0 20060119 malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d454ca58,c2bc15b0,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f8,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(6,c09d2380,2,c2bc15b0,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(4,c09d2380,2,5,c2bc15b0,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0xf0 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca04,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,5,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f0,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c25c9550,6,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04780) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,c2bc15b0,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(d,c09d2380,2,c094a85f,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(13,c09d2380,2,c094a86c,c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c25ef0f0,d,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04740) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,c,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c094a9a8,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(12,c09d2380,2,c094a996,b,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c25ef780,c,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04700) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,b,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(10,c09d2380,2,c094a9ca,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(16,c09d2380,2,c094a9b4,f,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c2815250,10,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c046c0) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 acpi_tz0: _CRT value is absurd, ignored (256.0C) ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,f,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(e,c09d2380,2,c094a9ee,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(14,c09d2380,2,c094a9da,d,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c283d1d0,e,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04680) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(e,c09d2380,2,c094aa12,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(16,c09d2380,2,c094a9fc,d,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c27267d0,e,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04640) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(f,c09d2380,2,c094aa49,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,2) at uma_zalloc_arg+0x41 malloc(29,c09d2380,2,c094aa20,e,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c283d3b0,f,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04600) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,e,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(8,c09d2380,2,c094aa58,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,7,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c283d380,8,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04580) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,7,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(a,c09d2380,2,c091d672,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,9,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c2815210,a,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04540) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,9,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(9,c09d2380,2,c094d56a,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,8,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c27268d0,9,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04500) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz0: _CRT value is absurd, ignored (256.0C) --=-9WiPoL6ukAE690k85eJA-- From owner-cvs-src@FreeBSD.ORG Thu Sep 28 07:03:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7F1416A417; Thu, 28 Sep 2006 07:03:04 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2-3.pacific.net.au [61.8.2.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B15C43D49; Thu, 28 Sep 2006 07:03:04 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout2.pacific.net.au (Postfix) with ESMTP id 8119C702EE; Thu, 28 Sep 2006 17:03:02 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8S730eU016367; Thu, 28 Sep 2006 17:03:01 +1000 Date: Thu, 28 Sep 2006 17:02:59 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: John Baldwin In-Reply-To: <200609271752.57082.jhb@freebsd.org> Message-ID: <20060928170249.G690@epsplex.bde.org> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271710.51869.jhb@freebsd.org> <20060927212949.GB83490@rambler-co.ru> <200609271752.57082.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 28 Sep 2006 07:03:04 -0000 On Wed, 27 Sep 2006, John Baldwin wrote: > On Wednesday 27 September 2006 17:29, Ruslan Ermilov wrote: >> On Wed, Sep 27, 2006 at 05:10:51PM -0400, John Baldwin wrote: >>> I still think doing this (via IOCPARM_IVAL()) is best and is probably a > much >>> smaller diff. >>> >> You don't consider that many ioctls are initiated inside the kernel, >> and this kernel code already uses (and passes) pointers to "int". >> While we could fix all of our kernel (and my first patch did exactly >> this), it's 1) very inconvenient, and 2) we cannot fix third-party >> kernel code this way. > > Could you avoid IOWINT by just assuming that any _IO() ioctl is getting an int > as the arg? If an ioctl doesn't use the arg, then you don't lose anything.. No -- see ru@'s reply. > do we have any ioctl's that use the arg directly but not as an int? The > ioctl(2) manpage implies that 'data' is either a pointer or an int. If you > go this route, you avoid changing all the ioctl values, basically just assume > that IOC_VOID means the argument is an int. The point of changing all the "void int" ioctls that actually pass an int to use _IOWINT() was to get away from the horrible (kernel) API and (user and kernel) ABI for them. The API is so horrible that there were no instances of correct use of it. The complications for using it are now mostly handled in IOCPARM_IVAL(), but we wanted to inhibit future uses of "void int" so so changed the ABI so that new (user) binaries use _IOWINT(). The ABI is still horrible because there aren't enough bits to encode the types in a nice way. Bruce From owner-cvs-src@FreeBSD.ORG Thu Sep 28 07:22:48 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 479B516A40F; Thu, 28 Sep 2006 07:22:48 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av11-1-sn2.hy.skanova.net (av11-1-sn2.hy.skanova.net [81.228.8.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 853ED43D5D; Thu, 28 Sep 2006 07:22:41 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av11-1-sn2.hy.skanova.net (Postfix, from userid 502) id 590813847E; Thu, 28 Sep 2006 09:22:40 +0200 (CEST) Received: from smtp4-2-sn2.hy.skanova.net (smtp4-2-sn2.hy.skanova.net [81.228.8.93]) by av11-1-sn2.hy.skanova.net (Postfix) with ESMTP id 4AE6438455; Thu, 28 Sep 2006 09:22:40 +0200 (CEST) Received: from dude.automatvapen.se (81-229-112-193-no21.tbcn.telia.com [81.229.112.193]) by smtp4-2-sn2.hy.skanova.net (Postfix) with ESMTP id 2661737E46; Thu, 28 Sep 2006 09:22:40 +0200 (CEST) From: Joel Dahl To: Eric Anholt In-Reply-To: <1159423952.671.11.camel@localhost> References: <200609270638.k8R6csJ0044991@repoman.freebsd.org> <1159423952.671.11.camel@localhost> Content-Type: text/plain Date: Thu, 28 Sep 2006 09:22:40 +0200 Message-Id: <1159428160.671.35.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_i810.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, 28 Sep 2006 07:22:48 -0000 On Thu, 2006-09-28 at 08:12 +0200, Joel Dahl wrote: > On Wed, 2006-09-27 at 06:38 +0000, Eric Anholt wrote: > > anholt 2006-09-27 06:38:54 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/pci agp_i810.c > > Log: > > Add support for 945G/GM AGP chipsets. > > > > The key problem was that the aperture size detection using the MSAC bit > > doesn't work -- the bit appears to be set even when it shouldn't be. Linux > > takes a different approach, testing for a bit of the GMADR (PCIR_BAR(2)) being > > set. However, as I don't think that's a safe way to test aperture size, we > > just allocate the resource and check its size. This also pointed out that > > agp_generic_attach hadn't been allocating our aperture resource, which may > > have caused problems in some cases. > > > > Also corrected is a minor copy-and-pasteo in an error case. > > Hmm, I have a HP NX7400 laptop with an Intel i945 chipset, and it's > running a very fresh current (GENERIC, no changes made whatsoever). > However, I see the following in my dmesg when I start X (I *think* it > started appearing just after your commit to agp_i810.c): Ok, I can confirm that reverting back to revision 1.38 of agp_i810.c fixes the problem. -- Joel From owner-cvs-src@FreeBSD.ORG Thu Sep 28 07:32:30 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38FF816A47C; Thu, 28 Sep 2006 07:32:30 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42CC343D4C; Thu, 28 Sep 2006 07:32:28 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5D3A9.dip.t-dialin.net [84.165.211.169]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k8S77R7K079332; Thu, 28 Sep 2006 09:07:27 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (webmail.Leidinger.net [192.168.1.102]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k8S7WLIp097680; Thu, 28 Sep 2006 09:32:21 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from psbru.cec.eu.int (psbru.cec.eu.int [158.169.131.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Thu, 28 Sep 2006 09:31:50 +0200 Message-ID: <20060928093150.1k8m1mtu8808ocok@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Thu, 28 Sep 2006 09:31:50 +0200 From: Alexander Leidinger To: Robert Watson References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> <200609271338.22284.jhb@freebsd.org> <20060927230635.D73166@fledge.watson.org> In-Reply-To: <20060927230635.D73166@fledge.watson.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-Virus-Scanned: by amavisd-new Cc: Maxim Sobolev , Scott Long , src-committers@freebsd.org, John Baldwin , cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.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, 28 Sep 2006 07:32:30 -0000 Quoting Robert Watson (from Wed, 27 Sep 2006 =20 23:08:32 +0100 (BST)): > > On Wed, 27 Sep 2006, John Baldwin wrote: >> My point is that we need a notion of taking CPUs offline and online =20 >> with scheudler hooks, instead of exporting a simple x86-specific =20 >> bitmask. Right now we don't notify the schedulers when a CPU goes =20 >> offline so that they can try to do sensible things with pinned and =20 >> bound threads, etc. Instead, they just have to "notice" which is =20 >> rediculously lame. > > It's pretty clear that if we're going to take the hypervisor + dynamic > reconfiguration thing seriously, we need a structured notion of adding > and removing CPUs from the active CPU pool, including things like event > handlers so that subsystems can shut down operations on the CPU. For > example, UMA needs a chance to drain per-CPU caches of various zones, > services that have pinned threads on the CPU will need to decide how to > deal with that, etc. It's work I'd very much like to see happen, and > until it's done we basically need to make sure that CPUs either exist > from boot and never cease existing, or don't exist at boot and are > never used. Anyone out there who can write up a nice entry for the ideas list for =20 this? Some TODO items in it would be nice. Bye, Alexander. --=20 Sometimes it happens. People just explode. Natural causes. =09=09-- Repo Man http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-cvs-src@FreeBSD.ORG Thu Sep 28 08:36:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5887D16A415; Thu, 28 Sep 2006 08:36:11 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A82E43D6B; Thu, 28 Sep 2006 08:36:08 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S8a8sX052808; Thu, 28 Sep 2006 08:36:08 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S8a8lU052807; Thu, 28 Sep 2006 08:36:08 GMT (envelope-from ru) Message-Id: <200609280836.k8S8a8lU052807@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 28 Sep 2006 08:36: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/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: Thu, 28 Sep 2006 08:36:11 -0000 ru 2006-09-28 08:36:08 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Retire macros for the old kernel memory allocator. Submitted by: bde Revision Changes Path 1.276 +0 -22 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Thu Sep 28 08:51:58 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C188A16A407; Thu, 28 Sep 2006 08:51:58 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 262C343D49; Thu, 28 Sep 2006 08:51:57 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.13.8/8.13.6) with ESMTP id k8S8pvYn003459; Thu, 28 Sep 2006 12:51:57 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Thu, 28 Sep 2006 12:51:57 +0400 (MSD) From: Dmitry Morozovsky To: Xin LI In-Reply-To: <200609280159.k8S1xVkv097855@repoman.freebsd.org> Message-ID: <20060928125114.J3187@woozle.rinet.ru> References: <200609280159.k8S1xVkv097855@repoman.freebsd.org> X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (woozle.rinet.ru [0.0.0.0]); Thu, 28 Sep 2006 12:51:57 +0400 (MSD) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/defaults periodic.conf src/share/man/man5 periodic.conf.5 src/etc/periodic/weekly 120.clean-kvmdb 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: Thu, 28 Sep 2006 08:51:58 -0000 On Thu, 28 Sep 2006, Xin LI wrote: XL> delphij 2006-09-28 01:59:30 UTC XL> XL> FreeBSD src repository XL> XL> Modified files: (Branch: RELENG_6) XL> etc/defaults periodic.conf XL> share/man/man5 periodic.conf.5 XL> etc/periodic/weekly Makefile XL> Removed files: (Branch: RELENG_6) XL> etc/periodic/weekly 120.clean-kvmdb XL> Log: XL> MFC: The kvm_mkdb(8) is long dead. Shouldn't 120.clean-kvmdb be added to ObsoleFiles? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-src@FreeBSD.ORG Thu Sep 28 09:25:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BCF316A412; Thu, 28 Sep 2006 09:25:10 +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 5E66843D45; Thu, 28 Sep 2006 09:25:06 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 2039AEB1935; Thu, 28 Sep 2006 17:25:02 +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 lYU9qHBtNtq6; Thu, 28 Sep 2006 17:25:00 +0800 (CST) Received: from [10.217.12.201] (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 0099CEB0BFF; Thu, 28 Sep 2006 17:24:57 +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=cLnTh4idC1HeTASwlSVCsnxWYmiSjYryFiK76mqG4Bco7iQSP5j8LXbmTDuVsLg9+ 3gbwGfTk9fkIxmBvDrJCg== Message-ID: <451B94D0.5090600@delphij.net> Date: Thu, 28 Sep 2006 17:24:32 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Dmitry Morozovsky References: <200609280159.k8S1xVkv097855@repoman.freebsd.org> <20060928125114.J3187@woozle.rinet.ru> In-Reply-To: <20060928125114.J3187@woozle.rinet.ru> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig1BD5A47A81CE70981F26C296" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, Xin LI , cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/defaults periodic.conf src/share/man/man5 periodic.conf.5 src/etc/periodic/weekly 120.clean-kvmdb 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: Thu, 28 Sep 2006 09:25:10 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig1BD5A47A81CE70981F26C296 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Dmitry Morozovsky wrote: > On Thu, 28 Sep 2006, Xin LI wrote: >=20 > XL> delphij 2006-09-28 01:59:30 UTC > XL>=20 > XL> FreeBSD src repository > XL>=20 > XL> Modified files: (Branch: RELENG_6) > XL> etc/defaults periodic.conf=20 > XL> share/man/man5 periodic.conf.5=20 > XL> etc/periodic/weekly Makefile=20 > XL> Removed files: (Branch: RELENG_6) > XL> etc/periodic/weekly 120.clean-kvmdb=20 > XL> Log: > XL> MFC: The kvm_mkdb(8) is long dead. >=20 > Shouldn't 120.clean-kvmdb be added to ObsoleFiles? Yes it should. I will add it to -HEAD and request for re@'s approval. Thanks for pointing this out. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig1BD5A47A81CE70981F26C296 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.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFG5TQOfuToMruuMARA3LfAJwLl8j3FXe55XBtIpQ0LPvd5RLq8QCdGBFX GvUs2H8Mh2fXayHFubkIq+A= =jYnv -----END PGP SIGNATURE----- --------------enig1BD5A47A81CE70981F26C296-- From owner-cvs-src@FreeBSD.ORG Thu Sep 28 09:32:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F400116A4D0; Thu, 28 Sep 2006 09:32:22 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A616643D49; Thu, 28 Sep 2006 09:32:22 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S9WME7068223; Thu, 28 Sep 2006 09:32:22 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S9WMid068222; Thu, 28 Sep 2006 09:32:22 GMT (envelope-from delphij) Message-Id: <200609280932.k8S9WMid068222@repoman.freebsd.org> From: Xin LI Date: Thu, 28 Sep 2006 09:32: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 ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 09:32:23 -0000 delphij 2006-09-28 09:32:22 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Remove 120.clean-kvmdb. MFC After: 1 day Revision Changes Path 1.52 +2 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Thu Sep 28 10:02:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0CDC16A47C; Thu, 28 Sep 2006 10:02:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 953EB43D70; Thu, 28 Sep 2006 10:02:04 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SA24xx070192; Thu, 28 Sep 2006 10:02:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SA24gP070191; Thu, 28 Sep 2006 10:02:04 GMT (envelope-from ru) Message-Id: <200609281002.k8SA24gP070191@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 28 Sep 2006 10:02: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/boot/ficl Makefile src/sys/boot/i386 Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 10:02:14 -0000 ru 2006-09-28 10:02:04 UTC FreeBSD src repository Modified files: sys/boot/ficl Makefile sys/boot/i386 Makefile.inc Log: Add -march=i386 to fix amd64 build by generating the same code as i386 would do. Revision Changes Path 1.44 +1 -1 src/sys/boot/ficl/Makefile 1.12 +1 -1 src/sys/boot/i386/Makefile.inc From owner-cvs-src@FreeBSD.ORG Thu Sep 28 10:04:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C566016A494; Thu, 28 Sep 2006 10:04:13 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 977CE43D55; Thu, 28 Sep 2006 10:04:08 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SA48vY071518; Thu, 28 Sep 2006 10:04:08 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SA480d071517; Thu, 28 Sep 2006 10:04:08 GMT (envelope-from bms) Message-Id: <200609281004.k8SA480d071517@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 10:04: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/sys/netinet in.c in_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: Thu, 28 Sep 2006 10:04:13 -0000 bms 2006-09-28 10:04:08 UTC FreeBSD src repository Modified files: sys/netinet in.c in_var.h Log: The IPv4 code should clean up multicast group state when an interface goes away. Without this change, it leaks in_multi (and often ether_multi state) if many clonable interfaces are created and destroyed in quick succession. The concept of this fix is borrowed from KAME. Detailed information about this behaviour, as well as test cases, are available in the PR. PR: kern/78227 MFC after: 1 week Revision Changes Path 1.94 +31 -2 src/sys/netinet/in.c 1.59 +2 -0 src/sys/netinet/in_var.h From owner-cvs-src@FreeBSD.ORG Thu Sep 28 12:21:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0AA816A415; Thu, 28 Sep 2006 12:21:09 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C18C43D6E; Thu, 28 Sep 2006 12:21:09 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCL9UH082617; Thu, 28 Sep 2006 12:21:09 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCL9cw082616; Thu, 28 Sep 2006 12:21:09 GMT (envelope-from bms) Message-Id: <200609281221.k8SCL9cw082616@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 12:21: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/netinet ip_mroute.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, 28 Sep 2006 12:21:09 -0000 bms 2006-09-28 12:21:09 UTC FreeBSD src repository Modified files: sys/netinet ip_mroute.c Log: Fix the IPv4 multicast routing detach path. On interface detach whilst the MROUTER is running, the system would panic as described in the PR. The fix in the PR is a good start, however, the other state associated with the multicast forwarding cache has to be freed in order to avoid leaking memory and other possible panics. More care and attention is needed in this area. PR: kern/82882 MFC after: 1 week Revision Changes Path 1.119 +87 -5 src/sys/netinet/ip_mroute.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 12:26:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85D9216A412; Thu, 28 Sep 2006 12:26:36 +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 BCA4343D5A; Thu, 28 Sep 2006 12:26:35 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8SCQTp7024272; Thu, 28 Sep 2006 06:26:34 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451BBF75.3050009@samsco.org> Date: Thu, 28 Sep 2006 06:26:29 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200609281002.k8SA24gP070191@repoman.freebsd.org> In-Reply-To: <200609281002.k8SA24gP070191@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/ficl Makefile src/sys/boot/i386 Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:26:36 -0000 Ruslan Ermilov wrote: > ru 2006-09-28 10:02:04 UTC > > FreeBSD src repository > > Modified files: > sys/boot/ficl Makefile > sys/boot/i386 Makefile.inc > Log: > Add -march=i386 to fix amd64 build by generating the same code > as i386 would do. > > Revision Changes Path > 1.44 +1 -1 src/sys/boot/ficl/Makefile > 1.12 +1 -1 src/sys/boot/i386/Makefile.inc Thanks, I fell asleep before I finished fixing this =-) Scott From owner-cvs-src@FreeBSD.ORG Thu Sep 28 12:33:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B29416A407; Thu, 28 Sep 2006 12:33:37 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3752E43D46; Thu, 28 Sep 2006 12:33:37 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCXbqL083251; Thu, 28 Sep 2006 12:33:37 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCXb07083250; Thu, 28 Sep 2006 12:33:37 GMT (envelope-from ru) Message-Id: <200609281233.k8SCXb07083250@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 28 Sep 2006 12:33: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/tools/tools/find-sb Makefile find-sb.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, 28 Sep 2006 12:33:37 -0000 ru 2006-09-28 12:33:36 UTC FreeBSD src repository Modified files: tools/tools/find-sb Makefile find-sb.c Log: Initializate "offset" variable to zero; otherwise, if not using the -o option, it might contain garbage. MFC after: 1 day Revision Changes Path 1.3 +2 -0 src/tools/tools/find-sb/Makefile 1.4 +1 -0 src/tools/tools/find-sb/find-sb.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:00:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D71D016A4A0; Thu, 28 Sep 2006 13:00:51 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9189C43D5F; Thu, 28 Sep 2006 13:00:51 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD0pGA092622; Thu, 28 Sep 2006 13:00:51 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD0pdb092621; Thu, 28 Sep 2006 13:00:51 GMT (envelope-from bms) Message-Id: <200609281300.k8SD0pdb092621@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 13:00: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 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: Thu, 28 Sep 2006 13:00:52 -0000 bms 2006-09-28 13:00:51 UTC FreeBSD src repository Modified files: . UPDATING Log: Note the removal of tcpslice Revision Changes Path 1.457 +3 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:02:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A79016A403; Thu, 28 Sep 2006 13:02:37 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BB6043D5A; Thu, 28 Sep 2006 13:02:37 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD2big092866; Thu, 28 Sep 2006 13:02:37 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD2b9C092865; Thu, 28 Sep 2006 13:02:37 GMT (envelope-from cperciva) Message-Id: <200609281302.k8SD2b9C092865@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:02:37 +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/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c src/crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.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, 28 Sep 2006 13:02:37 -0000 cperciva 2006-09-28 13:02:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: re (htimsnek) Revision Changes Path 1.1.1.2.10.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.12.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.5.2.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.9.2.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.7.2.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.12.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.8.2.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.11.2.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.13.2.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.12.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.13.2.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.14.2.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.12.2.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:03:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8544B16A523; Thu, 28 Sep 2006 13:03:15 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F68C43D55; Thu, 28 Sep 2006 13:03:15 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD3Ef4094255; Thu, 28 Sep 2006 13:03:14 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD3Euc094254; Thu, 28 Sep 2006 13:03:14 GMT (envelope-from cperciva) Message-Id: <200609281303.k8SD3Euc094254@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:03:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_1 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.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, 28 Sep 2006 13:03:15 -0000 cperciva 2006-09-28 13:03:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_1) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.22.2.10 +5 -0 src/UPDATING 1.1.1.2.14.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.16.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.5.6.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.9.6.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.7.6.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.16.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.8.6.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.11.6.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.13.6.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.16.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.13.6.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.14.6.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.12.6.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.69.2.11.2.10 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:03:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC20816A4B3; Thu, 28 Sep 2006 13:03:42 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40ADF43D49; Thu, 28 Sep 2006 13:03:42 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD3gZQ094432; Thu, 28 Sep 2006 13:03:42 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD3gfi094429; Thu, 28 Sep 2006 13:03:42 GMT (envelope-from cperciva) Message-Id: <200609281303.k8SD3gfi094429@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:03:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.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, 28 Sep 2006 13:03:43 -0000 cperciva 2006-09-28 13:03:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.3.2.18 +5 -0 src/UPDATING 1.1.1.2.12.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.14.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.5.4.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.9.4.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.7.4.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.14.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.8.4.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.11.4.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.13.4.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.14.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.13.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.14.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.12.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.69.2.8.2.14 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:04:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBC7A16A403; Thu, 28 Sep 2006 13:04:05 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3142B43D7C; Thu, 28 Sep 2006 13:03:58 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD3wZJ094559; Thu, 28 Sep 2006 13:03:58 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD3wpi094558; Thu, 28 Sep 2006 13:03:58 GMT (envelope-from cperciva) Message-Id: <200609281303.k8SD3wpi094558@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:03:57 +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/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c src/crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.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, 28 Sep 2006 13:04:06 -0000 cperciva 2006-09-28 13:03:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.2.4.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.6.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.6.2 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.4.2 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.6.2 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.6.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.4.2 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.4.2 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.4.2 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.6.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.2.2 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.2.2 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.2.2 +1 -1 src/crypto/openssl/ssl/ssl_lib.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:04:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E292716A40F; Thu, 28 Sep 2006 13:04:19 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55CC243D67; Thu, 28 Sep 2006 13:04:16 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD4GLv094729; Thu, 28 Sep 2006 13:04:16 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD4GqQ094728; Thu, 28 Sep 2006 13:04:16 GMT (envelope-from cperciva) Message-Id: <200609281304.k8SD4GqQ094728@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:04:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_5 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.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, 28 Sep 2006 13:04:20 -0000 cperciva 2006-09-28 13:04:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_5) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.35.2.6 +5 -0 src/UPDATING 1.1.1.2.16.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.18.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.6.1.4.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.4.1.4.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.6.1.4.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.18.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.4.1.4.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.4.1.4.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.4.1.4.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.18.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.2.1.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.2.1.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.2.1.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.62.2.21.2.8 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:04:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6003B16A51C; Thu, 28 Sep 2006 13:04:49 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C99443D77; Thu, 28 Sep 2006 13:04:47 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD4lGK094910; Thu, 28 Sep 2006 13:04:47 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD4lAr094909; Thu, 28 Sep 2006 13:04:47 GMT (envelope-from cperciva) Message-Id: <200609281304.k8SD4lAr094909@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:04:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_4 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.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, 28 Sep 2006 13:04:49 -0000 cperciva 2006-09-28 13:04:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_4) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.24.2.29 +5 -0 src/UPDATING 1.1.1.2.8.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.10.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.6.1.2.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.4.1.2.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.6.1.2.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.10.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.4.1.2.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.4.1.2.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.4.1.2.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.10.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.2.1.2.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.2.1.2.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.2.1.2.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.62.2.18.2.25 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:05:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA54316A529; Thu, 28 Sep 2006 13:05:13 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8734943D7F; Thu, 28 Sep 2006 13:05:09 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD59nQ095092; Thu, 28 Sep 2006 13:05:09 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD59o1095091; Thu, 28 Sep 2006 13:05:09 GMT (envelope-from cperciva) Message-Id: <200609281305.k8SD59o1095091@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:05:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_3 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.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, 28 Sep 2006 13:05:14 -0000 cperciva 2006-09-28 13:05:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_3) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.13.2.38 +5 -0 src/UPDATING 1.1.1.2.6.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.8.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.8.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.6.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.8.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.8.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.6.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.6.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.6.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.8.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.62.2.15.2.40 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:06:07 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A8AF16A494; Thu, 28 Sep 2006 13:06:07 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ABA143D5F; Thu, 28 Sep 2006 13:05:59 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD5xQ4095265; Thu, 28 Sep 2006 13:05:59 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD5xMS095264; Thu, 28 Sep 2006 13:05:59 GMT (envelope-from cperciva) Message-Id: <200609281305.k8SD5xMS095264@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:05:59 +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/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c src/crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.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, 28 Sep 2006 13:06:07 -0000 cperciva 2006-09-28 13:05:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.1.2.3 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.1.2.5 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.4 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.8 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.5 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.4 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.8 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.2.2.9 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.2.4.9 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.1.2.4 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.2.2.9 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.1.2.10 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.9 +1 -1 src/crypto/openssl/ssl/ssl_lib.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:06:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 415AE16A4A7; Thu, 28 Sep 2006 13:06:27 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC3743D5E; Thu, 28 Sep 2006 13:06:24 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD6O2C095449; Thu, 28 Sep 2006 13:06:24 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD6Ox5095448; Thu, 28 Sep 2006 13:06:24 GMT (envelope-from cperciva) Message-Id: <200609281306.k8SD6Ox5095448@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:06:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_11 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.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, 28 Sep 2006 13:06:27 -0000 cperciva 2006-09-28 13:06:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_4_11) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.73.2.91.2.24 +5 -0 src/UPDATING 1.1.1.1.2.2.6.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.1.2.4.8.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.3.8.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.7.6.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.4.8.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.3.8.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.7.6.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.2.2.8.4.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.2.4.8.4.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.1.2.3.8.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.2.2.8.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.1.2.9.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.8.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.44.2.39.2.27 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:54:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5907716A47B; Thu, 28 Sep 2006 13:54:10 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [194.58.105.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDE0243D86; Thu, 28 Sep 2006 13:54:09 +0000 (GMT) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.44 (FreeBSD)) id 1GSwL1-000CMt-RF; Thu, 28 Sep 2006 17:54:08 +0400 Date: Thu, 28 Sep 2006 17:54:07 +0400 From: Slawa Olhovchenkov To: Paolo Pisati Message-ID: <20060928135407.GB6453%slw@zxy.spb.ru> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609262326.k8QNQrtW098027@repoman.freebsd.org> User-Agent: Mutt/1.5.11 X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:54:10 -0000 On Tue, Sep 26, 2006 at 11:26:53PM +0000, Paolo Pisati wrote: > During startup (and after every HUP signal) user land applications running > the new libalias will try to read a file in /etc called libalias.conf: > that file contains the list of modules to load. I think handle HUP signal inside library (for re-reading config) is bad idea. From owner-cvs-src@FreeBSD.ORG Thu Sep 28 13:59:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B94BD16A407; Thu, 28 Sep 2006 13:59:26 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7057E43D82; Thu, 28 Sep 2006 13:59:26 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SDxQVr098102; Thu, 28 Sep 2006 13:59:26 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SDxQA7098101; Thu, 28 Sep 2006 13:59:26 GMT (envelope-from andre) Message-Id: <200609281359.k8SDxQA7098101@repoman.freebsd.org> From: Andre Oppermann Date: Thu, 28 Sep 2006 13:59: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/sys/netinet tcp_output.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, 28 Sep 2006 13:59:26 -0000 andre 2006-09-28 13:59:26 UTC FreeBSD src repository Modified files: sys/netinet tcp_output.c Log: When doing TSO correctly do the check to prevent a maximum sized IP packet from overflowing. Revision Changes Path 1.119 +1 -1 src/sys/netinet/tcp_output.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 14:19:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CE4D16A407; Thu, 28 Sep 2006 14:19:56 +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 7A51443D78; Thu, 28 Sep 2006 14:19:55 +0000 (GMT) (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 k8SEJqmQ080677 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 28 Sep 2006 18:19:53 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8SEJqEZ080676; Thu, 28 Sep 2006 18:19:52 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Thu, 28 Sep 2006 18:19:52 +0400 From: Gleb Smirnoff To: Slawa Olhovchenkov Message-ID: <20060928141952.GZ59833@FreeBSD.org> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> <20060928135407.GB6453%slw@zxy.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20060928135407.GB6453%slw@zxy.spb.ru> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Paolo Pisati Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:19:56 -0000 On Thu, Sep 28, 2006 at 05:54:07PM +0400, Slawa Olhovchenkov wrote: S> > During startup (and after every HUP signal) user land applications running S> > the new libalias will try to read a file in /etc called libalias.conf: S> > that file contains the list of modules to load. S> S> I think handle HUP signal inside library (for re-reading config) is S> bad idea. It isn't handled in the library. Paolo just suggests to use HUP in the program for reconfiguration. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Thu Sep 28 14:44:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 343BF16A492; Thu, 28 Sep 2006 14:44:35 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14D6343DAC; Thu, 28 Sep 2006 14:44:17 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SEiGWA002819; Thu, 28 Sep 2006 14:44:16 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SEiG2O002818; Thu, 28 Sep 2006 14:44:16 GMT (envelope-from bmah) Message-Id: <200609281444.k8SEiG2O002818@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 14:44: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/release/doc/en_US.ISO8859-1/relnotes/common new.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: Thu, 28 Sep 2006 14:44:35 -0000 bmah 2006-09-28 14:44:16 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: id(1) -a (+MFC), tcpslice removed, ARM binary generation. Updated release notes: KDE 3.5.4. Revision Changes Path 1.976 +13 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 14:52:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09B9616A415; Thu, 28 Sep 2006 14:52:46 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E546E43D78; Thu, 28 Sep 2006 14:52:31 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SEphcq003256; Thu, 28 Sep 2006 14:51:43 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SEphJ9003255; Thu, 28 Sep 2006 14:51:43 GMT (envelope-from bmah) Message-Id: <200609281451.k8SEphJ9003255@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 14:51: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/release/doc/en_US.ISO8859-1/relnotes/common new.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: Thu, 28 Sep 2006 14:52:46 -0000 bmah 2006-09-28 14:51:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: id(1) -A, KDE 3.5.4. Approved by: re (implicitly) Revision Changes Path 1.883.2.42 +5 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 14:56:42 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19F3616A494; Thu, 28 Sep 2006 14:56:42 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89F6343D53; Thu, 28 Sep 2006 14:56:33 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8SEuUpx005561; Thu, 28 Sep 2006 10:56:31 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Thu, 28 Sep 2006 10:56:27 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271752.57082.jhb@freebsd.org> <20060927221251.GA35467@rambler-co.ru> In-Reply-To: <20060927221251.GA35467@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609281056.28105.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 28 Sep 2006 10:56:31 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1949/Thu Sep 28 09:03:14 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 28 Sep 2006 14:56:42 -0000 On Wednesday 27 September 2006 18:12, Ruslan Ermilov wrote: > On Wed, Sep 27, 2006 at 05:52:56PM -0400, John Baldwin wrote: > > Could you avoid IOWINT by just assuming that any _IO() ioctl is getting an int > > as the arg? > > > There are some _IO() ioctls that pass a pointer to variable sized data, > and their ioctl handlers to uiocopy'ing rather than ioctl(). See > sys/cam/scsi/scsi_ses.c, SESIOC_* ioctls for one such example. I think these are just broken and should be fixed. :) SESIOC_ENCSTAT should be IOW(..., ses_encstat) for example. The two troublesome ones GETNOBJ and GETOBJMAP are broken by design. Somehow they need to tell userland how much they copied out, and they also need to let userland specify the buffer length to avoid buffer overflows. Thus, they need to be using a IOWR with a structure containing a pointer and length (modify the length on return if needed) to avoid problems anyway. I'd be all for just fixing the few that abuse _IO to treat the arg as anything other than an int and assume _IO means an int arg for 7.x and future. The solution for 6.x might be uglier, but for the future we should fix the abusers and avoid adding the _IOWINT hack. > > If an ioctl doesn't use the arg, then you don't lose anything.. > > do we have any ioctl's that use the arg directly but not as an int? > > > Unfortunately yes. Are there any others outside of SES? How many? If it's a small list, then let's fix them. The SES ones are broken as an API anyway as mentioned above, and if other ioctl's are copying out a variable amount of data w/o allowing for buffer lengths or telling userland how much it copied, they are also fundamentally broken as well. > > The > > ioctl(2) manpage implies that 'data' is either a pointer or an int. If you > > go this route, you avoid changing all the ioctl values, basically just assume > > that IOC_VOID means the argument is an int. > > > That has been considered and found impossible due to the above. > We also don't have any spare bits left in the ioctl type field, > so IOC_VOID with size == sizeof(int) have been used to implement > _IOWINT(). IOC_VOID is incorrect name, the argument should either > be a pointer or an "int", even when not used by ioctl(). Some > ioctl() calls to "void" ioctls in userland don't pass a third > argument. I think on architectures that pass arguments on the > stack (such as i386) this causes return address to be accessed > instead of the argument value. Ioctls that are "void" should > either pass "0" or "NULL". It will be stack (or register) garbage yes, but unread stack (or register) garbage. :) -- John Baldwin From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:10:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A3ED16A412; Thu, 28 Sep 2006 15:10:39 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2125243D72; Thu, 28 Sep 2006 15:10:33 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFAX5E005366; Thu, 28 Sep 2006 15:10:33 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFAXdf005365; Thu, 28 Sep 2006 15:10:33 GMT (envelope-from bmah) Message-Id: <200609281510.k8SFAXdf005365@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:10: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/release/doc/en_US.ISO8859-1/errata 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: Thu, 28 Sep 2006 15:10:39 -0000 bmah 2006-09-28 15:10:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: SA-06:21.gzip, SA-06:23.openssl. Approved by: re (implicitly) Revision Changes Path 1.73.2.31 +14 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:13:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1152F16A415; Thu, 28 Sep 2006 15:13:01 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51AAA43D73; Thu, 28 Sep 2006 15:12:55 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFCt0s005542; Thu, 28 Sep 2006 15:12:55 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFCtUa005541; Thu, 28 Sep 2006 15:12:55 GMT (envelope-from bmah) Message-Id: <200609281512.k8SFCtUa005541@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:12:55 +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/release/doc/en_US.ISO8859-1/errata 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: Thu, 28 Sep 2006 15:13:01 -0000 bmah 2006-09-28 15:12:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.69.2.44 +14 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:17:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C3A316A403; Thu, 28 Sep 2006 15:17:17 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C8B43D7D; Thu, 28 Sep 2006 15:17:08 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFH8Zm005705; Thu, 28 Sep 2006 15:17:08 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFH8WQ005704; Thu, 28 Sep 2006 15:17:08 GMT (envelope-from bmah) Message-Id: <200609281517.k8SFH8WQ005704@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:17:08 +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/release/doc/en_US.ISO8859-1/errata 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: Thu, 28 Sep 2006 15:17:17 -0000 bmah 2006-09-28 15:17:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.1.2.133 +14 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:37:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A96316A407; Thu, 28 Sep 2006 15:37:00 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D535843D46; Thu, 28 Sep 2006 15:36:59 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFaxqf006831; Thu, 28 Sep 2006 15:36:59 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFaxrT006830; Thu, 28 Sep 2006 15:36:59 GMT (envelope-from bmah) Message-Id: <200609281536.k8SFaxrT006830@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:36: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/common new.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: Thu, 28 Sep 2006 15:37:00 -0000 bmah 2006-09-28 15:36:59 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.977 +11 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:42:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD00716A40F; Thu, 28 Sep 2006 15:42:03 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6330743D53; Thu, 28 Sep 2006 15:42:03 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFg3WH007092; Thu, 28 Sep 2006 15:42:03 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFg33O007091; Thu, 28 Sep 2006 15:42:03 GMT (envelope-from bmah) Message-Id: <200609281542.k8SFg33O007091@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:42:03 +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/doc/en_US.ISO8859-1/relnotes/common new.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: Thu, 28 Sep 2006 15:42:03 -0000 bmah 2006-09-28 15:42:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-06:21.gzip, SA-06:23.openssl. Approved by: re (implicitly) Revision Changes Path 1.883.2.43 +12 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:45:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0431F16A407; Thu, 28 Sep 2006 15:45:26 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B17B043D49; Thu, 28 Sep 2006 15:45:25 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFjPpt007275; Thu, 28 Sep 2006 15:45:25 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFjPaR007274; Thu, 28 Sep 2006 15:45:25 GMT (envelope-from bmah) Message-Id: <200609281545.k8SFjPaR007274@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:45:25 +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/release/doc/en_US.ISO8859-1/relnotes/common new.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: Thu, 28 Sep 2006 15:45:26 -0000 bmah 2006-09-28 15:45:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.761.2.69 +11 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:49:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00DEE16A403; Thu, 28 Sep 2006 15:49:26 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E4AB43D60; Thu, 28 Sep 2006 15:49:15 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFnFF2007422; Thu, 28 Sep 2006 15:49:15 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFnEOl007421; Thu, 28 Sep 2006 15:49:14 GMT (envelope-from bmah) Message-Id: <200609281549.k8SFnEOl007421@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:49:13 +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/release/doc/en_US.ISO8859-1/relnotes/common new.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: Thu, 28 Sep 2006 15:49:26 -0000 bmah 2006-09-28 15:49:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.22.2.438 +11 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 28 15:57:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 741EC16A4D0; Thu, 28 Sep 2006 15:57:18 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A801F43D7F; Thu, 28 Sep 2006 15:57:10 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFvAeW007897; Thu, 28 Sep 2006 15:57:10 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFvAou007896; Thu, 28 Sep 2006 15:57:10 GMT (envelope-from ume) Message-Id: <200609281557.k8SFvAou007896@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 28 Sep 2006 15:57: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.sbin/ppp server.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, 28 Sep 2006 15:57:18 -0000 ume 2006-09-28 15:57:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/ppp server.c Log: MFC 1.44: Listen to a control socket on an IPv4 as well through an IPv4-mapped IPv6 address. Approved by: re (kensmith) Revision Changes Path 1.43.2.1 +7 -0 src/usr.sbin/ppp/server.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 16:01:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C99B016A47E; Thu, 28 Sep 2006 16:01:53 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 810B943D45; Thu, 28 Sep 2006 16:01:53 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SG1rVU008145; Thu, 28 Sep 2006 16:01:53 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SG1rRN008144; Thu, 28 Sep 2006 16:01:53 GMT (envelope-from ume) Message-Id: <200609281601.k8SG1rRN008144@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 28 Sep 2006 16:01:53 +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/usr.sbin/ppp server.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, 28 Sep 2006 16:01:53 -0000 ume 2006-09-28 16:01:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/ppp server.c Log: MFC 1.44: Listen to a control socket on an IPv4 as well through an IPv4-mapped IPv6 address. Revision Changes Path 1.42.8.2 +7 -0 src/usr.sbin/ppp/server.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 16:02:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EDBA16A492; Thu, 28 Sep 2006 16:02:35 +0000 (UTC) (envelope-from roberto@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 984BD43D46; Thu, 28 Sep 2006 16:02:34 +0000 (GMT) (envelope-from roberto@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SG2YZq008202; Thu, 28 Sep 2006 16:02:34 GMT (envelope-from roberto@repoman.freebsd.org) Received: (from roberto@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SG2YFJ008201; Thu, 28 Sep 2006 16:02:34 GMT (envelope-from roberto) Message-Id: <200609281602.k8SG2YFJ008201@repoman.freebsd.org> From: Ollivier Robert Date: Thu, 28 Sep 2006 16:02:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: DMILLS Cc: Subject: cvs commit: src/contrib/ntp/include ntp_stdlib.h ntpd.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, 28 Sep 2006 16:02:35 -0000 roberto 2006-09-28 16:02:34 UTC FreeBSD src repository Modified files: (Branch: DMILLS) contrib/ntp/include ntp_stdlib.h ntpd.h Log: Fix compilation with gcc 4.1. This is imported on the vendor branch as it was applied in the mainstream source and a later complete import of 4.2.2p3 will complete the fix. Submitted by: kan Revision Changes Path 1.1.1.4 +2 -0 src/contrib/ntp/include/ntp_stdlib.h 1.1.1.5 +2 -0 src/contrib/ntp/include/ntpd.h From owner-cvs-src@FreeBSD.ORG Thu Sep 28 16:21:45 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79BD516A403; Thu, 28 Sep 2006 16:21:45 +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 91CAB43D45; Thu, 28 Sep 2006 16:21:44 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 6E08061DF; Thu, 28 Sep 2006 20:21:43 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 444EC6146; Thu, 28 Sep 2006 20:21:43 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8SGLhKm059707; Thu, 28 Sep 2006 20:21:43 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 20:21:43 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060928162143.GA59634@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271752.57082.jhb@freebsd.org> <20060927221251.GA35467@rambler-co.ru> <200609281056.28105.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <200609281056.28105.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 28 Sep 2006 16:21:45 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 10:56:27AM -0400, John Baldwin wrote: > On Wednesday 27 September 2006 18:12, Ruslan Ermilov wrote: > > There are some _IO() ioctls that pass a pointer to variable sized data, > > and their ioctl handlers to uiocopy'ing rather than ioctl(). See > > sys/cam/scsi/scsi_ses.c, SESIOC_* ioctls for one such example. >=20 > I think these are just broken and should be fixed. :) SESIOC_ENCSTAT sho= uld=20 > be IOW(..., ses_encstat) for example. The two troublesome ones GETNOBJ a= nd=20 > GETOBJMAP are broken by design. Somehow they need to tell userland how m= uch=20 > they copied out, and they also need to let userland specify the buffer le= ngth=20 > to avoid buffer overflows. Thus, they need to be using a IOWR with a=20 > structure containing a pointer and length (modify the length on return if= =20 > needed) to avoid problems anyway. I'd be all for just fixing the few tha= t=20 > abuse _IO to treat the arg as anything other than an int and assume _IO m= eans=20 > an int arg for 7.x and future. The solution for 6.x might be uglier, bu= t=20 > for the future we should fix the abusers and avoid adding the _IOWINT hac= k. >=20 > > > If an ioctl doesn't use the arg, then you don't lose anything..=20 > > > do we have any ioctl's that use the arg directly but not as an int? > > >=20 > > Unfortunately yes. >=20 > Are there any others outside of SES? How many? If it's a small list, th= en=20 > let's fix them. The SES ones are broken as an API anyway as mentioned ab= ove,=20 > and if other ioctl's are copying out a variable amount of data w/o allowi= ng=20 > for buffer lengths or telling userland how much it copied, they are also= =20 > fundamentally broken as well. >=20 Some only read from userland, so they aren't broken. I'll compile and send you the list of such ioctls (don't have it saved)... Ah, here's one from memory that isn't broken: SPKRTUNE from sys/dev/speaker/. > > stack (such as i386) this causes return address to be accessed > > instead of the argument value. Ioctls that are "void" should > > either pass "0" or "NULL". >=20 > It will be stack (or register) garbage yes, but unread stack (or register= )=20 > garbage. :) >=20 Yes, you're right. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFG/aXqRfpzJluFF4RAlooAJ43kHIc7FGIuKmwxZWwDuzbccvlGgCaAj4H u7kXSouLJbXqhnasN5/+vyY= =Qsoa -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-cvs-src@FreeBSD.ORG Thu Sep 28 16:30:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A8BD16A412; Thu, 28 Sep 2006 16:30:37 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1241D43D4C; Thu, 28 Sep 2006 16:30:37 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SGUaJh010797; Thu, 28 Sep 2006 16:30:36 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SGUa5T010796; Thu, 28 Sep 2006 16:30:36 GMT (envelope-from jhb) Message-Id: <200609281630.k8SGUa5T010796@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 16:30: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/sys/boot/i386/btx/btx btx.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, 28 Sep 2006 16:30:37 -0000 jhb 2006-09-28 16:30:36 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: A couple of simple tweaks that trim BTX by 6 bytes. Since BTX is 16-byte aligned within boot2 however, this actually trims boot2 by 16 bytes. Revision Changes Path 1.40 +2 -3 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-src@FreeBSD.ORG Thu Sep 28 16:30:54 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 621C216A5CA for ; Thu, 28 Sep 2006 16:30:54 +0000 (UTC) (envelope-from rnsanchez@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 823D643D7C for ; Thu, 28 Sep 2006 16:30:41 +0000 (GMT) (envelope-from rnsanchez@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so271697nzn for ; Thu, 28 Sep 2006 09:30:39 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding; b=lE6NOqWtKA4jXo6xIxe+fRGVFzcRgePXYCNF8R7Wla9Nz863cgbUVXmiac1zLPfJ1jWNSrdDOcV6dkD+5JyR+1yxU9H+VE2ZsCctcctYOPskWE2nzlE9d4KPBTfHCTy272RZkH04L3FcZOSjZTottOz+aK2bwKYxLp9uMNT4HEM= Received: by 10.65.59.20 with SMTP id m20mr2158664qbk; Thu, 28 Sep 2006 09:30:39 -0700 (PDT) Received: from sauron.lan.box ( [201.3.138.238]) by mx.gmail.com with ESMTP id f13sm2331300qba.2006.09.28.09.30.37; Thu, 28 Sep 2006 09:30:38 -0700 (PDT) Date: Thu, 28 Sep 2006 13:30:35 -0300 From: Ricardo Nabinger Sanchez To: cvs-src@FreeBSD.org Message-Id: <20060928133035.082e359d.rnsanchez@gmail.com> In-Reply-To: <200609280932.k8S9WMid068222@repoman.freebsd.org> References: <200609280932.k8S9WMid068222@repoman.freebsd.org> X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Xin LI Subject: Re: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:30:54 -0000 On Thu, 28 Sep 2006 09:32:22 +0000 (UTC) Xin LI wrote: > MFC After: 1 day Just asking: isn't/wasn't it 3 days the minimum MFC interval? -- Ricardo Nabinger Sanchez Powered by FreeBSD "Left to themselves, things tend to go from bad to worse." From owner-cvs-src@FreeBSD.ORG Thu Sep 28 16:46:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A012C16A407; Thu, 28 Sep 2006 16:46:46 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F5BE43D64; Thu, 28 Sep 2006 16:46:46 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 48D1A1A4D88; Thu, 28 Sep 2006 09:46:46 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A5B1151667; Thu, 28 Sep 2006 12:46:45 -0400 (EDT) Date: Thu, 28 Sep 2006 12:46:45 -0400 From: Kris Kennaway To: Bruce M Simpson Message-ID: <20060928164645.GA96442@xor.obsecurity.org> References: <200609281300.k8SD0pdb092621@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: <200609281300.k8SD0pdb092621@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: 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: Thu, 28 Sep 2006 16:46:46 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 01:00:51PM +0000, Bruce M Simpson wrote: > bms 2006-09-28 13:00:51 UTC >=20 > FreeBSD src repository >=20 > Modified files: > . UPDATING=20 > Log: > Note the removal of tcpslice Also add to ObsoleteFiles.inc? Kris --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFG/x1Wry0BWjoQKURAjdpAKDHu2nx4nw19UMoKwda0SliDBz0OwCguXjp zdDNXfpCMl8s3VUCwyqD6O0= =gvCA -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-cvs-src@FreeBSD.ORG Thu Sep 28 16:50:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D80BD16A407; Thu, 28 Sep 2006 16:50:50 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06A6F43D4C; Thu, 28 Sep 2006 16:50:49 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSz60-000O2G-Oe; Thu, 28 Sep 2006 17:50:48 +0100 Date: Thu, 28 Sep 2006 17:50:48 +0100 From: Ceri Davies To: Kris Kennaway Message-ID: <20060928165048.GD54669@submonkey.net> Mail-Followup-To: Ceri Davies , Kris Kennaway , Bruce M Simpson , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609281300.k8SD0pdb092621@repoman.freebsd.org> <20060928164645.GA96442@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OrT4iOlIQZp3kw4S" Content-Disposition: inline In-Reply-To: <20060928164645.GA96442@xor.obsecurity.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Bruce M Simpson , cvs-all@FreeBSD.org Subject: Re: 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: Thu, 28 Sep 2006 16:50:51 -0000 --OrT4iOlIQZp3kw4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 12:46:45PM -0400, Kris Kennaway wrote: > On Thu, Sep 28, 2006 at 01:00:51PM +0000, Bruce M Simpson wrote: > > bms 2006-09-28 13:00:51 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > . UPDATING=20 > > Log: > > Note the removal of tcpslice >=20 > Also add to ObsoleteFiles.inc? That's already been done. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --OrT4iOlIQZp3kw4S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFG/1oocfcwTS3JF8RAqOkAJ42Z7BgDs65+jEmog4rHnjfqaZosQCfZX0o lSF0E+bMSeBJVAilv5qhzPw= =5H9h -----END PGP SIGNATURE----- --OrT4iOlIQZp3kw4S-- From owner-cvs-src@FreeBSD.ORG Thu Sep 28 17:26:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4E7F16A407; Thu, 28 Sep 2006 17:26:30 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 001C343D69; Thu, 28 Sep 2006 17:26:19 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.6) with ESMTP id k8SHQETB018399 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 28 Sep 2006 10:26:16 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <451C05A4.3010605@FreeBSD.org> Date: Thu, 28 Sep 2006 10:25:56 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Robert Watson References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> <200609271338.22284.jhb@freebsd.org> <20060927230635.D73166@fledge.watson.org> In-Reply-To: <20060927230635.D73166@fledge.watson.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Scott Long , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, John Baldwin Subject: Re: cvs commit: src/sys/i386/i386 local_apic.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, 28 Sep 2006 17:26:31 -0000 Robert Watson wrote: > It's pretty clear that if we're going to take the hypervisor + dynamic > reconfiguration thing seriously, we need a structured notion of adding > and removing CPUs from the active CPU pool, including things like event > handlers so that subsystems can shut down operations on the CPU. For > example, UMA needs a chance to drain per-CPU caches of various zones, > services that have pinned threads on the CPU will need to decide how to > deal with that, etc. It's work I'd very much like to see happen, and > until it's done we basically need to make sure that CPUs either exist > from boot and never cease existing, or don't exist at boot and are never > used. I can't agree more. The whole hlt_cpus_mask change leaves taste of the very bad hack. -Maxim From owner-cvs-src@FreeBSD.ORG Thu Sep 28 17:29:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E69616A415; Thu, 28 Sep 2006 17:29:01 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C05CE43D4C; Thu, 28 Sep 2006 17:29:00 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SHT05S023158; Thu, 28 Sep 2006 17:29:00 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SHT0gg023157; Thu, 28 Sep 2006 17:29:00 GMT (envelope-from ariff) Message-Id: <200609281729.k8SHT0gg023157@repoman.freebsd.org> From: Ariff Abdullah Date: Thu, 28 Sep 2006 17:29: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/dev/sound/pcm ac97.c ac97_patch.c ac97_patch.h channel.c mixer.c mixer.h sound.h src/sys/dev/sound/usb uaudio_pcm.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, 28 Sep 2006 17:29:01 -0000 ariff 2006-09-28 17:29:00 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm ac97.c ac97_patch.c ac97_patch.h channel.c mixer.c mixer.h sound.h sys/dev/sound/usb uaudio_pcm.c Log: Various fixups, especially for the upcomming High Definition Audio commit. 1) sys/dev/sound/pcm/sound.h sys/dev/sound/pcm/channel.c * Be more specific: SD_F_SOFTVOL -> SD_F_SOFTPCMVOL 2) sys/dev/sound/pcm/mixer.[ch] * Implement mix_setparentchild() mix_setrealdev() mix_getparent() mix_getchild() The purpose of these functions is implement relative volume adjustment, such as to tie two or more mixer device into a single logical device. Usefull for the upcoming HDA driver and few AC97 codec (such as AD1981B) where the master volume "vol" need to be implemented using this logical manner. 3) sys/dev/sound/pcm/ac97_patch.[ch] * Patch for AD1981B codec to enable (automuting) headphone jack sense. 4) sys/dev/sound/pcm/ac97.c * Implement proper logical master volume for AD9181B codec through various mix_set{parentchild,realdev}(). Tie both "ogain" (headphone volume) and "phone" (speaker/lineout) to a logical "vol". 5) sys/dev/sound/pcm/usb/uaudio_pcm.c * ditto, for "vol" -> { "pcm" }. MFC after: 1 month Revision Changes Path 1.62 +50 -40 src/sys/dev/sound/pcm/ac97.c 1.5 +6 -0 src/sys/dev/sound/pcm/ac97_patch.c 1.5 +1 -0 src/sys/dev/sound/pcm/ac97_patch.h 1.111 +24 -4 src/sys/dev/sound/pcm/channel.c 1.52 +164 -29 src/sys/dev/sound/pcm/mixer.c 1.17 +4 -0 src/sys/dev/sound/pcm/mixer.h 1.72 +1 -1 src/sys/dev/sound/pcm/sound.h 1.19 +14 -6 src/sys/dev/sound/usb/uaudio_pcm.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 18:02:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CF1B16A412; Thu, 28 Sep 2006 18:02:47 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC7EC43D55; Thu, 28 Sep 2006 18:02:46 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SI2k2S027576; Thu, 28 Sep 2006 18:02:46 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SI2k9X027575; Thu, 28 Sep 2006 18:02:46 GMT (envelope-from andre) Message-Id: <200609281802.k8SI2k9X027575@repoman.freebsd.org> From: Andre Oppermann Date: Thu, 28 Sep 2006 18:02: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/netinet tcp_output.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, 28 Sep 2006 18:02:47 -0000 andre 2006-09-28 18:02:46 UTC FreeBSD src repository Modified files: sys/netinet tcp_output.c Log: When tcp_output() receives an error upon sending a packet it reverts parts of its internal state to ignore the failed send and try again a bit later. If the error is EPERM the packet got blocked by the local firewall and the revert may cause the session to get stuck and retry indefinitely. This way we treat it like a packet loss and let the retransmit timer and timeouts do their work over time. The correct behavior is to drop a connection that gets an EPERM error. However this _may_ introduce some POLA problems and a two commit approach was chosen. Discussed with: glebius PR: kern/25986 PR: kern/102653 Revision Changes Path 1.120 +15 -2 src/sys/netinet/tcp_output.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 18:05:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5441A16A415; Thu, 28 Sep 2006 18:05:42 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18EEE43D53; Thu, 28 Sep 2006 18:05:41 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id F15801A3C1C; Thu, 28 Sep 2006 11:05:40 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4B75D51379; Thu, 28 Sep 2006 14:05:40 -0400 (EDT) Date: Thu, 28 Sep 2006 14:05:39 -0400 From: Kris Kennaway To: Ceri Davies , Kris Kennaway , Bruce M Simpson , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20060928180539.GA97755@xor.obsecurity.org> References: <200609281300.k8SD0pdb092621@repoman.freebsd.org> <20060928164645.GA96442@xor.obsecurity.org> <20060928165048.GD54669@submonkey.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <20060928165048.GD54669@submonkey.net> User-Agent: Mutt/1.4.2.2i Cc: Subject: Re: 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: Thu, 28 Sep 2006 18:05:42 -0000 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 05:50:48PM +0100, Ceri Davies wrote: > On Thu, Sep 28, 2006 at 12:46:45PM -0400, Kris Kennaway wrote: > > On Thu, Sep 28, 2006 at 01:00:51PM +0000, Bruce M Simpson wrote: > > > bms 2006-09-28 13:00:51 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > . UPDATING=20 > > > Log: > > > Note the removal of tcpslice > >=20 > > Also add to ObsoleteFiles.inc? >=20 > That's already been done. Awesome :) Kris --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHA7zWry0BWjoQKURAl43AKDgNxf+g1uZtQZtqwSnTZQXt2JfgQCg3R0v lUkBIkkYkjw6XIZPiOKeAcI= =5SQQ -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- From owner-cvs-src@FreeBSD.ORG Thu Sep 28 18:27:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D3DB16A407; Thu, 28 Sep 2006 18:27:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04DF643D45; Thu, 28 Sep 2006 18:27:02 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SIR1ch033066; Thu, 28 Sep 2006 18:27:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SIR1lf033065; Thu, 28 Sep 2006 18:27:01 GMT (envelope-from rwatson) Message-Id: <200609281827.k8SIR1lf033065@repoman.freebsd.org> From: Robert Watson Date: Thu, 28 Sep 2006 18:27:01 +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 copyright.h src/sys/kern init_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, 28 Sep 2006 18:27:02 -0000 rwatson 2006-09-28 18:27:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys copyright.h sys/kern init_main.c Log: Merge init_main.c:1.266, 1.267, copyright.h:1.22, 1.23 from HEAD to RELENG_6: Add "FreeBSD" trademark statement to copyright section of boot messages. Approved by: core, board at FreeBSDFoundation dot org Approved by: re (bmah) Revision Changes Path 1.256.2.5 +4 -3 src/sys/kern/init_main.c 1.19.2.2 +6 -0 src/sys/sys/copyright.h From owner-cvs-src@FreeBSD.ORG Thu Sep 28 18:35:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC3DD16A407; Thu, 28 Sep 2006 18:35:26 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E4F243D70; Thu, 28 Sep 2006 18:35:26 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SIZQbg033663; Thu, 28 Sep 2006 18:35:26 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SIZQOA033662; Thu, 28 Sep 2006 18:35:26 GMT (envelope-from kensmith) Message-Id: <200609281835.k8SIZQOA033662@repoman.freebsd.org> From: Ken Smith Date: Thu, 28 Sep 2006 18:35:26 +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/add 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, 28 Sep 2006 18:35:27 -0000 kensmith 2006-09-28 18:35:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/add main.c Log: Partial MFC of v1.69 - adding info for 5.5-REL. Approved by: re (hrs) Revision Changes Path 1.61.2.8 +1 -0 src/usr.sbin/pkg_install/add/main.c From owner-cvs-src@FreeBSD.ORG Thu Sep 28 18:44:38 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E0616A522; Thu, 28 Sep 2006 18:44:38 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id E149943D69; Thu, 28 Sep 2006 18:44:34 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8SIiQTk006889; Thu, 28 Sep 2006 14:44:32 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Thu, 28 Sep 2006 14:20:53 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609281056.28105.jhb@freebsd.org> <20060928162143.GA59634@rambler-co.ru> In-Reply-To: <20060928162143.GA59634@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609281420.54038.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 28 Sep 2006 14:44:33 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1950/Thu Sep 28 10:11:54 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 28 Sep 2006 18:44:38 -0000 On Thursday 28 September 2006 12:21, Ruslan Ermilov wrote: > > Are there any others outside of SES? How many? If it's a small list, then > > let's fix them. The SES ones are broken as an API anyway as mentioned above, > > and if other ioctl's are copying out a variable amount of data w/o allowing > > for buffer lengths or telling userland how much it copied, they are also > > fundamentally broken as well. > > > Some only read from userland, so they aren't broken. I'll compile and send > you the list of such ioctls (don't have it saved)... Ah, here's one from > memory that isn't broken: SPKRTUNE from sys/dev/speaker/. Scott pointed out one in aac(4) that is required for a binary-only management tool, so it looks like we are stuck _IO being used with pointers. :( -- John Baldwin From owner-cvs-src@FreeBSD.ORG Thu Sep 28 19:06:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE6CD16A40F; Thu, 28 Sep 2006 19:06:20 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97B0043D49; Thu, 28 Sep 2006 19:06:20 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJ6K7A036359; Thu, 28 Sep 2006 19:06:20 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJ6KJc036358; Thu, 28 Sep 2006 19:06:20 GMT (envelope-from jhb) Message-Id: <200609281906.k8SJ6KJc036358@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19:06: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/boot/common merge_help.awk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:06:21 -0000 jhb 2006-09-28 19:06:20 UTC FreeBSD src repository Modified files: sys/boot/common merge_help.awk Log: Ignore a sub-topic match if it is inside the command description. Otherwise, merge-help can get confused by a command description that includes a word that starts with a capital S. MFC after: 1 week Revision Changes Path 1.6 +3 -0 src/sys/boot/common/merge_help.awk From owner-cvs-src@FreeBSD.ORG Thu Sep 28 19:07:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 431D516A412; Thu, 28 Sep 2006 19:07:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDF0143D53; Thu, 28 Sep 2006 19:07:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJ7Duo036445; Thu, 28 Sep 2006 19:07:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJ7DJn036444; Thu, 28 Sep 2006 19:07:13 GMT (envelope-from jhb) Message-Id: <200609281907.k8SJ7DJn036444@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19: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/sys/boot/i386/libi386 biossmap.c src/sys/boot/i386/loader help.i386 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:07:14 -0000 jhb 2006-09-28 19:07:13 UTC FreeBSD src repository Modified files: sys/boot/i386/libi386 biossmap.c sys/boot/i386/loader help.i386 Log: Add an 'smap' command that dumps out the BIOS SMAP. MFC after: 1 week Revision Changes Path 1.5 +15 -0 src/sys/boot/i386/libi386/biossmap.c 1.10 +7 -0 src/sys/boot/i386/loader/help.i386 From owner-cvs-src@FreeBSD.ORG Thu Sep 28 19:38:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2982716A407; Thu, 28 Sep 2006 19:38:03 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDFC443D4C; Thu, 28 Sep 2006 19:38:02 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJc2kH038373; Thu, 28 Sep 2006 19:38:02 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJc238038372; Thu, 28 Sep 2006 19:38:02 GMT (envelope-from jhb) Message-Id: <200609281938.k8SJc238038372@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19:38: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/boot/i386/btx/btx btx.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, 28 Sep 2006 19:38:03 -0000 jhb 2006-09-28 19:38:02 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: Optimize the int 15/87 handler for space to shave another 16 bytes off of BTX (and thus boot2): - Don't bother saving %eax, %ebx, or %ecx as it is not necessary. - Use a more compact sequence to load the base value out of a GDT entry by loading the contiguous low 24 bits into the upper 24 bits of %eax, loading the high 8 bits into %al, and using a ror to rotate the bits (2 mov's and a ror) rather than loading the pieces in smaller chunks (3 mov's and a shl). - Use movzwl + leal instead of movl + movw + shll + addl. - Use 'xchgl %eax,%foo' rather than 'movl %eax,%foo' for cases where it's ok to trash %eax. xchgl %eax, foo is a 1-byte opcode whereas the mov is a 2-byte opcode. - Use movzwl rather than xorl + movw. MFC after: 1 week Revision Changes Path 1.41 +17 -31 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-src@FreeBSD.ORG Thu Sep 28 19:42:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F1A616A415; Thu, 28 Sep 2006 19:42:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18AD743D62; Thu, 28 Sep 2006 19:42:11 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJgASJ038696; Thu, 28 Sep 2006 19:42:10 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJgAl3038695; Thu, 28 Sep 2006 19:42:10 GMT (envelope-from jhb) Message-Id: <200609281942.k8SJgAl3038695@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19:42: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/boot/i386/btx/btx btx.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, 28 Sep 2006 19:42:11 -0000 jhb 2006-09-28 19:42:10 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: Tweak the code to handle intercepting BIOS calls to int 0x15 to shave another 16 bytes off of BTX (and thus boot2): - Compare against the value of %eax that is saved on the stack instead of loading it into %eax (which requires saving the current %eax on the stack). - Use %ch to examine the keyboard flag state in the BIOS to see if Ctrl-Alt-Del is pressed instead of %al so we don't have to save %eax on the stack anymore. MFC after: 1 week Revision Changes Path 1.42 +10 -17 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-src@FreeBSD.ORG Thu Sep 28 20:37:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC0EC16A407; Thu, 28 Sep 2006 20:37:38 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97A0F43D70; Thu, 28 Sep 2006 20:37:38 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SKbcva045440; Thu, 28 Sep 2006 20:37:38 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SKbcI3045439; Thu, 28 Sep 2006 20:37:38 GMT (envelope-from danger) Message-Id: <200609282037.k8SKbcI3045439@repoman.freebsd.org> From: Daniel Gerzo Date: Thu, 28 Sep 2006 20:37: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/usr.bin/su su.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, 28 Sep 2006 20:37:39 -0000 danger 2006-09-28 20:37:38 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) usr.bin/su su.1 Log: remove reference to nonexistent pam(8) manual page. Approved by: re (bmah), keramida (mentor) Revision Changes Path 1.36.2.2 +1 -2 src/usr.bin/su/su.1 From owner-cvs-src@FreeBSD.ORG Thu Sep 28 20:51:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D9E016A412; Thu, 28 Sep 2006 20:51:01 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD99F43D77; Thu, 28 Sep 2006 20:51:00 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SKp0vD054106; Thu, 28 Sep 2006 20:51:00 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SKp0vw054105; Thu, 28 Sep 2006 20:51:00 GMT (envelope-from danger) Message-Id: <200609282051.k8SKp0vw054105@repoman.freebsd.org> From: Daniel Gerzo Date: Thu, 28 Sep 2006 20:51: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/sbin/mount mount.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, 28 Sep 2006 20:51:01 -0000 danger 2006-09-28 20:51:00 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) sbin/mount mount.8 Log: Re-word the description of the "async" flag. Suggested by: Milos Vyletel (mv@rulez.sk) Approved by: re (bmah), keramida (mentor) Revision Changes Path 1.73.2.4 +6 -3 src/sbin/mount/mount.8 From owner-cvs-src@FreeBSD.ORG Thu Sep 28 21:09:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D224D16A518; Thu, 28 Sep 2006 21:09:10 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8090A43D46; Thu, 28 Sep 2006 21:09:10 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SL9AsQ056659; Thu, 28 Sep 2006 21:09:10 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SL9Akv056658; Thu, 28 Sep 2006 21:09:10 GMT (envelope-from julian) Message-Id: <200609282109.k8SL9Akv056658@repoman.freebsd.org> From: Julian Elischer Date: Thu, 28 Sep 2006 21:09: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/tools/tools/tinybsd CHANGES README tinybsd src/tools/tools/tinybsd/conf/bridge TINYBSD tinybsd.basefiles src/tools/tools/tinybsd/conf/bridge/etc fstab rc.conf sysctl.conf src/tools/tools/tinybsd/conf/default TINYBSD tinybsd.basefiles ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:09:10 -0000 julian 2006-09-28 21:09:10 UTC FreeBSD src repository Added files: (Branch: RELENG_6) tools/tools/tinybsd CHANGES README tinybsd tools/tools/tinybsd/conf/bridge TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/bridge/etc fstab rc.conf sysctl.conf tools/tools/tinybsd/conf/default TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/default/etc fstab rc.conf tools/tools/tinybsd/conf/firewall TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/firewall/etc fstab natd.conf pf.conf pf.os rc.conf rc.firewall sysctl.conf tools/tools/tinybsd/conf/firewall/etc/authpf authpf.rules tools/tools/tinybsd/conf/minimal TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/minimal/etc fstab rc.conf tools/tools/tinybsd/conf/vpn TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/vpn/etc fstab rc.conf setkey.conf tools/tools/tinybsd/conf/wireless TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/wireless/etc fstab natd.conf pf.conf pf.os rc.conf rc.firewall tools/tools/tinybsd/conf/wireless/etc/authpf authpf.rules tools/tools/tinybsd/conf/wrap TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/wrap/etc fstab rc.conf ttys Log: MFC: Make the tinybsd framework a peer of nanobsd and picobsd in the tree Some patches to come. Approved by: re (ken) Revision Changes Path 1.1.2.1 +43 -0 src/tools/tools/tinybsd/CHANGES (new) 1.1.2.1 +253 -0 src/tools/tools/tinybsd/README (new) 1.2.2.1 +162 -0 src/tools/tools/tinybsd/conf/bridge/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/bridge/etc/fstab (new) 1.2.2.1 +17 -0 src/tools/tools/tinybsd/conf/bridge/etc/rc.conf (new) 1.2.2.1 +5 -0 src/tools/tools/tinybsd/conf/bridge/etc/sysctl.conf (new) 1.1.2.1 +242 -0 src/tools/tools/tinybsd/conf/bridge/tinybsd.basefiles (new) 1.2.2.1 +179 -0 src/tools/tools/tinybsd/conf/default/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/default/etc/fstab (new) 1.2.2.1 +12 -0 src/tools/tools/tinybsd/conf/default/etc/rc.conf (new) 1.1.2.1 +253 -0 src/tools/tools/tinybsd/conf/default/tinybsd.basefiles (new) 1.2.2.1 +175 -0 src/tools/tools/tinybsd/conf/firewall/TINYBSD (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/firewall/etc/authpf/authpf.rules (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/firewall/etc/fstab (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/firewall/etc/natd.conf (new) 1.1.2.1 +78 -0 src/tools/tools/tinybsd/conf/firewall/etc/pf.conf (new) 1.1.2.1 +549 -0 src/tools/tools/tinybsd/conf/firewall/etc/pf.os (new) 1.2.2.1 +41 -0 src/tools/tools/tinybsd/conf/firewall/etc/rc.conf (new) 1.1.2.1 +302 -0 src/tools/tools/tinybsd/conf/firewall/etc/rc.firewall (new) 1.1.2.1 +5 -0 src/tools/tools/tinybsd/conf/firewall/etc/sysctl.conf (new) 1.1.2.1 +245 -0 src/tools/tools/tinybsd/conf/firewall/tinybsd.basefiles (new) 1.2.2.1 +83 -0 src/tools/tools/tinybsd/conf/minimal/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/minimal/etc/fstab (new) 1.2.2.1 +12 -0 src/tools/tools/tinybsd/conf/minimal/etc/rc.conf (new) 1.1.2.1 +172 -0 src/tools/tools/tinybsd/conf/minimal/tinybsd.basefiles (new) 1.2.2.1 +162 -0 src/tools/tools/tinybsd/conf/vpn/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/vpn/etc/fstab (new) 1.2.2.1 +22 -0 src/tools/tools/tinybsd/conf/vpn/etc/rc.conf (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/vpn/etc/setkey.conf (new) 1.2.2.1 +227 -0 src/tools/tools/tinybsd/conf/vpn/tinybsd.basefiles (new) 1.2.2.1 +174 -0 src/tools/tools/tinybsd/conf/wireless/TINYBSD (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/wireless/etc/authpf/authpf.rules (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/wireless/etc/fstab (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/wireless/etc/natd.conf (new) 1.1.2.1 +78 -0 src/tools/tools/tinybsd/conf/wireless/etc/pf.conf (new) 1.1.2.1 +549 -0 src/tools/tools/tinybsd/conf/wireless/etc/pf.os (new) 1.2.2.1 +32 -0 src/tools/tools/tinybsd/conf/wireless/etc/rc.conf (new) 1.1.2.1 +302 -0 src/tools/tools/tinybsd/conf/wireless/etc/rc.firewall (new) 1.1.2.1 +238 -0 src/tools/tools/tinybsd/conf/wireless/tinybsd.basefiles (new) 1.2.2.1 +141 -0 src/tools/tools/tinybsd/conf/wrap/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/wrap/etc/fstab (new) 1.2.2.1 +12 -0 src/tools/tools/tinybsd/conf/wrap/etc/rc.conf (new) 1.1.2.1 +308 -0 src/tools/tools/tinybsd/conf/wrap/etc/ttys (new) 1.1.2.1 +238 -0 src/tools/tools/tinybsd/conf/wrap/tinybsd.basefiles (new) 1.1.2.1 +220 -0 src/tools/tools/tinybsd/tinybsd (new) From owner-cvs-src@FreeBSD.ORG Thu Sep 28 21:22:22 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2902916A407; Thu, 28 Sep 2006 21:22:22 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D76EF43D49; Thu, 28 Sep 2006 21:22:21 +0000 (GMT) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLMLtG057426; Thu, 28 Sep 2006 21:22:21 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLMLTK057425; Thu, 28 Sep 2006 21:22:21 GMT (envelope-from matteo) Message-Id: <200609282122.k8SLMLTK057425@repoman.freebsd.org> From: Matteo Riondato Date: Thu, 28 Sep 2006 21:22: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/usr.bin/tftp tftp.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, 28 Sep 2006 21:22:22 -0000 matteo 2006-09-28 21:22:21 UTC FreeBSD src repository Modified files: usr.bin/tftp tftp.c Log: Set txrx_error to 1 when we reach abort. This makes the program correctly set the exit code. The PR has further details on this. PR: bin/103206 Submitted by: John Hickey MFC after: 3 days Revision Changes Path 1.13 +2 -0 src/usr.bin/tftp/tftp.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 00:20:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EA0B16A407; Fri, 29 Sep 2006 00:20:58 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1842743D64; Fri, 29 Sep 2006 00:20:57 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T0KukU080252; Fri, 29 Sep 2006 00:20:56 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T0Kuss080251; Fri, 29 Sep 2006 00:20:56 GMT (envelope-from kensmith) Message-Id: <200609290020.k8T0Kuss080251@repoman.freebsd.org> From: Ken Smith Date: Fri, 29 Sep 2006 00:20: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/vm vm_page.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, 29 Sep 2006 00:20:58 -0000 kensmith 2006-09-29 00:20:56 UTC FreeBSD src repository Modified files: sys/vm vm_page.c Log: Fix two minor style(9) nits in v1.313 which were noticed during an MFC review. alc@ will be MFCing V1.313 plus style fix to RELENG_6. Revision Changes Path 1.328 +2 -2 src/sys/vm/vm_page.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 01:30:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ABC216A412; Fri, 29 Sep 2006 01:30:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C10DB43D49; Fri, 29 Sep 2006 01:30:37 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1Ubu9093964; Fri, 29 Sep 2006 01:30:37 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1Ublc093963; Fri, 29 Sep 2006 01:30:37 GMT (envelope-from obrien) Message-Id: <200609290130.k8T1Ublc093963@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:30:37 +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/gnu/usr.bin/cc/cc_tools 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, 29 Sep 2006 01:30:38 -0000 obrien 2006-09-29 01:30:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cc_tools Makefile Log: Whitespace sync with HEAD. Approved by: re(ken) Revision Changes Path 1.81.2.1 +2 -3 src/gnu/usr.bin/cc/cc_tools/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 01:44:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 231D616A412; Fri, 29 Sep 2006 01:44:26 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3BAE43D4C; Fri, 29 Sep 2006 01:44:25 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1iPQn094849; Fri, 29 Sep 2006 01:44:25 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1iPBQ094848; Fri, 29 Sep 2006 01:44:25 GMT (envelope-from obrien) Message-Id: <200609290144.k8T1iPBQ094848@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:44: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/gnu/usr.bin/cc/cpp 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, 29 Sep 2006 01:44:26 -0000 obrien 2006-09-29 01:44:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cpp Makefile Log: MFC: rev 1.25: remove redundant defines alerady set. Approved by: re(KEN) Revision Changes Path 1.24.8.2 +0 -3 src/gnu/usr.bin/cc/cpp/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 01:50:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70ED516A403; Fri, 29 Sep 2006 01:50:04 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E26743D45; Fri, 29 Sep 2006 01:50:04 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1o4xu095184; Fri, 29 Sep 2006 01:50:04 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1o3KJ095183; Fri, 29 Sep 2006 01:50:03 GMT (envelope-from obrien) Message-Id: <200609290150.k8T1o3KJ095183@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:50:03 +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/gnu/usr.bin/cc Makefile.tgt src/gnu/usr.bin/cc/cc_int 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, 29 Sep 2006 01:50:04 -0000 obrien 2006-09-29 01:50:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc Makefile.tgt gnu/usr.bin/cc/cc_int Makefile Log: MFC: default to big endian ARM if "TARGET_BIG_ENDIAN" is defined. Approved by: re(KEN) Revision Changes Path 1.8.8.1 +3 -0 src/gnu/usr.bin/cc/Makefile.tgt 1.45.2.1 +4 -0 src/gnu/usr.bin/cc/cc_int/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 01:54:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFD0516A403; Fri, 29 Sep 2006 01:54:09 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD53143D49; Fri, 29 Sep 2006 01:54:09 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1s907095448; Fri, 29 Sep 2006 01:54:09 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1s90V095447; Fri, 29 Sep 2006 01:54:09 GMT (envelope-from obrien) Message-Id: <200609290154.k8T1s90V095447@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:54:09 +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/gnu/usr.bin/cc/cc_tools auto-host.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, 29 Sep 2006 01:54:10 -0000 obrien 2006-09-29 01:54:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cc_tools auto-host.h Log: MFC: rev 1.19: change platform name. Approved by: re(KEN) Revision Changes Path 1.18.8.1 +1 -1 src/gnu/usr.bin/cc/cc_tools/auto-host.h From owner-cvs-src@FreeBSD.ORG Fri Sep 29 01:56:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E473F16A407; Fri, 29 Sep 2006 01:56:01 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A100943D46; Fri, 29 Sep 2006 01:56:01 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1u1co095588; Fri, 29 Sep 2006 01:56:01 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1u1vJ095586; Fri, 29 Sep 2006 01:56:01 GMT (envelope-from obrien) Message-Id: <200609290156.k8T1u1vJ095586@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:56:01 +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/gnu/usr.bin/cc/cc_tools 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, 29 Sep 2006 01:56:02 -0000 obrien 2006-09-29 01:56:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cc_tools Makefile Log: MFC: add some preliminary ARM support Approved by: re(KEN) Revision Changes Path 1.81.2.2 +10 -0 src/gnu/usr.bin/cc/cc_tools/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 02:34:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4889616A407; Fri, 29 Sep 2006 02:34:30 +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 34FA543D68; Fri, 29 Sep 2006 02:34:25 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 6B1DCEB3060; Fri, 29 Sep 2006 10:34:23 +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 wOTCImBLvUzx; Fri, 29 Sep 2006 10:34:21 +0800 (CST) Received: from [10.217.12.201] (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 DB874EB0C4D; Fri, 29 Sep 2006 10:34: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=AU4NkZQ25w4TQ6V54jLw7fmTa8a+U/tLiXt3rWWjz43OGRZEbtE4A973SIUufwxoi kQErmuST128KhhFxFGH1A== Message-ID: <451C8615.60402@delphij.net> Date: Fri, 29 Sep 2006 10:33:57 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Ricardo Nabinger Sanchez References: <200609280932.k8S9WMid068222@repoman.freebsd.org> <20060928133035.082e359d.rnsanchez@gmail.com> In-Reply-To: <20060928133035.082e359d.rnsanchez@gmail.com> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig09C39253117019405CAA75AE" Cc: cvs-src@FreeBSD.ORG, Xin LI Subject: Re: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 02:34:30 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig09C39253117019405CAA75AE Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Ricardo Nabinger Sanchez wrote: > On Thu, 28 Sep 2006 09:32:22 +0000 (UTC) > Xin LI wrote: >=20 >> MFC After: 1 day >=20 > Just asking: isn't/wasn't it 3 days the minimum MFC interval? Em... I am not quite sure and just checked the dev-model, which has said 3 days is the minimum, so it seems that you are correct. The only reason is that we are near BETA-2 and the change is trivial in my opinion, so I would respect the current tradition and re@'s decision. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig09C39253117019405CAA75AE 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.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFHIYVOfuToMruuMARA1CQAJwLzZukUEuAYbUSyuQpKzoXvJYfcQCbBVGb bAbJV/KztWQ4XKMkjtZDnog= =R3Cb -----END PGP SIGNATURE----- --------------enig09C39253117019405CAA75AE-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 03:07:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58D5616A403; Fri, 29 Sep 2006 03:07:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D4CE43D45; Fri, 29 Sep 2006 03:07:43 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T37hon001568; Fri, 29 Sep 2006 03:07:43 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T37g6s001567; Fri, 29 Sep 2006 03:07:42 GMT (envelope-from brooks) Message-Id: <200609290307.k8T37g6s001567@repoman.freebsd.org> From: Brooks Davis Date: Fri, 29 Sep 2006 03:07: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/sbin/dhclient bpf.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, 29 Sep 2006 03:07:43 -0000 brooks 2006-09-29 03:07:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/dhclient bpf.c Log: MFC rev 1.7 It is possible for bpf to return a length such that: length != BPF_WORDALIGN(length) This meeans that it is possible for this to be true: interface->rbuf_offset > interface->rbuf_len Handle this case in the test for running out of packets. While OpenBSD's solution of setting interface->rbuf_len to BPF_WORDALIGN(length) is safe due to the size of the buffer, I think this solution results in less hidden assumptions. This should fix the problem of dhclient running away and consuming 100% CPU. PR: bin/102226 Submitted by: Joost Bekkers Approved by: re (ken) Revision Changes Path 1.2.2.4 +1 -1 src/sbin/dhclient/bpf.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 04:00:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88EB816A403; Fri, 29 Sep 2006 04:00:30 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CFD043D46; Fri, 29 Sep 2006 04:00:30 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T40TuY004452; Fri, 29 Sep 2006 04:00:30 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T40TPJ004451; Fri, 29 Sep 2006 04:00:29 GMT (envelope-from julian) Message-Id: <200609290400.k8T40TPJ004451@repoman.freebsd.org> From: Julian Elischer Date: Fri, 29 Sep 2006 04:00:28 +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/bin/cp cp.1 cp.c extern.h utils.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, 29 Sep 2006 04:00:31 -0000 julian 2006-09-29 04:00:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) bin/cp cp.1 cp.c extern.h utils.c Log: MFC: cp.1 1.34,1.35 MFC: utils.c 1.47,1.48,1.49 MFC: extern.h 1.21 MFC: cp.c 1.54 Add an option to allow copying of a hierarchy while linking the regular files. Bikeshedded to death on: hackers Submitted by:andersonatcenttech.com Approved by: re (ken) Revision Changes Path 1.33.2.1 +5 -3 src/bin/cp/cp.1 1.51.2.2 +8 -2 src/bin/cp/cp.c 1.19.8.2 +1 -1 src/bin/cp/extern.h 1.45.2.2 +92 -77 src/bin/cp/utils.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 04:22:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D66016A40F; Fri, 29 Sep 2006 04:22:39 +0000 (UTC) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025F143D45; Fri, 29 Sep 2006 04:22:39 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4MclL007769; Fri, 29 Sep 2006 04:22:38 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4McYR007768; Fri, 29 Sep 2006 04:22:38 GMT (envelope-from suz) Message-Id: <200609290422.k8T4McYR007768@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 29 Sep 2006 04:22: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/netinet6 in6.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, 29 Sep 2006 04:22:39 -0000 suz 2006-09-29 04:22:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet6 in6.c Log: MFC Rev. 1.64 (fixed a bug that IPv6 packets arriving to stf are not accepted) Approved by: re (kensmith) Revision Changes Path 1.51.2.10 +6 -2 src/sys/netinet6/in6.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 04:24:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF8CE16A403; Fri, 29 Sep 2006 04:24:50 +0000 (UTC) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A007843D45; Fri, 29 Sep 2006 04:24:50 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4OoMT007836; Fri, 29 Sep 2006 04:24:50 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4Ool3007835; Fri, 29 Sep 2006 04:24:50 GMT (envelope-from suz) Message-Id: <200609290424.k8T4Ool3007835@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 29 Sep 2006 04:24:50 +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 if_loop.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, 29 Sep 2006 04:24:51 -0000 suz 2006-09-29 04:24:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_loop.c Log: MFC Rev 1.111 (fixed a bug that local IPv6 traffic (to an address configured on an interface other than lo0) does not show up properly on any bpf.) Approved by: re (kensmith) Revision Changes Path 1.106.2.2 +25 -9 src/sys/net/if_loop.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 04:37:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8073D16A407; Fri, 29 Sep 2006 04:37:23 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FCF243D49; Fri, 29 Sep 2006 04:37:23 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4bNwc008425; Fri, 29 Sep 2006 04:37:23 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4bNcT008424; Fri, 29 Sep 2006 04:37:23 GMT (envelope-from alc) Message-Id: <200609290437.k8T4bNcT008424@repoman.freebsd.org> From: Alan Cox Date: Fri, 29 Sep 2006 04:37:23 +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/vm vm_object.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, 29 Sep 2006 04:37:23 -0000 alc 2006-09-29 04:37:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_object.c Log: MFC revision 1.358: Lock the vm_object while checking its type to see if it is a vnode-backed object that requires Giant in vm_object_deallocate(). This is somewhat hairy in that if we can't obtain Giant directly, we have to drop the object lock, then lock Giant, then relock the object lock and verify that we still need Giant. If we don't (because the object changed to OBJT_DEAD for example), then we drop Giant before continuing. Approved by: re Revision Changes Path 1.349.2.6 +25 -11 src/sys/vm/vm_object.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 04:41:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC7B416A40F; Fri, 29 Sep 2006 04:41:37 +0000 (UTC) (envelope-from luoqi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D79F43D49; Fri, 29 Sep 2006 04:41:37 +0000 (GMT) (envelope-from luoqi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4fbGM008708; Fri, 29 Sep 2006 04:41:37 GMT (envelope-from luoqi@repoman.freebsd.org) Received: (from luoqi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4fbIE008707; Fri, 29 Sep 2006 04:41:37 GMT (envelope-from luoqi) Message-Id: <200609290441.k8T4fbIE008707@repoman.freebsd.org> From: Luoqi Chen Date: Fri, 29 Sep 2006 04:41: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/usr.bin/su su.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, 29 Sep 2006 04:41:37 -0000 luoqi 2006-09-29 04:41:37 UTC FreeBSD src repository Modified files: usr.bin/su su.c Log: Do not chdir(2) until after setuid(2), otherwise "su - username" would fail when root doesn't have the permission to enter target user's home directory. If set, PAM environment variable HOME will be used in chdir(2) instead of pwd->pw_dir, this allows pam_chroot module to continue to function. Revision Changes Path 1.81 +4 -6 src/usr.bin/su/su.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 04:51:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F263616A416; Fri, 29 Sep 2006 04:51:16 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89E7843D55; Fri, 29 Sep 2006 04:51:16 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4pGfI017180; Fri, 29 Sep 2006 04:51:16 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4pG6Z017179; Fri, 29 Sep 2006 04:51:16 GMT (envelope-from alc) Message-Id: <200609290451.k8T4pG6Z017179@repoman.freebsd.org> From: Alan Cox Date: Fri, 29 Sep 2006 04:51: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/vm vm_page.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, 29 Sep 2006 04:51:17 -0000 alc 2006-09-29 04:51:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_page.c Log: MFC revisions 1.313 and 1.328: When the VM needs to allocated physical memory pages (for non interrupt use) and it has not plenty of free pages it tries to free pages in the cache queue. Unfortunately freeing a cached page requires the locking of the object that owns the page. However in the context of allocating pages we may not be able to lock the object and thus can only TRY to lock the object. If the locking try fails the cache page can not be freed and is activated to move it out of the way so that we may try to free other cache pages. If all pages in the cache belong to objects that are currently locked the cache queue can be emptied without freeing a single page. This scenario caused two problems: 1) vm_page_alloc always failed allocation when it tried freeing pages from the cache queue and failed to do so. However if there are more than cnt.v_interrupt_free_min pages on the free list it should return pages when requested with priority VM_ALLOC_SYSTEM. Failure to do so can cause resource exhaustion deadlocks. 2) Threads than need to allocate pages spend a lot of time cleaning up the page queue without really getting anything done while the pagedaemon needs to work overtime to refill the cache. This change fixes the first problem. (1) Approved by: re (kensmith) Revision Changes Path 1.304.2.5 +13 -3 src/sys/vm/vm_page.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 06:06:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 376BB16A403; Fri, 29 Sep 2006 06:06:40 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECBB843D49; Fri, 29 Sep 2006 06:06:39 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T66dLw028061; Fri, 29 Sep 2006 06:06:39 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T66d4I028060; Fri, 29 Sep 2006 06:06:39 GMT (envelope-from ru) Message-Id: <200609290606.k8T66d4I028060@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 06:06: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/bin/cp cp.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, 29 Sep 2006 06:06:40 -0000 ru 2006-09-29 06:06:39 UTC FreeBSD src repository Modified files: bin/cp cp.c Log: Move the -l option processing to where it belongs. Overall still not kosher but better matches style(9). Revision Changes Path 1.55 +4 -4 src/bin/cp/cp.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 06:12:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B9716A403; Fri, 29 Sep 2006 06:12:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45ACE43D4C; Fri, 29 Sep 2006 06:12:18 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6CIox031849; Fri, 29 Sep 2006 06:12:18 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6CIee031848; Fri, 29 Sep 2006 06:12:18 GMT (envelope-from delphij) Message-Id: <200609290612.k8T6CIee031848@repoman.freebsd.org> From: Xin LI Date: Fri, 29 Sep 2006 06:12:18 +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/newfs mkfs.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, 29 Sep 2006 06:12:18 -0000 delphij 2006-09-29 06:12:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/newfs mkfs.c Log: MFC 1.90-1.91: Don't treat failure to find the operator GID as a fatal error; this made it impossible to use newfs (and mdmfs) when /etc/group is missing and /etc is read-only. Approved by: re (kensmith) Revision Changes Path 1.89.2.1 +9 -4 src/sbin/newfs/mkfs.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 06:13:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35ABC16A403; Fri, 29 Sep 2006 06:13:21 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC82043D4C; Fri, 29 Sep 2006 06:13:20 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6DKH1031918; Fri, 29 Sep 2006 06:13:20 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6DKoL031917; Fri, 29 Sep 2006 06:13:20 GMT (envelope-from marck) Message-Id: <200609290613.k8T6DKoL031917@repoman.freebsd.org> From: Dmitry Morozovsky Date: Fri, 29 Sep 2006 06:13:20 +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/chpass chpass.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, 29 Sep 2006 06:13:21 -0000 marck 2006-09-29 06:13:20 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) usr.bin/chpass chpass.c Log: MFC rev 1.28: Fix bug introduced in rev 1.23: pw_equal does not check crypted password field, so one cannot change crypted password keeping other fields intact. Approved by: re (kensmith) Revision Changes Path 1.27.8.1 +6 -1 src/usr.bin/chpass/chpass.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 06:17:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61A916A403; Fri, 29 Sep 2006 06:17:51 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7677243D49; Fri, 29 Sep 2006 06:17:51 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6HpRY032103; Fri, 29 Sep 2006 06:17:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6Hp9O032102; Fri, 29 Sep 2006 06:17:51 GMT (envelope-from delphij) Message-Id: <200609290617.k8T6Hp9O032102@repoman.freebsd.org> From: Xin LI Date: Fri, 29 Sep 2006 06:17:51 +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 ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 06:17:51 -0000 delphij 2006-09-29 06:17:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . ObsoleteFiles.inc Log: MFC 1.52: Remove 120.clean-kvmdb. Approved by: re (kensmith) Revision Changes Path 1.25.2.6 +2 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Fri Sep 29 06:24:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBB5516A40F; Fri, 29 Sep 2006 06:24:26 +0000 (UTC) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A985B43D49; Fri, 29 Sep 2006 06:24:26 +0000 (GMT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6OQ94032482; Fri, 29 Sep 2006 06:24:26 GMT (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6OQ44032481; Fri, 29 Sep 2006 06:24:26 GMT (envelope-from silby) Message-Id: <200609290624.k8T6OQ44032481@repoman.freebsd.org> From: Mike Silbersack Date: Fri, 29 Sep 2006 06:24: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/sys/netinet tcp_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, 29 Sep 2006 06:24:27 -0000 silby 2006-09-29 06:24:26 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c Log: Rather than autoscaling the number of TIME_WAIT sockets to maxsockets / 5, scale it to min(ephemeral port range / 2, maxsockets / 5) so that people with large gobs of memory and/or large maxsockets settings will not exhaust their entire ephemeral port range with sockets in the TIME_WAIT state during periods of heavy load. Those who wish to tweak the size of the TIME_WAIT zone can still do so with net.inet.tcp.maxtcptw. Reviewed by: glebius, ru Revision Changes Path 1.263 +24 -8 src/sys/netinet/tcp_subr.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 06:46:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1362E16A407; Fri, 29 Sep 2006 06:46:32 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C66B143D46; Fri, 29 Sep 2006 06:46:31 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6kVcO033589; Fri, 29 Sep 2006 06:46:31 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6kVTx033588; Fri, 29 Sep 2006 06:46:31 GMT (envelope-from maxim) Message-Id: <200609290646.k8T6kVTx033588@repoman.freebsd.org> From: Maxim Konovalov Date: Fri, 29 Sep 2006 06:46: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/netinet tcp_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, 29 Sep 2006 06:46:32 -0000 maxim 2006-09-29 06:46:31 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c Log: o Convert w/spaces to tabs in the previous commit. Revision Changes Path 1.264 +3 -3 src/sys/netinet/tcp_subr.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 06:57:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBAD616A40F for ; Fri, 29 Sep 2006 06:57:20 +0000 (UTC) (envelope-from mike@silbersack.org) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 48D9643D53 for ; Fri, 29 Sep 2006 06:57:18 +0000 (GMT) (envelope-from mike@silbersack.org) Received: (qmail 77459 invoked from network); 29 Sep 2006 06:57:17 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 29 Sep 2006 06:57:17 -0000 X-pair-Authenticated: 209.68.2.70 Date: Fri, 29 Sep 2006 01:57:45 -0500 (CDT) From: Mike Silbersack X-X-Sender: silby@odysseus.silby.com To: Maxim Konovalov In-Reply-To: <200609290646.k8T6kVTx033588@repoman.freebsd.org> Message-ID: <20060929015701.S13056@odysseus.silby.com> References: <200609290646.k8T6kVTx033588@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_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, 29 Sep 2006 06:57:21 -0000 Gah, they have me using spaces at my new job, so I keep switching back and forth at inopportune times. Good catch... kinda scary that you noticed so quickly, though... Mike "Silby" Silbersack On Fri, 29 Sep 2006, Maxim Konovalov wrote: > maxim 2006-09-29 06:46:31 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_subr.c > Log: > o Convert w/spaces to tabs in the previous commit. > > Revision Changes Path > 1.264 +3 -3 src/sys/netinet/tcp_subr.c > From owner-cvs-src@FreeBSD.ORG Fri Sep 29 07:00:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CFB816A407; Fri, 29 Sep 2006 07:00:42 +0000 (UTC) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADAA143D45; Fri, 29 Sep 2006 07:00:41 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost.int.ru [127.0.0.1] (may be forged)) by mp2.macomnet.net (8.13.7/8.13.3) with ESMTP id k8T70d5N030293; Fri, 29 Sep 2006 11:00:39 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Fri, 29 Sep 2006 11:00:39 +0400 (MSD) From: Maxim Konovalov To: Mike Silbersack In-Reply-To: <20060929015701.S13056@odysseus.silby.com> Message-ID: <20060929105925.S30248@mp2.macomnet.net> References: <200609290646.k8T6kVTx033588@repoman.freebsd.org> <20060929015701.S13056@odysseus.silby.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netinet tcp_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, 29 Sep 2006 07:00:42 -0000 On Fri, 29 Sep 2006, 01:57-0500, Mike Silbersack wrote: > > Gah, they have me using spaces at my new job, so I keep switching back and > forth at inopportune times. > > Good catch... kinda scary that you noticed so quickly, though... You know - big brother is watching you, Mike :-) -- Maxim Konovalov From owner-cvs-src@FreeBSD.ORG Fri Sep 29 07:02:24 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A89116A407; Fri, 29 Sep 2006 07:02:24 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D94A43D78; Fri, 29 Sep 2006 07:02:22 +0000 (GMT) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T72MNs034344; Fri, 29 Sep 2006 07:02:22 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T72M4p034343; Fri, 29 Sep 2006 07:02:22 GMT (envelope-from matteo) Message-Id: <200609290702.k8T72M4p034343@repoman.freebsd.org> From: Matteo Riondato Date: Fri, 29 Sep 2006 07:02: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/libpcap 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, 29 Sep 2006 07:02:24 -0000 matteo 2006-09-29 07:02:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libpcap Makefile Log: MFC rev. 1.38 Place shared libpcap library under /lib, currently needed by /sbin/ipf and /sbin/pflogd. Reviewed by: ru@ Approved by: re@ (kensmith@) Revision Changes Path 1.36.2.1 +2 -0 src/lib/libpcap/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 07:04:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10E9016A403; Fri, 29 Sep 2006 07:04:18 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1EAA43D4C; Fri, 29 Sep 2006 07:04:17 +0000 (GMT) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T74HKu035614; Fri, 29 Sep 2006 07:04:17 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T74HVP035613; Fri, 29 Sep 2006 07:04:17 GMT (envelope-from matteo) Message-Id: <200609290704.k8T74HVP035613@repoman.freebsd.org> From: Matteo Riondato Date: Fri, 29 Sep 2006 07:04: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/libpthread 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, 29 Sep 2006 07:04:18 -0000 matteo 2006-09-29 07:04:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libpthread Makefile Log: MFC rev. 1.58: Install shared libpthread library into /lib; needed by some /sbin programs. PR: bin/88404 Reviewed by: ru@ Approved by: re@ (kensmith@) Revision Changes Path 1.53.2.2 +1 -0 src/lib/libpthread/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 07:34:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90E6816A40F; Fri, 29 Sep 2006 07:34:52 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E712B43D46; Fri, 29 Sep 2006 07:33:56 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T7Xu6u037077; Fri, 29 Sep 2006 07:33:56 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T7Xu5f037076; Fri, 29 Sep 2006 07:33:56 GMT (envelope-from mbr) Message-Id: <200609290733.k8T7Xu5f037076@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 07:33:56 +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/kern tty_tty.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, 29 Sep 2006 07:34:52 -0000 mbr 2006-09-29 07:33:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern tty_tty.c Log: MFC rev. 1.58, 1.59 If /dev/tty gets opened after your controlling terminal has been revoked you can't call tty_clone afterwords. This can be done in ctty_clone by returning with *dev = ctty. Reviewed by: jhb Approved by: re Revision Changes Path 1.56.2.2 +5 -1 src/sys/kern/tty_tty.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 07:41:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C151516A416; Fri, 29 Sep 2006 07:41:29 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A519043D76; Fri, 29 Sep 2006 07:41:25 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T7fPcb037486; Fri, 29 Sep 2006 07:41:25 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T7fP6d037485; Fri, 29 Sep 2006 07:41:25 GMT (envelope-from mbr) Message-Id: <200609290741.k8T7fP6d037485@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 07:41: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/kern kern_proc.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, 29 Sep 2006 07:41:29 -0000 mbr 2006-09-29 07:41:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_proc.c Log: MFC rev. 1.241, 1.242, 1.243 Add some Giant locks to protect against races between tty and sessrele(), doenterpgrp(), leavepgrp(), pgdelete() and enterpgrp(). The tty code is still under giant lock, but the session/pgrp release code just used proctree_locks. P_CONTROLT isn't really fully locked too in enterpgrp(). Reviewed by: jhb Approved by: re Revision Changes Path 1.230.2.5 +9 -0 src/sys/kern/kern_proc.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 08:00:41 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B33F16A4EB; Fri, 29 Sep 2006 08:00:41 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED50F43D46; Fri, 29 Sep 2006 08:00:40 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T80ekw038635; Fri, 29 Sep 2006 08:00:40 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T80e26038634; Fri, 29 Sep 2006 08:00:40 GMT (envelope-from maxim) Message-Id: <200609290800.k8T80e26038634@repoman.freebsd.org> From: Maxim Konovalov Date: Fri, 29 Sep 2006 08:00: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/sbin/ipfw ipfw2.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, 29 Sep 2006 08:00:41 -0000 maxim 2006-09-29 08:00:40 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw2.c Log: o Check for a required "pathname" argument presence. PR: bin/95146 Submitted by: candy-sendpr@kgc.co.jp MFC after: 3 weeks Revision Changes Path 1.99 +2 -0 src/sbin/ipfw/ipfw2.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 08:07:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61CC216A412; Fri, 29 Sep 2006 08:07:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D760843D58; Fri, 29 Sep 2006 08:07:19 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T87Jwr040135; Fri, 29 Sep 2006 08:07:19 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T87JaW040134; Fri, 29 Sep 2006 08:07:19 GMT (envelope-from ru) Message-Id: <200609290807.k8T87JaW040134@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 08:07: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/tools/tools/find-sb Makefile find-sb.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, 29 Sep 2006 08:07:20 -0000 ru 2006-09-29 08:07:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) tools/tools/find-sb Makefile find-sb.c Log: MFC: - Use SBLOCK_UFS2 instead of SBLOCK_UFS1 to calculate likely start of the UFS2 partition from the beginning of disk. - Initialize the "offset" variable and bump WARNS that made this visible. Approved by: re (kensmith) Revision Changes Path 1.2.2.1 +2 -0 src/tools/tools/find-sb/Makefile 1.1.14.2 +2 -1 src/tools/tools/find-sb/find-sb.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 09:10:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09B0616A407; Fri, 29 Sep 2006 09:10:55 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FD0743D46; Fri, 29 Sep 2006 09:10:54 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9AssH052730; Fri, 29 Sep 2006 09:10:54 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9AspR052729; Fri, 29 Sep 2006 09:10:54 GMT (envelope-from ru) Message-Id: <200609290910.k8T9AspR052729@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 09:10: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/sound/pcm dsp.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, 29 Sep 2006 09:10:55 -0000 ru 2006-09-29 09:10:54 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm dsp.c Log: The SNDCTL_DSP_NONBLOCK ioctl doesn't take an argument, from what I can tell by browsing the Internet (Linux, OSS, etc.). Revision Changes Path 1.97 +3 -3 src/sys/dev/sound/pcm/dsp.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 09:28:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A340316A540; Fri, 29 Sep 2006 09:28:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6135C43D46; Fri, 29 Sep 2006 09:28:23 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9SNnj053068; Fri, 29 Sep 2006 09:28:23 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9SM4n053067; Fri, 29 Sep 2006 09:28:22 GMT (envelope-from ru) Message-Id: <200609290928.k8T9SM4n053067@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 09:28: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/sound/midi sequencer.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, 29 Sep 2006 09:28:23 -0000 ru 2006-09-29 09:28:22 UTC FreeBSD src repository Modified files: sys/dev/sound/midi sequencer.c Log: SNDCTL_TMR_{START,STOP,CONTINUE} don't take an argument. Revision Changes Path 1.22 +8 -4 src/sys/dev/sound/midi/sequencer.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 09:39:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71DAD16A403; Fri, 29 Sep 2006 09:39:46 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7157243D7B; Fri, 29 Sep 2006 09:39:42 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id A0C8ADADE26; Fri, 29 Sep 2006 05:39:41 -0400 (EDT) Received: from heartbeat2.internal ([10.202.2.161]) by frontend3.internal (MEProxy); Fri, 29 Sep 2006 05:39:44 -0400 X-Sasl-enc: D0l4wPhii0VA9xVYL8vbrVsWbeLh1DYYyOoIecmK4Jmg 1159522783 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 8450ACBD8; Fri, 29 Sep 2006 05:39:43 -0400 (EDT) Message-ID: <451CE9DC.7070703@FreeBSD.org> Date: Fri, 29 Sep 2006 10:39:40 +0100 From: "Bruce M. Simpson" User-Agent: Thunderbird 1.5.0.5 (X11/20060825) MIME-Version: 1.0 To: SUZUKI Shinsuke References: <200609290424.k8T4Ool3007835@repoman.freebsd.org> In-Reply-To: <200609290424.k8T4Ool3007835@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/net if_loop.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, 29 Sep 2006 09:39:46 -0000 SUZUKI Shinsuke wrote: > suz 2006-09-29 04:24:50 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/net if_loop.c > Log: > MFC Rev 1.111 > (fixed a bug that local IPv6 traffic (to an address configured on an > interface other than lo0) does not show up properly on any bpf.) > Nice catch! BMS From owner-cvs-src@FreeBSD.ORG Fri Sep 29 09:51:08 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A429C16A412; Fri, 29 Sep 2006 09:51:08 +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 0CE1143D49; Fri, 29 Sep 2006 09:51:08 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 0BDAD60CC; Fri, 29 Sep 2006 13:51:07 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id DC7F85F0B; Fri, 29 Sep 2006 13:51:06 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8T9p7sC003569; Fri, 29 Sep 2006 13:51:07 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 13:51:07 +0400 From: Ruslan Ermilov To: John Baldwin , Scott Long Message-ID: <20060929095107.GI86237@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609281056.28105.jhb@freebsd.org> <20060928162143.GA59634@rambler-co.ru> <200609281420.54038.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dCSxeJc5W8HZXZrD" Content-Disposition: inline In-Reply-To: <200609281420.54038.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.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, 29 Sep 2006 09:51:08 -0000 --dCSxeJc5W8HZXZrD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 02:20:53PM -0400, John Baldwin wrote: > On Thursday 28 September 2006 12:21, Ruslan Ermilov wrote: > > > Are there any others outside of SES? How many? If it's a small list= , then=20 > > > let's fix them. The SES ones are broken as an API anyway as mentione= d above,=20 > > > and if other ioctl's are copying out a variable amount of data w/o al= lowing=20 > > > for buffer lengths or telling userland how much it copied, they are a= lso=20 > > > fundamentally broken as well. > > >=20 > > Some only read from userland, so they aren't broken. I'll compile and = send > > you the list of such ioctls (don't have it saved)... Ah, here's one fr= om > > memory that isn't broken: SPKRTUNE from sys/dev/speaker/. >=20 > Scott pointed out one in aac(4) that is required for a binary-only > management tool, so it looks like we are stuck _IO being used with > pointers. :( >=20 Here's the full list: : ./dev/ofw/openpromio.h:#define OPROMNEXT _IO('O', 1) : ./dev/ofw/openpromio.h:#define OPROMCHILD _IO('O', 2) : ./dev/ofw/openpromio.h:#define OPROMGETPROP _IO('O', 3) : ./dev/ofw/openpromio.h:#define OPROMNXTPROP _IO('O', 4) :=20 : ./dev/speaker/speaker.h:#define SPKRTUNE _IO('S', 2) /= * emit tone sequence*/ Some of the below. These are used by the binary-only available tool from ports/sysutils/aaccli. : ./sys/aac_ioctl.h:#define FSACTL_SENDFIB _IO('8', 2) : ./sys/aac_ioctl.h:#define FSACTL_GET_COMM_PERF_DATA _IO('8', 36) : ./sys/aac_ioctl.h:#define FSACTL_OPENCLS_COMM_PERF_DATA _IO('8', 37) : ./sys/aac_ioctl.h:#define FSACTL_OPEN_GET_ADAPTER_FIB _IO('8', 52) : ./sys/aac_ioctl.h:#define FSACTL_GET_NEXT_ADAPTER_FIB _IO('8', 53) : ./sys/aac_ioctl.h:#define FSACTL_CLOSE_GET_ADAPTER_FIB _IO('8', 54) : ./sys/aac_ioctl.h:#define FSACTL_CLOSE_ADAPTER_CONFIG _IO('8', 56) : ./sys/aac_ioctl.h:#define FSACTL_OPEN_ADAPTER_CONFIG _IO('8', 57) : ./sys/aac_ioctl.h:#define FSACTL_MINIPORT_REV_CHECK _IO('8', 59) : ./sys/aac_ioctl.h:#define FSACTL_QUERY_ADAPTER_CONFIG _IO('8', 65) : ./sys/aac_ioctl.h:#define FSACTL_GET_PCI_INFO _IO('8', 71) : ./sys/aac_ioctl.h:#define FSACTL_FORCE_DELETE_DISK _IO('8', 72) : ./sys/aac_ioctl.h:#define FSACTL_AIF_THREAD _IO('8', 79) : ./sys/aac_ioctl.h:#define FSACTL_NULL_IO_TEST _IO('8', 67) : ./sys/aac_ioctl.h:#define FSACTL_SIM_IO_TEST _IO('8', 83) : ./sys/aac_ioctl.h:#define FSACTL_DOWNLOAD _IO('8', 131) : ./sys/aac_ioctl.h:#define FSACTL_GET_VAR _IO('8', 147) : ./sys/aac_ioctl.h:#define FSACTL_SET_VAR _IO('8', 163) : ./sys/aac_ioctl.h:#define FSACTL_GET_FIBTIMES _IO('8', 179) : ./sys/aac_ioctl.h:#define FSACTL_ZERO_FIBTIMES _IO('8', 195) : ./sys/aac_ioctl.h:#define FSACTL_DELETE_DISK _IO('8', 99) : ./sys/aac_ioctl.h:#define FSACTL_QUERY_DISK _IO('9', 115) : ./sys/aac_ioctl.h:#define FSACTL_PROBE_CONTAINERS _IO('9', 83) /* Just g= uessing */ Do we have a consensus now, as I'm going to send a patch for RELENG_6 to re@ soon? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --dCSxeJc5W8HZXZrD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHOyLqRfpzJluFF4RAqLcAJwN3Glwg6anSwiEB8AOPLK0FdoEtQCfZ2KQ wj7PuxsQK7MTAW5lcgcMcvk= =+SrL -----END PGP SIGNATURE----- --dCSxeJc5W8HZXZrD-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 09:52:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2233616A407; Fri, 29 Sep 2006 09:52:58 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D26EA43D53; Fri, 29 Sep 2006 09:52:57 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9qvBT053567; Fri, 29 Sep 2006 09:52:57 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9qvcU053566; Fri, 29 Sep 2006 09:52:57 GMT (envelope-from mbr) Message-Id: <200609290952.k8T9qvcU053566@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 09:52: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/kern tty_pty.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, 29 Sep 2006 09:52:58 -0000 mbr 2006-09-29 09:52:57 UTC FreeBSD src repository Modified files: sys/kern tty_pty.c Log: Free tty struct after last close. This should fix the pty-leak by numbers. Remove workarounds for tty_refcount beeing 0, this will be fixed differently later. Back out rev 1.145 since we initialize the tty struct from scratch and bad things can't happen anymore. Revision Changes Path 1.148 +17 -12 src/sys/kern/tty_pty.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 09:53:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AFB616A416; Fri, 29 Sep 2006 09:53:20 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B4243D6B; Fri, 29 Sep 2006 09:53:19 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9rJ4E053603; Fri, 29 Sep 2006 09:53:19 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9rJTb053602; Fri, 29 Sep 2006 09:53:19 GMT (envelope-from mbr) Message-Id: <200609290953.k8T9rJTb053602@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 09:53: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/kern tty_pts.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, 29 Sep 2006 09:53:20 -0000 mbr 2006-09-29 09:53:19 UTC FreeBSD src repository Modified files: sys/kern tty_pts.c Log: Free tty struct after last close. This should fix the pty-leak by numbers. Remove workarounds for tty_refcount beeing 0, this will be fixed differently later. Revision Changes Path 1.10 +15 -1 src/sys/kern/tty_pts.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 10:14:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F35DC16A416; Fri, 29 Sep 2006 10:14:37 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7447743D46; Fri, 29 Sep 2006 10:14:37 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAEbLF055283; Fri, 29 Sep 2006 10:14:37 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAEbKl055282; Fri, 29 Sep 2006 10:14:37 GMT (envelope-from ru) Message-Id: <200609291014.k8TAEbKl055282@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 10:14: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 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: Fri, 29 Sep 2006 10:14:38 -0000 ru 2006-09-29 10:14:37 UTC FreeBSD src repository Modified files: . UPDATING Log: Belatedly document the size change of "struct x?tcpcb". Revision Changes Path 1.458 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Sep 29 10:30:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72E5D16A416; Fri, 29 Sep 2006 10:30:16 +0000 (UTC) (envelope-from anholt@FreeBSD.org) Received: from vonnegut.anholt.net (69-30-77-85.dq1sn.easystreet.com [69.30.77.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9320B43D46; Fri, 29 Sep 2006 10:30:15 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by vonnegut.anholt.net (8.13.6/8.13.6) with ESMTP id k8SHwvfK006676; Thu, 28 Sep 2006 10:59:12 -0700 (PDT) (envelope-from anholt@FreeBSD.org) From: Eric Anholt To: Joel Dahl In-Reply-To: <1159428160.671.35.camel@localhost> References: <200609270638.k8R6csJ0044991@repoman.freebsd.org> <1159423952.671.11.camel@localhost> <1159428160.671.35.camel@localhost> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-+33X+IFlYHGitWJswzD6" Date: Thu, 28 Sep 2006 00:32:18 -0700 Message-Id: <1159428738.960.1.camel@vonnegut> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_i810.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, 29 Sep 2006 10:30:16 -0000 --=-+33X+IFlYHGitWJswzD6 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2006-09-28 at 09:22 +0200, Joel Dahl wrote: > On Thu, 2006-09-28 at 08:12 +0200, Joel Dahl wrote: > > On Wed, 2006-09-27 at 06:38 +0000, Eric Anholt wrote: > > > anholt 2006-09-27 06:38:54 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > sys/pci agp_i810.c=20 > > > Log: > > > Add support for 945G/GM AGP chipsets. > > > =20 > > > The key problem was that the aperture size detection using the MSAC= bit > > > doesn't work -- the bit appears to be set even when it shouldn't be= . Linux > > > takes a different approach, testing for a bit of the GMADR (PCIR_BA= R(2)) being > > > set. However, as I don't think that's a safe way to test aperture = size, we > > > just allocate the resource and check its size. This also pointed o= ut that > > > agp_generic_attach hadn't been allocating our aperture resource, wh= ich may > > > have caused problems in some cases. > > > =20 > > > Also corrected is a minor copy-and-pasteo in an error case. > >=20 > > Hmm, I have a HP NX7400 laptop with an Intel i945 chipset, and it's > > running a very fresh current (GENERIC, no changes made whatsoever). > > However, I see the following in my dmesg when I start X (I *think* it > > started appearing just after your commit to agp_i810.c): >=20 > Ok, I can confirm that reverting back to revision 1.38 of agp_i810.c > fixes the problem. Right, with no AGP support, you don't get DRM support, so you don't hit the path in the DRM with the witness warning. I'm not sure what to do about that warning yet :/ --=20 Eric Anholt anholt@FreeBSD.org eric@anholt.net eric.anholt@intel.com --=-+33X+IFlYHGitWJswzD6 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBFG3qBHUdvYGzw6vcRAs+EAJ0QzZj1/rONCxSJSKaHLjEIayYh6wCeO/bk FA8jEcWebTovnDdGztIz5C4= =zON5 -----END PGP SIGNATURE----- --=-+33X+IFlYHGitWJswzD6-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 10:39:24 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F85116A407; Fri, 29 Sep 2006 10:39:24 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C38D943D4C; Fri, 29 Sep 2006 10:39:23 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAdN21056690; Fri, 29 Sep 2006 10:39:23 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAdNTa056689; Fri, 29 Sep 2006 10:39:23 GMT (envelope-from bms) Message-Id: <200609291039.k8TAdNTa056689@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 10:39: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 ObsoleteFiles.inc UPDATING src/usr.sbin 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, 29 Sep 2006 10:39:24 -0000 bms 2006-09-29 10:39:23 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc UPDATING usr.sbin Makefile Log: Remove mrouted and its utilities from the base system. They may now be obtained from ports. Discussed with: fenner, net@ Revision Changes Path 1.53 +9 -0 src/ObsoleteFiles.inc 1.459 +3 -0 src/UPDATING 1.361 +0 -1 src/usr.sbin/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 10:40:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2161516A49E; Fri, 29 Sep 2006 10:40:54 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 594EA43D5E; Fri, 29 Sep 2006 10:40:53 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAerQf057047; Fri, 29 Sep 2006 10:40:53 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAerBu057046; Fri, 29 Sep 2006 10:40:53 GMT (envelope-from bms) Message-Id: <200609291040.k8TAerBu057046@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 10:40: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.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.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, 29 Sep 2006 10:40:54 -0000 bms 2006-09-29 10:40:53 UTC FreeBSD src repository Removed files: usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.c mtrace.h pathnames.h prune.c prune.h route.c route.h rsrr.c rsrr.h rsrr_var.h vif.c vif.h usr.sbin/mrouted/common Makefile usr.sbin/mrouted/map-mbone Makefile usr.sbin/mrouted/mrinfo Makefile usr.sbin/mrouted/mrouted Makefile usr.sbin/mrouted/mtrace Makefile usr.sbin/mrouted/testrsrr Makefile testrsrr.c Log: Remove mrouted from -CURRENT. Discussed with: fenner, net@ Revision Changes Path 1.2 +0 -48 src/usr.sbin/mrouted/LICENSE (dead) 1.6 +0 -5 src/usr.sbin/mrouted/Makefile (dead) 1.9 +0 -7 src/usr.sbin/mrouted/Makefile.inc (dead) 1.4 +0 -493 src/usr.sbin/mrouted/RELEASE (dead) 1.2 +0 -1 src/usr.sbin/mrouted/VERSION (dead) 1.13 +0 -250 src/usr.sbin/mrouted/callout.c (dead) 1.15 +0 -927 src/usr.sbin/mrouted/cfparse.y (dead) 1.9 +0 -12 src/usr.sbin/mrouted/common/Makefile (dead) 1.17 +0 -127 src/usr.sbin/mrouted/config.c (dead) 1.15 +0 -365 src/usr.sbin/mrouted/defs.h (dead) 1.10 +0 -172 src/usr.sbin/mrouted/dvmrp.h (dead) 1.2 +0 -225 src/usr.sbin/mrouted/icmp.c (dead) 1.17 +0 -447 src/usr.sbin/mrouted/igmp.c (dead) 1.2 +0 -42 src/usr.sbin/mrouted/igmpv2.h (dead) 1.12 +0 -235 src/usr.sbin/mrouted/inet.c (dead) 1.2 +0 -145 src/usr.sbin/mrouted/ipip.c (dead) 1.13 +0 -344 src/usr.sbin/mrouted/kern.c (dead) 1.22 +0 -1064 src/usr.sbin/mrouted/main.c (dead) 1.12 +0 -96 src/usr.sbin/mrouted/map-mbone.8 (dead) 1.14 +0 -15 src/usr.sbin/mrouted/map-mbone/Makefile (dead) 1.17 +0 -1048 src/usr.sbin/mrouted/mapper.c (dead) 1.16 +0 -91 src/usr.sbin/mrouted/mrinfo.8 (dead) 1.19 +0 -636 src/usr.sbin/mrouted/mrinfo.c (dead) 1.18 +0 -16 src/usr.sbin/mrouted/mrinfo/Makefile (dead) 1.33 +0 -665 src/usr.sbin/mrouted/mrouted.8 (dead) 1.10 +0 -44 src/usr.sbin/mrouted/mrouted.conf (dead) 1.17 +0 -19 src/usr.sbin/mrouted/mrouted/Makefile (dead) 1.25 +0 -589 src/usr.sbin/mrouted/mtrace.8 (dead) 1.22 +0 -3177 src/usr.sbin/mrouted/mtrace.c (dead) 1.2 +0 -87 src/usr.sbin/mrouted/mtrace.h (dead) 1.15 +0 -13 src/usr.sbin/mrouted/mtrace/Makefile (dead) 1.8 +0 -26 src/usr.sbin/mrouted/pathnames.h (dead) 1.19 +0 -2619 src/usr.sbin/mrouted/prune.c (dead) 1.11 +0 -152 src/usr.sbin/mrouted/prune.h (dead) 1.13 +0 -1475 src/usr.sbin/mrouted/route.c (dead) 1.10 +0 -53 src/usr.sbin/mrouted/route.h (dead) 1.10 +0 -485 src/usr.sbin/mrouted/rsrr.c (dead) 1.4 +0 -139 src/usr.sbin/mrouted/rsrr.h (dead) 1.2 +0 -41 src/usr.sbin/mrouted/rsrr_var.h (dead) 1.9 +0 -13 src/usr.sbin/mrouted/testrsrr/Makefile (dead) 1.6 +0 -125 src/usr.sbin/mrouted/testrsrr/testrsrr.c (dead) 1.16 +0 -1862 src/usr.sbin/mrouted/vif.c (dead) 1.11 +0 -237 src/usr.sbin/mrouted/vif.h (dead) From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:00:38 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 021AE16A403 for ; Fri, 29 Sep 2006 13:00:38 +0000 (UTC) (envelope-from rnsanchez@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AAAB43D49 for ; Fri, 29 Sep 2006 13:00:37 +0000 (GMT) (envelope-from rnsanchez@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so378593nzn for ; Fri, 29 Sep 2006 06:00:36 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding; b=AcKzSnG4HLGpl/u38JXcIBms/J/A/b24w4ED+82wtGD2Z1PYScVYluDkonbBW1rWomt5mXdj2ZSpiDHNVNdQE/a79l+AHhJyYmOTQjRglMHC+4JIo+u4bssLajdgUotm9AFW5xlb7byteOoyOMeKsIJL9XweFLuZp/0WCY2RbJc= Received: by 10.65.15.17 with SMTP id s17mr3607091qbi; Fri, 29 Sep 2006 06:00:36 -0700 (PDT) Received: from sauron.lan.box ( [200.203.37.180]) by mx.gmail.com with ESMTP id e16sm3419036qbe.2006.09.29.06.00.31; Fri, 29 Sep 2006 06:00:36 -0700 (PDT) Date: Fri, 29 Sep 2006 10:00:28 -0300 From: Ricardo Nabinger Sanchez To: Xin LI Message-Id: <20060929100028.9758c59e.rnsanchez@gmail.com> In-Reply-To: <451C8615.60402@delphij.net> References: <200609280932.k8S9WMid068222@repoman.freebsd.org> <20060928133035.082e359d.rnsanchez@gmail.com> <451C8615.60402@delphij.net> X-Mailer: Sylpheed version 2.2.9 (GTK+ 2.8.20; i386-portbld-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 ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 13:00:38 -0000 On Fri, 29 Sep 2006 10:33:57 +0800 LI Xin wrote: > > Just asking: isn't/wasn't it 3 days the minimum MFC interval? > > Em... I am not quite sure and just checked the dev-model, which has > said 3 days is the minimum, so it seems that you are correct. > > The only reason is that we are near BETA-2 and the change is trivial in > my opinion, so I would respect the current tradition and re@'s decision. Makes sense to me (trivial + BETA deadlines), thanks for clarifying :) Regards. -- Ricardo Nabinger Sanchez Powered by FreeBSD "Left to themselves, things tend to go from bad to worse." From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:12:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 221BA16A40F; Fri, 29 Sep 2006 13:12:40 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F64943D53; Fri, 29 Sep 2006 13:12:39 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDCd78077351; Fri, 29 Sep 2006 13:12:39 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDCdsM077350; Fri, 29 Sep 2006 13:12:39 GMT (envelope-from andre) Message-Id: <200609291312.k8TDCdsM077350@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:12: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/em if_em.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, 29 Sep 2006 13:12:40 -0000 andre 2006-09-29 13:12:38 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Handle all error cases from bus_dmamap_load_mbuf_sg(). Those are: - EFBIG means the mbuf chain was too long and bus_dma ran out of segments. Defragment the mbuf chain and try again. (Already existed, not changed.) - ENOMEM means bus_dma could not obtain enough bounce buffers at this point in time. Defer sending and try again later. - All other errors, in particular EINVAL, are fatal and prevent the mbuf chain from ever going through. Drop it and report error. - Checking (nsegs == 0) is unnecessary as bus_dmamap_load_mbuf_sg() always reports an error if it is < 1. This prevents broken packets from clogging the interface queue indefinately. Discussed with: scottl Reviewed by: jfv Revision Changes Path 1.148 +21 -5 src/sys/dev/em/if_em.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:17:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C6D916A412; Fri, 29 Sep 2006 13:17:17 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59D8A43D66; Fri, 29 Sep 2006 13:17:16 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDHGI9077629; Fri, 29 Sep 2006 13:17:16 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDHGRq077628; Fri, 29 Sep 2006 13:17:16 GMT (envelope-from andre) Message-Id: <200609291317.k8TDHGRq077628@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:17: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/em if_em.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, 29 Sep 2006 13:17:17 -0000 andre 2006-09-29 13:17:16 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Only advertize IFCAP_TSO4 capabilities. IPv6 is not yet supported. Reviewed by: jfv Revision Changes Path 1.149 +4 -4 src/sys/dev/em/if_em.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:26:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C74916A40F; Fri, 29 Sep 2006 13:26:09 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2ECE43D49; Fri, 29 Sep 2006 13:26:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 7037046B82; Fri, 29 Sep 2006 09:26:08 -0400 (EDT) Date: Fri, 29 Sep 2006 14:26:08 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Bruce M Simpson In-Reply-To: <200609291040.k8TAerBu057046@repoman.freebsd.org> Message-ID: <20060929142230.B70454@fledge.watson.org> References: <200609291040.k8TAerBu057046@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.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, 29 Sep 2006 13:26:09 -0000 On Fri, 29 Sep 2006, Bruce M Simpson wrote: ... > Remove mrouted and its utilities from the base system. > They may now be obtained from ports. > > Discussed with: fenner, net@ ... > Removed files: > usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE > VERSION callout.c cfparse.y config.c > defs.h dvmrp.h icmp.c igmp.c igmpv2.h > inet.c ipip.c kern.c main.c map-mbone.8 > mapper.c mrinfo.8 mrinfo.c mrouted.8 > mrouted.conf mtrace.8 mtrace.c mtrace.h > pathnames.h prune.c prune.h route.c > route.h rsrr.c rsrr.h rsrr_var.h vif.c > vif.h > usr.sbin/mrouted/common Makefile > usr.sbin/mrouted/map-mbone Makefile > usr.sbin/mrouted/mrinfo Makefile > usr.sbin/mrouted/mrouted Makefile > usr.sbin/mrouted/mtrace Makefile > usr.sbin/mrouted/testrsrr Makefile testrsrr.c > Log: > Remove mrouted from -CURRENT. > > Discussed with: fenner, net@ When you say "Discussed with: net@", you mean "posted, then waited 24 hours", right? And which port is mrouted in? Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:33:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C120016A403; Fri, 29 Sep 2006 13:33:09 +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 A7A4943D4C; Fri, 29 Sep 2006 13:32:55 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 969085E4B; Fri, 29 Sep 2006 17:32:53 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 742455E11; Fri, 29 Sep 2006 17:32:53 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TDWsqi004852; Fri, 29 Sep 2006 17:32:54 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 17:32:54 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060929133254.GA4776@rambler-co.ru> References: <200609291040.k8TAerBu057046@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: <200609291040.k8TAerBu057046@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.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, 29 Sep 2006 13:33:09 -0000 --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 10:40:53AM +0000, Bruce M Simpson wrote: > bms 2006-09-29 10:40:53 UTC >=20 > FreeBSD src repository >=20 > Removed files: > usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE=20 > VERSION callout.c cfparse.y config.c=20 > defs.h dvmrp.h icmp.c igmp.c igmpv2.h=20 > inet.c ipip.c kern.c main.c map-mbone.8=20 > mapper.c mrinfo.8 mrinfo.c mrouted.8=20 > mrouted.conf mtrace.8 mtrace.c mtrace.h=20 > pathnames.h prune.c prune.h route.c=20 > route.h rsrr.c rsrr.h rsrr_var.h vif.c=20 > vif.h=20 > usr.sbin/mrouted/common Makefile=20 > usr.sbin/mrouted/map-mbone Makefile=20 > usr.sbin/mrouted/mrinfo Makefile=20 > usr.sbin/mrouted/mrouted Makefile=20 > usr.sbin/mrouted/mtrace Makefile=20 > usr.sbin/mrouted/testrsrr Makefile testrsrr.c=20 > Log: > Remove mrouted from -CURRENT. > =20 > Discussed with: fenner, net@ > =20 "mrouted" is still known to these files: etc/netstart etc/defaults/rc.conf etc/rc.d/Makefile etc/rc.d/NETWORKING etc/rc.d/mrouted share/man/man4/ip6.4 share/man/man4/man4.i386/wl.4 share/man/man5/rc.conf.5 sys/conf/NOTES sys/dev/wl/if_wl.c sys/netinet/ip_mroute.c sys/netinet/ip_mroute.h sys/netinet6/ip6_mroute.h usr.bin/netstat/mroute.c usr.bin/netstat/mroute6.c usr.sbin/Makefile usr.sbin/crunch/examples/really-big.conf Not all of them should be tweaked, but certainly most of them. Don't underestimate the power of grep(1)! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --dDRMvlgZJXvWKvBx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHSCGqRfpzJluFF4RAu5PAKCeZu8luitBXbg3bGuYjLr4dNfmSgCfbdje GOgi1pcdfJRngePVqsvk0Ds= =Qw7a -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:33:34 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0E9316A40F; Fri, 29 Sep 2006 13:33:34 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 237C643D45; Fri, 29 Sep 2006 13:33:31 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDXV2l078688; Fri, 29 Sep 2006 13:33:31 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDXUnJ078687; Fri, 29 Sep 2006 13:33:30 GMT (envelope-from andre) Message-Id: <200609291333.k8TDXUnJ078687@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13: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/em if_em.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, 29 Sep 2006 13:33:34 -0000 andre 2006-09-29 13:33:30 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Change em_tso_setup() to deal with already inserted vlan headers, IP options and add skeleton IPv6 support. The new code structure can also be easily enhanced to support new/more protocols (SCTP) and IP fragmentation in the future. In em_encap() only try to do TSO if 'dotso' is true. Reviewed by: jfv Revision Changes Path 1.150 +120 -36 src/sys/dev/em/if_em.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:39:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2899C16A40F; Fri, 29 Sep 2006 13:39:55 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C587743E3E; Fri, 29 Sep 2006 13:38:13 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDbQIt078875; Fri, 29 Sep 2006 13:37:26 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDbQpW078874; Fri, 29 Sep 2006 13:37:26 GMT (envelope-from andre) Message-Id: <200609291337.k8TDbQpW078874@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:37: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/sys/dev/em if_em.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, 29 Sep 2006 13:39:55 -0000 andre 2006-09-29 13:37:26 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Change em_transmit_checksum_setup() to deal with already inserted vlan headers, IP options and add skeleton IPv6 support. The new code structure can also be easily enhanced to support new/more protocols (SCTP) in the future. Reviewed by: jfv Revision Changes Path 1.151 +108 -48 src/sys/dev/em/if_em.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:45:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9934F16A412; Fri, 29 Sep 2006 13:45:35 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77F2043D5D; Fri, 29 Sep 2006 13:41:16 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id EB92DDADBFF; Fri, 29 Sep 2006 09:40:52 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 29 Sep 2006 09:40:55 -0400 X-Sasl-enc: 0sLv37Scp/B7QPE0Up6R1yX4nrxYOGA6IhHxV1/oTR9O 1159537254 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 A1850173B6; Fri, 29 Sep 2006 09:40:53 -0400 (EDT) Message-ID: <451D2261.6010001@FreeBSD.org> Date: Fri, 29 Sep 2006 14:40:49 +0100 From: "Bruce M. Simpson" User-Agent: Thunderbird 1.5.0.5 (X11/20060825) MIME-Version: 1.0 To: Ruslan Ermilov References: <200609291040.k8TAerBu057046@repoman.freebsd.org> <20060929133254.GA4776@rambler-co.ru> In-Reply-To: <20060929133254.GA4776@rambler-co.ru> 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/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.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, 29 Sep 2006 13:45:35 -0000 Ruslan Ermilov wrote: > ... > Not all of them should be tweaked, but certainly most of them. > Don't underestimate the power of grep(1)! > I'm on it. mrouted may now be obtained from ports/net/mrouted. All the best, BMS From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:46:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAFEB16A5C7; Fri, 29 Sep 2006 13:46:32 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC52743DD4; Fri, 29 Sep 2006 13:44:10 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDi3Uh079290; Fri, 29 Sep 2006 13:44:03 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDi3F4079289; Fri, 29 Sep 2006 13:44:03 GMT (envelope-from cperciva) Message-Id: <200609291344.k8TDi3F4079289@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:44:03 +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/crypto/openssl/crypto/dh dh_key.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, 29 Sep 2006 13:46:32 -0000 cperciva 2006-09-29 13:44:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssl/crypto/dh dh_key.c Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: re (kensmith) Revision Changes Path 1.1.1.9.2.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:47:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B50A816A4AB; Fri, 29 Sep 2006 13:47:02 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B2C443DCD; Fri, 29 Sep 2006 13:44:33 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDiVEk079377; Fri, 29 Sep 2006 13:44:31 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDiVQl079376; Fri, 29 Sep 2006 13:44:31 GMT (envelope-from cperciva) Message-Id: <200609291344.k8TDiVQl079376@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:44:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_1 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.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: Fri, 29 Sep 2006 13:47:02 -0000 cperciva 2006-09-29 13:44:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_1) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.22.2.11 +4 -0 src/UPDATING 1.1.1.9.6.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.69.2.11.2.11 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:47:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3964E16A620; Fri, 29 Sep 2006 13:47:04 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E02943E11; Fri, 29 Sep 2006 13:44:45 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDijiT079453; Fri, 29 Sep 2006 13:44:45 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDijRO079452; Fri, 29 Sep 2006 13:44:45 GMT (envelope-from cperciva) Message-Id: <200609291344.k8TDijRO079452@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:44:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.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: Fri, 29 Sep 2006 13:47:04 -0000 cperciva 2006-09-29 13:44:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.3.2.19 +4 -0 src/UPDATING 1.1.1.9.4.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.69.2.8.2.15 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:47:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7D8016A61D; Fri, 29 Sep 2006 13:47:28 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA0F043D6B; Fri, 29 Sep 2006 13:45:02 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDj2ZI079504; Fri, 29 Sep 2006 13:45:02 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDj1a4079503; Fri, 29 Sep 2006 13:45:01 GMT (envelope-from cperciva) Message-Id: <200609291345.k8TDj1a4079503@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:45:01 +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/crypto/openssl/crypto/dh dh_key.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, 29 Sep 2006 13:47:29 -0000 cperciva 2006-09-29 13:45:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) crypto/openssl/crypto/dh dh_key.c Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.8.4.3 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:47:41 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7216F16A616; Fri, 29 Sep 2006 13:47:41 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFA4E43DAD; Fri, 29 Sep 2006 13:45:43 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDjhZ1079618; Fri, 29 Sep 2006 13:45:43 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDjhpk079617; Fri, 29 Sep 2006 13:45:43 GMT (envelope-from cperciva) Message-Id: <200609291345.k8TDjhpk079617@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:45:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_5 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.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: Fri, 29 Sep 2006 13:47:41 -0000 cperciva 2006-09-29 13:45:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_5) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.35.2.7 +4 -0 src/UPDATING 1.1.1.8.4.1.4.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.62.2.21.2.9 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:47:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED1EC16A51F; Fri, 29 Sep 2006 13:47:48 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 683F643E54; Fri, 29 Sep 2006 13:45:59 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDjx9r079690; Fri, 29 Sep 2006 13:45:59 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDjxc8079689; Fri, 29 Sep 2006 13:45:59 GMT (envelope-from cperciva) Message-Id: <200609291345.k8TDjxc8079689@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:45:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_4 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.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: Fri, 29 Sep 2006 13:47:49 -0000 cperciva 2006-09-29 13:45:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_4) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.24.2.30 +4 -0 src/UPDATING 1.1.1.8.4.1.2.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.62.2.18.2.26 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:48:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD2F616A97D; Fri, 29 Sep 2006 13:48:15 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94FCB43E8A; Fri, 29 Sep 2006 13:46:11 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDkBSs079771; Fri, 29 Sep 2006 13:46:11 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDkBsd079770; Fri, 29 Sep 2006 13:46:11 GMT (envelope-from cperciva) Message-Id: <200609291346.k8TDkBsd079770@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:46:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_3 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.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: Fri, 29 Sep 2006 13:48:16 -0000 cperciva 2006-09-29 13:46:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_3) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.13.2.39 +4 -0 src/UPDATING 1.1.1.8.6.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.62.2.15.2.41 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:48:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D58E16A989; Fri, 29 Sep 2006 13:48:16 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E676B43E36; Fri, 29 Sep 2006 13:46:23 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDkNcR079808; Fri, 29 Sep 2006 13:46:23 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDkNhr079807; Fri, 29 Sep 2006 13:46:23 GMT (envelope-from cperciva) Message-Id: <200609291346.k8TDkNhr079807@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:46:23 +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/crypto/openssl/crypto/dh dh_key.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, 29 Sep 2006 13:48:16 -0000 cperciva 2006-09-29 13:46:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssl/crypto/dh dh_key.c Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.1.2.9 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:48:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0D0016A6AF; Fri, 29 Sep 2006 13:48:41 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E3D143E2D; Fri, 29 Sep 2006 13:46:41 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDkfPm079885; Fri, 29 Sep 2006 13:46:41 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDkfdx079884; Fri, 29 Sep 2006 13:46:41 GMT (envelope-from cperciva) Message-Id: <200609291346.k8TDkfdx079884@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:46:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_11 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.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: Fri, 29 Sep 2006 13:48:42 -0000 cperciva 2006-09-29 13:46:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_4_11) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.73.2.91.2.25 +4 -0 src/UPDATING 1.1.1.1.2.7.6.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.44.2.39.2.28 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:49:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE32216A720; Fri, 29 Sep 2006 13:49:01 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7A4243DE4; Fri, 29 Sep 2006 13:47:39 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDld9S079957; Fri, 29 Sep 2006 13:47:39 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDld9N079956; Fri, 29 Sep 2006 13:47:39 GMT (envelope-from andre) Message-Id: <200609291347.k8TDld9N079956@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:47: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/em if_em.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, 29 Sep 2006 13:49:02 -0000 andre 2006-09-29 13:47:39 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Remove manual vlan header insertion in em_encap(). It is unnecessary as the generic vlan_start() takes care of it when vlan hardware insertion is disabled. In em_set_promisc() add a note that BPF may also be enabled without going into promisc mode. Reviewed by: jfv Revision Changes Path 1.152 +5 -36 src/sys/dev/em/if_em.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 13:56:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB84516A403; Fri, 29 Sep 2006 13:56:47 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B1CB43D8B; Fri, 29 Sep 2006 13:54:07 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDs4CL080409; Fri, 29 Sep 2006 13:54:04 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDs42v080408; Fri, 29 Sep 2006 13:54:04 GMT (envelope-from andre) Message-Id: <200609291354.k8TDs42v080408@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:54: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/dev/em if_em.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, 29 Sep 2006 13:56:48 -0000 andre 2006-09-29 13:54:04 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Small style and comment adjustments. Reviewed by: jfv Revision Changes Path 1.153 +6 -4 src/sys/dev/em/if_em.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 14:08:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 326F116A415; Fri, 29 Sep 2006 14:08:54 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9826943D7B; Fri, 29 Sep 2006 14:08:53 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TE8rsO082667; Fri, 29 Sep 2006 14:08:53 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TE8rdE082665; Fri, 29 Sep 2006 14:08:53 GMT (envelope-from ariff) Message-Id: <200609291408.k8TE8rdE082665@repoman.freebsd.org> From: Ariff Abdullah Date: Fri, 29 Sep 2006 14:08: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/sys/dev/sound/pcm mixer.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, 29 Sep 2006 14:08:54 -0000 ariff 2006-09-29 14:08:53 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.c Log: Fix pointer dereference before NULL pointer checking. Noticed by: netchild CID: 243889 Found by: Coverity Prevent (TM) Revision Changes Path 1.53 +3 -1 src/sys/dev/sound/pcm/mixer.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 15:20:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4AAB16A40F; Fri, 29 Sep 2006 15:20:51 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4839343D6A; Fri, 29 Sep 2006 15:20:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TFKn1W087772; Fri, 29 Sep 2006 15:20:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TFKnUJ087771; Fri, 29 Sep 2006 15:20:49 GMT (envelope-from ru) Message-Id: <200609291520.k8TFKnUJ087771@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 15:20: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/du du.1 src/usr.bin/file magic.5 src/usr.bin/find find.1 src/usr.bin/locate/locate locate.1 src/usr.bin/logger logger.1 src/usr.bin/login login.1 src/usr.bin/lorder lorder.1 src/usr.bin/make make.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: Fri, 29 Sep 2006 15:20:51 -0000 ru 2006-09-29 15:20:48 UTC FreeBSD src repository Modified files: usr.bin/du du.1 usr.bin/file magic.5 usr.bin/find find.1 usr.bin/locate/locate locate.1 usr.bin/logger logger.1 usr.bin/login login.1 usr.bin/lorder lorder.1 usr.bin/make make.1 usr.bin/mktemp mktemp.1 usr.bin/mkuzip mkuzip.8 usr.bin/netstat netstat.1 usr.bin/split split.1 usr.bin/su su.1 usr.bin/time time.1 usr.bin/truncate truncate.1 usr.bin/truss truss.1 usr.bin/vmstat vmstat.8 usr.bin/whois whois.1 usr.bin/xargs xargs.1 usr.bin/xinstall install.1 Log: Markup fixes. Revision Changes Path 1.32 +5 -1 src/usr.bin/du/du.1 1.27 +1 -6 src/usr.bin/file/magic.5 1.79 +2 -1 src/usr.bin/find/find.1 1.34 +8 -6 src/usr.bin/locate/locate/locate.1 1.19 +2 -1 src/usr.bin/logger/logger.1 1.32 +2 -2 src/usr.bin/login/login.1 1.9 +3 -3 src/usr.bin/lorder/lorder.1 1.98 +1 -1 src/usr.bin/make/make.1 1.21 +1 -1 src/usr.bin/mktemp/mktemp.1 1.7 +5 -1 src/usr.bin/mkuzip/mkuzip.8 1.57 +7 -6 src/usr.bin/netstat/netstat.1 1.21 +9 -3 src/usr.bin/split/split.1 1.39 +3 -3 src/usr.bin/su/su.1 1.26 +1 -1 src/usr.bin/time/time.1 1.14 +1 -1 src/usr.bin/truncate/truncate.1 1.21 +2 -2 src/usr.bin/truss/truss.1 1.34 +1 -1 src/usr.bin/vmstat/vmstat.8 1.36 +3 -2 src/usr.bin/whois/whois.1 1.37 +3 -3 src/usr.bin/xargs/xargs.1 1.35 +6 -4 src/usr.bin/xinstall/install.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 15:36:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96B0C16A403; Fri, 29 Sep 2006 15:36:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 413DF43D96; Fri, 29 Sep 2006 15:36:20 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TFaKKN088738; Fri, 29 Sep 2006 15:36:20 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TFaKd7088737; Fri, 29 Sep 2006 15:36:20 GMT (envelope-from ru) Message-Id: <200609291536.k8TFaKd7088737@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 15:36: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/share/mk bsd.info.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 15:36:20 -0000 ru 2006-09-29 15:36:19 UTC FreeBSD src repository Modified files: share/mk bsd.info.mk Log: Don't run install-info under lockf if not installing in parallel. Requested by: rwatson Revision Changes Path 1.74 +7 -0 src/share/mk/bsd.info.mk From owner-cvs-src@FreeBSD.ORG Fri Sep 29 15:45:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6794416A417; Fri, 29 Sep 2006 15:45:14 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA3443D5F; Fri, 29 Sep 2006 15:45:12 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TFjCo0089317; Fri, 29 Sep 2006 15:45:12 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TFjBDL089313; Fri, 29 Sep 2006 15:45:11 GMT (envelope-from bms) Message-Id: <200609291545.k8TFjBDL089313@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 15:45: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/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 15:45:14 -0000 bms 2006-09-29 15:45:11 UTC FreeBSD src repository Modified files: etc/defaults rc.conf etc/rc.d mrouted share/man/man4 ip6.4 share/man/man4/man4.i386 wl.4 share/man/man5 rc.conf.5 sys/netinet ip_mroute.c ip_mroute.h sys/netinet6 ip6_mroute.h usr.bin/netstat mroute.c mroute6.c usr.sbin/crunch/examples really-big.conf Log: Push removal of mrouted down to the rest of the tree. Revision Changes Path 1.297 +5 -1 src/etc/defaults/rc.conf 1.10 +1 -1 src/etc/rc.d/mrouted 1.21 +2 -3 src/share/man/man4/ip6.4 1.21 +2 -3 src/share/man/man4/man4.i386/wl.4 1.307 +7 -4 src/share/man/man5/rc.conf.5 1.120 +1 -1 src/sys/netinet/ip_mroute.c 1.27 +1 -1 src/sys/netinet/ip_mroute.h 1.8 +1 -1 src/sys/netinet6/ip6_mroute.h 1.25 +1 -1 src/usr.bin/netstat/mroute.c 1.17 +1 -1 src/usr.bin/netstat/mroute6.c 1.6 +2 -2 src/usr.sbin/crunch/examples/really-big.conf From owner-cvs-src@FreeBSD.ORG Fri Sep 29 15:51:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C90CF16A407; Fri, 29 Sep 2006 15:51:29 +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 DA2AC43D77; Fri, 29 Sep 2006 15:51:28 +0000 (GMT) (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 k8TFpQRV092009 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 29 Sep 2006 19:51:27 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8TFpQDH092008; Fri, 29 Sep 2006 19:51:26 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 29 Sep 2006 19:51:26 +0400 From: Gleb Smirnoff To: Bruce M Simpson Message-ID: <20060929155126.GT59833@FreeBSD.org> References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200609291545.k8TFjBDL089313@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/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 15:51:29 -0000 On Fri, Sep 29, 2006 at 03:45:11PM +0000, Bruce M Simpson wrote: B> bms 2006-09-29 15:45:11 UTC B> B> FreeBSD src repository B> B> Modified files: B> etc/defaults rc.conf B> etc/rc.d mrouted B> share/man/man4 ip6.4 B> share/man/man4/man4.i386 wl.4 B> share/man/man5 rc.conf.5 B> sys/netinet ip_mroute.c ip_mroute.h B> sys/netinet6 ip6_mroute.h B> usr.bin/netstat mroute.c mroute6.c B> usr.sbin/crunch/examples really-big.conf B> Log: B> Push removal of mrouted down to the rest of the tree. B> B> Revision Changes Path B> 1.297 +5 -1 src/etc/defaults/rc.conf B> 1.10 +1 -1 src/etc/rc.d/mrouted B> 1.21 +2 -3 src/share/man/man4/ip6.4 B> 1.21 +2 -3 src/share/man/man4/man4.i386/wl.4 B> 1.307 +7 -4 src/share/man/man5/rc.conf.5 B> 1.120 +1 -1 src/sys/netinet/ip_mroute.c B> 1.27 +1 -1 src/sys/netinet/ip_mroute.h B> 1.8 +1 -1 src/sys/netinet6/ip6_mroute.h B> 1.25 +1 -1 src/usr.bin/netstat/mroute.c B> 1.17 +1 -1 src/usr.bin/netstat/mroute6.c B> 1.6 +2 -2 src/usr.sbin/crunch/examples/really-big.conf Afaik, /etc/rc.d/mrouted must be deleted and the port should install their own /usr/local/etc/rc.d/mrouted. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:07:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E22016A403; Fri, 29 Sep 2006 16:07:49 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1424743D77; Fri, 29 Sep 2006 16:07:45 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TG7ixB091571; Fri, 29 Sep 2006 16:07:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TG7iW1091570; Fri, 29 Sep 2006 16:07:44 GMT (envelope-from ru) Message-Id: <200609291607.k8TG7iW1091570@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:07: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/usr.sbin/arp arp.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, 29 Sep 2006 16:07:49 -0000 ru 2006-09-29 16:07:44 UTC FreeBSD src repository Modified files: usr.sbin/arp arp.c Log: Sync utility's usage() with manpage's SYNOPSIS. Revision Changes Path 1.63 +2 -2 src/usr.sbin/arp/arp.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:10:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78C5616A403; Fri, 29 Sep 2006 16:10:29 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36D6443D5E; Fri, 29 Sep 2006 16:10:29 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGATCH091756; Fri, 29 Sep 2006 16:10:29 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGATfD091752; Fri, 29 Sep 2006 16:10:29 GMT (envelope-from ru) Message-Id: <200609291610.k8TGATfD091752@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:10: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/usr.sbin/asf asf.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, 29 Sep 2006 16:10:29 -0000 ru 2006-09-29 16:10:28 UTC FreeBSD src repository Modified files: usr.sbin/asf asf.c Log: Whitespace nit. Revision Changes Path 1.11 +1 -1 src/usr.sbin/asf/asf.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:12:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E943C16A407; Fri, 29 Sep 2006 16:12:51 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 587DD43D66; Fri, 29 Sep 2006 16:12:51 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 08E8EDAEBD7; Fri, 29 Sep 2006 12:12:50 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 29 Sep 2006 12:12:52 -0400 X-Sasl-enc: DBaQ2uAG1Tv69vHV0yCRbzNGnYNhHbSi1Ykx5ASQEkqA 1159546372 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 D1DA511348; Fri, 29 Sep 2006 12:12:51 -0400 (EDT) Message-ID: <451D4600.30503@FreeBSD.org> Date: Fri, 29 Sep 2006 17:12:48 +0100 From: "Bruce M. Simpson" User-Agent: Thunderbird 1.5.0.5 (X11/20060825) MIME-Version: 1.0 To: Gleb Smirnoff References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> <20060929155126.GT59833@FreeBSD.org> In-Reply-To: <20060929155126.GT59833@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/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 16:12:52 -0000 Gleb Smirnoff wrote: > Afaik, /etc/rc.d/mrouted must be deleted and the port should install > their own /usr/local/etc/rc.d/mrouted. > This would be inconsistent with mroute6d, therefore I have left it there for the time being. Regards, BMS From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:16:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C719F16A412; Fri, 29 Sep 2006 16:16:42 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5944C43D77; Fri, 29 Sep 2006 16:16:42 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGGgPd092163; Fri, 29 Sep 2006 16:16:42 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGGgNs092162; Fri, 29 Sep 2006 16:16:42 GMT (envelope-from bms) Message-Id: <200609291616.k8TGGgNs092162@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 16:16: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/netstat mroute.c mroute6.c src/sys/netinet ip_mroute.h src/sys/netinet6 ip6_mroute.h src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.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, 29 Sep 2006 16:16:42 -0000 bms 2006-09-29 16:16:41 UTC FreeBSD src repository Modified files: usr.bin/netstat mroute6.c mroute.c sys/netinet ip_mroute.h sys/netinet6 ip6_mroute.h share/man/man4 ip6.4 share/man/man4/man4.i386 wl.4 Log: Nits. Submitted by: ru Revision Changes Path 1.22 +2 -1 src/share/man/man4/ip6.4 1.22 +2 -1 src/share/man/man4/man4.i386/wl.4 1.28 +1 -1 src/sys/netinet/ip_mroute.h 1.9 +1 -1 src/sys/netinet6/ip6_mroute.h 1.26 +1 -1 src/usr.bin/netstat/mroute.c 1.18 +1 -1 src/usr.bin/netstat/mroute6.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:29:48 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7151216A417; Fri, 29 Sep 2006 16:29:48 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FAB543DA4; Fri, 29 Sep 2006 16:28:51 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 5BCD846CEF; Fri, 29 Sep 2006 12:28:30 -0400 (EDT) Date: Fri, 29 Sep 2006 17:28:30 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Ruslan Ermilov In-Reply-To: <200609291536.k8TFaKd7088737@repoman.freebsd.org> Message-ID: <20060929172814.D74256@fledge.watson.org> References: <200609291536.k8TFaKd7088737@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.info.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 16:29:48 -0000 On Fri, 29 Sep 2006, Ruslan Ermilov wrote: > ru 2006-09-29 15:36:19 UTC > > FreeBSD src repository > > Modified files: > share/mk bsd.info.mk > Log: > Don't run install-info under lockf if not installing in parallel. > > Requested by: rwatson > > Revision Changes Path > 1.74 +7 -0 src/share/mk/bsd.info.mk Thanks. Do you plan to MFC this in a few days, also? Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:50:28 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A454F16A4F8; Fri, 29 Sep 2006 16:50:28 +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 EB38B43F92; Fri, 29 Sep 2006 16:38:47 +0000 (GMT) (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 k8TGcORp092395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 29 Sep 2006 20:38:25 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8TGcO1M092394; Fri, 29 Sep 2006 20:38:24 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 29 Sep 2006 20:38:24 +0400 From: Gleb Smirnoff To: "Bruce M. Simpson" Message-ID: <20060929163824.GV59833@FreeBSD.org> References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> <20060929155126.GT59833@FreeBSD.org> <451D4600.30503@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <451D4600.30503@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/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 16:50:29 -0000 On Fri, Sep 29, 2006 at 05:12:48PM +0100, Bruce M. Simpson wrote: B> >Afaik, /etc/rc.d/mrouted must be deleted and the port should install B> >their own /usr/local/etc/rc.d/mrouted. B> > B> This would be inconsistent with mroute6d, therefore I have left it there B> for the time being. Not sure that mroute6d rc script is in its place. Anyway, let's leave this to rc gurus. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:55:17 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13DFA16A412; Fri, 29 Sep 2006 16:55:17 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BEC64423D; Fri, 29 Sep 2006 16:46:05 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGikX6014214; Fri, 29 Sep 2006 16:44:46 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGikZv014207; Fri, 29 Sep 2006 16:44:46 GMT (envelope-from andre) Message-Id: <200609291644.k8TGikZv014207@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 16:44: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/netinet ip_output.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, 29 Sep 2006 16:55:17 -0000 andre 2006-09-29 16:44:46 UTC FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Remove stone-aged and irrelevant "#ifndef notdef". Revision Changes Path 1.266 +2 -2 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:55:33 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 644B116A5D5; Fri, 29 Sep 2006 16:55:33 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51F9044272; Fri, 29 Sep 2006 16:46:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGk1Tk016277; Fri, 29 Sep 2006 16:46:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGk1DX016276; Fri, 29 Sep 2006 16:46:01 GMT (envelope-from ru) Message-Id: <200609291646.k8TGk1DX016276@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:46: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/usr.sbin/devinfo devinfo.8 devinfo.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, 29 Sep 2006 16:55:33 -0000 ru 2006-09-29 16:46:01 UTC FreeBSD src repository Modified files: usr.sbin/devinfo devinfo.8 devinfo.c Log: Sync usage() and SYNOPSIS. Revision Changes Path 1.9 +1 -1 src/usr.sbin/devinfo/devinfo.8 1.6 +5 -1 src/usr.sbin/devinfo/devinfo.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:56:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CD1F16A77C; Fri, 29 Sep 2006 16:56:10 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7F8B43E3F; Fri, 29 Sep 2006 16:51:30 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGpUp6026354; Fri, 29 Sep 2006 16:51:30 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGpUkk026353; Fri, 29 Sep 2006 16:51:30 GMT (envelope-from ru) Message-Id: <200609291651.k8TGpUkk026353@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:51: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/usr.sbin/gstat gstat.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: Fri, 29 Sep 2006 16:56:10 -0000 ru 2006-09-29 16:51:29 UTC FreeBSD src repository Modified files: usr.sbin/gstat gstat.8 Log: Language tweak. Revision Changes Path 1.9 +1 -1 src/usr.sbin/gstat/gstat.8 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 16:57:00 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E754316A4E0; Fri, 29 Sep 2006 16:57:00 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from sccmmhc91.asp.att.net (sccmmhc91.asp.att.net [204.127.203.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9BBD43E8B; Fri, 29 Sep 2006 16:54:43 +0000 (GMT) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net ([12.207.12.9]) by sccmmhc91.asp.att.net (sccmmhc91) with ESMTP id <20060929165442m9100slgdje>; Fri, 29 Sep 2006 16:54:43 +0000 Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.13.8/8.13.8) with ESMTP id k8TGseYt093771; Fri, 29 Sep 2006 11:54:41 -0500 (CDT) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.13.8/8.13.8/Submit) id k8TGsdrF093770; Fri, 29 Sep 2006 11:54:39 -0500 (CDT) (envelope-from brooks) Date: Fri, 29 Sep 2006 11:54:39 -0500 From: Brooks Davis To: Gleb Smirnoff Message-ID: <20060929165439.GA93639@lor.one-eyed-alien.net> References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> <20060929155126.GT59833@FreeBSD.org> <451D4600.30503@FreeBSD.org> <20060929163824.GV59833@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline In-Reply-To: <20060929163824.GV59833@FreeBSD.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, "Bruce M. Simpson" , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 16:57:01 -0000 --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 08:38:24PM +0400, Gleb Smirnoff wrote: > On Fri, Sep 29, 2006 at 05:12:48PM +0100, Bruce M. Simpson wrote: > B> >Afaik, /etc/rc.d/mrouted must be deleted and the port should install > B> >their own /usr/local/etc/rc.d/mrouted. > B> > =20 > B> This would be inconsistent with mroute6d, therefore I have left it the= re=20 > B> for the time being. >=20 > Not sure that mroute6d rc script is in its place. Anyway, let's leave thi= s to > rc gurus. IMO, it's OK if rc scripts in the base support ports as an alternative to something in the base (for example the sshd script), but we shouldn't have scripts in the base that don't have anything to start without ports. -- Brooks --BOKacYhQ+x31HxR3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHU/PXY6L6fI4GtQRAvyIAJ9Ke30Ko1vK9Re1EiZE02JDqtcFVgCg1HFm dza9zFqJgewyLAmVKO5AiKo= =HH0h -----END PGP SIGNATURE----- --BOKacYhQ+x31HxR3-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 17:04:08 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0923F16A412; Fri, 29 Sep 2006 17:04:08 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CC6943D6D; Fri, 29 Sep 2006 17:04:03 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TH43Gi028051; Fri, 29 Sep 2006 17:04:03 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TH43Gd028050; Fri, 29 Sep 2006 17:04:03 GMT (envelope-from ru) Message-Id: <200609291704.k8TH43Gd028050@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:04: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/usr.sbin/jexec jexec.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, 29 Sep 2006 17:04:08 -0000 ru 2006-09-29 17:04:03 UTC FreeBSD src repository Modified files: usr.sbin/jexec jexec.c Log: Sync usage() with manpage's SYNOPSIS. Revision Changes Path 1.4 +1 -1 src/usr.sbin/jexec/jexec.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 17:17:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A9FC16A415; Fri, 29 Sep 2006 17:17:54 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14EA543D77; Fri, 29 Sep 2006 17:17:53 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THHrIc028766; Fri, 29 Sep 2006 17:17:53 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THHr2v028765; Fri, 29 Sep 2006 17:17:53 GMT (envelope-from ru) Message-Id: <200609291717.k8THHr2v028765@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:17: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.sbin/pkg_install/add 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: Fri, 29 Sep 2006 17:17:54 -0000 ru 2006-09-29 17:17:53 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add main.c Log: Sync usage() with manpage's SYNOPSIS. Revision Changes Path 1.70 +1 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 17:23:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4D7A16A40F; Fri, 29 Sep 2006 17:23:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9F9E43D77; Fri, 29 Sep 2006 17:23:14 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THNES7029086; Fri, 29 Sep 2006 17:23:14 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THNEU3029085; Fri, 29 Sep 2006 17:23:14 GMT (envelope-from ru) Message-Id: <200609291723.k8THNEU3029085@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:23: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/usr.sbin/pkg_install/create 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: Fri, 29 Sep 2006 17:23:20 -0000 ru 2006-09-29 17:23:14 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/create main.c Log: Fix usage(). Revision Changes Path 1.40 +6 -6 src/usr.sbin/pkg_install/create/main.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 17:28:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9636316A403; Fri, 29 Sep 2006 17:28:05 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1A5A43D68; Fri, 29 Sep 2006 17:28:01 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THS1VL029317; Fri, 29 Sep 2006 17:28:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THS1dW029316; Fri, 29 Sep 2006 17:28:01 GMT (envelope-from ru) Message-Id: <200609291728.k8THS1dW029316@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:28: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/usr.sbin/pmcstat pmcstat.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, 29 Sep 2006 17:28:05 -0000 ru 2006-09-29 17:28:01 UTC FreeBSD src repository Modified files: usr.sbin/pmcstat pmcstat.c Log: Line up usage output. Revision Changes Path 1.14 +1 -1 src/usr.sbin/pmcstat/pmcstat.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 17:36:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A05916A412; Fri, 29 Sep 2006 17:36:40 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AE4543D5F; Fri, 29 Sep 2006 17:36:39 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THadP3029787; Fri, 29 Sep 2006 17:36:39 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THadbR029786; Fri, 29 Sep 2006 17:36:39 GMT (envelope-from ru) Message-Id: <200609291736.k8THadbR029786@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:36: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/usr.sbin/syslogd syslogd.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, 29 Sep 2006 17:36:40 -0000 ru 2006-09-29 17:36:39 UTC FreeBSD src repository Modified files: usr.sbin/syslogd syslogd.c Log: Sync usage() with manpage's SYNOPSIS. Revision Changes Path 1.152 +2 -2 src/usr.sbin/syslogd/syslogd.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 17:57:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 285E616A412; Fri, 29 Sep 2006 17:57:09 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26A0F43D77; Fri, 29 Sep 2006 17:57:05 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THv5X4031087; Fri, 29 Sep 2006 17:57:05 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THv4sw031086; Fri, 29 Sep 2006 17:57:04 GMT (envelope-from ru) Message-Id: <200609291757.k8THv4sw031086@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:57: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/usr.sbin/adduser adduser.8 src/usr.sbin/arp arp.4 src/usr.sbin/asf asf.8 src/usr.sbin/crunch/crunchgen crunchgen.1 src/usr.sbin/iostat iostat.8 src/usr.sbin/jail jail.8 src/usr.sbin/jexec jexec.8 src/usr.sbin/kbdcontrol kbdcontrol.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: Fri, 29 Sep 2006 17:57:09 -0000 ru 2006-09-29 17:57:04 UTC FreeBSD src repository Modified files: usr.sbin/adduser adduser.8 usr.sbin/arp arp.4 usr.sbin/asf asf.8 usr.sbin/crunch/crunchgen crunchgen.1 usr.sbin/iostat iostat.8 usr.sbin/jail jail.8 usr.sbin/jexec jexec.8 usr.sbin/kbdcontrol kbdcontrol.1 usr.sbin/mailwrapper mailwrapper.8 usr.sbin/moused moused.8 usr.sbin/mtree mtree.8 usr.sbin/newsyslog newsyslog.conf.5 usr.sbin/ntp/doc ntp.conf.5 ntpd.8 ntpdc.8 ntpq.8 usr.sbin/pkg_install/info pkg_info.1 usr.sbin/pmcstat pmcstat.8 usr.sbin/portsnap/portsnap portsnap.8 usr.sbin/syslogd syslog.conf.5 usr.sbin/watchdogd watchdog.8 watchdogd.8 usr.sbin/wpa/hostapd hostapd.conf.5 usr.sbin/wpa/ndis_events ndis_events.8 Log: Markup fixes. Revision Changes Path 1.57 +2 -2 src/usr.sbin/adduser/adduser.8 1.23 +10 -13 src/usr.sbin/arp/arp.4 1.9 +3 -3 src/usr.sbin/asf/asf.8 1.31 +3 -2 src/usr.sbin/crunch/crunchgen/crunchgen.1 1.29 +1 -1 src/usr.sbin/iostat/iostat.8 1.81 +11 -9 src/usr.sbin/jail/jail.8 1.4 +1 -0 src/usr.sbin/jexec/jexec.8 1.40 +8 -11 src/usr.sbin/kbdcontrol/kbdcontrol.1 1.14 +1 -3 src/usr.sbin/mailwrapper/mailwrapper.8 1.60 +22 -17 src/usr.sbin/moused/moused.8 1.55 +1 -1 src/usr.sbin/mtree/mtree.8 1.6 +1 -1 src/usr.sbin/newsyslog/newsyslog.conf.5 1.21 +333 -171 src/usr.sbin/ntp/doc/ntp.conf.5 1.13 +6 -3 src/usr.sbin/ntp/doc/ntpd.8 1.15 +12 -7 src/usr.sbin/ntp/doc/ntpdc.8 1.19 +73 -36 src/usr.sbin/ntp/doc/ntpq.8 1.57 +1 -1 src/usr.sbin/pkg_install/info/pkg_info.1 1.10 +5 -4 src/usr.sbin/pmcstat/pmcstat.8 1.10 +12 -12 src/usr.sbin/portsnap/portsnap/portsnap.8 1.43 +3 -2 src/usr.sbin/syslogd/syslog.conf.5 1.8 +1 -1 src/usr.sbin/watchdogd/watchdog.8 1.7 +1 -1 src/usr.sbin/watchdogd/watchdogd.8 1.4 +4 -3 src/usr.sbin/wpa/hostapd/hostapd.conf.5 1.5 +16 -9 src/usr.sbin/wpa/ndis_events/ndis_events.8 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:06:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D183216A403; Fri, 29 Sep 2006 18:06:00 +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 1B88D43D58; Fri, 29 Sep 2006 18:05:59 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 2BF436138; Fri, 29 Sep 2006 22:05:58 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 086DF606F; Fri, 29 Sep 2006 22:05:58 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TI5x6H037761; Fri, 29 Sep 2006 22:05:59 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 22:05:59 +0400 From: Ruslan Ermilov To: Robert Watson Message-ID: <20060929180559.GA37741@rambler-co.ru> References: <200609291536.k8TFaKd7088737@repoman.freebsd.org> <20060929172814.D74256@fledge.watson.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZPt4rx8FFjLCG7dd" Content-Disposition: inline In-Reply-To: <20060929172814.D74256@fledge.watson.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.info.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 18:06:00 -0000 --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 05:28:30PM +0100, Robert Watson wrote: >=20 > On Fri, 29 Sep 2006, Ruslan Ermilov wrote: >=20 > >ru 2006-09-29 15:36:19 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/mk bsd.info.mk > > Log: > > Don't run install-info under lockf if not installing in parallel. > > > > Requested by: rwatson > > > > Revision Changes Path > > 1.74 +7 -0 src/share/mk/bsd.info.mk >=20 > Thanks. Do you plan to MFC this in a few days, also? >=20 OK, will do. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --ZPt4rx8FFjLCG7dd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHWCHqRfpzJluFF4RAmJxAJ9oRGNl4+LekPUBM0w5+oPVP8tHmwCgmnGe ick02FbZkmp1lpmXlMArf5g= =C0ws -----END PGP SIGNATURE----- --ZPt4rx8FFjLCG7dd-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:10:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4B1416A522; Fri, 29 Sep 2006 18:10:16 +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 959E343D53; Fri, 29 Sep 2006 18:10:15 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id B110C60D4; Fri, 29 Sep 2006 22:10:14 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id A6E2860C1; Fri, 29 Sep 2006 22:10:14 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TIAGNX037865; Fri, 29 Sep 2006 22:10:16 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 22:10:16 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060929181016.GD37741@rambler-co.ru> References: <200609291616.k8TGGgNs092162@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GyRA7555PLgSTuth" Content-Disposition: inline In-Reply-To: <200609291616.k8TGGgNs092162@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/netstat mroute.c mroute6.c src/sys/netinet ip_mroute.h src/sys/netinet6 ip6_mroute.h src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.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, 29 Sep 2006 18:10:16 -0000 --GyRA7555PLgSTuth Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 04:16:42PM +0000, Bruce M Simpson wrote: > bms 2006-09-29 16:16:41 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/netstat mroute6.c mroute.c=20 > sys/netinet ip_mroute.h=20 > sys/netinet6 ip6_mroute.h=20 > share/man/man4 ip6.4=20 > share/man/man4/man4.i386 wl.4=20 > Log: > Nits. > =20 > Submitted by: ru > =20 > Revision Changes Path > 1.22 +2 -1 src/share/man/man4/ip6.4 > 1.22 +2 -1 src/share/man/man4/man4.i386/wl.4 > 1.28 +1 -1 src/sys/netinet/ip_mroute.h > 1.9 +1 -1 src/sys/netinet6/ip6_mroute.h > 1.26 +1 -1 src/usr.bin/netstat/mroute.c > 1.18 +1 -1 src/usr.bin/netstat/mroute6.c >=20 Thanks! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --GyRA7555PLgSTuth Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHWGIqRfpzJluFF4RAga2AJ9MZw4Fryg8+cD66oAody4UxZEnzgCePt9i 7u9FypZSma7MPFNCd1Lxr2Y= =/2jX -----END PGP SIGNATURE----- --GyRA7555PLgSTuth-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:23:58 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A54BD16A415; Fri, 29 Sep 2006 18:23:58 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8773043D7D; Fri, 29 Sep 2006 18:23:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8TINmeS017072; Fri, 29 Sep 2006 14:23:48 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Andre Oppermann Date: Fri, 29 Sep 2006 14:23:46 -0400 User-Agent: KMail/1.9.1 References: <200609291347.k8TDld9N079956@repoman.freebsd.org> In-Reply-To: <200609291347.k8TDld9N079956@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609291423.46738.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 29 Sep 2006 14:23:48 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1950/Thu Sep 28 10:11:54 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/em if_em.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, 29 Sep 2006 18:23:58 -0000 On Friday 29 September 2006 09:47, Andre Oppermann wrote: > andre 2006-09-29 13:47:39 UTC > > FreeBSD src repository > > Modified files: > sys/dev/em if_em.c > Log: > Remove manual vlan header insertion in em_encap(). It is unnecessary as the > generic vlan_start() takes care of it when vlan hardware insertion is disabled. > > In em_set_promisc() add a note that BPF may also be enabled without going into > promisc mode. > > Reviewed by: jfv Umm, you just broke things. You are still disabling vlan header insertion in hardware but you haven't turned off the capability (which you can't do safely anyway since you still might have packets in flight that have a vlan tag after you turn off the capability) so the generic vlan layer is going to keep sending packets with vlan tags. The more complete patch I had sent to Prafulla, Jack, and others stopped disabling vlan tagging in hardware altogether and instead is going to require the other parts of the stack (like bpf) to handle vlan tags that are in mtag (or in 7.x, in the mbuf header) rather than inline in the packet data. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:26:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D83AB16A412; Fri, 29 Sep 2006 18:26:52 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1F9943D77; Fri, 29 Sep 2006 18:26:44 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TIQeav028670; Fri, 29 Sep 2006 20:26:42 +0200 (CEST) (envelope-from mb@imp.ch) Date: Fri, 29 Sep 2006 20:26:40 +0200 (CEST) From: Martin Blapp To: Martin Blapp In-Reply-To: <200609290952.k8T9qvcU053566@repoman.freebsd.org> Message-ID: <20060929202338.W91466@godot.imp.ch> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 18:26:53 -0000 Hi all, > Free tty struct after last close. This should fix the pty-leak by numbers. > Remove workarounds for tty_refcount beeing 0, this will be fixed differently > later. > > Back out rev 1.145 since we initialize the tty struct from scratch and bad > things can't happen anymore. > Sigh. Peter Holmes stress tests did show that we still have problems. With the beckout of rev. 1.145 we get again the same panics as the pty_pts code does. This is deep somewhere in the devfs code. It does happen with/without freeing struct tty. Memory modified after free 0xc45b7d00(252) val=deadc0dd @ 0xc45b7d70 panic: Most recently used by DEVFS1 cpuid = 3 KDB: enter: panic [thread pid 1025 tid 100131 ] Stopped at kdb_enter+0x2b: nop db> where Tracing pid 1025 tid 100131 td 0xc44c71b0 kdb_enter(c091cc03) at kdb_enter+0x2b panic(c09385bd,c0914676,c093858e,c45b7d00,fc,...) at panic+0x14b mtrash_ctor(c45b7d00,100,0,502) at mtrash_ctor+0x4d uma_zalloc_arg(c186d1e0,0,502) at uma_zalloc_arg+0x10f malloc(d8,c09bd120,502,e679c8f0,c0670c4c,...) at malloc+0xb2 devfs_alloc(c45a3400,c45a3400,c4599c00,e679c918,c0670d5d,...) at devfs_alloc+0x17 make_dev_credv(c09cce00,d,c4341480,0,0,...) at make_dev_credv+0x34 make_dev_cred(c09cce00,d,c4341480,0,0,...) at make_dev_cred+0x21 pty_create_slave(c4341480,c45a3400,d) at pty_create_slave+0x53 ptcopen(c4599c00,3,2000,c44c71b0,c0a0bd28,0,c0918871,f1) at ptcopen+0x61 giant_open(c4599c00,3,2000,c44c71b0) at giant_open+0x30 devfs_open(e679ca14) at devfs_open+0x1e7 VOP_OPEN_APV(c09bd620,e679ca14) at VOP_OPEN_APV+0x9b vn_open_cred(e679cb7c,e679cc7c,0,c4341480,3,...) at vn_open_cred+0x41e vn_open(e679cb7c,e679cc7c,0,3) at vn_open+0x1e kern_open(c44c71b0,bfbfe410,0,3,0,...) at kern_open+0xb9 open(c44c71b0,e679cd04) at open+0x18 syscall(3b,3b,bfbf003b,bfbfe41b,ffffffff,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:31:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2296C16A51C; Fri, 29 Sep 2006 18:31:00 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48C7643D72; Fri, 29 Sep 2006 18:30:49 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TIUnHf033869; Fri, 29 Sep 2006 18:30:49 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TIUnC2033868; Fri, 29 Sep 2006 18:30:49 GMT (envelope-from jmg) Message-Id: <200609291830.k8TIUnC2033868@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 29 Sep 2006 18:30: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/kern kern_descrip.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, 29 Sep 2006 18:31:00 -0000 jmg 2006-09-29 18:30:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_descrip.c Log: MFC: v1.298 kern_descript.c > return EBADF instead of successfully attaching (and then panicing) when > an fd is dieing.. Approved by: re (kensmith) CVn: ---------------------------------------------------------------------- Revision Changes Path 1.279.2.9 +1 -1 src/sys/kern/kern_descrip.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:32:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1CAF16A417; Fri, 29 Sep 2006 18:32:13 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F9E743D5C; Fri, 29 Sep 2006 18:32:07 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TIW7jd033992; Fri, 29 Sep 2006 18:32:07 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TIW76b033991; Fri, 29 Sep 2006 18:32:07 GMT (envelope-from jmg) Message-Id: <200609291832.k8TIW76b033991@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 29 Sep 2006 18:32: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/sys/sys msgbuf.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, 29 Sep 2006 18:32:14 -0000 jmg 2006-09-29 18:32:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys msgbuf.h Log: MFC: v1.28 msgbuf.h default to 64k msgbuf Approved by: re (kensmith) Revision Changes Path 1.27.2.1 +0 -4 src/sys/sys/msgbuf.h From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:33:31 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A902D16A492; Fri, 29 Sep 2006 18:33:31 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17C7F43D6D; Fri, 29 Sep 2006 18:33:23 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.48.2]) by phk.freebsd.dk (Postfix) with ESMTP id 975EE170C7; Fri, 29 Sep 2006 18:33:21 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.8/8.13.8) with ESMTP id k8TIXFKb007510; Fri, 29 Sep 2006 18:33:16 GMT (envelope-from phk@critter.freebsd.dk) To: Martin Blapp From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 29 Sep 2006 20:26:40 +0200." <20060929202338.W91466@godot.imp.ch> Date: Fri, 29 Sep 2006 18:33:15 +0000 Message-ID: <7509.1159554795@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 18:33:31 -0000 In message <20060929202338.W91466@godot.imp.ch>, Martin Blapp writes: >Memory modified after free 0xc45b7d00(252) val=deadc0dd @ 0xc45b7d70 >panic: Most recently used by DEVFS1 Try zeroing all points to the cdev when you relinguish it, it's clearly a late access -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:36:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D16AB16A417; Fri, 29 Sep 2006 18:36:05 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 381C343D6A; Fri, 29 Sep 2006 18:36:04 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TIa1MD041351; Fri, 29 Sep 2006 20:36:02 +0200 (CEST) (envelope-from mb@imp.ch) Date: Fri, 29 Sep 2006 20:36:01 +0200 (CEST) From: Martin Blapp To: Poul-Henning Kamp In-Reply-To: <7509.1159554795@critter.freebsd.dk> Message-ID: <20060929203541.C91466@godot.imp.ch> References: <7509.1159554795@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 18:36:06 -0000 Hi, > > Try zeroing all points to the cdev when you relinguish it, it's > clearly a late access Will try ! Thanks for the pointer ! Martin From owner-cvs-src@FreeBSD.ORG Fri Sep 29 18:43:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CED5D16A415; Fri, 29 Sep 2006 18:43:42 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F90F43D8A; Fri, 29 Sep 2006 18:43:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id C3FA61A3C1C; Fri, 29 Sep 2006 11:43:31 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 48664514F7; Fri, 29 Sep 2006 14:43:31 -0400 (EDT) Date: Fri, 29 Sep 2006 14:43:31 -0400 From: Kris Kennaway To: Martin Blapp Message-ID: <20060929184331.GA33567@xor.obsecurity.org> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <20060929202338.W91466@godot.imp.ch> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 18:43:42 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 08:26:40PM +0200, Martin Blapp wrote: >=20 > Hi all, >=20 > > Free tty struct after last close. This should fix the pty-leak by numbe= rs. > > Remove workarounds for tty_refcount beeing 0, this will be fixed=20 > > differently > > later. > > > > Back out rev 1.145 since we initialize the tty struct from scratch and = bad > > things can't happen anymore. > > >=20 > Sigh. Peter Holmes stress tests did show that we still have problems. Wit= h=20 > the beckout of rev. 1.145 we get again the same panics as the pty_pts cod= e=20 > does. > This is deep somewhere in the devfs code. It does happen with/without=20 > freeing > struct tty. >=20 > Memory modified after free 0xc45b7d00(252) val=3Ddeadc0dd @ 0xc45b7d70 > panic: Most recently used by DEVFS1 You can identify precisely where the use-after-free occurs by configuring DEBUG_MEMGUARD; I posted a trace of what is probably the same bug once to current@ once but don't have it to hand. Kris --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHWlSWry0BWjoQKURAssEAKC8bfc+yWoVzhbfYEu5QWV4jH0dCwCgjRGa zZ1q4iYI3I+xgsk4hEgiB9c= =hKEa -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 19:00:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACC3E16A494; Fri, 29 Sep 2006 19:00:46 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4284E43D67; Fri, 29 Sep 2006 19:00:45 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJ0jh1035591; Fri, 29 Sep 2006 19:00:45 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJ0jgq035580; Fri, 29 Sep 2006 19:00:45 GMT (envelope-from netchild) Message-Id: <200609291900.k8TJ0jgq035580@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 29 Sep 2006 19:00: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/sys/i386/linux linux_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: Fri, 29 Sep 2006 19:00:46 -0000 netchild 2006-09-29 19:00:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/linux linux_machdep.c Log: MFC rev 1.56: Bring the i386 linux mmap code more into line with how linux (2.4.x) behaves. This fixes a lot of test which failed before. Submitted by: Marcin Cieslak (minor fixups by myself) Tested with: LTP Approved by: re Revision Changes Path 1.48.2.2 +42 -2 src/sys/i386/linux/linux_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 19:05:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D66ED16A4AB; Fri, 29 Sep 2006 19:05:29 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A236843D6A; Fri, 29 Sep 2006 19:05:25 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJ5PX6037001; Fri, 29 Sep 2006 19:05:25 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJ5PJ5037000; Fri, 29 Sep 2006 19:05:25 GMT (envelope-from netchild) Message-Id: <200609291905.k8TJ5PJ5037000@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 29 Sep 2006 19:05: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/i386/linux linux_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: Fri, 29 Sep 2006 19:05:30 -0000 netchild 2006-09-29 19:05:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/linux linux_machdep.c Log: MFC rev 1.57: style(9) Noticed by: ssouhlal Approved by: re Revision Changes Path 1.48.2.3 +4 -4 src/sys/i386/linux/linux_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 19:31:22 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48AD216A416; Fri, 29 Sep 2006 19:31:22 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5E9A43D58; Fri, 29 Sep 2006 19:31:21 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJVLS3038561; Fri, 29 Sep 2006 19:31:21 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJVLsW038560; Fri, 29 Sep 2006 19:31:21 GMT (envelope-from ru) Message-Id: <200609291931.k8TJVLsW038560@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 19:31:21 +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_r 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, 29 Sep 2006 19:31:22 -0000 ru 2006-09-29 19:31:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc_r Makefile Log: On alpha and sparc64, install shared libc_r into /lib because it's aliased to libpthread and some /sbin tools need it. This is pseudo-MFC because in HEAD libthr is aliased to libpthread on sparc64 (and was on alpha). Approved by: re (kensmith) Revision Changes Path 1.41.2.2 +2 -1 src/lib/libc_r/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 19:34:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8261216A416; Fri, 29 Sep 2006 19:34:40 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5105643D5D; Fri, 29 Sep 2006 19:34:38 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJYc8D038708; Fri, 29 Sep 2006 19:34:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJYcXo038707; Fri, 29 Sep 2006 19:34:38 GMT (envelope-from ru) Message-Id: <200609291934.k8TJYcXo038707@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 19:34: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 ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 19:34:40 -0000 ru 2006-09-29 19:34:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . ObsoleteFiles.inc Log: Shared pcap and pthread (libc_r on alpha and sparc64) libraries moved to /lib. Approved by: re (kensmith) Revision Changes Path 1.25.2.7 +8 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Fri Sep 29 19:54:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B96116A412; Fri, 29 Sep 2006 19:54:04 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2-3.pacific.net.au [61.8.2.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96CFB43D45; Fri, 29 Sep 2006 19:54:03 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout2.pacific.net.au (Postfix) with ESMTP id 2D24F10B2F1; Sat, 30 Sep 2006 05:54:02 +1000 (EST) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8TJrxKt009619; Sat, 30 Sep 2006 05:54:00 +1000 Date: Sat, 30 Sep 2006 05:53:58 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Martin Blapp In-Reply-To: <20060929202338.W91466@godot.imp.ch> Message-ID: <20060930044711.H96144@delplex.bde.org> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 19:54:04 -0000 On Fri, 29 Sep 2006, Martin Blapp wrote: >> Free tty struct after last close. This should fix the pty-leak by numbers. >> Remove workarounds for tty_refcount beeing 0, this will be fixed >> differently >> later. >> >> Back out rev 1.145 since we initialize the tty struct from scratch and bad >> things can't happen anymore. > > Sigh. Peter Holmes stress tests did show that we still have problems. With > the beckout of rev. 1.145 we get again the same panics as the pty_pts code > does. > This is deep somewhere in the devfs code. It does happen with/without freeing > struct tty. > > Memory modified after free 0xc45b7d00(252) val=deadc0dd @ 0xc45b7d70 > panic: Most recently used by DEVFS1 > ... I think I found the bug while looking for problems near vgonel(). We're nowhere near ready to free devices in in last-close, since vgonel() doesn't do anything to evict processes from device functions before it forces the device closed. Drivers must be aware of the problem. The tty driver already is. See the comments about t_gen near tty_close() and ttysleep(). t_gen must live across close so that any processes in device functions can check it after they wake up, and the tty and device data structures must live across last- close to hold t_gen and anything else needed for the device functions to return. Sleeping device functions normally wake up after last-close returns. Bruce From owner-cvs-src@FreeBSD.ORG Fri Sep 29 20:07:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBCEA16A47C; Fri, 29 Sep 2006 20:07:16 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B6A43D46; Fri, 29 Sep 2006 20:07:16 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TK7GUa041398; Fri, 29 Sep 2006 20:07:16 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TK7G3E041397; Fri, 29 Sep 2006 20:07:16 GMT (envelope-from jhb) Message-Id: <200609292007.k8TK7G3E041397@repoman.freebsd.org> From: John Baldwin Date: Fri, 29 Sep 2006 20:07: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/boot/i386/libi386 biossmap.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, 29 Sep 2006 20:07:17 -0000 jhb 2006-09-29 20:07:16 UTC FreeBSD src repository Modified files: sys/boot/i386/libi386 biossmap.c Log: Oops, add return values for the smap command function. We must have the warnings set weird or something because gcc didn't warn about this at all. Submitted by: ru Revision Changes Path 1.6 +2 -1 src/sys/boot/i386/libi386/biossmap.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 20:13:48 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F323F16A54B; Fri, 29 Sep 2006 20:13: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 F11B343D55; Fri, 29 Sep 2006 20:13:46 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id AAE1D5F4C; Sat, 30 Sep 2006 00:13:45 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 87E305F46; Sat, 30 Sep 2006 00:13:45 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TKDlj9044887; Sat, 30 Sep 2006 00:13:47 +0400 (MSD) (envelope-from ru) Date: Sat, 30 Sep 2006 00:13:47 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060929201347.GA44840@rambler-co.ru> References: <200609292007.k8TK7G3E041397@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Kj7319i9nmIyA2yE" Content-Disposition: inline In-Reply-To: <200609292007.k8TK7G3E041397@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/i386/libi386 biossmap.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, 29 Sep 2006 20:13:48 -0000 --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 08:07:16PM +0000, John Baldwin wrote: > jhb 2006-09-29 20:07:16 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/boot/i386/libi386 biossmap.c=20 > Log: > Oops, add return values for the smap command function. We must have the > warnings set weird or something because gcc didn't warn about this at a= ll. > =20 > Submitted by: ru > =20 > Revision Changes Path > 1.6 +2 -1 src/sys/boot/i386/libi386/biossmap.c >=20 WARNS are simply not set at all in sys/boot/. We might add some and fix some bugs? :-) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Kj7319i9nmIyA2yE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHX57qRfpzJluFF4RAieOAJ9q8BBV4692S5CWNkVBkKYNhbrwMwCfYMv7 JXNQiS9GUljamlwlks3SMfg= =anSN -----END PGP SIGNATURE----- --Kj7319i9nmIyA2yE-- From owner-cvs-src@FreeBSD.ORG Fri Sep 29 20:14:33 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA75316A492 for ; Fri, 29 Sep 2006 20:14:33 +0000 (UTC) (envelope-from h.blanke@chello.nl) Received: from amsfep12-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 000D643D69 for ; Fri, 29 Sep 2006 20:14:31 +0000 (GMT) (envelope-from h.blanke@chello.nl) Received: from localhost ([127.0.0.1]) by amsfep12-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with SMTP id <20060929201429.TZVD14151.amsfep12-int.chello.nl@localhost> for ; Fri, 29 Sep 2006 22:14:29 +0200 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) X-Originating-IP: [213.46.97.237] From: To: Date: Fri, 29 Sep 2006 22:14:29 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20060929201429.TZVD14151.amsfep12-int.chello.nl@localhost> Subject: X server won't start X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Sep 2006 20:14:33 -0000 Hi, After todays csup and buildworld, kernel etc, xorg won't start anymore. Below my Xorg.log.0 and the fatal server error. Xorg.log.0: X Window System Version 6.9.0 Release Date: 21 December 2005 X Protocol Version 11, Revision 0, Release 6.9 Build Operating System: FreeBSD 7.0 amd64 [ELF] Current Operating System: FreeBSD admin.at.home 7.0-CURRENT FreeBSD 7.0-CURRENT #16: Fri Sep 29 21:47:57 CEST 2006 root@admin.at.home:/usr/obj/usr/src/sys/AMD64 amd64 Build Date: 09 September 2006 Before reporting problems, check http://wiki.X.Org to make sure that you have the latest version. Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Fri Sep 29 21:53:22 2006 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/bitstream-vera" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (**) ModulePath set to "/usr/X11R6/lib/modules" (**) Extension "Composite" is enabled (II) Module ABI versions: X.Org ANSI C Emulation: 0.2 X.Org Video Driver: 0.8 X.Org XInput driver : 0.5 X.Org Server Extension : 0.2 X.Org Font Renderer : 0.4 (II) Loader running on freebsd (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.so (II) Module bitmap: vendor="X.Org Foundation" compiled for 6.9.0, module version = 1.0.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.4 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.so (II) Module pcidata: vendor="X.Org Foundation" compiled for 6.9.0, module version = 1.0.0 ABI class: X.Org Video Driver, version 0.8 (--) Using syscons driver with X support (version 549739036674.0) (--) using VT number 2 (WW) xf86OpenConsole: VT_ACTIVATE failed (WW) xf86OpenConsole: VT_WAITACTIVE failed Fatal server error: xf86OpenConsole: KDSETMODE KD_GRAPHICS failed uname -a: FreeBSD admin.at.home 7.0-CURRENT FreeBSD 7.0-CURRENT #13: Wed Sep 27 08:25:30 CEST 2006 root@admin.at.home:/usr/obj/usr/src/sys/AMD64 amd64 Anyone experiencing the same? Bye, Hans From owner-cvs-src@FreeBSD.ORG Fri Sep 29 20:27:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58CA216A47C; Fri, 29 Sep 2006 20:27:42 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1363343D5E; Fri, 29 Sep 2006 20:27:42 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKRfiB042363; Fri, 29 Sep 2006 20:27:41 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKRfpv042362; Fri, 29 Sep 2006 20:27:41 GMT (envelope-from ru) Message-Id: <200609292027.k8TKRfpv042362@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 20:27: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/boot/i386/libi386 biospci.c bootinfo64.c elf64_freebsd.c libi386.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, 29 Sep 2006 20:27:42 -0000 ru 2006-09-29 20:27:41 UTC FreeBSD src repository Modified files: sys/boot/i386/libi386 biospci.c bootinfo64.c elf64_freebsd.c libi386.h Log: Fix most of the WARNS=2 warnings. Revision Changes Path 1.6 +1 -0 src/sys/boot/i386/libi386/biospci.c 1.37 +1 -3 src/sys/boot/i386/libi386/bootinfo64.c 1.16 +1 -1 src/sys/boot/i386/libi386/elf64_freebsd.c 1.26 +2 -2 src/sys/boot/i386/libi386/libi386.h From owner-cvs-src@FreeBSD.ORG Fri Sep 29 20:58:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3D2F16A416; Fri, 29 Sep 2006 20:58:09 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA44943D9E; Fri, 29 Sep 2006 20:57:48 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKvc0t051745; Fri, 29 Sep 2006 20:57:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKvcaD051744; Fri, 29 Sep 2006 20:57:38 GMT (envelope-from ru) Message-Id: <200609292057.k8TKvcaD051744@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 20:57: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/boot/common panic.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, 29 Sep 2006 20:58:09 -0000 ru 2006-09-29 20:57:38 UTC FreeBSD src repository Modified files: sys/boot/common panic.c Log: Fix WARNS=2 warnings. Revision Changes Path 1.8 +2 -0 src/sys/boot/common/panic.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 21:09:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C12F16A407; Fri, 29 Sep 2006 21:09:55 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EC3843D6B; Fri, 29 Sep 2006 21:09:29 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TL9M9U032814; Fri, 29 Sep 2006 23:09:25 +0200 (CEST) (envelope-from mb@imp.ch) Date: Fri, 29 Sep 2006 23:09:22 +0200 (CEST) From: Martin Blapp To: Bruce Evans In-Reply-To: <20060930044711.H96144@delplex.bde.org> Message-ID: <20060929230809.Q91466@godot.imp.ch> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> <20060930044711.H96144@delplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 21:09:55 -0000 Hi, > I think I found the bug while looking for problems near vgonel(). We're > nowhere near ready to free devices in in last-close, since vgonel() doesn't > do anything to evict processes from device functions before it forces the > device closed. Drivers must be aware of the problem. The tty driver > already is. See the comments about t_gen near tty_close() and ttysleep(). > t_gen must live across close so that any processes in device functions can > check it after they wake up, and the tty and device data structures must > live across last- close to hold t_gen and anything else needed for the > device functions to return. Sleeping device functions normally wake up > after last-close returns. So what can we do to destroy devices after last close ? Mark them with some flag and handle this during device operations ? Martin From owner-cvs-src@FreeBSD.ORG Fri Sep 29 21:17:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DEA916A40F; Fri, 29 Sep 2006 21:17:11 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3150743D53; Fri, 29 Sep 2006 21:17:11 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLHAco054839; Fri, 29 Sep 2006 21:17:10 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLHA4r054838; Fri, 29 Sep 2006 21:17:10 GMT (envelope-from ru) Message-Id: <200609292117.k8TLHA4r054838@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 21:17: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/usr.bin/make make.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: Fri, 29 Sep 2006 21:17:11 -0000 ru 2006-09-29 21:17:10 UTC FreeBSD src repository Modified files: usr.bin/make make.1 Log: Markup nit. Revision Changes Path 1.99 +1 -1 src/usr.bin/make/make.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 21:19:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC93D16A407; Fri, 29 Sep 2006 21:19:09 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1EB743D5E; Fri, 29 Sep 2006 21:19:08 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.48.2]) by phk.freebsd.dk (Postfix) with ESMTP id 90436170C5; Fri, 29 Sep 2006 21:19:05 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.8/8.13.8) with ESMTP id k8TLIvuN008210; Fri, 29 Sep 2006 21:18:57 GMT (envelope-from phk@critter.freebsd.dk) To: Martin Blapp From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 29 Sep 2006 23:09:22 +0200." <20060929230809.Q91466@godot.imp.ch> Date: Fri, 29 Sep 2006 21:18:57 +0000 Message-ID: <8209.1159564737@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, Bruce Evans , src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 21:19:09 -0000 In message <20060929230809.Q91466@godot.imp.ch>, Martin Blapp writes: >So what can we do to destroy devices after last close ? Mark them with some >flag and handle this during device operations ? DEVFS has an eviction feature which, at this point, is only used in UFS I belive. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-cvs-src@FreeBSD.ORG Fri Sep 29 21:21:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9721716A47E; Fri, 29 Sep 2006 21:21:58 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9BC543D83; Fri, 29 Sep 2006 21:21:53 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLLrJh055289; Fri, 29 Sep 2006 21:21:53 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLLr8D055288; Fri, 29 Sep 2006 21:21:53 GMT (envelope-from jhb) Message-Id: <200609292121.k8TLLr8D055288@repoman.freebsd.org> From: John Baldwin Date: Fri, 29 Sep 2006 21:21:53 +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/amd64/conf NOTES src/sys/conf files.amd64 files.i386 src/sys/dev/ipmi ipmi.c ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_pci.c ipmi_smbios.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c ipmivars.h src/sys/i386/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: Fri, 29 Sep 2006 21:21:58 -0000 jhb 2006-09-29 21:21:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/conf NOTES sys/conf files.amd64 files.i386 sys/dev/ipmi ipmi.c ipmi_pci.c ipmi_smbios.c ipmivars.h sys/i386/conf NOTES sys/modules/ipmi Makefile sys/sys ipmi.h Added files: (Branch: RELENG_6) sys/dev/ipmi ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c Log: MFC: Update to the ipmi(4) driver to add more attachments as well as SSIF support and make it MPSAFE. Approved by: re (kensmith) Revision Changes Path 1.36.2.11 +2 -0 src/sys/amd64/conf/NOTES 1.71.2.10 +7 -1 src/sys/conf/files.amd64 1.538.2.12 +7 -1 src/sys/conf/files.i386 1.3.2.2 +676 -773 src/sys/dev/ipmi/ipmi.c 1.1.2.1 +210 -0 src/sys/dev/ipmi/ipmi_acpi.c (new) 1.1.2.1 +209 -0 src/sys/dev/ipmi/ipmi_isa.c (new) 1.1.2.1 +607 -0 src/sys/dev/ipmi/ipmi_kcs.c (new) 1.1.2.2 +203 -217 src/sys/dev/ipmi/ipmi_pci.c 1.1.2.2 +143 -367 src/sys/dev/ipmi/ipmi_smbios.c 1.1.2.1 +131 -0 src/sys/dev/ipmi/ipmi_smbus.c (new) 1.1.2.1 +361 -0 src/sys/dev/ipmi/ipmi_smic.c (new) 1.1.2.1 +375 -0 src/sys/dev/ipmi/ipmi_ssif.c (new) 1.1.2.2 +170 -42 src/sys/dev/ipmi/ipmivars.h 1.1202.2.12 +4 -2 src/sys/i386/conf/NOTES 1.1.2.2 +6 -2 src/sys/modules/ipmi/Makefile 1.1.2.2 +36 -0 src/sys/sys/ipmi.h From owner-cvs-src@FreeBSD.ORG Fri Sep 29 21:24:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA11F16A412; Fri, 29 Sep 2006 21:24:19 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95C0A43D4C; Fri, 29 Sep 2006 21:24:19 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLOJOW055400; Fri, 29 Sep 2006 21:24:19 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLOJCc055399; Fri, 29 Sep 2006 21:24:19 GMT (envelope-from danger) Message-Id: <200609292124.k8TLOJCc055399@repoman.freebsd.org> From: Daniel Gerzo Date: Fri, 29 Sep 2006 21:24: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/share/man/man8 picobsd.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: Fri, 29 Sep 2006 21:24:20 -0000 danger 2006-09-29 21:24:19 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) share/man/man8 picobsd.8 Log: - remove reference to vnconfig(8) as this is linked to mdconfig(8), which is referenced too - markup fixes Approved by: re (bmah), keramida (mentor) Revision Changes Path 1.26.2.2 +4 -4 src/share/man/man8/picobsd.8 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 21:24:27 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A760F16A722; Fri, 29 Sep 2006 21:24:27 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2B0D43D4C; Fri, 29 Sep 2006 21:24:26 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8TLOFdX018701; Fri, 29 Sep 2006 17:24:24 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:17:17 -0400 User-Agent: KMail/1.9.1 References: <200609292007.k8TK7G3E041397@repoman.freebsd.org> <20060929201347.GA44840@rambler-co.ru> In-Reply-To: <20060929201347.GA44840@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609291617.18245.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 29 Sep 2006 17:24:24 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1950/Thu Sep 28 10:11:54 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/i386/libi386 biossmap.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, 29 Sep 2006 21:24:28 -0000 On Friday 29 September 2006 16:13, Ruslan Ermilov wrote: > On Fri, Sep 29, 2006 at 08:07:16PM +0000, John Baldwin wrote: > > jhb 2006-09-29 20:07:16 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/boot/i386/libi386 biossmap.c > > Log: > > Oops, add return values for the smap command function. We must have the > > warnings set weird or something because gcc didn't warn about this at all. > > > > Submitted by: ru > > > > Revision Changes Path > > 1.6 +2 -1 src/sys/boot/i386/libi386/biossmap.c > > > WARNS are simply not set at all in sys/boot/. We might add some > and fix some bugs? :-) Heh, probably. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Fri Sep 29 21:38:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B085316A547; Fri, 29 Sep 2006 21:38:14 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4326343D55; Fri, 29 Sep 2006 21:38:13 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLcDBc056184; Fri, 29 Sep 2006 21:38:13 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLcDqP056183; Fri, 29 Sep 2006 21:38:13 GMT (envelope-from andre) Message-Id: <200609292138.k8TLcDqP056183@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 21:38: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/dev/em if_em.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, 29 Sep 2006 21:38:14 -0000 andre 2006-09-29 21:38:13 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Back out rev. 1.152 as it was breaking vlan tag insertion when vlan tag stripping was disabled due to being in promisc mode. This is a hardware bug. Update comment to explicitly state the reason the manual vlan tag insertion in this case. See rev. 1.53 for further information as well. Noticed by: jhb Revision Changes Path 1.154 +39 -0 src/sys/dev/em/if_em.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:41:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B08716A415; Fri, 29 Sep 2006 22:41:56 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 078B643D5D; Fri, 29 Sep 2006 22:41:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMftrd061332; Fri, 29 Sep 2006 22:41:55 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMftvE061331; Fri, 29 Sep 2006 22:41:55 GMT (envelope-from rwatson) Message-Id: <200609292241.k8TMftvE061331@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:41:55 +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/openbsm HISTORY TODO VERSION configure configure.ac src/contrib/openbsm/bin/audit audit.c src/contrib/openbsm/bin/auditd audit_warn.c auditd.8 auditd.c auditd.h src/contrib/openbsm/bin/auditreduce auditreduce.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: Fri, 29 Sep 2006 22:41:56 -0000 rwatson 2006-09-29 22:41:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/openbsm HISTORY TODO VERSION configure configure.ac contrib/openbsm/bin/audit audit.c contrib/openbsm/bin/auditd audit_warn.c auditd.8 auditd.c auditd.h contrib/openbsm/bin/auditreduce auditreduce.1 auditreduce.c auditreduce.h contrib/openbsm/bsm libbsm.h contrib/openbsm/config config.h config.h.in contrib/openbsm/etc audit_control audit_event contrib/openbsm/libbsm au_control.3 au_open.3 bsm_control.c bsm_io.c bsm_token.c libbsm.3 contrib/openbsm/man audit_control.5 auditon.2 contrib/openbsm/tools audump.c Added files: (Branch: RELENG_6) contrib/openbsm/compat strlcat.h contrib/openbsm/test/reference arg32_record arg32_token data_record data_token file_record file_token header32_token in_addr_record in_addr_token ip_record ip_token ipc_record ipc_token iport_record iport_token opaque_record opaque_token path_record path_token process32_record process32_token process32ex_record process32ex_token return32_record return32_token seq_record seq_token subject32_record subject32_token subject32ex_record subject32ex_token-IPv4 subject32ex_token-IPv6 text_record text_token trailer_token contrib/openbsm/test/samples execve-long-args.trail Log: Merge OpenBSM 1.0 alpha 12 from HEAD to RELENG_6, which includes a broad range of bug fixes made as a result of reports on 6.x, as well as some minor enhancements: OpenBSM 1.0 alpha 12 - Correct bug in auditreduce which prevented the -c option from working correctly when the user specifies to process successful or failed events. The problem stemmed from not having access to the return token at the time the initial preselection occurred, but now a second preselection process occurs while processing the return token. - getacfilesz(3) API added to read new audit_control(5) filesz setting, which auditd(8) now sets the kernel audit trail rotation size to. - auditreduce(1) now uses stdin if no file names are specified on the command line; this was the documented behavior previously, but it was not implemented. Be more specific in auditreduce(1)'s examples section about what might be done with the output of auditreduce. - Add audit_warn(5) closefile event so that administrators can hook termination of an audit trail file. For example, this might be used to compress the trail file after it is closed. - auditreduce(1) now uses regular expressions for pathname matching. Users can now supply one or more (comma delimited) regular expressions for searching the pathnames. If one of the regular expressions is prefixed with a tilde (~), and a path matches, it will be excluded from the search results. OpenBSM 1.0 alpha 11 - Reclassify certain read/write operations as having no class rather than the fr/fw class; our default classes audit intent (open) not operations (read, write). - Introduce AUE_SYSCTL_WRITE event so that BSD/Darwin systems can audit reads and writes of sysctls as separate events. Add additional kernel environment and jail events for FreeBSD. - Break AUDIT_TRIGGER_OPEN_NEW into two events, AUDIT_TRIGGER_ROTATE_USER (issued by the user audit(8) tool) and AUDIT_TRIGGER_ROTATE_KERNEL (issued by the kernel audit implementation) so that they can be distinguished. - Disable rate limiting of rotate requests; as the kernel doesn't retransmit a dropped request, the log file will otherwise grow indefinitely if the trigger is dropped. - Improve auditd debugging output. - Fix a number of threading related bugs in audit_control file reading routines. - Add APIs au_poltostr() and au_strtopol() to convert between text representations of audit_control policy flags and the flags passed to auditon(A_SETPOLICY) and retrieved from auditon(A_GETPOLICY). - Add API getacpol() to return the 'policy:' entry from audit_control, an extension to the Solaris file format to allow specification of policy persistent flags. - Update audump to print the audit_control policy field. - Update auditd to read the audit_control policy field and set the kernel policy to match it when configuring/reconfiguring. Remove the -s and -h arguments as these policies are now set via the configuration file. If a policy line is not found in the configuration file, continue with the current default of setting AUDIT_CNT. - Fix bugs in the parsing of large execve(2) arguments and environmental variable tokens; increase maximum parsed argument and variable count. - configure now detects strlcat(), used by policy-related functions. - Reference token and record sample files added to test tree. Approved by: re (kensmith) Revision Changes Path 1.1.1.5.2.2 +56 -1 src/contrib/openbsm/HISTORY 1.1.1.3.2.2 +3 -1 src/contrib/openbsm/TODO 1.1.1.6.2.2 +1 -1 src/contrib/openbsm/VERSION 1.1.1.4.2.2 +2 -2 src/contrib/openbsm/bin/audit/audit.c 1.1.1.2.2.2 +16 -1 src/contrib/openbsm/bin/auditd/audit_warn.c 1.1.1.2.2.2 +14 -8 src/contrib/openbsm/bin/auditd/auditd.8 1.1.1.7.2.2 +101 -42 src/contrib/openbsm/bin/auditd/auditd.c 1.1.1.2.2.2 +4 -2 src/contrib/openbsm/bin/auditd/auditd.h 1.1.1.3.2.2 +36 -7 src/contrib/openbsm/bin/auditreduce/auditreduce.1 1.1.1.3.2.2 +103 -17 src/contrib/openbsm/bin/auditreduce/auditreduce.c 1.1.1.1.2.2 +8 -1 src/contrib/openbsm/bin/auditreduce/auditreduce.h 1.1.1.6.2.2 +22 -7 src/contrib/openbsm/bsm/libbsm.h 1.1.1.1.2.1 +66 -0 src/contrib/openbsm/compat/strlcat.h (new) 1.3.2.2 +7 -4 src/contrib/openbsm/config/config.h 1.1.1.3.2.2 +3 -0 src/contrib/openbsm/config/config.h.in 1.1.1.5.2.2 +13 -12 src/contrib/openbsm/configure 1.1.1.5.2.2 +3 -3 src/contrib/openbsm/configure.ac 1.2.2.2 +4 -2 src/contrib/openbsm/etc/audit_control 1.4.2.2 +14 -7 src/contrib/openbsm/etc/audit_event 1.1.1.2.2.2 +47 -4 src/contrib/openbsm/libbsm/au_control.3 1.1.1.1.2.2 +6 -4 src/contrib/openbsm/libbsm/au_open.3 1.1.1.1.2.2 +310 -69 src/contrib/openbsm/libbsm/bsm_control.c 1.1.1.4.2.2 +10 -4 src/contrib/openbsm/libbsm/bsm_io.c 1.1.1.7.2.2 +1 -2 src/contrib/openbsm/libbsm/bsm_token.c 1.1.1.3.2.2 +12 -4 src/contrib/openbsm/libbsm/libbsm.3 1.1.1.2.2.2 +69 -2 src/contrib/openbsm/man/audit_control.5 1.1.1.2.2.2 +2 -2 src/contrib/openbsm/man/auditon.2 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/arg32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/arg32_token (new) 1.1.1.1.2.1 +3 -0 src/contrib/openbsm/test/reference/data_record (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/data_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/file_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/file_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/header32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/in_addr_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/in_addr_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/ip_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/ip_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/ipc_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/ipc_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/iport_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/iport_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/opaque_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/opaque_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/path_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/path_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/process32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/process32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/process32ex_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/process32ex_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/return32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/return32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/seq_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/seq_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/subject32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/subject32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/subject32ex_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/subject32ex_token-IPv4 (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/subject32ex_token-IPv6 (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/text_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/text_token (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/trailer_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/samples/execve-long-args.trail (new) 1.1.1.2.2.2 +13 -3 src/contrib/openbsm/tools/audump.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:43:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9938A16A40F; Fri, 29 Sep 2006 22:43:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D81B543D70; Fri, 29 Sep 2006 22:43:30 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMhU0W061415; Fri, 29 Sep 2006 22:43:30 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMhUAq061414; Fri, 29 Sep 2006 22:43:30 GMT (envelope-from rwatson) Message-Id: <200609292243.k8TMhUAq061414@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:43: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/bsm audit.h audit_internal.h audit_kevents.h audit_record.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, 29 Sep 2006 22:43:32 -0000 rwatson 2006-09-29 22:43:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/bsm audit.h audit_internal.h audit_kevents.h audit_record.h Log: Merge OpenBSM 1.0 alpha 11 + 12 into src/sys/bsm; cleanup of trigger types, some defines, and some new record types. Approved by: re (kensmith) Obtained from: TrustedBSD Project Revision Changes Path 1.1.2.2 +12 -16 src/sys/bsm/audit.h 1.4.2.2 +1 -1 src/sys/bsm/audit_internal.h 1.2.2.2 +8 -1 src/sys/bsm/audit_kevents.h 1.5.2.2 +1 -1 src/sys/bsm/audit_record.h From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:45:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E19216A5E0; Fri, 29 Sep 2006 22:45:50 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 212FE43D64; Fri, 29 Sep 2006 22:45:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMjolH061714; Fri, 29 Sep 2006 22:45:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMjnlw061713; Fri, 29 Sep 2006 22:45:49 GMT (envelope-from rwatson) Message-Id: <200609292245.k8TMjnlw061713@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:45: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/security/audit audit_worker.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, 29 Sep 2006 22:45:51 -0000 rwatson 2006-09-29 22:45:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/security/audit audit_worker.c Log: Update kernel audit implementation for OpenBSM 1.0 alpha 12: use new trigger name for kernel-generated audit rotation events. Approved by: re (kensmith) Obtained from: TrustedBSD Project Revision Changes Path 1.9.2.4 +1 -1 src/sys/security/audit/audit_worker.c From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:46:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A3916A407; Fri, 29 Sep 2006 22:46:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CA4843D77; Fri, 29 Sep 2006 22:46:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMkr0t061794; Fri, 29 Sep 2006 22:46:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMkraS061793; Fri, 29 Sep 2006 22:46:53 GMT (envelope-from rwatson) Message-Id: <200609292246.k8TMkraS061793@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:46:53 +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/auditreduce 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, 29 Sep 2006 22:46:55 -0000 rwatson 2006-09-29 22:46:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/auditreduce Makefile Log: Merge Makefile:1.2 from HEAD to RELENG_6: auditreduce now requires OpenBSM's config/config.h, so add that to the build include path. Obtained from: TrustedBSD Project Approved by: re (kensmith) Revision Changes Path 1.1.2.2 +2 -0 src/usr.sbin/auditreduce/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:47:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E64C316A412; Fri, 29 Sep 2006 22:47:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB2B343D80; Fri, 29 Sep 2006 22:47:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMloD0061845; Fri, 29 Sep 2006 22:47:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMlobr061844; Fri, 29 Sep 2006 22:47:50 GMT (envelope-from rwatson) Message-Id: <200609292247.k8TMlobr061844@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:47:50 +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/libbsm 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, 29 Sep 2006 22:47:56 -0000 rwatson 2006-09-29 22:47:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libbsm Makefile Log: Merge Makefile:1.5 from HEAD to RELENG_6: Hook up additional OpenBSM man page aliases following OpenBSM 1.0 alpha 12 import. Most of these should have existed previously, but didn't. Obtained from: TrustedBSD Project Approved by: re (kensmith) Revision Changes Path 1.3.2.3 +20 -11 src/lib/libbsm/Makefile From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:51:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5570416A407; Fri, 29 Sep 2006 22:51:05 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D0443D6E; Fri, 29 Sep 2006 22:51:05 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMp4k9062072; Fri, 29 Sep 2006 22:51:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMp4Rk062071; Fri, 29 Sep 2006 22:51:04 GMT (envelope-from ru) Message-Id: <200609292251.k8TMp4Rk062071@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 22:51: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 bge.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, 29 Sep 2006 22:51:05 -0000 ru 2006-09-29 22:51:04 UTC FreeBSD src repository Modified files: share/man/man4 bge.4 Log: Spelling. Revision Changes Path 1.29 +1 -1 src/share/man/man4/bge.4 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:51:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A8FC16A518; Fri, 29 Sep 2006 22:51:30 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A724A43D49; Fri, 29 Sep 2006 22:51:29 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMpTZ0062133; Fri, 29 Sep 2006 22:51:29 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMpTnu062132; Fri, 29 Sep 2006 22:51:29 GMT (envelope-from ru) Message-Id: <200609292251.k8TMpTnu062132@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 22: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/contrib/telnet/telnet telnet.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: Fri, 29 Sep 2006 22:51:30 -0000 ru 2006-09-29 22:51:29 UTC FreeBSD src repository Modified files: contrib/telnet/telnet telnet.1 Log: Markup nits. Revision Changes Path 1.20 +2 -2 src/contrib/telnet/telnet/telnet.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 22:57:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C9C916A492; Fri, 29 Sep 2006 22:57:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1515243D45; Fri, 29 Sep 2006 22:57:23 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMvMxl062358; Fri, 29 Sep 2006 22:57:22 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMvMA4062357; Fri, 29 Sep 2006 22:57:22 GMT (envelope-from ru) Message-Id: <200609292257.k8TMvMA4062357@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 22:57: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/libc/gen err.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, 29 Sep 2006 22:57:23 -0000 ru 2006-09-29 22:57:22 UTC FreeBSD src repository Modified files: lib/libc/gen err.3 Log: Markup nit. Revision Changes Path 1.21 +1 -1 src/lib/libc/gen/err.3 From owner-cvs-src@FreeBSD.ORG Fri Sep 29 23:34:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE17516A53D; Fri, 29 Sep 2006 23:34:21 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id B621243DE3; Fri, 29 Sep 2006 23:33:14 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TNX7YP087280; Sat, 30 Sep 2006 01:33:09 +0200 (CEST) (envelope-from mb@imp.ch) Date: Sat, 30 Sep 2006 01:33:07 +0200 (CEST) From: Martin Blapp To: Poul-Henning Kamp In-Reply-To: <8209.1159564737@critter.freebsd.dk> Message-ID: <20060930012958.C91466@godot.imp.ch> References: <8209.1159564737@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, Bruce Evans , src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 29 Sep 2006 23:34:22 -0000 What's the best to do now ? Back out again the last commit and that destroy slave can be called, make tty_pts.c as broken ? Or will you or Bruce fix the underlaying problem ? It's far beyond my horizont ... Martin >> So what can we do to destroy devices after last close ? Mark them with some >> flag and handle this during device operations ? > > DEVFS has an eviction feature which, at this point, is only used > in UFS I belive. > > -- > Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 > phk@FreeBSD.ORG | TCP/IP since RFC 956 > FreeBSD committer | BSD since 4.3-tahoe > Never attribute to malice what can adequately be explained by incompetence. > From owner-cvs-src@FreeBSD.ORG Sat Sep 30 00:09:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC46316A403; Sat, 30 Sep 2006 00:09:44 +0000 (UTC) (envelope-from Tor.Egge@cvsup.no.freebsd.org) Received: from pil.idi.ntnu.no (pil.idi.ntnu.no [129.241.107.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 157B443D46; Sat, 30 Sep 2006 00:09:43 +0000 (GMT) (envelope-from Tor.Egge@cvsup.no.freebsd.org) Received: from cvsup.no.freebsd.org (c2h5oh.idi.ntnu.no [129.241.103.69]) by pil.idi.ntnu.no (8.13.6/8.13.1) with ESMTP id k8U09fNV012648 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 30 Sep 2006 02:09:42 +0200 (MEST) Received: from localhost (localhost [127.0.0.1]) by cvsup.no.freebsd.org (8.13.4/8.13.4) with ESMTP id k8U09fkP000337; Sat, 30 Sep 2006 00:09:41 GMT (envelope-from Tor.Egge@cvsup.no.freebsd.org) Date: Sat, 30 Sep 2006 00:09:40 +0000 (UTC) Message-Id: <20060930.000940.74656199.Tor.Egge@cvsup.no.freebsd.org> To: netchild@FreeBSD.org From: Tor Egge In-Reply-To: <200609232045.k8NKjljR016351@repoman.freebsd.org> References: <200609232045.k8NKjljR016351@repoman.freebsd.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned-By: mimedefang.idi.ntnu.no, using CLAMD X-SMTP-From: Sender=, Relay/Client=c2h5oh.idi.ntnu.no [129.241.103.69], EHLO=cvsup.no.freebsd.org X-Scanned-By: MIMEDefang 2.48 on 129.241.107.38 X-Scanned-By: mimedefang.idi.ntnu.no, using MIMEDefang 2.48 with local filter 16.42-idi X-Filter-Time: 1 seconds Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys param.h soundcard.h src/sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h channel_if.m dsp.c dsp.h mixer.c mixer.h sound.c sound.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, 30 Sep 2006 00:09:44 -0000 > netchild 2006-09-23 20:45:47 UTC > > FreeBSD src repository > > Modified files: > sys/sys soundcard.h param.h > sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h > channel_if.m dsp.c dsp.h mixer.c mixer.h > sound.c sound.h > Log: > MFp4 the sound Google Summer of Code project: This commit caused a panic on my development machine during boot. The value of the MIXER_SIZE macro is too low (OSSV4_EXPERIMENT is not defined). At boot time, mix_setrecdevs() wrote beyond the end of the allocated memory. Later, mtrash_ctor() for the next memory block (1K blocks) found that memory had been modified after free. - Tor Egge From owner-cvs-src@FreeBSD.ORG Sat Sep 30 00:35:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 397C516A407; Sat, 30 Sep 2006 00:35:38 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E575643D49; Sat, 30 Sep 2006 00:35:37 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from misaki (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with SMTP id k8U0ZYYr056264; Sat, 30 Sep 2006 00:35:36 GMT (envelope-from ariff@FreeBSD.org) Date: Sat, 30 Sep 2006 08:33:55 +0800 From: Ariff Abdullah To: Tor Egge Message-Id: <20060930083355.187c0545.ariff@FreeBSD.org> In-Reply-To: <20060930.000940.74656199.Tor.Egge@cvsup.no.freebsd.org> References: <200609232045.k8NKjljR016351@repoman.freebsd.org> <20060930.000940.74656199.Tor.Egge@cvsup.no.freebsd.org> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T" Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, netchild@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys param.h soundcard.h src/sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h channel_if.m dsp.c dsp.h mixer.c mixer.h sound.c sound.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, 30 Sep 2006 00:35:38 -0000 --Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, 30 Sep 2006 00:09:40 +0000 (UTC) Tor Egge wrote: > > netchild 2006-09-23 20:45:47 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sys/sys soundcard.h param.h=20 > > sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h=20 > > channel_if.m dsp.c dsp.h mixer.c mixer.h=20 > > sound.c sound.h=20 > > Log: > > MFp4 the sound Google Summer of Code project: >=20 > This commit caused a panic on my development machine during boot. >=20 > The value of the MIXER_SIZE macro is too low (OSSV4_EXPERIMENT is > not defined). >=20 > At boot time, mix_setrecdevs() wrote beyond the end of the allocated > memory. >=20 > Later, mtrash_ctor() for the next memory block (1K blocks) found > that memory had been modified after free. >=20 My mistake. I'll commit the fix shortly. -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ --Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHbt4lr+deMUwTNoRAgoJAJ9rQ9d/hu+2fa0Cm7O1CxmcD6aNkgCeK4pE SLel91DV5Mj8nily6gMYiFY= =S4CI -----END PGP SIGNATURE----- --Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T-- From owner-cvs-src@FreeBSD.ORG Sat Sep 30 01:01:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77BAC16A407; Sat, 30 Sep 2006 01:01:19 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 352BE43D49; Sat, 30 Sep 2006 01:01:19 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U11Jt5080306; Sat, 30 Sep 2006 01:01:19 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U11JgC080303; Sat, 30 Sep 2006 01:01:19 GMT (envelope-from ariff) Message-Id: <200609300101.k8U11JgC080303@repoman.freebsd.org> From: Ariff Abdullah Date: Sat, 30 Sep 2006 01:01: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/dev/sound/pcm mixer.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, 30 Sep 2006 01:01:19 -0000 ariff 2006-09-30 01:01:18 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.c Log: The addition of few more 32bit integer into struct snd_mixer causing an accidental MIXER_SIZE overflow. Use 8bit integer instead of 32bit to reduce the kludge size. Noticed by: tegge Revision Changes Path 1.54 +2 -2 src/sys/dev/sound/pcm/mixer.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 01:24:22 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA97E16A403; Sat, 30 Sep 2006 01:24:22 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9578543D45; Sat, 30 Sep 2006 01:24:22 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U1OMRG085217; Sat, 30 Sep 2006 01:24:22 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U1OMBs085216; Sat, 30 Sep 2006 01:24:22 GMT (envelope-from ariff) Message-Id: <200609300124.k8U1OMBs085216@repoman.freebsd.org> From: Ariff Abdullah Date: Sat, 30 Sep 2006 01:24: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/sound/pcm mixer.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, 30 Sep 2006 01:24:23 -0000 ariff 2006-09-30 01:24:22 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.h Log: Nuke OSSV4_EXPERIMENT ifdefs from kludgy MIXER_SIZE definition since the exclusion of sizeof(oss_mixer_enuminfo) is the real cause of overflow (worth of +3000 bytes). Noticed by: tegge Revision Changes Path 1.18 +0 -4 src/sys/dev/sound/pcm/mixer.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 03:22:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1568616A407; Sat, 30 Sep 2006 03:22:43 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8A5B43D45; Sat, 30 Sep 2006 03:22:42 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U3MgEZ094933; Sat, 30 Sep 2006 03:22:42 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U3MgFX094932; Sat, 30 Sep 2006 03:22:42 GMT (envelope-from csjp) Message-Id: <200609300322.k8U3MgFX094932@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sat, 30 Sep 2006 03:22: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.bin/su su.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, 30 Sep 2006 03:22:43 -0000 csjp 2006-09-30 03:22:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/su su.c Log: Fix mis-merge Noticed by: Pawel Worach Approved by: re@ (kensmith) Revision Changes Path 1.76.2.2 +0 -1 src/usr.bin/su/su.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 07:34:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 256A516A40F; Sat, 30 Sep 2006 07:34:25 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D5C643D68; Sat, 30 Sep 2006 07:34:21 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7YKMn019654; Sat, 30 Sep 2006 07:34:20 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7YKmF019653; Sat, 30 Sep 2006 07:34:20 GMT (envelope-from maxim) Message-Id: <200609300734.k8U7YKmF019653@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 30 Sep 2006 07:34: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/usr.sbin/quot quot.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, 30 Sep 2006 07:34:25 -0000 maxim 2006-09-30 07:34:20 UTC FreeBSD src repository Modified files: usr.sbin/quot quot.c Log: o Check we have a non-NULL pointer to a super block before dereference it. PR: misc/103822 Submitted by: Dmitry Stefankov MFC after: 2 weeks Revision Changes Path 1.25 +1 -1 src/usr.sbin/quot/quot.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 08:01:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE07F16A47B; Sat, 30 Sep 2006 08:01:12 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4811043D4C; Sat, 30 Sep 2006 08:01:12 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U81CEu022965; Sat, 30 Sep 2006 08:01:12 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U81CqQ022964; Sat, 30 Sep 2006 08:01:12 GMT (envelope-from pjd) Message-Id: <200609300801.k8U81CqQ022964@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 08:01: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/geom/raid3 g_raid3.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, 30 Sep 2006 08:01:12 -0000 pjd 2006-09-30 08:01:12 UTC FreeBSD src repository Modified files: sys/geom/raid3 g_raid3.c Log: Remove trailing spaces. Revision Changes Path 1.75 +16 -16 src/sys/geom/raid3/g_raid3.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 08:11:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA73A16A40F; Sat, 30 Sep 2006 08:11:53 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79B2843D49; Sat, 30 Sep 2006 08:11:52 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8BqT1025098; Sat, 30 Sep 2006 08:11:52 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8Bqlk025097; Sat, 30 Sep 2006 08:11:52 GMT (envelope-from mbr) Message-Id: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 08:11: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 tty.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, 30 Sep 2006 08:11:54 -0000 mbr 2006-09-30 08:11:52 UTC FreeBSD src repository Modified files: sys/kern tty.c Log: Any call of tty_close() with a tty refcount of <= 1 is wrong and we will free the tty in this case. This is a workaround until the underlaying devfs/tty problems are fixed. MFC after: 1 day Revision Changes Path 1.261 +9 -6 src/sys/kern/tty.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 08:16:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0C1116A492; Sat, 30 Sep 2006 08:16:50 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 109E243D5D; Sat, 30 Sep 2006 08:16:50 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8GnHk025486; Sat, 30 Sep 2006 08:16:49 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8GnLN025485; Sat, 30 Sep 2006 08:16:49 GMT (envelope-from pjd) Message-Id: <200609300816.k8U8GnLN025485@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 08:16: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/geom/eli g_eli.c g_eli_ctl.c src/sys/geom/label g_label_msdosfs.c g_label_msdosfs.h src/sys/geom/nop g_nop.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, 30 Sep 2006 08:16:51 -0000 pjd 2006-09-30 08:16:49 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c g_eli_ctl.c sys/geom/label g_label_msdosfs.c g_label_msdosfs.h sys/geom/nop g_nop.h Log: Remove trailing spaces. Revision Changes Path 1.30 +1 -1 src/sys/geom/eli/g_eli.c 1.11 +1 -1 src/sys/geom/eli/g_eli_ctl.c 1.6 +1 -1 src/sys/geom/label/g_label_msdosfs.c 1.2 +3 -3 src/sys/geom/label/g_label_msdosfs.h 1.7 +1 -1 src/sys/geom/nop/g_nop.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 08:23:07 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC12C16A415; Sat, 30 Sep 2006 08:23:07 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C6B843D46; Sat, 30 Sep 2006 08:23:07 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8N7Dq025911; Sat, 30 Sep 2006 08:23:07 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8N7H5025910; Sat, 30 Sep 2006 08:23:07 GMT (envelope-from pjd) Message-Id: <200609300823.k8U8N7H5025910@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 08:23: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/geom/raid3 g_raid3.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, 30 Sep 2006 08:23:07 -0000 pjd 2006-09-30 08:23:07 UTC FreeBSD src repository Modified files: sys/geom/raid3 g_raid3.c Log: One more white space fix. Revision Changes Path 1.76 +1 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 09:02:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D47616A40F; Sat, 30 Sep 2006 09:02:39 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C7FD43D45; Sat, 30 Sep 2006 09:02:39 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U92cSV036170; Sat, 30 Sep 2006 09:02:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U92cVP036169; Sat, 30 Sep 2006 09:02:38 GMT (envelope-from ru) Message-Id: <200609300902.k8U92cVP036169@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 09: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/etc/mtree BSD.usr.dist src/usr.sbin/nvram 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, 30 Sep 2006 09:02:39 -0000 ru 2006-09-30 09:02:38 UTC FreeBSD src repository Modified files: etc/mtree BSD.usr.dist usr.sbin/nvram Makefile Log: Create section 8 man subdirectories for PowerPC. Revision Changes Path 1.321 +6 -0 src/etc/mtree/BSD.usr.dist 1.2 +1 -0 src/usr.sbin/nvram/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 30 09:44:59 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F3B16A415; Sat, 30 Sep 2006 09:44:59 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE54743D49; Sat, 30 Sep 2006 09:44:58 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U9iwxU039974; Sat, 30 Sep 2006 09:44:58 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U9iwDt039973; Sat, 30 Sep 2006 09:44:58 GMT (envelope-from delphij) Message-Id: <200609300944.k8U9iwDt039973@repoman.freebsd.org> From: Xin LI Date: Sat, 30 Sep 2006 09:44:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF,HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc src/contrib/libstdc++/include/ext demangle.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, 30 Sep 2006 09:44:59 -0000 delphij 2006-09-30 09:44:58 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Removed files: (Branch: FSF) contrib/libstdc++/include/ext demangle.h Log: MFS: Remove file that was disappeared from gcc distribution. While I'm there, add the file into ObsoleteFiles.inc. Approved by: maintainer (kan) Revision Changes Path 1.54 +2 -0 src/ObsoleteFiles.inc 1.1.1.2 +0 -2789 src/contrib/libstdc++/include/ext/demangle.h (dead) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 10:08:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07C6116A403; Sat, 30 Sep 2006 10:08:10 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7D5343D45; Sat, 30 Sep 2006 10:08:09 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UA898b042477; Sat, 30 Sep 2006 10:08:09 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UA89L0042476; Sat, 30 Sep 2006 10:08:09 GMT (envelope-from phk) Message-Id: <200609301008.k8UA89L0042476@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 30 Sep 2006 10:08: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/i386/i386 machdep.c src/sys/pc98/pc98 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: Sat, 30 Sep 2006 10:08:10 -0000 phk 2006-09-30 10:08:09 UTC FreeBSD src repository Modified files: sys/i386/i386 machdep.c sys/pc98/pc98 machdep.c Log: Remove the no longer relevant or correct bootinfo sysctls. Revision Changes Path 1.635 +0 -3 src/sys/i386/i386/machdep.c 1.378 +0 -3 src/sys/pc98/pc98/machdep.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 10:24:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78E7016A403; Sat, 30 Sep 2006 10:24:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A59F43D46; Sat, 30 Sep 2006 10:24:01 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UAO1pr043308; Sat, 30 Sep 2006 10:24:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UAO1xa043307; Sat, 30 Sep 2006 10:24:01 GMT (envelope-from ru) Message-Id: <200609301024.k8UAO1xa043307@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 10:24: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/lib/libc/sys abort2.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: Sat, 30 Sep 2006 10:24:01 -0000 ru 2006-09-30 10:24:00 UTC FreeBSD src repository Modified files: lib/libc/sys abort2.2 Log: Fix markup, language, function prototype, and example code. Revision Changes Path 1.2 +49 -35 src/lib/libc/sys/abort2.2 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 10:29:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE3AC16A407; Sat, 30 Sep 2006 10:29:44 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DFE243D45; Sat, 30 Sep 2006 10:29:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UATiLG043592; Sat, 30 Sep 2006 10:29:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UATiOU043591; Sat, 30 Sep 2006 10:29:44 GMT (envelope-from ru) Message-Id: <200609301029.k8UATiOU043591@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 10:29: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/lib/libc/posix1e mac_is_present.3 src/lib/libc/stdlib a64l.3 posix_memalign.3 strtonum.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: Sat, 30 Sep 2006 10:29:44 -0000 ru 2006-09-30 10:29:43 UTC FreeBSD src repository Modified files: lib/libc/posix1e mac_is_present.3 lib/libc/stdlib a64l.3 posix_memalign.3 strtonum.3 Log: Revise markup in recently added manpages. Revision Changes Path 1.9 +3 -3 src/lib/libc/posix1e/mac_is_present.3 1.3 +27 -26 src/lib/libc/stdlib/a64l.3 1.2 +6 -4 src/lib/libc/stdlib/posix_memalign.3 1.5 +15 -13 src/lib/libc/stdlib/strtonum.3 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 10:34:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43ABC16A47C; Sat, 30 Sep 2006 10:34:14 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03A7243D46; Sat, 30 Sep 2006 10:34:14 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UAYDo0043899; Sat, 30 Sep 2006 10:34:13 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UAYDCe043898; Sat, 30 Sep 2006 10:34:13 GMT (envelope-from ru) Message-Id: <200609301034.k8UAYDCe043898@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 10:34: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/lib/libutil kld.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: Sat, 30 Sep 2006 10:34:14 -0000 ru 2006-09-30 10:34:13 UTC FreeBSD src repository Modified files: lib/libutil kld.3 Log: Revise markup in recently added manpages. Revision Changes Path 1.3 +4 -10 src/lib/libutil/kld.3 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:02:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FB1416A47C; Sat, 30 Sep 2006 11:02:21 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E761243D76; Sat, 30 Sep 2006 11:02:17 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB2Hpc045295; Sat, 30 Sep 2006 11:02:17 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB2H2o045294; Sat, 30 Sep 2006 11:02:17 GMT (envelope-from ru) Message-Id: <200609301102.k8UB2H2o045294@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:02: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/sbin/gvinum gvinum.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: Sat, 30 Sep 2006 11:02:21 -0000 ru 2006-09-30 11:02:17 UTC FreeBSD src repository Modified files: sbin/gvinum gvinum.8 Log: Revise markup. Revision Changes Path 1.4 +111 -182 src/sbin/gvinum/gvinum.8 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:07:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ED7816A403; Sat, 30 Sep 2006 11:07:11 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFA8243D49; Sat, 30 Sep 2006 11:07:10 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB7AvB046727; Sat, 30 Sep 2006 11:07:10 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB7ATp046726; Sat, 30 Sep 2006 11:07:10 GMT (envelope-from des) Message-Id: <200609301107.k8UB7ATp046726@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 11:07: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/lib/libpam/modules/pam_opie pam_opie.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, 30 Sep 2006 11:07:11 -0000 des 2006-09-30 11:07:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libpam/modules/pam_opie pam_opie.c Log: MFC: (1.26) reject usernames that are longer than OPIE can handle. Approved by: re (kensmith) Revision Changes Path 1.25.10.1 +13 -4 src/lib/libpam/modules/pam_opie/pam_opie.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:12:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E6916A40F; Sat, 30 Sep 2006 11:12:37 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69F743D49; Sat, 30 Sep 2006 11:12:36 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBCajr047170; Sat, 30 Sep 2006 11:12:36 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBCaLZ047169; Sat, 30 Sep 2006 11:12:36 GMT (envelope-from ru) Message-Id: <200609301112.k8UBCaLZ047169@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:12: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/sbin/mca mca.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: Sat, 30 Sep 2006 11:12:37 -0000 ru 2006-09-30 11:12:36 UTC FreeBSD src repository Modified files: sbin/mca mca.8 Log: Markup nit. Revision Changes Path 1.3 +1 -1 src/sbin/mca/mca.8 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:22:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D07F116A40F; Sat, 30 Sep 2006 11:22:27 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40A8E43D46; Sat, 30 Sep 2006 11:22:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBMRDW048024; Sat, 30 Sep 2006 11:22:27 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBMRRI048023; Sat, 30 Sep 2006 11:22:27 GMT (envelope-from ru) Message-Id: <200609301122.k8UBMRRI048023@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:22: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/share/man/man3 pthread.3 pthread_attr.3 pthread_attr_get_np.3 pthread_attr_setcreatesuspend_np.3 pthread_cancel.3 pthread_cleanup_pop.3 pthread_cleanup_push.3 pthread_cond_broadcast.3 pthread_cond_destroy.3 pthread_cond_init.3 pthread_cond_signal.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: Sat, 30 Sep 2006 11:22:27 -0000 ru 2006-09-30 11:22:27 UTC FreeBSD src repository Modified files: share/man/man3 pthread.3 pthread_attr.3 pthread_attr_get_np.3 pthread_attr_setcreatesuspend_np.3 pthread_cancel.3 pthread_cleanup_pop.3 pthread_cleanup_push.3 pthread_cond_broadcast.3 pthread_cond_destroy.3 pthread_cond_init.3 pthread_cond_signal.3 pthread_cond_timedwait.3 pthread_cond_wait.3 pthread_condattr.3 pthread_create.3 pthread_detach.3 pthread_equal.3 pthread_exit.3 pthread_getconcurrency.3 pthread_getspecific.3 pthread_join.3 pthread_key_create.3 pthread_key_delete.3 pthread_kill.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutex_destroy.3 pthread_mutex_init.3 pthread_mutex_lock.3 pthread_mutex_trylock.3 pthread_mutex_unlock.3 pthread_mutexattr.3 pthread_mutexattr_getkind_np.3 pthread_once.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_rwlock_destroy.3 pthread_rwlock_init.3 pthread_rwlock_rdlock.3 pthread_rwlock_unlock.3 pthread_rwlock_wrlock.3 pthread_rwlockattr_destroy.3 pthread_rwlockattr_getpshared.3 pthread_rwlockattr_init.3 pthread_rwlockattr_setpshared.3 pthread_schedparam.3 pthread_self.3 pthread_set_name_np.3 pthread_setspecific.3 pthread_sigmask.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 pthread_testcancel.3 Log: Remove mentions of libc_r. Revision Changes Path 1.29 +1 -3 src/share/man/man3/pthread.3 1.17 +0 -1 src/share/man/man3/pthread_attr.3 1.13 +0 -1 src/share/man/man3/pthread_attr_get_np.3 1.6 +0 -1 src/share/man/man3/pthread_attr_setcreatesuspend_np.3 1.12 +0 -1 src/share/man/man3/pthread_cancel.3 1.13 +0 -1 src/share/man/man3/pthread_cleanup_pop.3 1.14 +0 -1 src/share/man/man3/pthread_cleanup_push.3 1.14 +0 -1 src/share/man/man3/pthread_cond_broadcast.3 1.15 +0 -1 src/share/man/man3/pthread_cond_destroy.3 1.16 +0 -1 src/share/man/man3/pthread_cond_init.3 1.14 +0 -1 src/share/man/man3/pthread_cond_signal.3 1.19 +0 -1 src/share/man/man3/pthread_cond_timedwait.3 1.20 +0 -1 src/share/man/man3/pthread_cond_wait.3 1.14 +0 -1 src/share/man/man3/pthread_condattr.3 1.20 +0 -1 src/share/man/man3/pthread_create.3 1.17 +0 -1 src/share/man/man3/pthread_detach.3 1.14 +0 -1 src/share/man/man3/pthread_equal.3 1.20 +0 -1 src/share/man/man3/pthread_exit.3 1.5 +0 -1 src/share/man/man3/pthread_getconcurrency.3 1.14 +0 -1 src/share/man/man3/pthread_getspecific.3 1.17 +0 -1 src/share/man/man3/pthread_join.3 1.15 +0 -1 src/share/man/man3/pthread_key_create.3 1.15 +0 -1 src/share/man/man3/pthread_key_delete.3 1.12 +0 -1 src/share/man/man3/pthread_kill.3 1.5 +0 -1 src/share/man/man3/pthread_main_np.3 1.5 +0 -3 src/share/man/man3/pthread_multi_np.3 1.14 +0 -1 src/share/man/man3/pthread_mutex_destroy.3 1.16 +0 -1 src/share/man/man3/pthread_mutex_init.3 1.17 +0 -1 src/share/man/man3/pthread_mutex_lock.3 1.14 +0 -1 src/share/man/man3/pthread_mutex_trylock.3 1.15 +0 -1 src/share/man/man3/pthread_mutex_unlock.3 1.12 +0 -1 src/share/man/man3/pthread_mutexattr.3 1.6 +0 -1 src/share/man/man3/pthread_mutexattr_getkind_np.3 1.20 +0 -1 src/share/man/man3/pthread_once.3 1.5 +0 -1 src/share/man/man3/pthread_resume_all_np.3 1.5 +0 -1 src/share/man/man3/pthread_resume_np.3 1.11 +0 -1 src/share/man/man3/pthread_rwlock_destroy.3 1.10 +0 -1 src/share/man/man3/pthread_rwlock_init.3 1.9 +0 -1 src/share/man/man3/pthread_rwlock_rdlock.3 1.9 +0 -1 src/share/man/man3/pthread_rwlock_unlock.3 1.10 +0 -1 src/share/man/man3/pthread_rwlock_wrlock.3 1.12 +0 -1 src/share/man/man3/pthread_rwlockattr_destroy.3 1.14 +0 -1 src/share/man/man3/pthread_rwlockattr_getpshared.3 1.12 +0 -1 src/share/man/man3/pthread_rwlockattr_init.3 1.14 +0 -1 src/share/man/man3/pthread_rwlockattr_setpshared.3 1.10 +0 -1 src/share/man/man3/pthread_schedparam.3 1.13 +0 -1 src/share/man/man3/pthread_self.3 1.5 +0 -1 src/share/man/man3/pthread_set_name_np.3 1.16 +0 -1 src/share/man/man3/pthread_setspecific.3 1.13 +0 -1 src/share/man/man3/pthread_sigmask.3 1.6 +0 -1 src/share/man/man3/pthread_suspend_all_np.3 1.6 +0 -1 src/share/man/man3/pthread_suspend_np.3 1.4 +2 -1 src/share/man/man3/pthread_switch_add_np.3 1.14 +0 -1 src/share/man/man3/pthread_testcancel.3 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:25:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B87016A403; Sat, 30 Sep 2006 11:25:32 +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 DFE8743D45; Sat, 30 Sep 2006 11:25:31 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id D3ED9208D; Sat, 30 Sep 2006 13:25:25 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id C2ED9208C; Sat, 30 Sep 2006 13:25:25 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 1BDD9B80E; Sat, 30 Sep 2006 13:25:24 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Luoqi Chen References: <200609290441.k8T4fbIE008707@repoman.freebsd.org> Date: Sat, 30 Sep 2006 13:25:24 +0200 In-Reply-To: <200609290441.k8T4fbIE008707@repoman.freebsd.org> (Luoqi Chen's message of "Fri, 29 Sep 2006 04:41:37 +0000 (UTC)") Message-ID: <86d59dlhp7.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) 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/su su.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, 30 Sep 2006 11:25:32 -0000 Luoqi Chen writes: > Log: > Do not chdir(2) until after setuid(2), otherwise "su - username" would = fail > when root doesn't have the permission to enter target user's home direc= tory. > If set, PAM environment variable HOME will be used in chdir(2) instead = of > pwd->pw_dir, this allows pam_chroot module to continue to function. Thank you. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:29:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA4B216A407; Sat, 30 Sep 2006 11:29:10 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8640943D46; Sat, 30 Sep 2006 11:29:10 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBTAJq048456; Sat, 30 Sep 2006 11:29:10 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBT97P048455; Sat, 30 Sep 2006 11:29:09 GMT (envelope-from tobez) Message-Id: <200609301129.k8UBT97P048455@repoman.freebsd.org> From: Anton Berezin Date: Sat, 30 Sep 2006 11:29: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: 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: Sat, 30 Sep 2006 11:29:10 -0000 tobez 2006-09-30 11:29:09 UTC FreeBSD src repository Modified files: . access Log: Remove myself from src access, since I barely ever commit there. The CVS scripts tells me it wants "Approved by: core". I doubt that it is correct, but let's hope the robot can be fooled by this commit message. Reminded by: grimreaper Revision Changes Path 1.790 +0 -1 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:32:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FB8416A407; Sat, 30 Sep 2006 11:32:47 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C90143D49; Sat, 30 Sep 2006 11:32:47 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBWknh048748; Sat, 30 Sep 2006 11:32:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBWkOF048747; Sat, 30 Sep 2006 11:32:46 GMT (envelope-from ru) Message-Id: <200609301132.k8UBWkOF048747@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:32: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/tools/build/options WITHOUT_LIBC_R src/lib Makefile src/share/man/man3 Makefile src/share/mk bsd.compat.mk bsd.libnames.mk bsd.own.mk src/tools/build/mk OptionalObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:32:47 -0000 ru 2006-09-30 11:32:46 UTC FreeBSD src repository Modified files: lib Makefile share/man/man3 Makefile share/mk bsd.compat.mk bsd.libnames.mk bsd.own.mk tools/build/mk OptionalObsoleteFiles.inc Removed files: tools/build/options WITHOUT_LIBC_R Log: Removed libc_r build support. Revision Changes Path 1.218 +1 -6 src/lib/Makefile 1.43 +1 -1 src/share/man/man3/Makefile 1.21 +0 -1 src/share/mk/bsd.compat.mk 1.99 +0 -1 src/share/mk/bsd.libnames.mk 1.57 +0 -2 src/share/mk/bsd.own.mk 1.5 +0 -4 src/tools/build/mk/OptionalObsoleteFiles.inc 1.2 +0 -5 src/tools/build/options/WITHOUT_LIBC_R (dead) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:34:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A9A316A415; Sat, 30 Sep 2006 11:34:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC0BD43D46; Sat, 30 Sep 2006 11:34:22 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBYMQp048853; Sat, 30 Sep 2006 11:34:22 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBYMil048852; Sat, 30 Sep 2006 11:34:22 GMT (envelope-from ru) Message-Id: <200609301134.k8UBYMil048852@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:34: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/share/man/man5 src.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: Sat, 30 Sep 2006 11:34:23 -0000 ru 2006-09-30 11:34:22 UTC FreeBSD src repository Modified files: share/man/man5 src.conf.5 Log: Regen (removal of WITHOUT_LIBC_R). Revision Changes Path 1.8 +1 -7 src/share/man/man5/src.conf.5 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 11:48:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8DF516A412; Sat, 30 Sep 2006 11:48:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0954A43D5C; Sat, 30 Sep 2006 11:48:13 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBmCOc049452; Sat, 30 Sep 2006 11:48:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBmCb6049451; Sat, 30 Sep 2006 11:48:12 GMT (envelope-from ru) Message-Id: <200609301148.k8UBmCb6049451@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:48: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/share/man/man3 siginfo.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: Sat, 30 Sep 2006 11:48:13 -0000 ru 2006-09-30 11:48:12 UTC FreeBSD src repository Modified files: share/man/man3 siginfo.3 Log: Revise markup. Revision Changes Path 1.3 +5 -6 src/share/man/man3/siginfo.3 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 12:10:22 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BA4F16A47E; Sat, 30 Sep 2006 12:10:22 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1-3.pacific.net.au [61.8.2.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C7FA43D5C; Sat, 30 Sep 2006 12:10:17 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout1.pacific.net.au (Postfix) with ESMTP id 13D9B61FFF1; Sat, 30 Sep 2006 22:10:16 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8UCAE1l021247; Sat, 30 Sep 2006 22:10:15 +1000 Date: Sat, 30 Sep 2006 22:10:13 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Martin Blapp In-Reply-To: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> Message-ID: <20060930215621.J1683@epsplex.bde.org> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.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, 30 Sep 2006 12:10:22 -0000 On Sat, 30 Sep 2006, Martin Blapp wrote: > mbr 2006-09-30 08:11:52 UTC > > FreeBSD src repository > > Modified files: > sys/kern tty.c > Log: > Any call of tty_close() with a tty refcount of <= 1 is wrong and we will > free the tty in this case. This is a workaround until the underlaying > devfs/tty problems are fixed. Actually mainly old vfs bugs and complications near revoke() that bite harder now. Bruce From owner-cvs-src@FreeBSD.ORG Sat Sep 30 12:34:21 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57FA316A5AB; Sat, 30 Sep 2006 12:34:21 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1-3.pacific.net.au [61.8.2.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B9B943DE7; Sat, 30 Sep 2006 12:32:22 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout1.pacific.net.au (Postfix) with ESMTP id 46DC069FC96; Sat, 30 Sep 2006 22:32:21 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8UCWIjb006369; Sat, 30 Sep 2006 22:32:19 +1000 Date: Sat, 30 Sep 2006 22:32:17 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Martin Blapp In-Reply-To: <20060930012958.C91466@godot.imp.ch> Message-ID: <20060930221249.J1683@epsplex.bde.org> References: <8209.1159564737@critter.freebsd.dk> <20060930012958.C91466@godot.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, Poul-Henning Kamp , Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 30 Sep 2006 12:34:21 -0000 On Sat, 30 Sep 2006, Martin Blapp wrote: > What's the best to do now ? Back out again the last commit and that destroy > slave can be called, make tty_pts.c as broken ? Or will you or Bruce fix > the underlaying problem ? It's far beyond my horizont ... Start with removing all device and tty destruction calls (mainly in tty_pts.c). Bruce From owner-cvs-src@FreeBSD.ORG Sat Sep 30 12:38:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEDCA16A415; Sat, 30 Sep 2006 12:38:52 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD26D43E10; Sat, 30 Sep 2006 12:37:50 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCbhex053213; Sat, 30 Sep 2006 12:37:43 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCbhjI053212; Sat, 30 Sep 2006 12:37:43 GMT (envelope-from netchild) Message-Id: <200609301237.k8UCbhjI053212@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 12:37: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/sys/netgraph/atm/ccatm ng_ccatm.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, 30 Sep 2006 12:38:52 -0000 netchild 2006-09-30 12:37:43 UTC FreeBSD src repository Modified files: sys/netgraph/atm/ccatm ng_ccatm.c Log: Don't use data after free. Found by: Coverity Prevent CID: 536 Submitted by: harti (via vs) Revision Changes Path 1.3 +4 -1 src/sys/netgraph/atm/ccatm/ng_ccatm.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 12:44:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2E4E16A49E; Sat, 30 Sep 2006 12:44:32 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F191A43D5E; Sat, 30 Sep 2006 12:44:30 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCiUW8053868; Sat, 30 Sep 2006 12:44:30 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCiUtp053867; Sat, 30 Sep 2006 12:44:30 GMT (envelope-from netchild) Message-Id: <200609301244.k8UCiUtp053867@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 12:44: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/sound/pci ak452x.c ak452x.h envy24ht.c envy24ht.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, 30 Sep 2006 12:44:32 -0000 netchild 2006-09-30 12:44:30 UTC FreeBSD src repository Modified files: sys/dev/sound/pci ak452x.c ak452x.h envy24ht.c envy24ht.h Log: Forcet commit to note repo copy: envy24.c -> envy24ht.c envy24.h -> envy24ht.h ak452x.c -> spicds.c ak452x.h -> spicds.h Fast repo copy by: simon (30min turn-around) Revision Changes Path 1.3 +0 -0 src/sys/dev/sound/pci/ak452x.c 1.2 +0 -0 src/sys/dev/sound/pci/ak452x.h 1.4 +0 -0 src/sys/dev/sound/pci/envy24ht.c 1.2 +0 -0 src/sys/dev/sound/pci/envy24ht.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 12:50:01 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D257016A417 for ; Sat, 30 Sep 2006 12:50:01 +0000 (UTC) (envelope-from pho@holm.cc) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id E7A0743D70 for ; Sat, 30 Sep 2006 12:49:59 +0000 (GMT) (envelope-from pho@holm.cc) Received: (qmail 16622 invoked from network); 30 Sep 2006 12:49:58 -0000 Received: from unknown (HELO peter.osted.lan) (unknown) by unknown with SMTP; 30 Sep 2006 12:49:58 -0000 X-pair-Authenticated: 80.165.155.106 Received: from peter.osted.lan (localhost.osted.lan [127.0.0.1]) by peter.osted.lan (8.13.6/8.13.6) with ESMTP id k8UCnwiB025680; Sat, 30 Sep 2006 14:49:58 +0200 (CEST) (envelope-from pho@peter.osted.lan) Received: (from pho@localhost) by peter.osted.lan (8.13.6/8.13.6/Submit) id k8UCnvcY025679; Sat, 30 Sep 2006 14:49:58 +0200 (CEST) (envelope-from pho) Date: Sat, 30 Sep 2006 14:49:57 +0200 From: Peter Holm To: Martin Blapp Message-ID: <20060930124957.GA25578@peter.osted.lan> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609300811.k8U8Bqlk025097@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/sys/kern tty.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, 30 Sep 2006 12:50:01 -0000 On Sat, Sep 30, 2006 at 08:11:52AM +0000, Martin Blapp wrote: > mbr 2006-09-30 08:11:52 UTC > > FreeBSD src repository > > Modified files: > sys/kern tty.c > Log: > Any call of tty_close() with a tty refcount of <= 1 is wrong and we will > free the tty in this case. This is a workaround until the underlaying > devfs/tty problems are fixed. > I still have a problem with ptys: http://people.freebsd.org/~pho/stress/log/blapp001.html - Peter > MFC after: 1 day > > Revision Changes Path > 1.261 +9 -6 src/sys/kern/tty.c > _______________________________________________ > 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 Sat Sep 30 12:52:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B3E416A407; Sat, 30 Sep 2006 12:52:16 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C414143D76; Sat, 30 Sep 2006 12:52:15 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCqFbf062275; Sat, 30 Sep 2006 12:52:15 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCqFNY062274; Sat, 30 Sep 2006 12:52:15 GMT (envelope-from ru) Message-Id: <200609301252.k8UCqFNY062274@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 12:52: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/gnu/lib/libstdc++ 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, 30 Sep 2006 12:52:16 -0000 ru 2006-09-30 12:52:15 UTC FreeBSD src repository Modified files: gnu/lib/libstdc++ Makefile Log: Fix build due to the incomplete removal of demangle.h. Revision Changes Path 1.57 +1 -1 src/gnu/lib/libstdc++/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:30:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE9D16A403; Sat, 30 Sep 2006 13:30:02 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11A4643D5C; Sat, 30 Sep 2006 13:30:02 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDU2NN065335; Sat, 30 Sep 2006 13:30:02 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDU1mw065334; Sat, 30 Sep 2006 13:30:01 GMT (envelope-from des) Message-Id: <200609301330.k8UDU1mw065334@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:30:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENSSH Cc: Subject: cvs commit: src/crypto/openssh - 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: Sat, 30 Sep 2006 13:30:02 -0000 des 2006-09-30 13:30:01 UTC FreeBSD src repository src/crypto/openssh - Imported sources Update of /home/ncvs/src/crypto/openssh In directory repoman.freebsd.org:/tmp/cvs-serv65300 Log Message: Vendor import of OpenSSH 4.4p1. Status: Vendor Tag: OPENSSH Release Tags: OpenSSH_4_4p1 U src/crypto/openssh/mkinstalldirs U src/crypto/openssh/auth2-gss.c C src/crypto/openssh/auth-pam.c U src/crypto/openssh/uidswap.c C src/crypto/openssh/cipher.c U src/crypto/openssh/ssh-agent.1 U src/crypto/openssh/buffer.c U src/crypto/openssh/monitor_fdpass.c U src/crypto/openssh/kexdhs.c C src/crypto/openssh/monitor.h U src/crypto/openssh/cleanup.c U src/crypto/openssh/authfile.h U src/crypto/openssh/mdoc2man.awk C src/crypto/openssh/sshpty.c U src/crypto/openssh/gss-serv-krb5.c U src/crypto/openssh/sftp-common.c C src/crypto/openssh/auth-skey.c U src/crypto/openssh/ssh-rsa.c C src/crypto/openssh/ssh.c U src/crypto/openssh/kexgexs.c U src/crypto/openssh/compress.h U src/crypto/openssh/ssh-keysign.8 C src/crypto/openssh/compat.h U src/crypto/openssh/atomicio.h C src/crypto/openssh/sshconnect1.c U src/crypto/openssh/fixpaths U src/crypto/openssh/msg.c U src/crypto/openssh/sftp.h C src/crypto/openssh/rsa.c U src/crypto/openssh/cipher-bf1.c U src/crypto/openssh/README.tun U src/crypto/openssh/kex.h U src/crypto/openssh/kexgexc.c C src/crypto/openssh/packet.h U src/crypto/openssh/scard.c U src/crypto/openssh/match.c U src/crypto/openssh/sftp-client.c U src/crypto/openssh/sftp.c U src/crypto/openssh/xmalloc.c U src/crypto/openssh/msg.h U src/crypto/openssh/kexdh.c U src/crypto/openssh/WARNING.RNG U src/crypto/openssh/rijndael.h C src/crypto/openssh/servconf.h U src/crypto/openssh/kexdhc.c C src/crypto/openssh/compat.c U src/crypto/openssh/mac.h U src/crypto/openssh/sshtty.c C src/crypto/openssh/canohost.c U src/crypto/openssh/entropy.h U src/crypto/openssh/sftp-server.8 U src/crypto/openssh/monitor_mm.c U src/crypto/openssh/auth2-pubkey.c C src/crypto/openssh/sshlogin.h C src/crypto/openssh/monitor_wrap.c C src/crypto/openssh/channels.c U src/crypto/openssh/moduli U src/crypto/openssh/sftp-client.h U src/crypto/openssh/scard-opensc.c U src/crypto/openssh/audit.h U src/crypto/openssh/ssh2.h U src/crypto/openssh/sftp-glob.c C src/crypto/openssh/auth-rsa.c U src/crypto/openssh/crc32.c U src/crypto/openssh/OVERVIEW U src/crypto/openssh/audit.c U src/crypto/openssh/survey.sh.in U src/crypto/openssh/aclocal.m4 U src/crypto/openssh/misc.c U src/crypto/openssh/match.h U src/crypto/openssh/fixprogs U src/crypto/openssh/crc32.h U src/crypto/openssh/kexgex.c U src/crypto/openssh/key.h U src/crypto/openssh/dispatch.h U src/crypto/openssh/dns.c U src/crypto/openssh/fatal.c U src/crypto/openssh/cipher-aes.c C src/crypto/openssh/ssh_config.5 C src/crypto/openssh/cipher.h U src/crypto/openssh/packet.c U src/crypto/openssh/cipher-3des1.c C src/crypto/openssh/auth-chall.c U src/crypto/openssh/defines.h U src/crypto/openssh/ssh-rand-helper.8 U src/crypto/openssh/scard.h U src/crypto/openssh/ssh-add.1 U src/crypto/openssh/dh.h C src/crypto/openssh/auth-krb5.c N src/crypto/openssh/platform.h U src/crypto/openssh/sftp-common.h C src/crypto/openssh/auth2.c U src/crypto/openssh/auth2-hostbased.c C src/crypto/openssh/sshd_config.5 U src/crypto/openssh/auth2-passwd.c U src/crypto/openssh/auth-options.c U src/crypto/openssh/misc.h C src/crypto/openssh/auth.c U src/crypto/openssh/README U src/crypto/openssh/mac.c N src/crypto/openssh/openssh.xml.in U src/crypto/openssh/gss-genr.c U src/crypto/openssh/cipher-acss.c U src/crypto/openssh/nchan.ms U src/crypto/openssh/auth-shadow.c C src/crypto/openssh/configure.ac U src/crypto/openssh/moduli.c C src/crypto/openssh/readconf.h C src/crypto/openssh/sshconnect.c U src/crypto/openssh/gss-serv.c C src/crypto/openssh/hostfile.c U src/crypto/openssh/auth-sia.h U src/crypto/openssh/authfd.h C src/crypto/openssh/key.c C src/crypto/openssh/session.h U src/crypto/openssh/xmalloc.h U src/crypto/openssh/ChangeLog C src/crypto/openssh/bufaux.c U src/crypto/openssh/md5crypt.h U src/crypto/openssh/buildpkg.sh.in U src/crypto/openssh/auth-options.h U src/crypto/openssh/ssh1.h U src/crypto/openssh/auth-rhosts.c C src/crypto/openssh/LICENCE C src/crypto/openssh/ssh.1 U src/crypto/openssh/ssh-keyscan.1 U src/crypto/openssh/README.platform U src/crypto/openssh/buffer.h C src/crypto/openssh/version.h U src/crypto/openssh/progressmeter.c U src/crypto/openssh/scp.1 U src/crypto/openssh/monitor_fdpass.h C src/crypto/openssh/myproposal.h U src/crypto/openssh/RFC.nroff U src/crypto/openssh/canohost.h U src/crypto/openssh/groupaccess.c U src/crypto/openssh/acss.h C src/crypto/openssh/auth.h C src/crypto/openssh/sshconnect2.c U src/crypto/openssh/nchan.c U src/crypto/openssh/install-sh U src/crypto/openssh/clientloop.h U src/crypto/openssh/ssh-keysign.c U src/crypto/openssh/ttymodes.h U src/crypto/openssh/monitor_mm.h U src/crypto/openssh/dns.h U src/crypto/openssh/cipher-ctr.c U src/crypto/openssh/rijndael.c U src/crypto/openssh/uuencode.h C src/crypto/openssh/sshlogin.c U src/crypto/openssh/auth-pam.h U src/crypto/openssh/progressmeter.h U src/crypto/openssh/serverloop.h C src/crypto/openssh/ssh-add.c U src/crypto/openssh/README.dns U src/crypto/openssh/ssh-rand-helper.c C src/crypto/openssh/log.h C src/crypto/openssh/sshd.c C src/crypto/openssh/servconf.c U src/crypto/openssh/entropy.c U src/crypto/openssh/audit-bsm.c C src/crypto/openssh/monitor.c C src/crypto/openssh/auth-passwd.c U src/crypto/openssh/opensshd.init.in U src/crypto/openssh/clientloop.c U src/crypto/openssh/logintest.c C src/crypto/openssh/auth2-chall.c C src/crypto/openssh/loginrec.c U src/crypto/openssh/deattack.c C src/crypto/openssh/channels.h C src/crypto/openssh/readconf.c U src/crypto/openssh/ssh-gss.h C src/crypto/openssh/rsa.h C src/crypto/openssh/authfile.c U src/crypto/openssh/bufaux.h C src/crypto/openssh/scp.c U src/crypto/openssh/dh.c U src/crypto/openssh/deattack.h C src/crypto/openssh/auth2-kbdint.c U src/crypto/openssh/atomicio.c C src/crypto/openssh/session.c C src/crypto/openssh/ssh.h U src/crypto/openssh/loginrec.h C src/crypto/openssh/sshd_config C src/crypto/openssh/auth-rh-rsa.c U src/crypto/openssh/ssh-keygen.1 U src/crypto/openssh/md5crypt.c U src/crypto/openssh/sshpty.h U src/crypto/openssh/uuencode.c U src/crypto/openssh/ssh_prng_cmds.in U src/crypto/openssh/auth2-none.c U src/crypto/openssh/readpass.c C src/crypto/openssh/sshd.8 U src/crypto/openssh/hostfile.h C src/crypto/openssh/pathnames.h C src/crypto/openssh/auth1.c N src/crypto/openssh/platform.c U src/crypto/openssh/sftp-server.c C src/crypto/openssh/serverloop.c U src/crypto/openssh/CREDITS U src/crypto/openssh/Makefile.in U src/crypto/openssh/config.guess U src/crypto/openssh/ssh-keygen.c U src/crypto/openssh/log.c U src/crypto/openssh/uidswap.h N src/crypto/openssh/bufbn.c U src/crypto/openssh/README.privsep U src/crypto/openssh/compress.c C src/crypto/openssh/ssh-keyscan.c C src/crypto/openssh/ssh_config C src/crypto/openssh/authfd.c C src/crypto/openssh/includes.h U src/crypto/openssh/auth-sia.c U src/crypto/openssh/config.sub C src/crypto/openssh/sshconnect.h U src/crypto/openssh/README.smartcard U src/crypto/openssh/acss.c U src/crypto/openssh/ssh-dss.c C src/crypto/openssh/ssh-agent.c U src/crypto/openssh/groupaccess.h U src/crypto/openssh/sftp.1 U src/crypto/openssh/ttymodes.c U src/crypto/openssh/TODO C src/crypto/openssh/monitor_wrap.h U src/crypto/openssh/INSTALL U src/crypto/openssh/kex.c U src/crypto/openssh/auth-bsdauth.c N src/crypto/openssh/md-sha256.c U src/crypto/openssh/nchan2.ms U src/crypto/openssh/dispatch.c U src/crypto/openssh/scard/Ssh.java U src/crypto/openssh/scard/Ssh.bin.uu U src/crypto/openssh/scard/Ssh.bin U src/crypto/openssh/scard/Makefile.in N src/crypto/openssh/regress/forcecommand.sh U src/crypto/openssh/regress/rsa_ssh2.prv N src/crypto/openssh/regress/cipher-speed.sh U src/crypto/openssh/regress/rekey.sh U src/crypto/openssh/regress/runtests.sh U src/crypto/openssh/regress/bsd.regress.mk U src/crypto/openssh/regress/agent.sh U src/crypto/openssh/regress/rsa_openssh.prv U src/crypto/openssh/regress/sftp-cmds.sh U src/crypto/openssh/regress/dsa_ssh2.prv U src/crypto/openssh/regress/connect-privsep.sh U src/crypto/openssh/regress/stderr-after-eof.sh U src/crypto/openssh/regress/sftp-glob.sh U src/crypto/openssh/regress/sshd-log-wrapper.sh U src/crypto/openssh/regress/dsa_ssh2.pub U src/crypto/openssh/regress/yes-head.sh U src/crypto/openssh/regress/envpass.sh U src/crypto/openssh/regress/agent-getpeereid.sh U src/crypto/openssh/regress/scp-ssh-wrapper.sh U src/crypto/openssh/regress/keyscan.sh U src/crypto/openssh/regress/ssh-com-client.sh U src/crypto/openssh/regress/proto-version.sh U src/crypto/openssh/regress/broken-pipe.sh U src/crypto/openssh/regress/reconfigure.sh U src/crypto/openssh/regress/t5.ok U src/crypto/openssh/regress/Makefile U src/crypto/openssh/regress/dynamic-forward.sh U src/crypto/openssh/regress/forwarding.sh U src/crypto/openssh/regress/test-exec.sh U src/crypto/openssh/regress/proxy-connect.sh U src/crypto/openssh/regress/login-timeout.sh U src/crypto/openssh/regress/ssh-com-sftp.sh U src/crypto/openssh/regress/ssh-com.sh U src/crypto/openssh/regress/reexec.sh U src/crypto/openssh/regress/agent-timeout.sh U src/crypto/openssh/regress/try-ciphers.sh U src/crypto/openssh/regress/scp.sh U src/crypto/openssh/regress/README.regress U src/crypto/openssh/regress/keygen-change.sh U src/crypto/openssh/regress/multiplex.sh U src/crypto/openssh/regress/proto-mismatch.sh U src/crypto/openssh/regress/sftp-badcmds.sh U src/crypto/openssh/regress/stderr-data.sh U src/crypto/openssh/regress/transfer.sh U src/crypto/openssh/regress/sftp.sh U src/crypto/openssh/regress/connect.sh U src/crypto/openssh/regress/brokenkeys.sh U src/crypto/openssh/regress/rsa_openssh.pub U src/crypto/openssh/regress/banner.sh U src/crypto/openssh/regress/sftp-batch.sh U src/crypto/openssh/regress/t4.ok N src/crypto/openssh/regress/cfgmatch.sh U src/crypto/openssh/regress/agent-ptrace.sh U src/crypto/openssh/regress/exit-status.sh U src/crypto/openssh/regress/ssh-com-keygen.sh U src/crypto/openssh/openbsd-compat/vis.c U src/crypto/openssh/openbsd-compat/port-uw.c U src/crypto/openssh/openbsd-compat/fake-rfc2553.c U src/crypto/openssh/openbsd-compat/port-tun.c U src/crypto/openssh/openbsd-compat/sigact.c N src/crypto/openssh/openbsd-compat/port-linux.h U src/crypto/openssh/openbsd-compat/bsd-waitpid.c U src/crypto/openssh/openbsd-compat/bsd-nextstep.c U src/crypto/openssh/openbsd-compat/setenv.c U src/crypto/openssh/openbsd-compat/port-irix.h U src/crypto/openssh/openbsd-compat/port-irix.c U src/crypto/openssh/openbsd-compat/bsd-snprintf.c U src/crypto/openssh/openbsd-compat/inet_aton.c U src/crypto/openssh/openbsd-compat/port-tun.h N src/crypto/openssh/openbsd-compat/sha2.h N src/crypto/openssh/openbsd-compat/port-linux.c U src/crypto/openssh/openbsd-compat/strlcat.c U src/crypto/openssh/openbsd-compat/strsep.c U src/crypto/openssh/openbsd-compat/rresvport.c U src/crypto/openssh/openbsd-compat/bsd-cray.h U src/crypto/openssh/openbsd-compat/daemon.c U src/crypto/openssh/openbsd-compat/bsd-asprintf.c U src/crypto/openssh/openbsd-compat/vis.h U src/crypto/openssh/openbsd-compat/xcrypt.c U src/crypto/openssh/openbsd-compat/strmode.c U src/crypto/openssh/openbsd-compat/strlcpy.c U src/crypto/openssh/openbsd-compat/getrrsetbyname.c U src/crypto/openssh/openbsd-compat/inet_ntoa.c U src/crypto/openssh/openbsd-compat/bsd-misc.c U src/crypto/openssh/openbsd-compat/sys-tree.h U src/crypto/openssh/openbsd-compat/bsd-getpeereid.c U src/crypto/openssh/openbsd-compat/readpassphrase.h U src/crypto/openssh/openbsd-compat/bsd-cygwin_util.c U src/crypto/openssh/openbsd-compat/bsd-closefrom.c U src/crypto/openssh/openbsd-compat/getcwd.c U src/crypto/openssh/openbsd-compat/port-aix.c U src/crypto/openssh/openbsd-compat/openssl-compat.h U src/crypto/openssh/openbsd-compat/openssl-compat.c U src/crypto/openssh/openbsd-compat/strtoul.c U src/crypto/openssh/openbsd-compat/bsd-misc.h U src/crypto/openssh/openbsd-compat/basename.c U src/crypto/openssh/openbsd-compat/bsd-cygwin_util.h U src/crypto/openssh/openbsd-compat/bsd-waitpid.h U src/crypto/openssh/openbsd-compat/glob.c U src/crypto/openssh/openbsd-compat/base64.c N src/crypto/openssh/openbsd-compat/port-solaris.h U src/crypto/openssh/openbsd-compat/strtoll.c U src/crypto/openssh/openbsd-compat/sys-queue.h U src/crypto/openssh/openbsd-compat/bsd-cray.c U src/crypto/openssh/openbsd-compat/dirname.c U src/crypto/openssh/openbsd-compat/glob.h U src/crypto/openssh/openbsd-compat/mktemp.c U src/crypto/openssh/openbsd-compat/openbsd-compat.h U src/crypto/openssh/openbsd-compat/realpath.c U src/crypto/openssh/openbsd-compat/getgrouplist.c U src/crypto/openssh/openbsd-compat/getopt.c U src/crypto/openssh/openbsd-compat/bsd-arc4random.c U src/crypto/openssh/openbsd-compat/xmmap.c U src/crypto/openssh/openbsd-compat/port-aix.h U src/crypto/openssh/openbsd-compat/readpassphrase.c U src/crypto/openssh/openbsd-compat/bindresvport.c U src/crypto/openssh/openbsd-compat/bsd-openpty.c U src/crypto/openssh/openbsd-compat/strtonum.c U src/crypto/openssh/openbsd-compat/Makefile.in N src/crypto/openssh/openbsd-compat/port-solaris.c U src/crypto/openssh/openbsd-compat/setproctitle.c N src/crypto/openssh/openbsd-compat/sha2.c U src/crypto/openssh/openbsd-compat/bsd-nextstep.h U src/crypto/openssh/openbsd-compat/sigact.h C src/crypto/openssh/openbsd-compat/fake-rfc2553.h U src/crypto/openssh/openbsd-compat/port-uw.h U src/crypto/openssh/openbsd-compat/base64.h U src/crypto/openssh/openbsd-compat/inet_ntop.c U src/crypto/openssh/openbsd-compat/getrrsetbyname.h N src/crypto/openssh/openbsd-compat/regress/closefromtest.c N src/crypto/openssh/openbsd-compat/regress/snprintftest.c N src/crypto/openssh/openbsd-compat/regress/strduptest.c N src/crypto/openssh/openbsd-compat/regress/strtonumtest.c N src/crypto/openssh/openbsd-compat/regress/Makefile.in 68 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENSSH:yesterday -jOPENSSH src/crypto/openssh From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:34:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C94B916A407; Sat, 30 Sep 2006 13:34:46 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8778843D45; Sat, 30 Sep 2006 13:34:46 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDYksY065620; Sat, 30 Sep 2006 13:34:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDYkQK065619; Sat, 30 Sep 2006 13:34:46 GMT (envelope-from ru) Message-Id: <200609301334.k8UDYkQK065619@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 13:34: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/share/man/man4 ipmi.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, 30 Sep 2006 13:34:46 -0000 ru 2006-09-30 13:34:46 UTC FreeBSD src repository Modified files: share/man/man4 ipmi.4 Log: Document ioctls differently, like is done in other section four manpages. Revision Changes Path 1.6 +38 -60 src/share/man/man4/ipmi.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:38:07 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4C5E16A412; Sat, 30 Sep 2006 13:38:07 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7600143D45; Sat, 30 Sep 2006 13:38:07 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDc7vA066031; Sat, 30 Sep 2006 13:38:07 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDc79a066030; Sat, 30 Sep 2006 13:38:07 GMT (envelope-from des) Message-Id: <200609301338.k8UDc79a066030@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:38: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/crypto/openssh LICENCE auth-chall.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.c auth.h auth1.c auth2-chall.c auth2-kbdint.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.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, 30 Sep 2006 13:38:07 -0000 des 2006-09-30 13:38:07 UTC FreeBSD src repository Modified files: crypto/openssh LICENCE auth-chall.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.c auth.h auth1.c auth2-chall.c auth2-kbdint.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c cipher.h compat.c compat.h configure.ac hostfile.c includes.h key.c log.h loginrec.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h myproposal.h packet.h pathnames.h readconf.c readconf.h rsa.c rsa.h scp.c servconf.c servconf.h serverloop.c session.c session.h ssh-add.c ssh-agent.c ssh-keyscan.c ssh.1 ssh.c ssh.h ssh_config ssh_config.5 ssh_namespace.h sshconnect.c sshconnect.h sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config sshd_config.5 sshlogin.c sshlogin.h sshpty.c version.h crypto/openssh/openbsd-compat fake-rfc2553.h Log: Merge conflicts. MFC after: 1 week Revision Changes Path 1.9 +2 -0 src/crypto/openssh/LICENCE 1.11 +9 -3 src/crypto/openssh/auth-chall.c 1.22 +13 -3 src/crypto/openssh/auth-krb5.c 1.19 +64 -23 src/crypto/openssh/auth-pam.c 1.21 +11 -2 src/crypto/openssh/auth-passwd.c 1.14 +10 -2 src/crypto/openssh/auth-rh-rsa.c 1.17 +17 -4 src/crypto/openssh/auth-rsa.c 1.17 +16 -13 src/crypto/openssh/auth-skey.c 1.19 +44 -50 src/crypto/openssh/auth.c 1.17 +6 -6 src/crypto/openssh/auth.h 1.34 +21 -3 src/crypto/openssh/auth1.c 1.12 +13 -4 src/crypto/openssh/auth2-chall.c 1.5 +10 -3 src/crypto/openssh/auth2-kbdint.c 1.28 +16 -5 src/crypto/openssh/auth2.c 1.20 +19 -10 src/crypto/openssh/authfd.c 1.20 +22 -10 src/crypto/openssh/authfile.c 1.19 +16 -173 src/crypto/openssh/bufaux.c 1.20 +21 -7 src/crypto/openssh/canohost.c 1.23 +183 -91 src/crypto/openssh/channels.c 1.16 +5 -5 src/crypto/openssh/channels.h 1.23 +8 -3 src/crypto/openssh/cipher.c 1.14 +1 -1 src/crypto/openssh/cipher.h 1.14 +9 -3 src/crypto/openssh/compat.c 1.14 +1 -1 src/crypto/openssh/compat.h 1.14 +299 -98 src/crypto/openssh/configure.ac 1.17 +15 -5 src/crypto/openssh/hostfile.c 1.22 +13 -55 src/crypto/openssh/includes.h 1.21 +16 -24 src/crypto/openssh/key.c 1.8 +3 -4 src/crypto/openssh/log.h 1.14 +20 -4 src/crypto/openssh/loginrec.c 1.21 +62 -21 src/crypto/openssh/monitor.c 1.8 +2 -2 src/crypto/openssh/monitor.h 1.13 +34 -25 src/crypto/openssh/monitor_wrap.c 1.10 +4 -8 src/crypto/openssh/monitor_wrap.h 1.9 +17 -3 src/crypto/openssh/myproposal.h 1.8 +5 -2 src/crypto/openssh/openbsd-compat/fake-rfc2553.h 1.16 +3 -1 src/crypto/openssh/packet.h 1.9 +1 -1 src/crypto/openssh/pathnames.h 1.28 +52 -10 src/crypto/openssh/readconf.c 1.20 +2 -3 src/crypto/openssh/readconf.h 1.13 +7 -2 src/crypto/openssh/rsa.c 1.11 +1 -1 src/crypto/openssh/rsa.h 1.11 +57 -27 src/crypto/openssh/scp.c 1.49 +402 -103 src/crypto/openssh/servconf.c 1.20 +15 -6 src/crypto/openssh/servconf.h 1.16 +48 -10 src/crypto/openssh/serverloop.c 1.49 +74 -33 src/crypto/openssh/session.c 1.11 +5 -2 src/crypto/openssh/session.h 1.18 +28 -9 src/crypto/openssh/ssh-add.c 1.27 +47 -21 src/crypto/openssh/ssh-agent.c 1.14 +30 -16 src/crypto/openssh/ssh-keyscan.c 1.34 +91 -32 src/crypto/openssh/ssh.1 1.31 +102 -45 src/crypto/openssh/ssh.c 1.27 +1 -15 src/crypto/openssh/ssh.h 1.30 +4 -2 src/crypto/openssh/ssh_config 1.20 +198 -104 src/crypto/openssh/ssh_config.5 1.2 +18 -2 src/crypto/openssh/ssh_namespace.h 1.32 +89 -54 src/crypto/openssh/sshconnect.c 1.9 +13 -13 src/crypto/openssh/sshconnect.h 1.22 +21 -9 src/crypto/openssh/sshconnect1.c 1.18 +34 -24 src/crypto/openssh/sshconnect2.c 1.34 +274 -286 src/crypto/openssh/sshd.8 1.43 +429 -347 src/crypto/openssh/sshd.c 1.45 +16 -9 src/crypto/openssh/sshd_config 1.26 +216 -96 src/crypto/openssh/sshd_config.5 1.13 +20 -6 src/crypto/openssh/sshlogin.c 1.5 +3 -8 src/crypto/openssh/sshlogin.h 1.13 +26 -5 src/crypto/openssh/sshpty.c 1.33 +3 -3 src/crypto/openssh/version.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:39:07 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA9E216A417; Sat, 30 Sep 2006 13:39:07 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9023643D45; Sat, 30 Sep 2006 13:39:07 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDd7a6066098; Sat, 30 Sep 2006 13:39:07 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDd7II066097; Sat, 30 Sep 2006 13:39:07 GMT (envelope-from des) Message-Id: <200609301339.k8UDd7II066097@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:39: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/crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 version.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, 30 Sep 2006 13:39:08 -0000 des 2006-09-30 13:39:07 UTC FreeBSD src repository Modified files: crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 version.h Log: Bump version addendum. MFC after: 1 week Revision Changes Path 1.31 +2 -2 src/crypto/openssh/ssh_config 1.21 +2 -2 src/crypto/openssh/ssh_config.5 1.46 +2 -2 src/crypto/openssh/sshd_config 1.27 +2 -2 src/crypto/openssh/sshd_config.5 1.34 +2 -2 src/crypto/openssh/version.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:39:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86B6816A403; Sat, 30 Sep 2006 13:39:36 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 457CB43D45; Sat, 30 Sep 2006 13:39:36 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDda54066136; Sat, 30 Sep 2006 13:39:36 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDdaRI066135; Sat, 30 Sep 2006 13:39:36 GMT (envelope-from des) Message-Id: <200609301339.k8UDdaRI066135@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:39: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/crypto/openssh getput.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, 30 Sep 2006 13:39:36 -0000 des 2006-09-30 13:39:36 UTC FreeBSD src repository Removed files: crypto/openssh getput.h Log: Removed from vendor branch. MFC after: 1 week Revision Changes Path 1.2 +0 -63 src/crypto/openssh/getput.h (dead) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:40:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5607516A40F; Sat, 30 Sep 2006 13:40:36 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 106D243D45; Sat, 30 Sep 2006 13:40:36 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDeZs1066291; Sat, 30 Sep 2006 13:40:35 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDeZiL066290; Sat, 30 Sep 2006 13:40:35 GMT (envelope-from des) Message-Id: <200609301340.k8UDeZiL066290@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:40: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/crypto/openssh audit-bsm.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, 30 Sep 2006 13:40:36 -0000 des 2006-09-30 13:40:35 UTC FreeBSD src repository Modified files: crypto/openssh audit-bsm.c Log: #include ; this has the unfortunate side effect of taking the file off the vendor branch. MFC after: 1 week Revision Changes Path 1.2 +10 -1 src/crypto/openssh/audit-bsm.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:40:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C0A416A51E; Sat, 30 Sep 2006 13:40:58 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B00E43D67; Sat, 30 Sep 2006 13:40:56 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDeur2066359; Sat, 30 Sep 2006 13:40:56 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDeuU0066357; Sat, 30 Sep 2006 13:40:56 GMT (envelope-from des) Message-Id: <200609301340.k8UDeuU0066357@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:40: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/crypto/openssh config.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, 30 Sep 2006 13:40:58 -0000 des 2006-09-30 13:40:56 UTC FreeBSD src repository Modified files: crypto/openssh config.h Log: Regenerate. MFC after: 1 week Revision Changes Path 1.17 +60 -9 src/crypto/openssh/config.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 13:41:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE4FE16A49E; Sat, 30 Sep 2006 13:41:27 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49F6043D46; Sat, 30 Sep 2006 13:41:27 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDfRDZ066458; Sat, 30 Sep 2006 13:41:27 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDfR54066457; Sat, 30 Sep 2006 13:41:27 GMT (envelope-from des) Message-Id: <200609301341.k8UDfR54066457@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:41: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/secure/lib/libssh Makefile src/secure/usr.sbin/sshd 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, 30 Sep 2006 13:41:27 -0000 des 2006-09-30 13:41:27 UTC FreeBSD src repository Modified files: secure/lib/libssh Makefile secure/usr.sbin/sshd Makefile Log: Update for OpenSSH 4.4p1. MFC after: 1 week Revision Changes Path 1.42 +2 -2 src/secure/lib/libssh/Makefile 1.50 +1 -1 src/secure/usr.sbin/sshd/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:07:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7BE916A40F; Sat, 30 Sep 2006 14:07:23 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0685043D4C; Sat, 30 Sep 2006 14:07:21 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE7LhZ068991; Sat, 30 Sep 2006 14:07:21 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE7LUD068990; Sat, 30 Sep 2006 14:07:21 GMT (envelope-from cognet) Message-Id: <200609301407.k8UE7LUD068990@repoman.freebsd.org> From: Olivier Houchard Date: Sat, 30 Sep 2006 14:07:21 +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/usb if_cdce.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, 30 Sep 2006 14:07:23 -0000 cognet 2006-09-30 14:07:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb if_cdce.c Log: MFC rev 1.15: date: 2006/09/22 12:45:42; author: cognet; state: Exp; lines: +2 -2 Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls in an interrupt context. Obtained from: NetBSD Approved by: re Revision Changes Path 1.7.2.6 +2 -2 src/sys/dev/usb/if_cdce.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:08:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19A4216A412; Sat, 30 Sep 2006 14:08:58 +0000 (UTC) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF8C43D46; Sat, 30 Sep 2006 14:08:57 +0000 (GMT) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE8vBI069162; Sat, 30 Sep 2006 14:08:57 GMT (envelope-from jhay@repoman.freebsd.org) Received: (from jhay@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE8vpM069161; Sat, 30 Sep 2006 14:08:57 GMT (envelope-from jhay) Message-Id: <200609301408.k8UE8vpM069161@repoman.freebsd.org> From: John Hay Date: Sat, 30 Sep 2006 14:08: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/netinet6 nd6.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, 30 Sep 2006 14:08:58 -0000 jhay 2006-09-30 14:08:57 UTC FreeBSD src repository Modified files: sys/netinet6 nd6.c Log: My previous commit broke "route add -inet6 -interface gif0". Fix that by excluding point-to-point interfaces. MFC after: 5 days Revision Changes Path 1.68 +2 -1 src/sys/netinet6/nd6.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:08:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 862C416A416; Sat, 30 Sep 2006 14:08:58 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4342943D46; Sat, 30 Sep 2006 14:08:58 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE8w7R069189; Sat, 30 Sep 2006 14:08:58 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE8wLd069188; Sat, 30 Sep 2006 14:08:58 GMT (envelope-from cognet) Message-Id: <200609301408.k8UE8wLd069188@repoman.freebsd.org> From: Olivier Houchard Date: Sat, 30 Sep 2006 14:08:58 +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/sys/dev/usb if_cdce.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, 30 Sep 2006 14:08:58 -0000 cognet 2006-09-30 14:08:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/usb if_cdce.c Log: MFC rev 1.15: date: 2006/09/22 12:45:42; author: cognet; state: Exp; lines: +2 -2 Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls in an interrupt context. Obtained from: NetBSD Revision Changes Path 1.6.2.3 +2 -2 src/sys/dev/usb/if_cdce.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:19:16 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAC4316A417; Sat, 30 Sep 2006 14:19:16 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id D899B43D45; Sat, 30 Sep 2006 14:19:14 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8UEJAkx070175; Sat, 30 Sep 2006 16:19:11 +0200 (CEST) (envelope-from mb@imp.ch) Date: Sat, 30 Sep 2006 16:19:10 +0200 (CEST) From: Martin Blapp To: Peter Holm In-Reply-To: <20060930124957.GA25578@peter.osted.lan> Message-ID: <20060930161649.L91466@godot.imp.ch> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> <20060930124957.GA25578@peter.osted.lan> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.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, 30 Sep 2006 14:19:16 -0000 Hi Peter, Current is currenlty broken for pty tress tests. It happens also for the tty tty_pts implementation. This is a CURRENT only problem, since in RELENG_6 we don't free any cdevs. I hope tegge, bde will solve this problem in the next few days. Martin > I still have a problem with ptys: > > http://people.freebsd.org/~pho/stress/log/blapp001.html > From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:20:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC37816A403; Sat, 30 Sep 2006 14:20:53 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D0C843D73; Sat, 30 Sep 2006 14:20:48 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8UEKinJ071948; Sat, 30 Sep 2006 16:20:45 +0200 (CEST) (envelope-from mb@imp.ch) Date: Sat, 30 Sep 2006 16:20:44 +0200 (CEST) From: Martin Blapp To: Bruce Evans In-Reply-To: <20060930221249.J1683@epsplex.bde.org> Message-ID: <20060930161951.V91466@godot.imp.ch> References: <8209.1159564737@critter.freebsd.dk> <20060930012958.C91466@godot.imp.ch> <20060930221249.J1683@epsplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Poul-Henning Kamp , Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 30 Sep 2006 14:20:53 -0000 Hi Bruce, Ok will do so. What do you think, can we solve the old vfs bugs and complications near revoke() before 7.0 gets released ? Martin Martin Blapp, ------------------------------------------------------------------ ImproWare AG, UNIXSP & ISP, Zurlindenstrasse 29, 4133 Pratteln, CH Phone: +41 61 826 93 00 Fax: +41 61 826 93 01 PGP: PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E ------------------------------------------------------------------ On Sat, 30 Sep 2006, Bruce Evans wrote: > On Sat, 30 Sep 2006, Martin Blapp wrote: > >> What's the best to do now ? Back out again the last commit and that destroy >> slave can be called, make tty_pts.c as broken ? Or will you or Bruce fix >> the underlaying problem ? It's far beyond my horizont ... > > Start with removing all device and tty destruction calls (mainly in > tty_pts.c). > > Bruce > From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:30:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDB4D16A412; Sat, 30 Sep 2006 14:30:10 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1F7943D76; Sat, 30 Sep 2006 14:30:07 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEU74t070271; Sat, 30 Sep 2006 14:30:07 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEU7a1070270; Sat, 30 Sep 2006 14:30:07 GMT (envelope-from ru) Message-Id: <200609301430.k8UEU7a1070270@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 14:30: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/share/man/man4 nfe.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, 30 Sep 2006 14:30:11 -0000 ru 2006-09-30 14:30:07 UTC FreeBSD src repository Modified files: share/man/man4 nfe.4 Log: Fixed small markup glitches and removed the CAVEATS section. Revision Changes Path 1.3 +2 -6 src/share/man/man4/nfe.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:33:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEEA016A407; Sat, 30 Sep 2006 14:33:44 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24F9643D49; Sat, 30 Sep 2006 14:33:43 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from kasuga.mahoroba.org (IDENT:HrjGUKKs156hUc9PDcKEjE4AU9dBuMUo7a8acEK2MWaQjOzbCIS99sN5CRguvxe9@kasuga-iwi.mahoroba.org [IPv6:2001:2f0:104:8010:212:f0ff:fe52:6ac]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.8/8.13.8) with ESMTP/inet6 id k8UEXawP000758 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 30 Sep 2006 23:33:36 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sat, 30 Sep 2006 23:33:35 +0900 Message-ID: From: Hajimu UMEMOTO To: John Hay In-Reply-To: <200609301408.k8UE8vpM069161@repoman.freebsd.org> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.0.50 (i386-pc-freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0rc3 (ameno.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sat, 30 Sep 2006 23:33:36 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.5 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on ameno.mahoroba.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.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, 30 Sep 2006 14:33:44 -0000 Hi, >>>>> On Sat, 30 Sep 2006 14:08:57 +0000 (UTC) >>>>> John Hay said: jhay> jhay 2006-09-30 14:08:57 UTC jhay> FreeBSD src repository jhay> Modified files: jhay> sys/netinet6 nd6.c jhay> Log: jhay> My previous commit broke "route add -inet6 -interface gif0". jhay> Fix that by excluding point-to-point interfaces. > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > ln->ln_state = ND6_LLINFO_INCOMPLETE; Umm, it seems still there is a problem. We are using -interface not only for point-to-point interface and loopback. I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:35:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EECB16A412; Sat, 30 Sep 2006 14:35:42 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8FD43D76; Sat, 30 Sep 2006 14:35:38 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEZc8T070680; Sat, 30 Sep 2006 14:35:38 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEZc6J070679; Sat, 30 Sep 2006 14:35:38 GMT (envelope-from pjd) Message-Id: <200609301435.k8UEZc6J070679@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 14:35: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/sbin/geom/misc 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: Sat, 30 Sep 2006 14:35:42 -0000 pjd 2006-09-30 14:35:37 UTC FreeBSD src repository Modified files: sbin/geom/misc subr.h Log: Add __printflike() attribute to various functions. Revision Changes Path 1.7 +4 -4 src/sbin/geom/misc/subr.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:39:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 459CA16A403; Sat, 30 Sep 2006 14:39:19 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0193943D45; Sat, 30 Sep 2006 14:39:19 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEdImL070861; Sat, 30 Sep 2006 14:39:18 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEdIe9070860; Sat, 30 Sep 2006 14:39:18 GMT (envelope-from pjd) Message-Id: <200609301439.k8UEdIe9070860@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 14:39: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/sbin/geom/core geom.c geom.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, 30 Sep 2006 14:39:19 -0000 pjd 2006-09-30 14:39:18 UTC FreeBSD src repository Modified files: sbin/geom/core geom.c geom.h Log: MFp4: - Print proper error message when argument is specified twice. Before the change it was detected properly, because of how G_OPT_DONE() macro worked. - Use err(3) functions where appropriate. - Add some assertions. - Bump version number, because G_TYPE_BOOL addition breaks API and ABI. Changes: 98721,98722,98723,101360,106985 Revision Changes Path 1.27 +37 -41 src/sbin/geom/core/geom.c 1.4 +10 -6 src/sbin/geom/core/geom.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:40:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0520316A407; Sat, 30 Sep 2006 14:40:51 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C102A43D45; Sat, 30 Sep 2006 14:40:50 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEeoWl071136; Sat, 30 Sep 2006 14:40:50 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEeoFW071135; Sat, 30 Sep 2006 14:40:50 GMT (envelope-from pjd) Message-Id: <200609301440.k8UEeoFW071135@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 14:40: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/sbin/geom/class/concat geom_concat.c src/sbin/geom/class/eli geom_eli.c src/sbin/geom/class/label geom_label.c src/sbin/geom/class/mirror geom_mirror.c src/sbin/geom/class/nop geom_nop.c src/sbin/geom/class/raid3 geom_raid3.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, 30 Sep 2006 14:40:51 -0000 pjd 2006-09-30 14:40:50 UTC FreeBSD src repository Modified files: sbin/geom/class/concat geom_concat.c sbin/geom/class/eli geom_eli.c sbin/geom/class/label geom_label.c sbin/geom/class/mirror geom_mirror.c sbin/geom/class/nop geom_nop.c sbin/geom/class/raid3 geom_raid3.c sbin/geom/class/shsec geom_shsec.c sbin/geom/class/stripe geom_stripe.c Log: MFp4: G_TYPE_BOOL sounds much better than G_TYPE_NONE. Changes: 98722 Revision Changes Path 1.12 +3 -3 src/sbin/geom/class/concat/geom_concat.c 1.18 +19 -19 src/sbin/geom/class/eli/geom_eli.c 1.9 +2 -2 src/sbin/geom/class/label/geom_label.c 1.14 +9 -9 src/sbin/geom/class/mirror/geom_mirror.c 1.10 +1 -1 src/sbin/geom/class/nop/geom_nop.c 1.16 +14 -14 src/sbin/geom/class/raid3/geom_raid3.c 1.9 +2 -2 src/sbin/geom/class/shsec/geom_shsec.c 1.14 +3 -3 src/sbin/geom/class/stripe/geom_stripe.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:41:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 124B916A407; Sat, 30 Sep 2006 14:41:19 +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 6855E43D46; Sat, 30 Sep 2006 14:41:18 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id A91F6EB112C; Sat, 30 Sep 2006 22:41:16 +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 g5uMVjgknU1V; Sat, 30 Sep 2006 22:41:10 +0800 (CST) Received: from [192.168.1.32] (unknown [221.219.157.43]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 2EB3BEB1114; Sat, 30 Sep 2006 22:41:10 +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=jPSul2PILatlj8O2F2rzSthUpLQ+ty447FNebki3yuccNyWJtvz4O1hIt8cpbEASj UaBkUZDOYqNq3FEGr1P+g== Message-ID: <451E8200.5040302@delphij.net> Date: Sat, 30 Sep 2006 22:41:04 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Ruslan Ermilov References: <200609301252.k8UCqFNY062274@repoman.freebsd.org> In-Reply-To: <200609301252.k8UCqFNY062274@repoman.freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enigA6F075D4BF7B623B78B0EB16" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/lib/libstdc++ 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, 30 Sep 2006 14:41:19 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigA6F075D4BF7B623B78B0EB16 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Ruslan Ermilov wrote: > ru 2006-09-30 12:52:15 UTC >=20 > FreeBSD src repository >=20 > Modified files: > gnu/lib/libstdc++ Makefile=20 > Log: > Fix build due to the incomplete removal of demangle.h. > =20 > Revision Changes Path > 1.57 +1 -1 src/gnu/lib/libstdc++/Makefile God! What did I do... Sorry for the breakage and thanks for fixing this. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enigA6F075D4BF7B623B78B0EB16 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.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFHoIAOfuToMruuMARA5ngAJ9jpJOr4doSCQDMvmdhwPIHJyf/mACggwS9 lXupMEfE5jLpY999DU6cMQ8= =aQs8 -----END PGP SIGNATURE----- --------------enigA6F075D4BF7B623B78B0EB16-- From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:46:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80C3316A407; Sat, 30 Sep 2006 14:46:19 +0000 (UTC) (envelope-from amdmi3@mail.ru) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14A6143D4C; Sat, 30 Sep 2006 14:46:19 +0000 (GMT) (envelope-from amdmi3@mail.ru) Received: from [213.148.29.33] (port=1052 helo=nexii.panopticon) by mx2.mail.ru with esmtp id 1GTg6c-000MoP-00; Sat, 30 Sep 2006 18:46:18 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.2]) by nexii.panopticon (Postfix) with ESMTP id 8FC6417079; Sat, 30 Sep 2006 18:45:38 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id 03DD3409D; Sat, 30 Sep 2006 18:46:27 +0400 (MSD) Date: Sat, 30 Sep 2006 18:46:27 +0400 From: Dmitry Marakasov To: Ruslan Ermilov Message-ID: <20060930144627.GA16298@hades.panopticon> Mail-Followup-To: Ruslan Ermilov , cvs-src@FreeBSD.org References: <200609291934.k8TJYcXo038707@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200609291934.k8TJYcXo038707@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:46:19 -0000 * Ruslan Ermilov (ru@FreeBSD.org) wrote: > Modified files: (Branch: RELENG_6) > . ObsoleteFiles.inc > Log: > Shared pcap and pthread (libc_r on alpha and sparc64) libraries moved to /lib. > > Approved by: re (kensmith) Don't forget HEAD also -- Best regards, Dmitry mailto:amdmi3@mail.ru From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:51:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF23916A403; Sat, 30 Sep 2006 14:51:49 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE5EE43D45; Sat, 30 Sep 2006 14:51:49 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEpnos071694; Sat, 30 Sep 2006 14:51:49 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEpnxH071693; Sat, 30 Sep 2006 14:51:49 GMT (envelope-from sos) Message-Id: <200609301451.k8UEpnxH071693@repoman.freebsd.org> From: Søren Schmidt Date: Sat, 30 Sep 2006 14:51: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/dev/ata ata-all.c ata-chipset.c ata-disk.c ata-pci.h ata-raid.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, 30 Sep 2006 14:51:50 -0000 sos 2006-09-30 14:51:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ata ata-all.c ata-chipset.c ata-disk.c ata-pci.h ata-raid.h Log: MFC: CF devices are ATA not ATAPI. Add support for the ALI/ULI M5288 AHCI part Busmaster DMA address fix in VIA 6421 case Add support for a few more Serverworks and lookalikes chips If current_heads or current_sectors in the disk cap page are zero, dont try to use the current_ geometry. This avoids a panic with BIOS'n that sets these to zero. Format mask lacks one bit. Approved by: re@ Revision Changes Path 1.252.2.11 +3 -1 src/sys/dev/ata/ata-all.c 1.126.2.14 +20 -10 src/sys/dev/ata/ata-chipset.c 1.189.2.5 +2 -1 src/sys/dev/ata/ata-disk.c 1.49.2.10 +3 -0 src/sys/dev/ata/ata-pci.h 1.34.2.4 +1 -1 src/sys/dev/ata/ata-raid.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 14:58:41 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CC1416A403; Sat, 30 Sep 2006 14:58:41 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B324F43D49; Sat, 30 Sep 2006 14:58:40 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEwerL072095; Sat, 30 Sep 2006 14:58:40 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEwe7h072094; Sat, 30 Sep 2006 14:58:40 GMT (envelope-from netchild) Message-Id: <200609301458.k8UEwe7h072094@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 14:58: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/sys/dev/sound/pci spicds.c spicds.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, 30 Sep 2006 14:58:41 -0000 netchild 2006-09-30 14:58:40 UTC FreeBSD src repository Modified files: sys/dev/sound/pci spicds.c spicds.h Log: Forcet commit to note repo copy: ak452x.c -> spicds.c ak452x.h -> spicds.h Fast repo copy by: simon (30min turn-around) Pointy hat to: netchild (for doing a forced commit to ak452x.*) Revision Changes Path 1.3 +0 -0 src/sys/dev/sound/pci/spicds.c 1.2 +0 -0 src/sys/dev/sound/pci/spicds.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 15:05:13 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C158616A403; Sat, 30 Sep 2006 15:05:13 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1-3.pacific.net.au [61.8.2.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 310DA43D46; Sat, 30 Sep 2006 15:05:13 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout1.pacific.net.au (Postfix) with ESMTP id 0448D24D248; Sun, 1 Oct 2006 01:05:12 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8UF59tL021522; Sun, 1 Oct 2006 01:05:10 +1000 Date: Sun, 1 Oct 2006 01:00:35 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Martin Blapp In-Reply-To: <20060929230809.Q91466@godot.imp.ch> Message-ID: <20061001001335.R1840@epsplex.bde.org> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> <20060930044711.H96144@delplex.bde.org> <20060929230809.Q91466@godot.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty_pty.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, 30 Sep 2006 15:05:13 -0000 On Fri, 29 Sep 2006, Martin Blapp wrote: >> I think I found the bug while looking for problems near vgonel(). We're >> nowhere near ready to free devices in in last-close, since vgonel() doesn't >> do anything to evict processes from device functions before it forces the >> device closed. Drivers must be aware of the problem. The tty driver >> already is. See the comments about t_gen near tty_close() and ttysleep(). >> t_gen must live across close so that any processes in device functions can >> check it after they wake up, and the tty and device data structures must >> live across last- close to hold t_gen and anything else needed for the >> device functions to return. Sleeping device functions normally wake up >> after last-close returns. > > So what can we do to destroy devices after last close ? Mark them with some > flag and handle this during device operations ? Destroy them after a timeout. More accurate counts of device use would still be needed to ensure that the device is not in use when the timeout fires, but it would be fairly safe to just assume that the device is not in use if it has been closed for some time. Note that the device may still be in use when close completes even for normal closes. This can happen when the close blocks. When close completes, it can't destroy things since it doesn't really know what is in use. However, if the device is still in use, if it is open then it won't be destroyed later (a new open would have reset the timeout), and if it is not open then any activity on the device should complete soon after the close completes since one of close's functions (especially for revoke()) is unblock other activity on the device by flushing any i/o that it gave up on. Bruce From owner-cvs-src@FreeBSD.ORG Sat Sep 30 15:13:27 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0699B16A47B for ; Sat, 30 Sep 2006 15:13:27 +0000 (UTC) (envelope-from pho@holm.cc) Received: from relay02.pair.com (relay02.pair.com [209.68.5.16]) by mx1.FreeBSD.org (Postfix) with SMTP id D508243D4C for ; Sat, 30 Sep 2006 15:13:23 +0000 (GMT) (envelope-from pho@holm.cc) Received: (qmail 50822 invoked from network); 30 Sep 2006 15:13:22 -0000 Received: from unknown (HELO peter.osted.lan) (unknown) by unknown with SMTP; 30 Sep 2006 15:13:22 -0000 X-pair-Authenticated: 80.165.155.106 Received: from peter.osted.lan (localhost.osted.lan [127.0.0.1]) by peter.osted.lan (8.13.6/8.13.6) with ESMTP id k8UFDLui037694; Sat, 30 Sep 2006 17:13:21 +0200 (CEST) (envelope-from pho@peter.osted.lan) Received: (from pho@localhost) by peter.osted.lan (8.13.6/8.13.6/Submit) id k8UFDG5J037693; Sat, 30 Sep 2006 17:13:16 +0200 (CEST) (envelope-from pho) Date: Sat, 30 Sep 2006 17:13:15 +0200 From: Peter Holm To: Martin Blapp Message-ID: <20060930151315.GA37588@peter.osted.lan> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> <20060930124957.GA25578@peter.osted.lan> <20060930161649.L91466@godot.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060930161649.L91466@godot.imp.ch> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.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, 30 Sep 2006 15:13:27 -0000 On Sat, Sep 30, 2006 at 04:19:10PM +0200, Martin Blapp wrote: > > Hi Peter, > > Current is currenlty broken for pty tress tests. > It happens also for the tty tty_pts implementation. > > This is a CURRENT only problem, since in RELENG_6 we > don't free any cdevs. > OK, I'll turn my attention towards RELENG_6. - Peter > I hope tegge, bde will solve this problem in the > next few days. > > Martin > > >I still have a problem with ptys: > > > >http://people.freebsd.org/~pho/stress/log/blapp001.html > > From owner-cvs-src@FreeBSD.ORG Sat Sep 30 15:14:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF7FC16A47C; Sat, 30 Sep 2006 15:14:49 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70AA243D49; Sat, 30 Sep 2006 15:14:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UFEnK2074113; Sat, 30 Sep 2006 15:14:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UFEnhu074112; Sat, 30 Sep 2006 15:14:49 GMT (envelope-from ru) Message-Id: <200609301514.k8UFEnhu074112@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 15:14: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/share/man/man4 acpi_dock.4 amdsmb.4 audit.4 auditpipe.4 bce.4 enc.4 geom_fox.4 le.4 mfi.4 mxge.4 nfsmb.4 ng_tag.4 rr232x.4 sched_core.4 sched_ule.4 snd_emu10kx.4 stge.4 ufoma.4 src/share/man/man4/man4.i386 padlock.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, 30 Sep 2006 15:14:50 -0000 ru 2006-09-30 15:14:49 UTC FreeBSD src repository Modified files: share/man/man4 acpi_dock.4 amdsmb.4 audit.4 auditpipe.4 bce.4 enc.4 geom_fox.4 le.4 mfi.4 mxge.4 nfsmb.4 ng_tag.4 rr232x.4 sched_core.4 sched_ule.4 snd_emu10kx.4 stge.4 ufoma.4 share/man/man4/man4.i386 padlock.4 Log: Revise markup. Revision Changes Path 1.2 +1 -1 src/share/man/man4/acpi_dock.4 1.3 +3 -3 src/share/man/man4/amdsmb.4 1.9 +32 -15 src/share/man/man4/audit.4 1.4 +43 -39 src/share/man/man4/auditpipe.4 1.3 +44 -36 src/share/man/man4/bce.4 1.3 +4 -4 src/share/man/man4/enc.4 1.3 +14 -14 src/share/man/man4/geom_fox.4 1.4 +10 -13 src/share/man/man4/le.4 1.6 +9 -9 src/share/man/man4/man4.i386/padlock.4 1.5 +0 -3 src/share/man/man4/mfi.4 1.6 +4 -3 src/share/man/man4/mxge.4 1.3 +3 -3 src/share/man/man4/nfsmb.4 1.3 +11 -11 src/share/man/man4/ng_tag.4 1.3 +3 -6 src/share/man/man4/rr232x.4 1.4 +9 -7 src/share/man/man4/sched_core.4 1.4 +1 -1 src/share/man/man4/sched_ule.4 1.3 +43 -34 src/share/man/man4/snd_emu10kx.4 1.4 +5 -5 src/share/man/man4/stge.4 1.5 +23 -19 src/share/man/man4/ufoma.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 15:30:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5232F16A403 for ; Sat, 30 Sep 2006 15:30:46 +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 C561F43D49 for ; Sat, 30 Sep 2006 15:30:45 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id E529A5E29 for ; Sat, 30 Sep 2006 19:30:44 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id C299D5E1C for ; Sat, 30 Sep 2006 19:30:44 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8UFUmFt039893 for cvs-src@FreeBSD.org; Sat, 30 Sep 2006 19:30:48 +0400 (MSD) (envelope-from ru) Date: Sat, 30 Sep 2006 19:30:48 +0400 From: Ruslan Ermilov To: cvs-src@FreeBSD.org Message-ID: <20060930153048.GC39704@rambler-co.ru> References: <200609291934.k8TJYcXo038707@repoman.freebsd.org> <20060930144627.GA16298@hades.panopticon> 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: <20060930144627.GA16298@hades.panopticon> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: Subject: Re: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:30:46 -0000 --f+W+jCU1fRNres8c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Sep 30, 2006 at 06:46:27PM +0400, Dmitry Marakasov wrote: > * Ruslan Ermilov (ru@FreeBSD.org) wrote: > > Modified files: (Branch: RELENG_6) > > . ObsoleteFiles.inc=20 > > Log: > > Shared pcap and pthread (libc_r on alpha and sparc64) libraries moved= to /lib. > > =20 > > Approved by: re (kensmith) > Don't forget HEAD also >=20 Care to prepare a patch for me? ;-) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --f+W+jCU1fRNres8c Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHo2oqRfpzJluFF4RAt3AAJ9HfRXW7BgiFS3wSjuNGoaTWscIiQCfZjz5 hElNKVp//jxceJhEkSYS6QI= =V9TR -----END PGP SIGNATURE----- --f+W+jCU1fRNres8c-- From owner-cvs-src@FreeBSD.ORG Sat Sep 30 16:01:34 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 370D116A407; Sat, 30 Sep 2006 16:01:34 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A1D43D49; Sat, 30 Sep 2006 16:01:33 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UG1XC1076555; Sat, 30 Sep 2006 16:01:33 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UG1XxB076553; Sat, 30 Sep 2006 16:01:33 GMT (envelope-from ru) Message-Id: <200609301601.k8UG1XxB076553@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 16:01: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/share/man/man5 bluetooth.device.conf.5 ext2fs.5 freebsd-update.conf.5 linsysfs.5 mqueuefs.5 reiserfs.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: Sat, 30 Sep 2006 16:01:34 -0000 ru 2006-09-30 16:01:33 UTC FreeBSD src repository Modified files: share/man/man5 bluetooth.device.conf.5 ext2fs.5 freebsd-update.conf.5 linsysfs.5 mqueuefs.5 reiserfs.5 Log: Revise markup. Revision Changes Path 1.2 +17 -14 src/share/man/man5/bluetooth.device.conf.5 1.2 +3 -3 src/share/man/man5/ext2fs.5 1.2 +9 -7 src/share/man/man5/freebsd-update.conf.5 1.3 +23 -17 src/share/man/man5/linsysfs.5 1.3 +38 -24 src/share/man/man5/mqueuefs.5 1.2 +5 -4 src/share/man/man5/reiserfs.5 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 16:20:44 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 742E216A416; Sat, 30 Sep 2006 16:20:44 +0000 (UTC) (envelope-from jhay@meraka.csir.co.za) Received: from zibbi.meraka.csir.co.za (zibbi.meraka.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id E34FF43D68; Sat, 30 Sep 2006 16:20:40 +0000 (GMT) (envelope-from jhay@meraka.csir.co.za) Received: by zibbi.meraka.csir.co.za (Postfix, from userid 3973) id 7DCA033C9C; Sat, 30 Sep 2006 18:20:39 +0200 (SAST) Date: Sat, 30 Sep 2006 18:20:39 +0200 From: John Hay To: Hajimu UMEMOTO Message-ID: <20060930162039.GA59699@zibbi.meraka.csir.co.za> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: John Hay , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.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, 30 Sep 2006 16:20:44 -0000 On Sat, Sep 30, 2006 at 11:33:35PM +0900, Hajimu UMEMOTO wrote: > jhay> FreeBSD src repository > > jhay> Modified files: > jhay> sys/netinet6 nd6.c > jhay> Log: > jhay> My previous commit broke "route add -inet6 -interface gif0". > jhay> Fix that by excluding point-to-point interfaces. > > > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > > ln->ln_state = ND6_LLINFO_INCOMPLETE; > > Umm, it seems still there is a problem. We are using -interface not > only for point-to-point interface and loopback. > I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? That would work better yes. Is there a reason you feel unsure about it? Or is it just a case of not having tested it? John -- John Hay -- John.Hay@meraka.csir.co.za / jhay@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sat Sep 30 16:33:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28F7116A40F; Sat, 30 Sep 2006 16:33:30 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB35943D49; Sat, 30 Sep 2006 16:33:29 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGXTvT079353; Sat, 30 Sep 2006 16:33:29 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGXT0I079352; Sat, 30 Sep 2006 16:33:29 GMT (envelope-from pjd) Message-Id: <200609301633.k8UGXT0I079352@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 16:33: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/kern kern_proc.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, 30 Sep 2006 16:33:30 -0000 pjd 2006-09-30 16:33:29 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Remove duplicated $FreeBSD$. Revision Changes Path 1.244 +0 -1 src/sys/kern/kern_proc.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 16:51:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2980016A403; Sat, 30 Sep 2006 16:51:58 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FD8C43D46; Sat, 30 Sep 2006 16:51:56 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from kasuga.mahoroba.org (IDENT:wjya8NiJ9Mv2tWHj97PBC7J/bwMJZelzWi30r3SfiW4h7ZySs/1yivor9+SdrgFW@kasuga-iwi.mahoroba.org [IPv6:2001:2f0:104:8010:212:f0ff:fe52:6ac]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.8/8.13.8) with ESMTP/inet6 id k8UGpjCl009442 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 1 Oct 2006 01:51:47 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sun, 01 Oct 2006 01:51:45 +0900 Message-ID: From: Hajimu UMEMOTO To: John Hay In-Reply-To: <20060930162039.GA59699@zibbi.meraka.csir.co.za> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> <20060930162039.GA59699@zibbi.meraka.csir.co.za> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.0.50 (i386-pc-freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0rc3 (ameno.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sun, 01 Oct 2006 01:51:48 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.5 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on ameno.mahoroba.org Cc: John Hay , src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.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, 30 Sep 2006 16:51:58 -0000 Hi, >>>>> On Sat, 30 Sep 2006 18:20:39 +0200 >>>>> John Hay said: jhay> On Sat, Sep 30, 2006 at 11:33:35PM +0900, Hajimu UMEMOTO wrote: > jhay> FreeBSD src repository > > jhay> Modified files: > jhay> sys/netinet6 nd6.c > jhay> Log: > jhay> My previous commit broke "route add -inet6 -interface gif0". > jhay> Fix that by excluding point-to-point interfaces. > > > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > > ln->ln_state = ND6_LLINFO_INCOMPLETE; > > Umm, it seems still there is a problem. We are using -interface not > only for point-to-point interface and loopback. > I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? jhay> That would work better yes. Is there a reason you feel unsure about it? jhay> Or is it just a case of not having tested it? Because, I was just unsure of your intention, and I'm not having tested it. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-src@FreeBSD.ORG Sat Sep 30 16:53:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C78516A403; Sat, 30 Sep 2006 16:53:47 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31BB143D5A; Sat, 30 Sep 2006 16:53:40 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGreuk088994; Sat, 30 Sep 2006 16:53:40 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGreDb088993; Sat, 30 Sep 2006 16:53:40 GMT (envelope-from netchild) Message-Id: <200609301653.k8UGreDb088993@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 16: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/sys/dev/sound/pci spicds.c spicds.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, 30 Sep 2006 16:53:47 -0000 netchild 2006-09-30 16:53:40 UTC FreeBSD src repository Modified files: sys/dev/sound/pci spicds.c spicds.h Log: After repo copy from ak452x.[ch]: SPIcds is the I2S SPI audio codec code used by the Envy* drivers. Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.4 +154 -59 src/sys/dev/sound/pci/spicds.c 1.3 +38 -13 src/sys/dev/sound/pci/spicds.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 16:57:41 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E571E16A417; Sat, 30 Sep 2006 16:57:41 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D95943D46; Sat, 30 Sep 2006 16:57:41 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGvfxs089282; Sat, 30 Sep 2006 16:57:41 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGvfmQ089281; Sat, 30 Sep 2006 16:57:41 GMT (envelope-from netchild) Message-Id: <200609301657.k8UGvfmQ089281@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 16:57: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/modules/sound/driver Makefile src/sys/modules/sound/driver/spicds 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, 30 Sep 2006 16:57:42 -0000 netchild 2006-09-30 16:57:41 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Added files: sys/modules/sound/driver/spicds Makefile Log: Add the spicds module to the build. Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.21 +1 -1 src/sys/modules/sound/driver/Makefile 1.1 +8 -0 src/sys/modules/sound/driver/spicds/Makefile (new) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:08:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80B8716A412; Sat, 30 Sep 2006 17:08:52 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D45343D45; Sat, 30 Sep 2006 17:08:52 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UH8qQk091048; Sat, 30 Sep 2006 17:08:52 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UH8qQQ091047; Sat, 30 Sep 2006 17:08:52 GMT (envelope-from netchild) Message-Id: <200609301708.k8UH8qQQ091047@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:08: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/sound/pci envy24.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, 30 Sep 2006 17:08:52 -0000 netchild 2006-09-30 17:08:52 UTC FreeBSD src repository Modified files: sys/dev/sound/pci envy24.c Log: - fix memory leak, when "number of adcs" != "number of dacs" - fix multiple initialization of the first codec (support for more than one codec should be added in the future) - use spicds instead of ak452x module Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.4 +17 -24 src/sys/dev/sound/pci/envy24.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:10:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9CD616A47C; Sat, 30 Sep 2006 17:10:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36A4643D68; Sat, 30 Sep 2006 17:10:00 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHA0R3091107; Sat, 30 Sep 2006 17:10:00 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHA0TN091106; Sat, 30 Sep 2006 17:10:00 GMT (envelope-from ru) Message-Id: <200609301710.k8UHA0TN091106@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 17:10: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/share/man/man9 config_intrhook.9 device_get_sysctl.9 firmware.9 hash.9 rwlock.9 sysctl.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:10:02 -0000 ru 2006-09-30 17:10:00 UTC FreeBSD src repository Modified files: share/man/man9 config_intrhook.9 device_get_sysctl.9 firmware.9 hash.9 rwlock.9 sysctl.9 Log: Revise markup. Revision Changes Path 1.2 +9 -8 src/share/man/man9/config_intrhook.9 1.2 +5 -5 src/share/man/man9/device_get_sysctl.9 1.4 +17 -9 src/share/man/man9/firmware.9 1.2 +11 -10 src/share/man/man9/hash.9 1.5 +2 -2 src/share/man/man9/rwlock.9 1.6 +54 -140 src/share/man/man9/sysctl.9 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:10:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAF0816A547; Sat, 30 Sep 2006 17:10:38 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE0E143D6B; Sat, 30 Sep 2006 17:10:37 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHAbQn091200; Sat, 30 Sep 2006 17:10:37 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHAbgf091199; Sat, 30 Sep 2006 17:10:37 GMT (envelope-from netchild) Message-Id: <200609301710.k8UHAbgf091199@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:10: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/modules/sound/driver/envy24 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, 30 Sep 2006 17:10:38 -0000 netchild 2006-09-30 17:10:37 UTC FreeBSD src repository Modified files: sys/modules/sound/driver/envy24 Makefile Log: We don't need the ISA interface. Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.2 +1 -1 src/sys/modules/sound/driver/envy24/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:12:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF6DD16A412; Sat, 30 Sep 2006 17:12:26 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95FC243D4C; Sat, 30 Sep 2006 17:12:26 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHCPpl091380; Sat, 30 Sep 2006 17:12:25 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHCPXq091379; Sat, 30 Sep 2006 17:12:25 GMT (envelope-from netchild) Message-Id: <200609301712.k8UHCPXq091379@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:12: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/modules/sound/driver 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, 30 Sep 2006 17:12:27 -0000 netchild 2006-09-30 17:12:25 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Log: Disconnect ak452x from the build, it is not needed anymore. Revision Changes Path 1.22 +1 -1 src/sys/modules/sound/driver/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:13:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4BED16A403; Sat, 30 Sep 2006 17:13:27 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F82343D5E; Sat, 30 Sep 2006 17:13:27 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHDRCb091455; Sat, 30 Sep 2006 17:13:27 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHDROM091454; Sat, 30 Sep 2006 17:13:27 GMT (envelope-from netchild) Message-Id: <200609301713.k8UHDROM091454@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:13: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/sys/modules/sound/driver/ak452x 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, 30 Sep 2006 17:13:27 -0000 netchild 2006-09-30 17:13:26 UTC FreeBSD src repository Removed files: sys/modules/sound/driver/ak452x Makefile Log: Remove the ak452x module. Revision Changes Path 1.2 +0 -8 src/sys/modules/sound/driver/ak452x/Makefile (dead) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:14:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55B5516A407; Sat, 30 Sep 2006 17:14:15 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2AE443D49; Sat, 30 Sep 2006 17:14:14 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHEEIC091516; Sat, 30 Sep 2006 17:14:14 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHEEgI091515; Sat, 30 Sep 2006 17:14:14 GMT (envelope-from netchild) Message-Id: <200609301714.k8UHEEgI091515@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:14: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/dev/sound/pci ak452x.c ak452x.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, 30 Sep 2006 17:14:15 -0000 netchild 2006-09-30 17:14:14 UTC FreeBSD src repository Removed files: sys/dev/sound/pci ak452x.c ak452x.h Log: Remove the ak452x code, superseeded by spicds. Revision Changes Path 1.4 +0 -247 src/sys/dev/sound/pci/ak452x.c (dead) 1.3 +0 -91 src/sys/dev/sound/pci/ak452x.h (dead) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:19:22 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96D8716A47E; Sat, 30 Sep 2006 17:19:22 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5255F43D4C; Sat, 30 Sep 2006 17:19:22 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHJM0P091761; Sat, 30 Sep 2006 17:19:22 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHJMQl091760; Sat, 30 Sep 2006 17:19:22 GMT (envelope-from netchild) Message-Id: <200609301719.k8UHJMQl091760@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:19: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/share/man/man4 snd_envy24.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, 30 Sep 2006 17:19:22 -0000 netchild 2006-09-30 17:19:22 UTC FreeBSD src repository Modified files: share/man/man4 snd_envy24.4 Log: - it uses the spicds driver now, change the kernel compile instructions - add info about the chipsets Revision Changes Path 1.3 +4 -3 src/share/man/man4/snd_envy24.4 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:21:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8E3D16A412; Sat, 30 Sep 2006 17:21:38 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7376943D5F; Sat, 30 Sep 2006 17:21:38 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHLcBC091965; Sat, 30 Sep 2006 17:21:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHLc1u091964; Sat, 30 Sep 2006 17:21:38 GMT (envelope-from ru) Message-Id: <200609301721.k8UHLc1u091964@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 17: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/tools/tools/recoverdisk recoverdisk.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: Sat, 30 Sep 2006 17:21:38 -0000 ru 2006-09-30 17:21:38 UTC FreeBSD src repository Modified files: tools/tools/recoverdisk recoverdisk.1 Log: Revise markup. Revision Changes Path 1.2 +36 -31 src/tools/tools/recoverdisk/recoverdisk.1 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:27:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 259D116A407; Sat, 30 Sep 2006 17:27:56 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D8E443D55; Sat, 30 Sep 2006 17:27:51 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHRpN3092202; Sat, 30 Sep 2006 17:27:51 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHRpLs092201; Sat, 30 Sep 2006 17:27:51 GMT (envelope-from ru) Message-Id: <200609301727.k8UHRpLs092201@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 17:27: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/usr.bin/getent getent.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: Sat, 30 Sep 2006 17:27:56 -0000 ru 2006-09-30 17:27:50 UTC FreeBSD src repository Modified files: usr.bin/getent getent.1 Log: Revise markup. Revision Changes Path 1.2 +21 -18 src/usr.bin/getent/getent.1 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:28:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B53CD16A403; Sat, 30 Sep 2006 17:28:27 +0000 (UTC) (envelope-from jhay@meraka.csir.co.za) Received: from zibbi.meraka.csir.co.za (zibbi.meraka.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A4E043D4C; Sat, 30 Sep 2006 17:28:25 +0000 (GMT) (envelope-from jhay@meraka.csir.co.za) Received: by zibbi.meraka.csir.co.za (Postfix, from userid 3973) id 52ED833CA2; Sat, 30 Sep 2006 19:28:24 +0200 (SAST) Date: Sat, 30 Sep 2006 19:28:24 +0200 From: John Hay To: Hajimu UMEMOTO Message-ID: <20060930172824.GA61082@zibbi.meraka.csir.co.za> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> <20060930162039.GA59699@zibbi.meraka.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: John Hay , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.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, 30 Sep 2006 17:28:27 -0000 On Sun, Oct 01, 2006 at 01:51:45AM +0900, Hajimu UMEMOTO wrote: > jhay> On Sat, Sep 30, 2006 at 11:33:35PM +0900, Hajimu UMEMOTO wrote: > > jhay> FreeBSD src repository > > > > jhay> Modified files: > > jhay> sys/netinet6 nd6.c > > jhay> Log: > > jhay> My previous commit broke "route add -inet6 -interface gif0". > > jhay> Fix that by excluding point-to-point interfaces. > > > > > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > > > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > > > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > > > ln->ln_state = ND6_LLINFO_INCOMPLETE; > > > > Umm, it seems still there is a problem. We are using -interface not > > only for point-to-point interface and loopback. > > I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? > > jhay> That would work better yes. Is there a reason you feel unsure about it? > jhay> Or is it just a case of not having tested it? > > Because, I was just unsure of your intention, and I'm not having > tested it. What I'm trying to do is to add a host route to a machine directly connected. It sounds stupid because you normally don't need it, but I'm busy porting net/olsrd to FreeBSD/IPv6. Currently it only have linux support. Olsrd is a mesh routing protocol used in adhoc wireless networks. The one reason you want to add these routes is because you might have more than one wireless interface on the same subnet, covering different areas. So you need to add a route to the interface that can talk to the host. So after some struggling and questions on freebsd-net, I came up with code that do the equivalent of: "route add -inet6 -interface -ifp -llinfo -nostatic" in olsrd and this patch. If there is an easier way, I would love to use it. John -- John Hay -- John.Hay@meraka.csir.co.za / jhay@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:30:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1682116A417; Sat, 30 Sep 2006 17:30:03 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF48243D4C; Sat, 30 Sep 2006 17:30:02 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHU2iP092311; Sat, 30 Sep 2006 17:30:02 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHU2M7092310; Sat, 30 Sep 2006 17:30:02 GMT (envelope-from netchild) Message-Id: <200609301730.k8UHU2M7092310@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:30: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/share/man/man4 Makefile snd_spicds.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, 30 Sep 2006 17:30:03 -0000 netchild 2006-09-30 17:30:02 UTC FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 snd_spicds.4 Log: Add the snd_spicds(4) man page. Revision Changes Path 1.362 +1 -0 src/share/man/man4/Makefile 1.1 +87 -0 src/share/man/man4/snd_spicds.4 (new) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:31:47 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D426D16A5BE for ; Sat, 30 Sep 2006 17:31:47 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B97243D81 for ; Sat, 30 Sep 2006 17:31:35 +0000 (GMT) (envelope-from pawel.worach@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so348332uge for ; Sat, 30 Sep 2006 10:31:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=UibjiolMLlGRn52BiaWIGR/deKI4QtWuvio1N3uqZs4xVFLHJ5ECbS8+RPRU7bwVg7V1I8C4PGvkeTTE7Xl0cmxuy+Mp98xiSfSIdiqr+0b/hZdZuPFdYnBXWyFDj9K/PIiA3K9xj0MHEIibTE7Dv9r9jKefOgvaJgwStfzHVKk= Received: by 10.66.224.3 with SMTP id w3mr1090984ugg; Sat, 30 Sep 2006 10:31:34 -0700 (PDT) Received: from ?192.168.1.200? ( [80.217.194.157]) by mx.gmail.com with ESMTP id e33sm3307529ugd.2006.09.30.10.31.33; Sat, 30 Sep 2006 10:31:34 -0700 (PDT) Message-ID: <451EA9F3.1040908@gmail.com> Date: Sat, 30 Sep 2006 19:31:31 +0200 From: Pawel Worach User-Agent: Thunderbird 1.5.0.7 (X11/20060921) MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200609301330.k8UDU1mw065334@repoman.freebsd.org> In-Reply-To: <200609301330.k8UDU1mw065334@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/crypto/openssh - 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: Sat, 30 Sep 2006 17:31:48 -0000 Dag-Erling Smorgrav wrote: > des 2006-09-30 13:30:01 UTC > > FreeBSD src repository > > src/crypto/openssh - Imported sources > Update of /home/ncvs/src/crypto/openssh > In directory repoman.freebsd.org:/tmp/cvs-serv65300 > > Log Message: > Vendor import of OpenSSH 4.4p1. > Hi, Seems like this broke the pam_ssh build. cc -O2 -fno-strict-aliasing -pipe -march=pentium-m -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh -include ssh_namespace.h -I/usr/src/lib/libpam/modules/pam_ssh/../../../../contrib/openpam/include -I/usr/src/lib/libpam/modules/pam_ssh/../../libpam -c /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c In file included from /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:60: /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/authfd.h:65: error: syntax error before "Buffer" *** Error code 1 Stop in /usr/src/lib/libpam/modules/pam_ssh. -- Pawel From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:46:36 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3269616A47E for ; Sat, 30 Sep 2006 17:46:36 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC04E43D64 for ; Sat, 30 Sep 2006 17:46:29 +0000 (GMT) (envelope-from pawel.worach@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so349008uge for ; Sat, 30 Sep 2006 10:46:25 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=M/PLOobDcHj8OJqdRdj0FDnbFWRG+FkJVgX7Go70SHAGF6zBO7bkhhP2u3C+75497Og6nltBjS2NCUVqDp0VytIFnI6OA/2uAumjuGPnZhwq2JsH9JDWwKLUAfIh1MunH8Q1KZrplxwg1q7qmos8VK6HVnuPXGMcZ/keiMFxtas= Received: by 10.67.21.11 with SMTP id y11mr1102249ugi; Sat, 30 Sep 2006 10:46:25 -0700 (PDT) Received: from ?192.168.1.200? ( [80.217.194.157]) by mx.gmail.com with ESMTP id k30sm3332006ugc.2006.09.30.10.46.23; Sat, 30 Sep 2006 10:46:24 -0700 (PDT) Message-ID: <451EAD6D.30905@gmail.com> Date: Sat, 30 Sep 2006 19:46:21 +0200 From: Pawel Worach User-Agent: Thunderbird 1.5.0.7 (X11/20060921) MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200609301330.k8UDU1mw065334@repoman.freebsd.org> <451EA9F3.1040908@gmail.com> In-Reply-To: <451EA9F3.1040908@gmail.com> 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/crypto/openssh - 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: Sat, 30 Sep 2006 17:46:36 -0000 Pawel Worach wrote: > Dag-Erling Smorgrav wrote: >> des 2006-09-30 13:30:01 UTC >> >> FreeBSD src repository >> >> src/crypto/openssh - Imported sources >> Update of /home/ncvs/src/crypto/openssh >> In directory repoman.freebsd.org:/tmp/cvs-serv65300 >> Log Message: >> Vendor import of OpenSSH 4.4p1. >> > > Hi, > > Seems like this broke the pam_ssh build. > > cc -O2 -fno-strict-aliasing -pipe -march=pentium-m > -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh > -include ssh_namespace.h > -I/usr/src/lib/libpam/modules/pam_ssh/../../../../contrib/openpam/include > -I/usr/src/lib/libpam/modules/pam_ssh/../../libpam -c > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c > In file included from /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:60: > /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/authfd.h:65: > error: syntax error before "Buffer" > *** Error code 1 > > Stop in /usr/src/lib/libpam/modules/pam_ssh. > Fix: --- pam_ssh.c.orig Sat Sep 30 19:44:43 2006 +++ pam_ssh.c Sat Sep 30 19:44:56 2006 @@ -57,6 +57,7 @@ #include #include "key.h" +#include "buffer.h" #include "authfd.h" #include "authfile.h" -- Pawel From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:52:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6964016A492; Sat, 30 Sep 2006 17:52:29 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 336BF43D49; Sat, 30 Sep 2006 17:52:29 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHqTvJ093666; Sat, 30 Sep 2006 17:52:29 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHqTeN093664; Sat, 30 Sep 2006 17:52:29 GMT (envelope-from netchild) Message-Id: <200609301752.k8UHqTeN093664@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17: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 envy24ht.c envy24ht.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, 30 Sep 2006 17:52:29 -0000 netchild 2006-09-30 17:52:28 UTC FreeBSD src repository Modified files: sys/dev/sound/pci envy24ht.c envy24ht.h Log: Driver for Envy24HT (ICE1724 or VT1724)-based cards like Terratec Aureon 7.1 Space: tested Terratec Aureon 5.1 Sky: tested Terratec PHASE 28: tested Terratec Aureon 7.1 Universe: tested Audiotrak Prodigy 7.1: tested Audiotrak Prodigy 7.1 LT: not tested Terratec PHASE 22: not tested M-Audio Revolution 7.1: not tested M-Audio Revolution 5.1: not tested M-Audio Audiophile 192: tested Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.5 +758 -756 src/sys/dev/sound/pci/envy24ht.c 1.3 +128 -427 src/sys/dev/sound/pci/envy24ht.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:53:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBC3316A40F; Sat, 30 Sep 2006 17:53:26 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0DD743D55; Sat, 30 Sep 2006 17:53:25 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHrPOl093742; Sat, 30 Sep 2006 17:53:25 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHrPHK093741; Sat, 30 Sep 2006 17:53:25 GMT (envelope-from netchild) Message-Id: <200609301753.k8UHrPHK093741@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:53: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/modules/sound/driver Makefile src/sys/modules/sound/driver/envy24ht 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, 30 Sep 2006 17:53:26 -0000 netchild 2006-09-30 17:53:25 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Added files: sys/modules/sound/driver/envy24ht Makefile Log: Add the envy24ht driver to the build. Revision Changes Path 1.23 +2 -2 src/sys/modules/sound/driver/Makefile 1.1 +8 -0 src/sys/modules/sound/driver/envy24ht/Makefile (new) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 17:59:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A69B16A40F; Sat, 30 Sep 2006 17:59:11 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE75943D64; Sat, 30 Sep 2006 17:59:08 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHx8ie094065; Sat, 30 Sep 2006 17:59:08 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHx8vp094064; Sat, 30 Sep 2006 17:59:08 GMT (envelope-from netchild) Message-Id: <200609301759.k8UHx8vp094064@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:59: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/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: Sat, 30 Sep 2006 17:59:11 -0000 netchild 2006-09-30 17:59:08 UTC FreeBSD src repository Modified files: sys/conf NOTES files Log: Add spicds, envy24ht and remove ak4*. Revision Changes Path 1.1384 +5 -3 src/sys/conf/NOTES 1.1145 +2 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Sat Sep 30 18:04:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C6EC16A407; Sat, 30 Sep 2006 18:04:58 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58FEA43D49; Sat, 30 Sep 2006 18:04:58 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UI4wKG095656; Sat, 30 Sep 2006 18:04:58 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UI4wJD095655; Sat, 30 Sep 2006 18:04:58 GMT (envelope-from netchild) Message-Id: <200609301804.k8UI4wJD095655@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 18:04: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/share/man/man4 Makefile snd_envy24ht.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, 30 Sep 2006 18:04:58 -0000 netchild 2006-09-30 18:04:58 UTC FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 snd_envy24ht.4 Log: Add man page for snd_envy24ht(4). Revision Changes Path 1.363 +1 -0 src/share/man/man4/Makefile 1.1 +99 -0 src/share/man/man4/snd_envy24ht.4 (new) From owner-cvs-src@FreeBSD.ORG Sat Sep 30 18:07:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 106D716A403; Sat, 30 Sep 2006 18:07:29 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1224143D55; Sat, 30 Sep 2006 18:07:27 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UI7QfB095897; Sat, 30 Sep 2006 18:07:26 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UI7QFM095896; Sat, 30 Sep 2006 18:07:26 GMT (envelope-from netchild) Message-Id: <200609301807.k8UI7QFM095896@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 18:07: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/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: Sat, 30 Sep 2006 18:07:29 -0000 netchild 2006-09-30 18:07:26 UTC FreeBSD src repository Modified files: sys/boot/forth loader.conf Log: Add snd_envy24ht and remove the snd_ak4* module. Revision Changes Path 1.112 +2 -1 src/sys/boot/forth/loader.conf From owner-cvs-src@FreeBSD.ORG Sat Sep 30 18:12:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45EBE16A415; Sat, 30 Sep 2006 18:12:00 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6F5243D4C; Sat, 30 Sep 2006 18:11:59 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UIBxrq096189; Sat, 30 Sep 2006 18:11:59 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UIBx63096188; Sat, 30 Sep 2006 18:11:59 GMT (envelope-from ru) Message-Id: <200609301811.k8UIBx63096188@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 18:11: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.sbin/cached cached.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, 30 Sep 2006 18:12:00 -0000 ru 2006-09-30 18:11:59 UTC FreeBSD src repository Modified files: usr.sbin/cached cached.c Log: Fix usage(). Revision Changes Path 1.2 +2 -1 src/usr.sbin/cached/cached.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 18:12:33 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C5C616A4A0; Sat, 30 Sep 2006 18:12:33 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 540E643D45; Sat, 30 Sep 2006 18:12:33 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UICX7L096279; Sat, 30 Sep 2006 18:12:33 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UICX3I096278; Sat, 30 Sep 2006 18:12:33 GMT (envelope-from netchild) Message-Id: <200609301812.k8UICX3I096278@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 18:12: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/modules/sound/driver/envy24 Makefile src/sys/modules/sound/driver/envy24ht Makefile src/sys/modules/sound/driver/spicds 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, 30 Sep 2006 18:12:33 -0000 netchild 2006-09-30 18:12:33 UTC FreeBSD src repository Modified files: sys/modules/sound/driver/envy24 Makefile sys/modules/sound/driver/envy24ht Makefile sys/modules/sound/driver/spicds Makefile Log: Respect style.Makefile(5). Cluebat waving by: ru Revision Changes Path 1.3 +5 -4 src/sys/modules/sound/driver/envy24/Makefile 1.2 +5 -4 src/sys/modules/sound/driver/envy24ht/Makefile 1.2 +5 -4 src/sys/modules/sound/driver/spicds/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:07:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F64716A412; Sat, 30 Sep 2006 19:07:04 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3800E43D46; Sat, 30 Sep 2006 19:07:04 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJ74HV000156; Sat, 30 Sep 2006 19:07:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJ74Un000155; Sat, 30 Sep 2006 19:07:04 GMT (envelope-from ru) Message-Id: <200609301907.k8UJ74Un000155@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 19:07: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/usr.sbin/bsnmpd/modules/snmp_hostres snmp_hostres.3 src/usr.sbin/cached cached.8 cached.conf.5 src/usr.sbin/ipfwpcap ipfwpcap.8 src/usr.sbin/ntp/doc ntp-keygen.8 src/usr.sbin/nvram nvram.8 src/usr.sbin/sade sade.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: Sat, 30 Sep 2006 19:07:04 -0000 ru 2006-09-30 19:07:03 UTC FreeBSD src repository Modified files: usr.sbin/bsnmpd/modules/snmp_hostres snmp_hostres.3 usr.sbin/cached cached.8 cached.conf.5 usr.sbin/ipfwpcap ipfwpcap.8 usr.sbin/ntp/doc ntp-keygen.8 usr.sbin/nvram nvram.8 usr.sbin/sade sade.8 Log: Revise markup. Revision Changes Path 1.4 +14 -11 src/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 1.8 +31 -26 src/usr.sbin/cached/cached.8 1.4 +78 -39 src/usr.sbin/cached/cached.conf.5 1.3 +10 -7 src/usr.sbin/ipfwpcap/ipfwpcap.8 1.2 +38 -19 src/usr.sbin/ntp/doc/ntp-keygen.8 1.2 +6 -7 src/usr.sbin/nvram/nvram.8 1.77 +16 -10 src/usr.sbin/sade/sade.8 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:50:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9071B16A416; Sat, 30 Sep 2006 19:50:58 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54CC143D46; Sat, 30 Sep 2006 19:50:58 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJowWW002409; Sat, 30 Sep 2006 19:50:58 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJowVG002407; Sat, 30 Sep 2006 19:50:58 GMT (envelope-from simon) Message-Id: <200609301950.k8UJowVG002407@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:50: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/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.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, 30 Sep 2006 19:50:58 -0000 simon 2006-09-30 19:50:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: re (kensmith) Revision Changes Path 1.15.2.2 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.8.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.14.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.9.2.2 +5 -0 src/crypto/openssh/defines.h 1.1.1.13.2.1 +14 -0 src/crypto/openssh/log.c 1.6.2.1 +2 -1 src/crypto/openssh/log.h 1.1.1.16.2.2 +10 -3 src/crypto/openssh/packet.c 1.46.2.2 +2 -2 src/crypto/openssh/session.c 1.27.2.2 +2 -2 src/crypto/openssh/ssh_config 1.17.2.2 +2 -2 src/crypto/openssh/ssh_config.5 1.39.2.2 +3 -2 src/crypto/openssh/sshd.c 1.42.2.2 +2 -2 src/crypto/openssh/sshd_config 1.23.2.2 +2 -2 src/crypto/openssh/sshd_config.5 1.30.2.2 +2 -2 src/crypto/openssh/version.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:51:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E658A16A47C; Sat, 30 Sep 2006 19:51:56 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAD5043D45; Sat, 30 Sep 2006 19:51:56 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJpuDr002572; Sat, 30 Sep 2006 19:51:56 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJpuQO002571; Sat, 30 Sep 2006 19:51:56 GMT (envelope-from simon) Message-Id: <200609301951.k8UJpuQO002571@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:51:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_1 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.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: Sat, 30 Sep 2006 19:51:57 -0000 simon 2006-09-30 19:51:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_1) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.416.2.22.2.12 +3 -0 src/UPDATING 1.15.2.1.4.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.12.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.18.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.9.2.1.4.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.13.6.1 +14 -0 src/crypto/openssh/log.c 1.6.6.1 +2 -1 src/crypto/openssh/log.h 1.1.1.16.2.1.4.1 +10 -3 src/crypto/openssh/packet.c 1.46.2.1.4.1 +2 -2 src/crypto/openssh/session.c 1.27.2.1.4.1 +2 -2 src/crypto/openssh/ssh_config 1.17.2.1.4.1 +2 -2 src/crypto/openssh/ssh_config.5 1.39.2.1.4.1 +3 -2 src/crypto/openssh/sshd.c 1.42.2.1.4.1 +2 -2 src/crypto/openssh/sshd_config 1.23.2.1.4.1 +2 -2 src/crypto/openssh/sshd_config.5 1.30.2.1.4.1 +2 -2 src/crypto/openssh/version.h 1.69.2.11.2.12 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:53:22 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53A6916A412; Sat, 30 Sep 2006 19:53:22 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE8543D58; Sat, 30 Sep 2006 19:53:21 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJrLeD002727; Sat, 30 Sep 2006 19:53:21 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJrLGG002726; Sat, 30 Sep 2006 19:53:21 GMT (envelope-from simon) Message-Id: <200609301953.k8UJrLGG002726@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:53:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.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: Sat, 30 Sep 2006 19:53:22 -0000 simon 2006-09-30 19:53:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.416.2.3.2.20 +3 -0 src/UPDATING 1.15.2.1.2.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.10.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.16.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.9.2.1.2.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.13.4.1 +14 -0 src/crypto/openssh/log.c 1.6.4.1 +2 -1 src/crypto/openssh/log.h 1.1.1.16.2.1.2.1 +10 -3 src/crypto/openssh/packet.c 1.46.2.1.2.1 +2 -2 src/crypto/openssh/session.c 1.27.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config 1.17.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config.5 1.39.2.1.2.1 +3 -2 src/crypto/openssh/sshd.c 1.42.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config 1.23.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config.5 1.30.2.1.2.1 +2 -2 src/crypto/openssh/version.h 1.69.2.8.2.16 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:54:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49AA116A40F; Sat, 30 Sep 2006 19:54:04 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12A3043D4C; Sat, 30 Sep 2006 19:54:04 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJs3Fh002790; Sat, 30 Sep 2006 19:54:03 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJs37v002789; Sat, 30 Sep 2006 19:54:03 GMT (envelope-from simon) Message-Id: <200609301954.k8UJs37v002789@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:54:03 +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/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.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, 30 Sep 2006 19:54:04 -0000 simon 2006-09-30 19:54:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Revision Changes Path 1.13.2.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.2.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.8.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.2.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.2.1 +14 -0 src/crypto/openssh/log.c 1.5.2.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.2.1 +10 -3 src/crypto/openssh/packet.c 1.44.2.1 +2 -2 src/crypto/openssh/session.c 1.25.2.2 +2 -2 src/crypto/openssh/ssh_config 1.15.2.2 +2 -2 src/crypto/openssh/ssh_config.5 1.37.2.1 +4 -2 src/crypto/openssh/sshd.c 1.40.2.2 +2 -2 src/crypto/openssh/sshd_config 1.21.2.2 +2 -2 src/crypto/openssh/sshd_config.5 1.27.2.2 +2 -2 src/crypto/openssh/version.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:55:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4B8F16A40F; Sat, 30 Sep 2006 19:55:00 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3DC643D66; Sat, 30 Sep 2006 19:54:58 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJswOW002918; Sat, 30 Sep 2006 19:54:58 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJswRa002917; Sat, 30 Sep 2006 19:54:58 GMT (envelope-from simon) Message-Id: <200609301954.k8UJswRa002917@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:54:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_5 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.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: Sat, 30 Sep 2006 19:55:00 -0000 simon 2006-09-30 19:54:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_5) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.342.2.35.2.8 +3 -0 src/UPDATING 1.13.8.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.14.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.20.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.8.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.8.1 +14 -0 src/crypto/openssh/log.c 1.5.8.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.8.1 +10 -3 src/crypto/openssh/packet.c 1.44.8.1 +2 -2 src/crypto/openssh/session.c 1.25.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config 1.15.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config.5 1.37.8.1 +4 -2 src/crypto/openssh/sshd.c 1.40.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config 1.21.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config.5 1.27.2.1.2.1 +2 -2 src/crypto/openssh/version.h 1.62.2.21.2.10 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:55:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D1E116A59D; Sat, 30 Sep 2006 19:55:53 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52CA443D45; Sat, 30 Sep 2006 19:55:53 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJtrJn003086; Sat, 30 Sep 2006 19:55:53 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJtr5r003085; Sat, 30 Sep 2006 19:55:53 GMT (envelope-from simon) Message-Id: <200609301955.k8UJtr5r003085@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:55:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_4 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.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: Sat, 30 Sep 2006 19:55:53 -0000 simon 2006-09-30 19:55:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_4) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.342.2.24.2.31 +3 -0 src/UPDATING 1.13.6.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.6.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.12.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.6.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.6.1 +14 -0 src/crypto/openssh/log.c 1.5.6.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.6.1 +10 -3 src/crypto/openssh/packet.c 1.44.6.1 +2 -2 src/crypto/openssh/session.c 1.25.6.2 +2 -2 src/crypto/openssh/ssh_config 1.15.6.2 +2 -2 src/crypto/openssh/ssh_config.5 1.37.6.1 +4 -2 src/crypto/openssh/sshd.c 1.40.6.2 +2 -2 src/crypto/openssh/sshd_config 1.21.6.2 +2 -2 src/crypto/openssh/sshd_config.5 1.27.6.2 +2 -2 src/crypto/openssh/version.h 1.62.2.18.2.27 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:56:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D4C516A412; Sat, 30 Sep 2006 19:56:39 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 423B343D45; Sat, 30 Sep 2006 19:56:39 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJudkG003196; Sat, 30 Sep 2006 19:56:39 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJudgg003195; Sat, 30 Sep 2006 19:56:39 GMT (envelope-from simon) Message-Id: <200609301956.k8UJudgg003195@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:56:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_3 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.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: Sat, 30 Sep 2006 19:56:39 -0000 simon 2006-09-30 19:56:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_3) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.342.2.13.2.40 +3 -0 src/UPDATING 1.13.4.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.4.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.10.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.4.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.4.1 +14 -0 src/crypto/openssh/log.c 1.5.4.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.4.1 +10 -3 src/crypto/openssh/packet.c 1.44.4.1 +2 -2 src/crypto/openssh/session.c 1.25.4.2 +2 -2 src/crypto/openssh/ssh_config 1.15.4.2 +2 -2 src/crypto/openssh/ssh_config.5 1.37.4.1 +4 -2 src/crypto/openssh/sshd.c 1.40.4.2 +2 -2 src/crypto/openssh/sshd_config 1.21.4.2 +2 -2 src/crypto/openssh/sshd_config.5 1.27.4.2 +2 -2 src/crypto/openssh/version.h 1.62.2.15.2.42 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:57:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40C2E16A492; Sat, 30 Sep 2006 19:57:16 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09DA943D46; Sat, 30 Sep 2006 19:57:16 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJvF2I003284; Sat, 30 Sep 2006 19:57:15 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJvF2D003283; Sat, 30 Sep 2006 19:57:15 GMT (envelope-from simon) Message-Id: <200609301957.k8UJvF2D003283@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:57:15 +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/crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.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, 30 Sep 2006 19:57:16 -0000 simon 2006-09-30 19:57:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Revision Changes Path 1.1.1.1.2.6 +22 -2 src/crypto/openssh/deattack.c 1.1.1.1.2.3 +1 -0 src/crypto/openssh/deattack.h 1.1.1.2.2.3 +5 -0 src/crypto/openssh/defines.h 1.1.1.1.2.6 +14 -0 src/crypto/openssh/log.c 1.1.1.1.2.4 +1 -0 src/crypto/openssh/log.h 1.1.1.1.2.7 +10 -3 src/crypto/openssh/packet.c 1.2.2.10 +2 -2 src/crypto/openssh/ssh_config 1.4.2.6 +2 -2 src/crypto/openssh/ssh_config.5 1.6.2.12 +2 -2 src/crypto/openssh/sshd.c 1.4.2.14 +2 -2 src/crypto/openssh/sshd_config 1.5.2.8 +2 -2 src/crypto/openssh/sshd_config.5 1.1.1.1.2.14 +2 -2 src/crypto/openssh/version.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 19:58:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8902616A412; Sat, 30 Sep 2006 19:58:09 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EEC143D49; Sat, 30 Sep 2006 19:58:08 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJw8g3003398; Sat, 30 Sep 2006 19:58:08 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJw7xQ003397; Sat, 30 Sep 2006 19:58:07 GMT (envelope-from simon) Message-Id: <200609301958.k8UJw7xQ003397@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:58:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_11 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.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: Sat, 30 Sep 2006 19:58:09 -0000 simon 2006-09-30 19:58:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_4_11) . UPDATING crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.73.2.91.2.26 +3 -0 src/UPDATING 1.1.1.1.2.5.6.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.1.2.2.10.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.2.2.2.8.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.1.2.5.8.1 +14 -0 src/crypto/openssh/log.c 1.1.1.1.2.3.8.1 +1 -0 src/crypto/openssh/log.h 1.1.1.1.2.6.8.1 +10 -3 src/crypto/openssh/packet.c 1.2.2.9.6.1 +2 -2 src/crypto/openssh/ssh_config 1.4.2.5.6.1 +2 -2 src/crypto/openssh/ssh_config.5 1.6.2.11.8.1 +2 -2 src/crypto/openssh/sshd.c 1.4.2.13.6.1 +2 -2 src/crypto/openssh/sshd_config 1.5.2.7.4.1 +2 -2 src/crypto/openssh/sshd_config.5 1.1.1.1.2.13.6.1 +2 -2 src/crypto/openssh/version.h 1.44.2.39.2.29 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Sat Sep 30 20:01:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3655116A415; Sat, 30 Sep 2006 20:01:16 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8BDB43D45; Sat, 30 Sep 2006 20:01:15 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UK1F6d003620; Sat, 30 Sep 2006 20:01:15 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UK1FSX003619; Sat, 30 Sep 2006 20:01:15 GMT (envelope-from ru) Message-Id: <200609302001.k8UK1FSX003619@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20:01: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 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, 30 Sep 2006 20:01:16 -0000 ru 2006-09-30 20:01:15 UTC FreeBSD src repository Modified files: . UPDATING Log: The ioctl(2) API has changed, and some ioctl command codes too. Hint users to add "options COMPAT_FREEBSD6" to their kernel config files, so that X.Org and friends still work without recompiling. Revision Changes Path 1.460 +7 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Sep 30 20:18:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5A9B16A403; Sat, 30 Sep 2006 20:18:30 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1881F43D6D; Sat, 30 Sep 2006 20:18:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKISTM005607; Sat, 30 Sep 2006 20:18:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKISAQ005606; Sat, 30 Sep 2006 20:18:28 GMT (envelope-from ru) Message-Id: <200609302018.k8UKISAQ005606@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20:18: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/share/man/man7 build.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:18:30 -0000 ru 2006-09-30 20:18:28 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Require rpc.lockd(8) only if make is running with the -j option. Revision Changes Path 1.44 +5 -2 src/share/man/man7/build.7 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 20:25:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6545216AA23; Sat, 30 Sep 2006 20:25:36 +0000 (UTC) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7629D43D46; Sat, 30 Sep 2006 20:25:33 +0000 (GMT) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKPXAr005998; Sat, 30 Sep 2006 20:25:33 GMT (envelope-from jhay@repoman.freebsd.org) Received: (from jhay@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKPXt8005997; Sat, 30 Sep 2006 20:25:33 GMT (envelope-from jhay) Message-Id: <200609302025.k8UKPXt8005997@repoman.freebsd.org> From: John Hay Date: Sat, 30 Sep 2006 20:25: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/netinet6 nd6.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, 30 Sep 2006 20:25:36 -0000 jhay 2006-09-30 20:25:33 UTC FreeBSD src repository Modified files: sys/netinet6 nd6.c Log: A better fix is to check if it is a host route. Submitted by: ume MFC after: 5 days Revision Changes Path 1.69 +1 -1 src/sys/netinet6/nd6.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 20:36:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4D2516A40F; Sat, 30 Sep 2006 20:36:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8361D43EDF; Sat, 30 Sep 2006 20:34:29 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKXgjI006486; Sat, 30 Sep 2006 20:33:42 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKXgnZ006485; Sat, 30 Sep 2006 20:33:42 GMT (envelope-from ru) Message-Id: <200609302033.k8UKXgnZ006485@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20:33: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/libpam/modules/pam_ssh pam_ssh.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, 30 Sep 2006 20:36:23 -0000 ru 2006-09-30 20:33:42 UTC FreeBSD src repository Modified files: lib/libpam/modules/pam_ssh pam_ssh.c Log: Fix build. Revision Changes Path 1.44 +1 -0 src/lib/libpam/modules/pam_ssh/pam_ssh.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 20:38:45 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 864A016A4A0; Sat, 30 Sep 2006 20:38:45 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DACA843DD7; Sat, 30 Sep 2006 20:37:37 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKbbpN006672; Sat, 30 Sep 2006 20:37:37 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKbbsL006671; Sat, 30 Sep 2006 20:37:37 GMT (envelope-from ru) Message-Id: <200609302037.k8UKbbsL006671@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20: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/share/man/man7 build.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:38:45 -0000 ru 2006-09-30 20:37:37 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Markup glitch. Revision Changes Path 1.45 +2 -1 src/share/man/man7/build.7 From owner-cvs-src@FreeBSD.ORG Sat Sep 30 20:58:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36A3916A40F; Sat, 30 Sep 2006 20:58:49 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53F3B43D99; Sat, 30 Sep 2006 20:58:48 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKwmZ6015794; Sat, 30 Sep 2006 20:58:48 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKwmvR015793; Sat, 30 Sep 2006 20:58:48 GMT (envelope-from mbr) Message-Id: <200609302058.k8UKwmvR015793@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 20:58:48 +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/kern tty.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, 30 Sep 2006 20:58:49 -0000 mbr 2006-09-30 20:58:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern tty.c Log: MFC rev. 1.260 Any call of tty_close() with a tty refcount of <= 1 is wrong and we will free the tty in this case. This is a workaround until the underlaying devfs/tty problems are fixed. Approved by: re Revision Changes Path 1.250.2.2 +9 -1 src/sys/kern/tty.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 21:02:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 639F516A415; Sat, 30 Sep 2006 21:02:20 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 210B343D79; Sat, 30 Sep 2006 21:02:20 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UL2KxX016038; Sat, 30 Sep 2006 21:02:20 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UL2J4q016037; Sat, 30 Sep 2006 21:02:19 GMT (envelope-from mbr) Message-Id: <200609302102.k8UL2J4q016037@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 21:02: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/kern tty_pty.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, 30 Sep 2006 21:02:20 -0000 mbr 2006-09-30 21:02:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern tty_pty.c Log: Fix 'pty leak by number'. Make the leaked ptys usable again. Approved by: re Revision Changes Path 1.137.2.3 +9 -2 src/sys/kern/tty_pty.c From owner-cvs-src@FreeBSD.ORG Sat Sep 30 21:25:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F76216A40F; Sat, 30 Sep 2006 21:25:13 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94FFE43D46; Sat, 30 Sep 2006 21:25:12 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ULPCI2018358; Sat, 30 Sep 2006 21:25:12 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ULPClR018357; Sat, 30 Sep 2006 21:25:12 GMT (envelope-from sam) Message-Id: <200609302125.k8ULPClR018357@repoman.freebsd.org> From: Sam Leffler Date: Sat, 30 Sep 2006 21:25:12 +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/ath if_ath.c if_athvar.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, 30 Sep 2006 21:25:13 -0000 sam 2006-09-30 21:25:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ath if_ath.c if_athvar.h Log: MFC: remove stub radar support Approved by: re (kensmith) Revision Changes Path 1.94.2.27 +0 -22 src/sys/dev/ath/if_ath.c 1.27.2.9 +0 -7 src/sys/dev/ath/if_athvar.h From owner-cvs-src@FreeBSD.ORG Sat Sep 30 22:04:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D21B916A403; Sat, 30 Sep 2006 22:04:12 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BFAD43D49; Sat, 30 Sep 2006 22:04:12 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UM4Cuw021401; Sat, 30 Sep 2006 22:04:12 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UM4CN3021400; Sat, 30 Sep 2006 22:04:12 GMT (envelope-from joel) Message-Id: <200609302204.k8UM4CN3021400@repoman.freebsd.org> From: Joel Dahl Date: Sat, 30 Sep 2006 22:04: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: 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: Sat, 30 Sep 2006 22:04:12 -0000 joel 2006-09-30 22:04:12 UTC FreeBSD src repository (doc committer) Modified files: . access Log: Welcome linimon (Mark Linimon) to the ranks of the src committers. rwatson sponsored linimon, and will be his mentor. Approved by: core With hat: core-secretary Revision Changes Path 1.791 +1 -0 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Sat Sep 30 22:51:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6688F16A40F; Sat, 30 Sep 2006 22:51:11 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 257FE43D49; Sat, 30 Sep 2006 22:51:11 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UMpAwP023490; Sat, 30 Sep 2006 22:51:10 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UMpAXm023467; Sat, 30 Sep 2006 22:51:10 GMT (envelope-from mbr) Message-Id: <200609302251.k8UMpAXm023467@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 22:51: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/kern tty_pty.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, 30 Sep 2006 22:51:11 -0000 mbr 2006-09-30 22:51:05 UTC FreeBSD src repository Modified files: sys/kern tty_pty.c Log: Readd rev. 1.145 because of vfs bugs and races near revoke(). Until they are fixed we can't free any slaves. Add a workaround to not to leak ptys by number. Revision Changes Path 1.149 +14 -4 src/sys/kern/tty_pty.c