From owner-cvs-src@FreeBSD.ORG Sun Nov 9 01:17:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E4D816A4CE; Sun, 9 Nov 2003 01:17:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F7FA43F75; Sun, 9 Nov 2003 01:17:26 -0800 (PST) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA99HQXJ071613; Sun, 9 Nov 2003 01:17:26 -0800 (PST) (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA99HQVP071612; Sun, 9 Nov 2003 01:17:26 -0800 (PST) (envelope-from tanimura) Message-Id: <200311090917.hA99HQVP071612@repoman.freebsd.org> From: Seigo Tanimura Date: Sun, 9 Nov 2003 01:17:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_target.c src/sys/coda coda_psdev.c src/sys/dev/aac aac.c src/sys/dev/bktr bktr_core.c src/sys/dev/firewire firewire.c src/sys/dev/kbd kbd.c src/sys/dev/nmdm nmdm.c src/sys/dev/random randomdev.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 09:17:27 -0000 tanimura 2003/11/09 01:17:26 PST FreeBSD src repository Modified files: sys/cam/scsi scsi_target.c sys/coda coda_psdev.c sys/dev/aac aac.c sys/dev/bktr bktr_core.c sys/dev/firewire firewire.c sys/dev/kbd kbd.c sys/dev/nmdm nmdm.c sys/dev/random randomdev.c sys/dev/sab sab.c sys/dev/snp snp.c sys/dev/sound/midi midibuf.c sys/dev/sound/pcm channel.c sys/dev/usb ucom.c ugen.c uhid.c ums.c usb.c sys/dev/zs zs.c sys/i386/bios apm.c sys/i386/isa asc.c cx.c istallion.c mse.c spic.c stallion.c sys/i4b/driver i4b_rbch.c i4b_tel.c sys/i4b/layer4 i4b_i4bdrv.c sys/isa psm.c sys/kern kern_condvar.c kern_event.c subr_log.c sys_generic.c sys_pipe.c tty.c tty_pty.c uipc_socket.c uipc_socket2.c vfs_subr.c sys/net bpf.c if_tap.c if_tun.c sys/pc98/pc98 mse.c sys/pccard mecia.c pccard.c pcic.c sys/sys condvar.h selinfo.h Log: - Implement selwakeuppri() which allows raising the priority of a thread being waken up. The thread waken up can run at a priority as high as after tsleep(). - Replace selwakeup()s with selwakeuppri()s and pass appropriate priorities. - Add cv_broadcastpri() which raises the priority of the broadcast threads. Used by selwakeuppri() if collision occurs. Not objected in: -arch, -current Revision Changes Path 1.58 +1 -1 src/sys/cam/scsi/scsi_target.c 1.29 +2 -2 src/sys/coda/coda_psdev.c 1.81 +1 -1 src/sys/dev/aac/aac.c 1.131 +1 -1 src/sys/dev/bktr/bktr_core.c 1.65 +1 -1 src/sys/dev/firewire/firewire.c 1.36 +2 -2 src/sys/dev/kbd/kbd.c 1.17 +2 -2 src/sys/dev/nmdm/nmdm.c 1.44 +1 -1 src/sys/dev/random/randomdev.c 1.21 +1 -1 src/sys/dev/sab/sab.c 1.82 +2 -2 src/sys/dev/snp/snp.c 1.9 +2 -2 src/sys/dev/sound/midi/midibuf.c 1.91 +1 -1 src/sys/dev/sound/pcm/channel.c 1.34 +1 -1 src/sys/dev/usb/ucom.c 1.81 +2 -2 src/sys/dev/usb/ugen.c 1.65 +1 -1 src/sys/dev/usb/uhid.c 1.64 +2 -2 src/sys/dev/usb/ums.c 1.94 +1 -1 src/sys/dev/usb/usb.c 1.15 +1 -1 src/sys/dev/zs/zs.c 1.137 +1 -1 src/sys/i386/bios/apm.c 1.56 +1 -1 src/sys/i386/isa/asc.c 1.59 +1 -1 src/sys/i386/isa/cx.c 1.53 +1 -1 src/sys/i386/isa/istallion.c 1.63 +1 -1 src/sys/i386/isa/mse.c 1.10 +1 -1 src/sys/i386/isa/spic.c 1.58 +1 -1 src/sys/i386/isa/stallion.c 1.28 +3 -3 src/sys/i4b/driver/i4b_rbch.c 1.29 +5 -5 src/sys/i4b/driver/i4b_tel.c 1.36 +2 -2 src/sys/i4b/layer4/i4b_i4bdrv.c 1.62 +1 -1 src/sys/isa/psm.c 1.44 +9 -2 src/sys/kern/kern_condvar.c 1.64 +1 -1 src/sys/kern/kern_event.c 1.59 +1 -1 src/sys/kern/subr_log.c 1.126 +24 -3 src/sys/kern/sys_generic.c 1.158 +1 -1 src/sys/kern/sys_pipe.c 1.205 +2 -2 src/sys/kern/tty.c 1.112 +2 -2 src/sys/kern/tty_pty.c 1.157 +1 -1 src/sys/kern/uipc_socket.c 1.117 +1 -1 src/sys/kern/uipc_socket2.c 1.472 +2 -2 src/sys/kern/vfs_subr.c 1.118 +1 -1 src/sys/net/bpf.c 1.33 +2 -2 src/sys/net/if_tap.c 1.130 +2 -2 src/sys/net/if_tun.c 1.41 +1 -1 src/sys/pc98/pc98/mse.c 1.4 +2 -2 src/sys/pccard/mecia.c 1.160 +1 -1 src/sys/pccard/pccard.c 1.184 +1 -1 src/sys/pccard/pcic.c 1.9 +3 -1 src/sys/sys/condvar.h 1.16 +1 -0 src/sys/sys/selinfo.h From owner-cvs-src@FreeBSD.ORG Sun Nov 9 01:30:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D808516A4CE; Sun, 9 Nov 2003 01:30:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 563C243FB1; Sun, 9 Nov 2003 01:30:40 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA99UeXJ072311; Sun, 9 Nov 2003 01:30:40 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA99Ueuj072309; Sun, 9 Nov 2003 01:30:40 -0800 (PST) (envelope-from brueffer) Message-Id: <200311090930.hA99Ueuj072309@repoman.freebsd.org> From: Christian Brueffer Date: Sun, 9 Nov 2003 01:30:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 ports.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 09:30:41 -0000 brueffer 2003/11/09 01:30:40 PST FreeBSD src repository (doc committer) Modified files: share/man/man7 ports.7 Log: Add the 'package-recursive' option PR: 57838 Submitted by: Alexander Haderer MFC after: 5 days Revision Changes Path 1.39 +4 -0 src/share/man/man7/ports.7 From owner-cvs-src@FreeBSD.ORG Sun Nov 9 02:11:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD94516A4CE; Sun, 9 Nov 2003 02:11:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C2A943FF3; Sun, 9 Nov 2003 02:11:16 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9ABFXJ074922; Sun, 9 Nov 2003 02:11:15 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9ABFoV074921; Sun, 9 Nov 2003 02:11:15 -0800 (PST) (envelope-from sos) Message-Id: <200311091011.hA9ABFoV074921@repoman.freebsd.org> From: Søren Schmidt Date: Sun, 9 Nov 2003 02:11:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata atapi-cd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 10:11:17 -0000 sos 2003/11/09 02:11:15 PST FreeBSD src repository Modified files: sys/dev/ata atapi-cd.c Log: Fix typo in breaking up requests to size limit. Found by: Peter Edwards Revision Changes Path 1.153 +1 -1 src/sys/dev/ata/atapi-cd.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 05:45:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1FF316A4CE; Sun, 9 Nov 2003 05:45:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C6F843F93; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9DjtXJ093879; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Djt7S093878; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde) Message-Id: <200311091345.hA9Djt7S093878@repoman.freebsd.org> From: Bruce Evans Date: Sun, 9 Nov 2003 05:45:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 13:45:56 -0000 bde 2003/11/09 05:45:55 PST FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: Quick fix for scaling of statclock ticks in the SMP case. As explained in the log message for kern_sched.c 1.83 (which should have been repo-copied to preserve history for this file), the (4BSD) scheduler algorithm only works right if stathz is nearly 128 Hz. The old commit lock said 64 Hz; the scheduler actually wants nearly 16 Hz but there was a scale factor of 4 to give the requirement of 64 Hz, and rev.1.83 changed the scale factor so that the requirement became 128 Hz. The change of the scale factor was incomplete in the SMP case. Then scheduling ticks are provided by smp_ncpu CPUs, and the scheduler cannot tell the difference between this and 1 CPU providing scheduling ticks smp_ncpu times faster, so we need another scale factor of smp_ncp or an algorithm change. This quick fix uses the scale factor without even trying to optimize the runtime divisions required for this as is done for the other scale factor. The main algorithmic problem is the clamp on the scheduling tick counts. This was 295; it is now approximately 295 * smp_ncpu. When the limit is reached, threads get free timeslices and scheduling becomes very unfair to the threads that don't hit the limit. The limit can be reached and maintained in the worst case if the load average is larger than (limit / effective_stathz - 1) / 2 = 0.65 now (was just 0.08 with 2 CPUs before this change), so there are algorithmic problems even for a load average of 1. Fortunately, the worst case isn't common enough for the problem to be very noticeable (it is mainly for niced CPU hogs competing with less nice CPU hogs). Revision Changes Path 1.28 +4 -0 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 06:49:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D82716A4CE; Sun, 9 Nov 2003 06:49:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE0D843F3F; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9EnhXJ098822; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9EnhiW098821; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa) Message-Id: <200311091449.hA9EnhiW098821@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 9 Nov 2003 06:49:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/dconschat dconschat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 14:49:44 -0000 simokawa 2003/11/09 06:49:43 PST FreeBSD src repository Modified files: usr.sbin/dconschat dconschat.c Log: Increase MAXDEV up to 10. Revision Changes Path 1.4 +1 -1 src/usr.sbin/dconschat/dconschat.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 06:58:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64C9316A4CE; Sun, 9 Nov 2003 06:58:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D648843FA3; Sun, 9 Nov 2003 06:58:28 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9EwSXJ099226; Sun, 9 Nov 2003 06:58:28 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9EwS21099225; Sun, 9 Nov 2003 06:58:28 -0800 (PST) (envelope-from simon) Message-Id: <200311091458.hA9EwS21099225@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 9 Nov 2003 06:58:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 sym.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 14:58:29 -0000 simon 2003/11/09 06:58:28 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 sym.4 Log: Sync the sym(4) manual page with the hardware notes, and change the list of supported controllers into a list. Note that the 53C875A has not been included in the list of supported devices, since this controller does not seem to be supported by the version of the sym(4) driver currently in FreeBSD. PR: docs/55557 Submitted by: Lukas Ertl (original version) MFC after: 1 week 53C875A omission reviewed by: silence from -scsi and groudier Revision Changes Path 1.15 +61 -17 src/share/man/man4/sym.4 From owner-cvs-src@FreeBSD.ORG Sun Nov 9 09:04:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E243F16A4CE; Sun, 9 Nov 2003 09:04:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CDCB43F75; Sun, 9 Nov 2003 09:04:05 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9H45XJ013844; Sun, 9 Nov 2003 09:04:05 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9H4508013843; Sun, 9 Nov 2003 09:04:05 -0800 (PST) (envelope-from dwmalone) Message-Id: <200311091704.hA9H4508013843@repoman.freebsd.org> From: David Malone Date: Sun, 9 Nov 2003 09:04:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 17:04:06 -0000 dwmalone 2003/11/09 09:04:05 PST FreeBSD src repository Modified files: sys/compat/linux linux_socket.c Log: Use kern_sendit rather than sendit for the Linux send* syscalls. This means we can avoid using the stack gap for most send* syscalls now (it is still used in the IP_HDRINCL case). Revision Changes Path 1.44 +105 -144 src/sys/compat/linux/linux_socket.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 09:05:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67BA216A4CE; Sun, 9 Nov 2003 09:05:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD62843FB1; Sun, 9 Nov 2003 09:05:55 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9H5tXJ014008; Sun, 9 Nov 2003 09:05:55 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9H5tCj014007; Sun, 9 Nov 2003 09:05:55 -0800 (PST) (envelope-from imp) Message-Id: <200311091705.hA9H5tCj014007@repoman.freebsd.org> From: Warner Losh Date: Sun, 9 Nov 2003 09:05:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha ahareg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 17:05:56 -0000 imp 2003/11/09 09:05:55 PST FreeBSD src repository Modified files: sys/dev/aha ahareg.h Log: Minor comment smithing Revision Changes Path 1.14 +4 -4 src/sys/dev/aha/ahareg.h From owner-cvs-src@FreeBSD.ORG Sun Nov 9 09:16:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1B1216A4CE; Sun, 9 Nov 2003 09:16:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73B0043FCB; Sun, 9 Nov 2003 09:16:39 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9HGdXJ014507; Sun, 9 Nov 2003 09:16:39 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9HGdHa014506; Sun, 9 Nov 2003 09:16:39 -0800 (PST) (envelope-from imp) Message-Id: <200311091716.hA9HGdHa014506@repoman.freebsd.org> From: Warner Losh Date: Sun, 9 Nov 2003 09:16:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha aha.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 17:16:40 -0000 imp 2003/11/09 09:16:39 PST FreeBSD src repository Modified files: sys/dev/aha aha.c Log: Minor tweaks to make it behave better: o When we're resetting the board, make sure that we error out the pending CCBs first. Otherwise the aha_cmd won't accept further commands, such as those that are used to reset the card (AOP_INITIALIZE_MBOX). This appears to cause a cascade failure where no more commands are possible to the card. o Reduce from 10s down to 1s the amount of time we're willing to tolerate the card being awol. This helps the above case. o Add some error checking to two commands issued in the probe. I have a dim memory of gibbs@ trying to tell me about this problem a few years ago, so pointy hat to imp@ for sitting on it so long. Revision Changes Path 1.51 +18 -8 src/sys/dev/aha/aha.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 11:51:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5803D16A4CE; Sun, 9 Nov 2003 11:51:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6F8443F93; Sun, 9 Nov 2003 11:51:17 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9JpHXJ024002; Sun, 9 Nov 2003 11:51:17 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9JpHiZ024001; Sun, 9 Nov 2003 11:51:17 -0800 (PST) (envelope-from imp) Message-Id: <200311091951.hA9JpHiZ024001@repoman.freebsd.org> From: Warner Losh Date: Sun, 9 Nov 2003 11:51:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha aha.c aha_isa.c aha_mca.c ahareg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 19:51:18 -0000 imp 2003/11/09 11:51:17 PST FreeBSD src repository Modified files: sys/dev/aha aha.c aha_isa.c aha_mca.c ahareg.h Log: Let bus space manage softc. Revision Changes Path 1.52 +3 -10 src/sys/dev/aha/aha.c 1.25 +5 -19 src/sys/dev/aha/aha_isa.c 1.10 +2 -10 src/sys/dev/aha/aha_mca.c 1.15 +13 -17 src/sys/dev/aha/ahareg.h From owner-cvs-src@FreeBSD.ORG Sun Nov 9 12:01:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E064E16A4CE; Sun, 9 Nov 2003 12:01:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E42543FBF; Sun, 9 Nov 2003 12:01:36 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9K1aXJ024531; Sun, 9 Nov 2003 12:01:36 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9K1avp024530; Sun, 9 Nov 2003 12:01:36 -0800 (PST) (envelope-from imp) Message-Id: <200311092001.hA9K1avp024530@repoman.freebsd.org> From: Warner Losh Date: Sun, 9 Nov 2003 12:01:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha aha_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 20:01:41 -0000 imp 2003/11/09 12:01:36 PST FreeBSD src repository Modified files: sys/dev/aha aha_isa.c Log: Add my copyright to aha_isa.c to make it crystal clear its license Revision Changes Path 1.26 +25 -1 src/sys/dev/aha/aha_isa.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 12:02:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D862A16A4CE; Sun, 9 Nov 2003 12:02:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5883543FBD; Sun, 9 Nov 2003 12:02:48 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9K2mXJ024573; Sun, 9 Nov 2003 12:02:48 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9K2mhT024572; Sun, 9 Nov 2003 12:02:48 -0800 (PST) (envelope-from imp) Message-Id: <200311092002.hA9K2mhT024572@repoman.freebsd.org> From: Warner Losh Date: Sun, 9 Nov 2003 12:02:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha aha.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 20:02:49 -0000 imp 2003/11/09 12:02:48 PST FreeBSD src repository Modified files: sys/dev/aha aha.c Log: Tweak the front end driver file list Also some minor whitespace nits. Revision Changes Path 1.53 +26 -31 src/sys/dev/aha/aha.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 12:31:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B2E916A4CE; Sun, 9 Nov 2003 12:31:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 756A443FB1; Sun, 9 Nov 2003 12:31:04 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9KV4XJ026802; Sun, 9 Nov 2003 12:31:04 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9KV4Mo026801; Sun, 9 Nov 2003 12:31:04 -0800 (PST) (envelope-from marcel) Message-Id: <200311092031.hA9KV4Mo026801@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 9 Nov 2003 12:31:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/amd64/amd64 machdep.c src/sys/i386/i386 machdep.c src/sys/ia64/ia64 machdep.c src/sys/kern kern_context.c src/sys/pc98/i386 machdep.c src/sys/powerpc/powerpc machdep.c src/sys/sparc64/sparc64 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 20:31:05 -0000 marcel 2003/11/09 12:31:04 PST FreeBSD src repository Modified files: sys/alpha/alpha machdep.c sys/amd64/amd64 machdep.c sys/i386/i386 machdep.c sys/ia64/ia64 machdep.c sys/kern kern_context.c sys/pc98/i386 machdep.c sys/powerpc/powerpc machdep.c sys/sparc64/sparc64 machdep.c sys/sys ucontext.h Log: Change the clear_ret argument of get_mcontext() to be a flags argument. Since all callers either passed 0 or 1 for clear_ret, define bit 0 in the flags for use as clear_ret. Reserve bits 1, 2 and 3 for use by MI code for possible (but unlikely) future use. The remaining bits are for use by MD code. This change is triggered by a need on ia64 to have another knob for get_mcontext(). Revision Changes Path 1.214 +2 -2 src/sys/alpha/alpha/machdep.c 1.597 +2 -2 src/sys/amd64/amd64/machdep.c 1.581 +2 -2 src/sys/i386/i386/machdep.c 1.164 +2 -2 src/sys/ia64/ia64/machdep.c 1.7 +2 -2 src/sys/kern/kern_context.c 1.330 +2 -2 src/sys/pc98/i386/machdep.c 1.63 +1 -1 src/sys/powerpc/powerpc/machdep.c 1.103 +2 -2 src/sys/sparc64/sparc64/machdep.c 1.11 +9 -2 src/sys/sys/ucontext.h From owner-cvs-src@FreeBSD.ORG Sun Nov 9 12:39:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CD9216A4CE; Sun, 9 Nov 2003 12:39:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FFC743FE0; Sun, 9 Nov 2003 12:39:56 -0800 (PST) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9KduXJ027095; Sun, 9 Nov 2003 12:39:56 -0800 (PST) (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Kdudf027094; Sun, 9 Nov 2003 12:39:56 -0800 (PST) (envelope-from jmg) Message-Id: <200311092039.hA9Kdudf027094@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 9 Nov 2003 12:39:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/vmstat vmstat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 20:39:57 -0000 jmg 2003/11/09 12:39:56 PST FreeBSD src repository Modified files: usr.bin/vmstat vmstat.c Log: make minimum column size for interrupt name be the heading (depends upon Total being shorter than interrupt).. Pointed out by: bde Revision Changes Path 1.69 +1 -1 src/usr.bin/vmstat/vmstat.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 12:46:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FF8A16A4CE; Sun, 9 Nov 2003 12:46:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B036D43FE5; Sun, 9 Nov 2003 12:46:08 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9Kk8XJ027503; Sun, 9 Nov 2003 12:46:08 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Kk8CQ027502; Sun, 9 Nov 2003 12:46:08 -0800 (PST) (envelope-from scottl) Message-Id: <200311092046.hA9Kk8CQ027502@repoman.freebsd.org> From: Scott Long Date: Sun, 9 Nov 2003 12:46:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata atapi-cam.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 20:46:09 -0000 scottl 2003/11/09 12:46:08 PST FreeBSD src repository Modified files: sys/dev/ata atapi-cam.c Log: Free the ata_request struct after we are done using it. This should stop the memory leak seen when using ATAPICAM. Revision Changes Path 1.27 +9 -2 src/sys/dev/ata/atapi-cam.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 14:09:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95B4216A4CE; Sun, 9 Nov 2003 14:09:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F126A43FD7; Sun, 9 Nov 2003 14:09:04 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9M94XJ038383; Sun, 9 Nov 2003 14:09:04 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9M94tN038382; Sun, 9 Nov 2003 14:09:04 -0800 (PST) (envelope-from alc) Message-Id: <200311092209.hA9M94tN038382@repoman.freebsd.org> From: Alan Cox Date: Sun, 9 Nov 2003 14:09:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 22:09:05 -0000 alc 2003/11/09 14:09:04 PST FreeBSD src repository Modified files: sys/vm vm_map.c vm_mmap.c Log: - Remove Giant from msync(2). Giant is still acquired by the lower layers if we drop into the pmap or vnode layers. - Migrate the handling of zero-length msync(2)s into vm_map_sync() so that multithread applications can't change the map between implementing the zero-length hack in msync(2) and reacquiring the map lock in vm_map_sync(). Reviewed by: tegge Revision Changes Path 1.320 +10 -0 src/sys/vm/vm_map.c 1.170 +0 -27 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 14:17:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CFA316A4CE; Sun, 9 Nov 2003 14:17:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAC5143FDF; Sun, 9 Nov 2003 14:17:36 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9MHaXJ038910; Sun, 9 Nov 2003 14:17:36 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9MHaNp038909; Sun, 9 Nov 2003 14:17:36 -0800 (PST) (envelope-from marcel) Message-Id: <200311092217.hA9MHaNp038909@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 9 Nov 2003 14:17:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c syscall.S src/sys/ia64/include ucontext.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 22:17:37 -0000 marcel 2003/11/09 14:17:36 PST FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c syscall.S sys/ia64/include ucontext.h Log: Use get_mcontext() to construct the signal context in sendsig() and use set_mcontext() to restore the context in sigreturn(). Since we put the syscall number and the syscall arguments in the trapframe (we don't save the scratch registers for syscalls, which allows us to reuse the space to our advantage), create a MD specific flag so that we save the scratch registers even for syscalls. We would not be able to restart a syscall otherwise. The signal trampoline does not need to flush the regiters anymore, because get_mcontext() already handles that. In fact, if we set up the context correctly, we do not need to have a trampoline at all. This change however only minimally changes the trampoline code. In follow-up commits this can be further optimized. Note that normally we preserve cfm and iip in the trapframe created by the EPC syscall path when we restore a context in set_mcontext() because those fields are not normally set for a synchronuous context. The kernel puts the return address and frame info of the syscall stub in there. By preserving these fields we hide this detail from userland which allows us to use setcontext(2) for user created contexts. However, sigreturn() is commonly called from the trampoline, which means that if we preserve cfm and iip in all cases, we would return to the trampoline after the sigreturn(), which means we hit the safety net: we call exit(2). So, we do not preserve cfm and iip when we have a synchronous context that also has scratch registers (the uncommon context created by sendsig() only), under the assumption that if such a context is created in userland, something special is going on and the use of cfm and iip is then just another quirk. All this is invisible in the common case. Revision Changes Path 1.165 +34 -72 src/sys/ia64/ia64/machdep.c 1.10 +10 -36 src/sys/ia64/ia64/syscall.S 1.6 +6 -1 src/sys/ia64/include/ucontext.h From owner-cvs-src@FreeBSD.ORG Sun Nov 9 14:21:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E05B716A4CE; Sun, 9 Nov 2003 14:21:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5171043FB1; Sun, 9 Nov 2003 14:21:22 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9MLMXJ039155; Sun, 9 Nov 2003 14:21:22 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9MLMhs039154; Sun, 9 Nov 2003 14:21:22 -0800 (PST) (envelope-from simon) Message-Id: <200311092221.hA9MLMhs039154@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 9 Nov 2003 14:21:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ncr.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 22:21:23 -0000 simon 2003/11/09 14:21:22 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 ncr.4 Log: - Sync the list of supported device with the hardware notes and the driver source code. - Use a mdoc list for the list of supported devices. MFC after: 1 week Revision Changes Path 1.14 +42 -5 src/share/man/man4/ncr.4 From owner-cvs-src@FreeBSD.ORG Sun Nov 9 14:36:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5980916A4CE; Sun, 9 Nov 2003 14:36:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CABAF43FD7; Sun, 9 Nov 2003 14:36:04 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9Ma4XJ039869; Sun, 9 Nov 2003 14:36:04 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Ma4C6039868; Sun, 9 Nov 2003 14:36:04 -0800 (PST) (envelope-from simon) Message-Id: <200311092236.hA9Ma4C6039868@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 9 Nov 2003 14:36:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 sym.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 22:36:05 -0000 simon 2003/11/09 14:36:04 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 sym.4 Log: Add two PC-98 devices, from the hardware notes, which was missed in the last commit. MFC after: 1 week Revision Changes Path 1.16 +4 -0 src/share/man/man4/sym.4 From owner-cvs-src@FreeBSD.ORG Sun Nov 9 14:50:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9D0916A4CE; Sun, 9 Nov 2003 14:50:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DC9543FF2; Sun, 9 Nov 2003 14:50:17 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9MoGXJ040775; Sun, 9 Nov 2003 14:50:16 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9MoGXQ040774; Sun, 9 Nov 2003 14:50:16 -0800 (PST) (envelope-from bmah) Message-Id: <200311092250.hA9MoGXQ040774@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 9 Nov 2003 14:50:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 aic.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 22:50:18 -0000 bmah 2003/11/09 14:50:16 PST FreeBSD src repository Modified files: share/man/man4/man4.i386 aic.4 Log: Add some pc98-specific devices from the hardware notes. Revision Changes Path 1.14 +2 -0 src/share/man/man4/man4.i386/aic.4 From owner-cvs-src@FreeBSD.ORG Sun Nov 9 14:53:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54EE316A4CE; Sun, 9 Nov 2003 14:53:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C867443F75; Sun, 9 Nov 2003 14:53:58 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9MrwXJ040980; Sun, 9 Nov 2003 14:53:58 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Mrwbo040979; Sun, 9 Nov 2003 14:53:58 -0800 (PST) (envelope-from bmah) Message-Id: <200311092253.hA9Mrwbo040979@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 9 Nov 2003 14:53:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ahc.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 22:53:59 -0000 bmah 2003/11/09 14:53:58 PST FreeBSD src repository Modified files: share/man/man4 ahc.4 Log: Add some pc98-specific devices from the hardware notes. Revision Changes Path 1.36 +5 -0 src/share/man/man4/ahc.4 From owner-cvs-src@FreeBSD.ORG Sun Nov 9 15:08:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C750816A4F8; Sun, 9 Nov 2003 15:08:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4191943FD7; Sun, 9 Nov 2003 15:08:06 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9N86XJ042564; Sun, 9 Nov 2003 15:08:06 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9N85DT042563; Sun, 9 Nov 2003 15:08:05 -0800 (PST) (envelope-from simon) Message-Id: <200311092308.hA9N85DT042563@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 9 Nov 2003 15:08:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 23:08:07 -0000 simon 2003/11/09 15:08:05 PST FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Trim device entries for sym(4)/ncr(4). Revision Changes Path 1.195 +2 -36 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Sun Nov 9 15:13:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 723F116A4CE; Sun, 9 Nov 2003 15:13:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3409743FCB; Sun, 9 Nov 2003 15:13:24 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9NDOXJ042927; Sun, 9 Nov 2003 15:13:24 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9NDN5D042926; Sun, 9 Nov 2003 15:13:23 -0800 (PST) (envelope-from marcel) Message-Id: <200311092313.hA9NDN5D042926@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 9 Nov 2003 15:13:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 vm_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 23:13:25 -0000 marcel 2003/11/09 15:13:23 PST FreeBSD src repository Modified files: sys/ia64/ia64 vm_machdep.c Log: When a thread is being swapped-out, save the high FP registers. We have a pointer in the PCPU to the PCB of the thread that currently has its high FP registers loaded. Revision Changes Path 1.74 +2 -0 src/sys/ia64/ia64/vm_machdep.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 15:36:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A79A116A4CE; Sun, 9 Nov 2003 15:36:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2934A43FE9; Sun, 9 Nov 2003 15:36:47 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9NakXJ044015; Sun, 9 Nov 2003 15:36:46 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9NakDA044014; Sun, 9 Nov 2003 15:36:46 -0800 (PST) (envelope-from sam) Message-Id: <200311092336.hA9NakDA044014@repoman.freebsd.org> From: Sam Leffler Date: Sun, 9 Nov 2003 15:36:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net80211 ieee80211_node.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 23:36:47 -0000 sam 2003/11/09 15:36:46 PST FreeBSD src repository Modified files: sys/net80211 ieee80211_node.c Log: fix typo that broke AP scanning by BSSID Submitted by: Len Widra Revision Changes Path 1.13 +1 -2 src/sys/net80211/ieee80211_node.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 15:42:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A3AC16A4CE; Sun, 9 Nov 2003 15:42:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0334543FF2; Sun, 9 Nov 2003 15:42:52 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9NgpXJ044515; Sun, 9 Nov 2003 15:42:51 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Ngpnx044514; Sun, 9 Nov 2003 15:42:51 -0800 (PST) (envelope-from bmah) Message-Id: <200311092342.hA9Ngpnx044514@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 9 Nov 2003 15:42:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 23:42:52 -0000 bmah 2003/11/09 15:42:51 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Reorganize and trim devices from the aic(4), aha(4), ahb(4), and ahc(4) sections. Trim devices from sis(4), de(4), and ex(4). Don't bother saying what standards are supported by the ATM stack; this list is kind of misplaced here (and may not even be accurate anymore). Delete mention of pca; this driver has been removed. Revision Changes Path 1.196 +9 -153 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Sun Nov 9 15:54:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7942F16A4CE; Sun, 9 Nov 2003 15:54:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E26A943FDD; Sun, 9 Nov 2003 15:54:21 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9NsLXJ045203; Sun, 9 Nov 2003 15:54:21 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9NsL2D045202; Sun, 9 Nov 2003 15:54:21 -0800 (PST) (envelope-from joe) Message-Id: <200311092354.hA9NsL2D045202@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 9 Nov 2003 15:54:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb ehci.c ohci.c uhci.c usb.c usb_port.h usbdi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 23:54:22 -0000 joe 2003/11/09 15:54:21 PST FreeBSD src repository Modified files: sys/dev/usb ehci.c ohci.c uhci.c usb.c usb_port.h usbdi.c Log: MFNetBSD: - remove the unnecessary elm arg from SIMPLEQ_REMOVE_HEAD(). this mirrors the functionality of SLIST_REMOVE_HEAD() (the other singly-linked list type) and FreeBSD's STAILQ_REMOVE_HEAD() Revision Changes Path 1.4 +1 -1 src/sys/dev/usb/ehci.c 1.133 +2 -2 src/sys/dev/usb/ohci.c 1.146 +3 -3 src/sys/dev/usb/uhci.c 1.95 +1 -0 src/sys/dev/usb/usb.c 1.65 +1 -7 src/sys/dev/usb/usb_port.h 1.83 +2 -2 src/sys/dev/usb/usbdi.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 15:56:20 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE34F16A4CE; Sun, 9 Nov 2003 15:56:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B51743FEA; Sun, 9 Nov 2003 15:56:20 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9NuKXJ045385; Sun, 9 Nov 2003 15:56:20 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9NuK8Z045384; Sun, 9 Nov 2003 15:56:20 -0800 (PST) (envelope-from joe) Message-Id: <200311092356.hA9NuK8Z045384@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 9 Nov 2003 15:56:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb ohci.c uhci.c usbdi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 23:56:21 -0000 joe 2003/11/09 15:56:20 PST FreeBSD src repository Modified files: sys/dev/usb ohci.c uhci.c usbdi.c Log: Revise the NetBSD revision control strings. Revision Changes Path 1.134 +1 -13 src/sys/dev/usb/ohci.c 1.147 +1 -10 src/sys/dev/usb/uhci.c 1.84 +1 -6 src/sys/dev/usb/usbdi.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 15:59:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FE0416A4E1; Sun, 9 Nov 2003 15:59:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35C5643FE5; Sun, 9 Nov 2003 15:59:54 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9NxsXJ045541; Sun, 9 Nov 2003 15:59:54 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9NxrFR045540; Sun, 9 Nov 2003 15:59:53 -0800 (PST) (envelope-from joe) Message-Id: <200311092359.hA9NxrFR045540@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 9 Nov 2003 15:59:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb uhci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 09 Nov 2003 23:59:55 -0000 joe 2003/11/09 15:59:53 PST FreeBSD src repository Modified files: sys/dev/usb uhci.c Log: MFNetBSD: date: 2003/09/12 16:18:08; author: mycroft; Tweak a debugging printf(). Revision Changes Path 1.148 +2 -1 src/sys/dev/usb/uhci.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 16:08:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DA0716A4CE; Sun, 9 Nov 2003 16:08:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A21B843FA3; Sun, 9 Nov 2003 16:08:42 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA08gXJ047116; Sun, 9 Nov 2003 16:08:42 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA08gY5047115; Sun, 9 Nov 2003 16:08:42 -0800 (PST) (envelope-from joe) Message-Id: <200311100008.hAA08gY5047115@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 9 Nov 2003 16:08:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb uhci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 00:08:43 -0000 joe 2003/11/09 16:08:42 PST FreeBSD src repository Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.176 date: 2003/11/04 19:11:21; author: mycroft; Ignore a CRCTO error on a SETUP transaction in combination with STALLED or NAK. This fixes problems with the GL641. Revision Changes Path 1.149 +10 -0 src/sys/dev/usb/uhci.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 16:12:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D63A16A4CE; Sun, 9 Nov 2003 16:12:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9238C43FE3; Sun, 9 Nov 2003 16:12:40 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA0CeXJ047375; Sun, 9 Nov 2003 16:12:40 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA0CdsF047374; Sun, 9 Nov 2003 16:12:39 -0800 (PST) (envelope-from joe) Message-Id: <200311100012.hAA0CdsF047374@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 9 Nov 2003 16:12:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb ohci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 00:12:41 -0000 joe 2003/11/09 16:12:39 PST FreeBSD src repository Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.141 date: 2003/09/10 20:08:29; author: mycroft; Update actlen even in the case where a TD returns an error -- this is critical for the umass bulk-only STALL case. Revision Changes Path 1.135 +11 -8 src/sys/dev/usb/ohci.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 16:16:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DC5916A4CE; Sun, 9 Nov 2003 16:16:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9095643F75; Sun, 9 Nov 2003 16:16:36 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA0GaXJ047652; Sun, 9 Nov 2003 16:16:36 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA0GaKu047651; Sun, 9 Nov 2003 16:16:36 -0800 (PST) (envelope-from joe) Message-Id: <200311100016.hAA0GaKu047651@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 9 Nov 2003 16:16:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb ohci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 00:16:37 -0000 joe 2003/11/09 16:16:36 PST FreeBSD src repository Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.142 date: 2003/10/11 03:04:26; author: toshii Fix a done list handling bug which exhibits under high shared interrupt rate and bus traffic. As the interrupt register is read after checking hcca_done_head, there was a small chance of dropping a done list. Ignore OHCI_WDH interrupt bit if hcca_done_head is zero so that OHCI_WDH is processed later. Revision Changes Path 1.136 +2 -1 src/sys/dev/usb/ohci.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 16:20:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBFE916A4CE; Sun, 9 Nov 2003 16:20:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A7B043FD7; Sun, 9 Nov 2003 16:20:53 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA0KrXJ047902; Sun, 9 Nov 2003 16:20:53 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA0KqCE047901; Sun, 9 Nov 2003 16:20:52 -0800 (PST) (envelope-from joe) Message-Id: <200311100020.hAA0KqCE047901@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 9 Nov 2003 16:20:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb ehci.c ohci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 00:20:53 -0000 joe 2003/11/09 16:20:52 PST FreeBSD src repository Modified files: sys/dev/usb ehci.c ohci.c Log: MFNetBSD: date: 2003/10/18 04:50:35; author: simonb Remove assigned-to but otherwise unused variables. Remove unreachable break after return statements. Revision Changes Path 1.5 +4 -3 src/sys/dev/usb/ehci.c 1.137 +1 -3 src/sys/dev/usb/ohci.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 16:41:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AB4A16A4CE for ; Sun, 9 Nov 2003 16:41:10 -0800 (PST) Received: from mail.speakeasy.net (mail8.speakeasy.net [216.254.0.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B2843FF5 for ; Sun, 9 Nov 2003 16:41:06 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 26840 invoked from network); 10 Nov 2003 00:41:02 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 10 Nov 2003 00:41:02 -0000 Received: from laptop.baldwin.cx (laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAA0eace009788; Sun, 9 Nov 2003 19:40:36 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311090917.hA99HQVP071612@repoman.freebsd.org> Date: Sun, 09 Nov 2003 19:40:35 -0500 (EST) From: John Baldwin To: Seigo Tanimura X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/cam/scsi scsi_target.c src/sys/coda coda_psdev.c src/sys/dev/aac aac.c src/sys/dev/bktr bktr_core.c src/sys/dev/firewire firewire.c src/sys/dev/kbd kbd.c src/sys/dev/nmdm nmdm.c src/sys/dev/random randomdev.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 00:41:10 -0000 On 09-Nov-2003 Seigo Tanimura wrote: > tanimura 2003/11/09 01:17:26 PST > > FreeBSD src repository > > Modified files: > sys/cam/scsi scsi_target.c > sys/coda coda_psdev.c > sys/dev/aac aac.c > sys/dev/bktr bktr_core.c > sys/dev/firewire firewire.c > sys/dev/kbd kbd.c > sys/dev/nmdm nmdm.c > sys/dev/random randomdev.c > sys/dev/sab sab.c > sys/dev/snp snp.c > sys/dev/sound/midi midibuf.c > sys/dev/sound/pcm channel.c > sys/dev/usb ucom.c ugen.c uhid.c ums.c usb.c > sys/dev/zs zs.c > sys/i386/bios apm.c > sys/i386/isa asc.c cx.c istallion.c mse.c spic.c > stallion.c > sys/i4b/driver i4b_rbch.c i4b_tel.c > sys/i4b/layer4 i4b_i4bdrv.c > sys/isa psm.c > sys/kern kern_condvar.c kern_event.c subr_log.c > sys_generic.c sys_pipe.c tty.c tty_pty.c > uipc_socket.c uipc_socket2.c vfs_subr.c > sys/net bpf.c if_tap.c if_tun.c > sys/pc98/pc98 mse.c > sys/pccard mecia.c pccard.c pcic.c > sys/sys condvar.h selinfo.h > Log: > - Implement selwakeuppri() which allows raising the priority of a > thread being waken up. The thread waken up can run at a priority as > high as after tsleep(). > > - Replace selwakeup()s with selwakeuppri()s and pass appropriate > priorities. > > - Add cv_broadcastpri() which raises the priority of the broadcast > threads. Used by selwakeuppri() if collision occurs. > > Not objected in: -arch, -current Sorry I didn't speak up on arch@, just too busy. But, why do you need to bump up the priority of the thread you are waking up? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Sun Nov 9 16:44:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB6B816A4CE; Sun, 9 Nov 2003 16:44:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A86C43FBF; Sun, 9 Nov 2003 16:44:01 -0800 (PST) (envelope-from mini@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA0i0XJ049182; Sun, 9 Nov 2003 16:44:00 -0800 (PST) (envelope-from mini@repoman.freebsd.org) Received: (from mini@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA0i0k6049181; Sun, 9 Nov 2003 16:44:00 -0800 (PST) (envelope-from mini) Message-Id: <200311100044.hAA0i0k6049181@repoman.freebsd.org> From: Jonathan Mini Date: Sun, 9 Nov 2003 16:44:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c vm_kern.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 00:44:01 -0000 mini 2003/11/09 16:44:00 PST FreeBSD src repository Modified files: sys/vm vm_fault.c vm_kern.c Log: NFC: Update stale comments. Reviewed by: alc Revision Changes Path 1.182 +1 -1 src/sys/vm/vm_fault.c 1.108 +3 -3 src/sys/vm/vm_kern.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 17:37:42 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0753216A4CE; Sun, 9 Nov 2003 17:37:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7870143FEC; Sun, 9 Nov 2003 17:37:41 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA1bfXJ058167; Sun, 9 Nov 2003 17:37:41 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA1bfsN058166; Sun, 9 Nov 2003 17:37:41 -0800 (PST) (envelope-from alc) Message-Id: <200311100137.hAA1bfsN058166@repoman.freebsd.org> From: Alan Cox Date: Sun, 9 Nov 2003 17:37:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_glue.c vm_map.c vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 01:37:42 -0000 alc 2003/11/09 17:37:41 PST FreeBSD src repository Modified files: sys/vm vm_glue.c vm_map.c vm_mmap.c Log: - The Open Group Base Specifications Issue 6 specifies that an munmap(2) must return EINVAL if size is zero. Submitted by: tegge - In order to avoid a race condition in multithreaded applications, the check and removal operations by munmap(2) must be in the same critical section. To accomodate this, vm_map_check_protection() is modified to require its caller to obtain at least a read lock on the map. Revision Changes Path 1.187 +4 -0 src/sys/vm/vm_glue.c 1.321 +6 -14 src/sys/vm/vm_map.c 1.171 +8 -6 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 17:42:32 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3527C16A4CE; Sun, 9 Nov 2003 17:42:32 -0800 (PST) Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D68F43FAF; Sun, 9 Nov 2003 17:42:31 -0800 (PST) (envelope-from alc@cs.rice.edu) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id 07D844AA33; Sun, 9 Nov 2003 19:42:31 -0600 (CST) Received: from cs.rice.edu ([127.0.0.1]) by localhost (cs.rice.edu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 29934-01-9; Sun, 9 Nov 2003 19:42:29 -0600 (CST) Received: by cs.rice.edu (Postfix, from userid 19572) id 772614AA04; Sun, 9 Nov 2003 19:42:29 -0600 (CST) Date: Sun, 9 Nov 2003 19:42:29 -0600 From: Alan Cox To: Alan Cox Message-ID: <20031110014229.GQ9687@cs.rice.edu> References: <200311100137.hAA1bfsN058166@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311100137.hAA1bfsN058166@repoman.freebsd.org> User-Agent: Mutt/1.3.28i X-Virus-Scanned: by amavis-20030616-p5 at rice.edu cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_glue.c vm_map.c vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 01:42:32 -0000 On Sun, Nov 09, 2003 at 05:37:41PM -0800, Alan Cox wrote: > alc 2003/11/09 17:37:41 PST > > FreeBSD src repository > > Modified files: > sys/vm vm_glue.c vm_map.c vm_mmap.c > Log: > - The Open Group Base Specifications Issue 6 specifies that an munmap(2) > must return EINVAL if size is zero. Submitted by: tegge I would appreciate it if someone would update the man page for munmap(2) accordingly. See http://www.opengroup.org/onlinepubs/007904975/functions/munmap.html. Regards, Alan From owner-cvs-src@FreeBSD.ORG Sun Nov 9 18:47:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B284A16A4CE; Sun, 9 Nov 2003 18:47:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3151A43FE1; Sun, 9 Nov 2003 18:47:12 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA2lCXJ061944; Sun, 9 Nov 2003 18:47:12 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA2lBq0061943; Sun, 9 Nov 2003 18:47:11 -0800 (PST) (envelope-from imp) Message-Id: <200311100247.hAA2lBq0061943@repoman.freebsd.org> From: Warner Losh Date: Sun, 9 Nov 2003 18:47:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha aha.c aha_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 02:47:12 -0000 imp 2003/11/09 18:47:11 PST FreeBSD src repository Modified files: sys/dev/aha aha.c aha_isa.c Log: Move 'guessing' code from the probe into the identify routine where it more properly belongs. Revision Changes Path 1.54 +0 -66 src/sys/dev/aha/aha.c 1.27 +106 -94 src/sys/dev/aha/aha_isa.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 19:11:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B8C516A4CE; Sun, 9 Nov 2003 19:11:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C15D43FDD; Sun, 9 Nov 2003 19:11:08 -0800 (PST) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA3B8XJ064000; Sun, 9 Nov 2003 19:11:08 -0800 (PST) (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA3B87q063999; Sun, 9 Nov 2003 19:11:08 -0800 (PST) (envelope-from davidxu) Message-Id: <200311100311.hAA3B87q063999@repoman.freebsd.org> From: David Xu Date: Sun, 9 Nov 2003 19:11:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys signalvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 03:11:09 -0000 davidxu 2003/11/09 19:11:08 PST FreeBSD src repository Modified files: sys/sys signalvar.h Log: If a thread masks all its signal, in cursig(), no signal will be exchanged with debugger, so testing P_TRACED in SIGPENDING is useless. This test also is the culprit which causes lots of 'failed to set signal flags properly for ast()' to be printed on console which is just a false complaint. Revision Changes Path 1.65 +1 -2 src/sys/sys/signalvar.h From owner-cvs-src@FreeBSD.ORG Sun Nov 9 19:32:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC86516A4CF; Sun, 9 Nov 2003 19:32:11 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id E71E443FD7; Sun, 9 Nov 2003 19:32:10 -0800 (PST) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 26C8966B28; Sun, 9 Nov 2003 19:32:10 -0800 (PST) Date: Sun, 9 Nov 2003 19:32:10 -0800 From: Kris Kennaway To: David Xu Message-ID: <20031110033209.GA4897@xor.obsecurity.org> References: <200311100311.hAA3B87q063999@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline In-Reply-To: <200311100311.hAA3B87q063999@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys signalvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 03:32:12 -0000 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Nov 09, 2003 at 07:11:08PM -0800, David Xu wrote: > davidxu 2003/11/09 19:11:08 PST >=20 > FreeBSD src repository >=20 > Modified files: > sys/sys signalvar.h=20 > Log: > If a thread masks all its signal, in cursig(), no signal will be exchan= ged > with debugger, so testing P_TRACED in SIGPENDING is useless. This test = also > is the culprit which causes lots of 'failed to set signal flags properl= y for > ast()' to be printed on console which is just a false complaint. Yay! This has been on my bug list for ages. Kris --AhhlLboLdkugWU4S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/rwa5Wry0BWjoQKURAirOAKD96fX4L9SWxVl6pMwJVjbgCk2GUQCfQ+hf 44yz40i87DEEp3Y56R6zneQ= =iCbt -----END PGP SIGNATURE----- --AhhlLboLdkugWU4S-- From owner-cvs-src@FreeBSD.ORG Sun Nov 9 19:51:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E313416A4CE; Sun, 9 Nov 2003 19:51:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 610EF43F85; Sun, 9 Nov 2003 19:51:24 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA3pOXJ066529; Sun, 9 Nov 2003 19:51:24 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA3pNYr066528; Sun, 9 Nov 2003 19:51:23 -0800 (PST) (envelope-from simokawa) Message-Id: <200311100351.hAA3pNYr066528@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 9 Nov 2003 19:51:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire sbp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 03:51:25 -0000 simokawa 2003/11/09 19:51:23 PST FreeBSD src repository Modified files: sys/dev/firewire sbp.c Log: * Improve sbp device probe in boot process. - Notify BUS RESET to CAM in sbp_attach(). - Use last bus reset time to determine login delay. Tested by: imura * Add some sysctl MIB and tunables. Revision Changes Path 1.67 +50 -15 src/sys/dev/firewire/sbp.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 20:34:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91E4416A4CE; Sun, 9 Nov 2003 20:34:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1353943FBD; Sun, 9 Nov 2003 20:34:52 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA4YpXJ069461; Sun, 9 Nov 2003 20:34:51 -0800 (PST) (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA4Yp0C069460; Sun, 9 Nov 2003 20:34:51 -0800 (PST) (envelope-from jkoshy) Message-Id: <200311100434.hAA4Yp0C069460@repoman.freebsd.org> From: Joseph Koshy Date: Sun, 9 Nov 2003 20:34:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys ktrace.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 04:34:52 -0000 jkoshy 2003/11/09 20:34:51 PST FreeBSD src repository Modified files: lib/libc/sys ktrace.2 Log: Document KTR_DROP. Revision Changes Path 1.22 +9 -0 src/lib/libc/sys/ktrace.2 From owner-cvs-src@FreeBSD.ORG Sun Nov 9 21:28:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 930D116A4CE; Sun, 9 Nov 2003 21:28:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03E2C43FAF; Sun, 9 Nov 2003 21:28:06 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA5S5XJ078182; Sun, 9 Nov 2003 21:28:05 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA5S5fK078181; Sun, 9 Nov 2003 21:28:05 -0800 (PST) (envelope-from marcel) Message-Id: <200311100528.hAA5S5fK078181@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 9 Nov 2003 21:28:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 05:28:06 -0000 marcel 2003/11/09 21:28:05 PST FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c Log: In get_mcontext(), do not update bspstore and ndirty in the trapframe. Only update them in the newly created context to reflect the state after copying the dirty registers onto the user stack. If we were to update the trapframe, we lose the state at entry into the kernel. We may need that after we create the context, such as for KSE upcalls. We have to update the trapframe after writing the dirty registers to the user stack for signal delivery to work. But this is best done in sendsig() itself where it applies, not in get_mcontext() where it's done unconditionally. Revision Changes Path 1.166 +9 -5 src/sys/ia64/ia64/machdep.c From owner-cvs-src@FreeBSD.ORG Sun Nov 9 23:14:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42B3616A4CE; Sun, 9 Nov 2003 23:14:24 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD90443FE5; Sun, 9 Nov 2003 23:14:21 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id SAA12549; Mon, 10 Nov 2003 18:14:16 +1100 Date: Mon, 10 Nov 2003 18:14:14 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: John Baldwin In-Reply-To: Message-ID: <20031110180540.P2148@gamplex.bde.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Seigo Tanimura Subject: RE: cvs commit: src/sys/cam/scsi scsi_target.c src/sys/codacoda_psdev.csrc/sys/dev/firewire firewire.c src/sys/dev/kbd kbd.c src/sys/dev/nmdm nmdm. X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 07:14:24 -0000 On Sun, 9 Nov 2003, John Baldwin wrote: > On 09-Nov-2003 Seigo Tanimura wrote: > > tanimura 2003/11/09 01:17:26 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/cam/scsi scsi_target.c > > sys/coda coda_psdev.c > > ... > > Log: > > - Implement selwakeuppri() which allows raising the priority of a > > thread being waken up. The thread waken up can run at a priority as > > high as after tsleep(). > > > > - Replace selwakeup()s with selwakeuppri()s and pass appropriate > > priorities. > > > > - Add cv_broadcastpri() which raises the priority of the broadcast > > threads. Used by selwakeuppri() if collision occurs. > > > > Not objected in: -arch, -current > > Sorry I didn't speak up on arch@, just too busy. But, why do you need > to bump up the priority of the thread you are waking up? I left the reply to someone else :-). The priority may need to be bumped because the thread is a user thread that is sleeping at a low user priority. As I understand this change, the thread priority may be low for cases that don't use tsleep() so they can't set the thread priority using that. So this changes is needed to get the same behaviour as using tsleep(). However, I think that behaviour is not quite right -- if the thread is a user thread then it waking it up is only urgent if it needs to do some urgent things in kernel mode on wakeup. It should not return to user mode until its user priority permits its scheduling. However2, we still have the bugfeature that user threads keep the kernel priority that they wake up at all the way back to user mode, and this may be necessary for interactivity. Bruce From owner-cvs-src@FreeBSD.ORG Sun Nov 9 23:22:42 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E156716A4CE; Sun, 9 Nov 2003 23:22:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73BA643F3F; Sun, 9 Nov 2003 23:22:42 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA7MgXJ084958; Sun, 9 Nov 2003 23:22:42 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA7MgGe084957; Sun, 9 Nov 2003 23:22:42 -0800 (PST) (envelope-from tjr) Message-Id: <200311100722.hAA7MgGe084957@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 9 Nov 2003 23:22:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sysv_sem.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 07:22:43 -0000 tjr 2003/11/09 23:22:41 PST FreeBSD src repository Modified files: sys/kern sysv_sem.c Log: When there are no free sem_undo structs available in semu_alloc(), only free one sem_undo with un_cnt == 0 instead of all of them. This is a temporary workaround until the SLIST_FOREACH_PREVPTR loop gets fixed so that it doesn't cause cycles in semu_list when removing multiple adjacent items. It might be easier to just use (doubly-linked) LISTs here instead of complicated SLIST code to achieve O(1) removals. This bug manifested itself as a complete lockup under heavy semaphore use by multiple processes with the SEM_UNDO flag set. PR: 58984 Revision Changes Path 1.66 +4 -3 src/sys/kern/sysv_sem.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:02:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B099016A4CE; Mon, 10 Nov 2003 00:02:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3064843FE1; Mon, 10 Nov 2003 00:02:06 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA826XJ086760; Mon, 10 Nov 2003 00:02:06 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA8257X086759; Mon, 10 Nov 2003 00:02:05 -0800 (PST) (envelope-from des) Message-Id: <200311100802.hAA8257X086759@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Nov 2003 00:02:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys munmap.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:02:07 -0000 des 2003/11/10 00:02:05 PST FreeBSD src repository Modified files: lib/libc/sys munmap.2 Log: Document EINVAL for len == 0. Revision Changes Path 1.19 +1 -1 src/lib/libc/sys/munmap.2 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:02:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E540416A4CF; Mon, 10 Nov 2003 00:02:28 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C56E943FAF; Mon, 10 Nov 2003 00:02:27 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 8A6927A003; Mon, 10 Nov 2003 09:02:26 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id 43F859BEC3; Mon, 10 Nov 2003 09:02:26 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id 324379BB76; Mon, 10 Nov 2003 09:02:22 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id 1861FB827; Mon, 10 Nov 2003 09:02:22 +0100 (CET) To: Alan Cox References: <200311100137.hAA1bfsN058166@repoman.freebsd.org> <20031110014229.GQ9687@cs.rice.edu> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Mon, 10 Nov 2003 09:02:22 +0100 In-Reply-To: <20031110014229.GQ9687@cs.rice.edu> (Alan Cox's message of "Sun, 9 Nov 2003 19:42:29 -0600") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 cc: Alan Cox cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_glue.c vm_map.c vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:02:29 -0000 Alan Cox writes: > I would appreciate it if someone would update the man page for munmap(2) > accordingly. Done. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:12:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30C0716A4CE; Mon, 10 Nov 2003 00:12:22 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC04A43FE5; Mon, 10 Nov 2003 00:12:20 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id D8ABB79FC6; Mon, 10 Nov 2003 09:12:19 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id A2AFC9BEC3; Mon, 10 Nov 2003 09:12:19 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id BA7CF9BB76; Mon, 10 Nov 2003 09:12:15 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id A06D5B827; Mon, 10 Nov 2003 09:12:15 +0100 (CET) To: Robert Watson References: <200311081756.hA8HusgO090591@repoman.freebsd.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Mon, 10 Nov 2003 09:12:15 +0100 In-Reply-To: <200311081756.hA8HusgO090591@repoman.freebsd.org> (Robert Watson's message of "Sat, 8 Nov 2003 09:56:54 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/security Makefile Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:12:22 -0000 Robert Watson writes: > Log: > Makefile.inc wasn't needed; this is a left-over of other files present > in share/security in the trustedbsd_sebsd branch that are not present > in the main tree. Also, .include Makefile.inc from the parent directory > so that BINDIR is set right. Doesn't that .include happen automatically? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:27:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C95316A4CF; Mon, 10 Nov 2003 00:27:51 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AC4343FCB; Mon, 10 Nov 2003 00:27:48 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id TAA22726; Mon, 10 Nov 2003 19:27:29 +1100 Date: Mon, 10 Nov 2003 19:27:28 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Kris Kennaway In-Reply-To: <20031110033209.GA4897@xor.obsecurity.org> Message-ID: <20031110190237.N2387@gamplex.bde.org> References: <200311100311.hAA3B87q063999@repoman.freebsd.org> <20031110033209.GA4897@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: David Xu cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys signalvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:27:51 -0000 On Sun, 9 Nov 2003, Kris Kennaway wrote: > On Sun, Nov 09, 2003 at 07:11:08PM -0800, David Xu wrote: > > davidxu 2003/11/09 19:11:08 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/sys signalvar.h > > Log: > > If a thread masks all its signal, in cursig(), no signal will be exchanged > > with debugger, so testing P_TRACED in SIGPENDING is useless. This test also > > is the culprit which causes lots of 'failed to set signal flags properly for > > ast()' to be printed on console which is just a false complaint. > > Yay! This has been on my bug list for ages. Me too. See the appended mail which diagnosed the problem with P_TRACED and another with P_PPWAIT last March. Progress was stalled because no one replied. I rarely see the dignostic since I normally have it turned off (unconditionally compiled with more debugging info, but enabled by a flag that is turned off). Bruce >From bde@zeta.org.au Thu Mar 13 03:25:44 2003 +1100 Date: Thu, 13 Mar 2003 03:25:41 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Tim Robbins cc: current@FreeBSD.ORG Subject: Re: failed to set signal flags properly for ast() In-Reply-To: <20030312141804.A12375@dilbert.robbins.dropbear.id.au> Message-ID: <20030313023818.O450@gamplex.bde.org> References: <20030312141804.A12375@dilbert.robbins.dropbear.id.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Status: O X-Status: X-Keywords: X-UID: 7515 On Wed, 12 Mar 2003, Tim Robbins wrote: > Compile, run under gdb, then type "print test()" when the program receives > SIGABRT. Seems to work incorrectly on 4.7 too. > > #include > #include > > void > test(void) > { > > puts("hello"); > } > > int > main(int argc, char *argv[]) > { > > abort(); > exit(0); > } Thanks. At last it is possible to reproduce this bug :-). The bug seems to be that issignal() is quite broken. It gets called for masked signals in the P_TRACED case, but never does anything for masked signals, but at least the following things poing to a need for doing something for masked signals: - the special case for P_TRACED in SIGPENDING() - the incorrect behaviour of the above program in RELENG_4. I think it misbehaves in the same way under -current except in the INVARIANTS case the sanity check spews kernel printfs. - code in NetBSD's issignal() to do something in the (p->p_stat == SSTOP) case without even checking if there are any signals (masked or not). This bug seems to go back to at least FreeBSD-1 (Net/2). SIGPENDING() is also inconsistent with issignal() in the P_PPWAIT case. I think this just wastes time doing null calls to issignal(), and triggers the INVARIANTS check in the same way as the P_TRACED case (see below). This seems to go back to FreeBSD-1 too. SIGPENDING() is consistent with issignal() in the S_SIG case, but this may be wrong since S_SIG is similar to P_TRACED. The invariants check gets trigger as follows: - sigpending() is called correctly. - ast() clears the flags set by sigpending() and "handles" the signal using "while ((sig == cursig(td)) != 0) postsig()". But cursig() doesn't find any signals since all the pending ones are masked. - userret() checks that pending signals were handled. It finds unhandled masked ones and thinks they needed handling because P_TRACED is set. (IIRC, there is only a SIGTRAP pending to begin with, but attempting to control the process using ^C^Z gave masked SIGINTs and SIGSTOPs too). Appart from the diagnostic, the incorrect working in -current is to loop endlessly calling ast() and usrret(). ^C^Z doesn't stop it because they are masked. Bruce >From bde@zeta.org.au Fri Mar 14 06:46:29 2003 +1100 Date: Fri, 14 Mar 2003 06:46:27 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Tim Robbins cc: current@FreeBSD.ORG Subject: Re: failed to set signal flags properly for ast() In-Reply-To: <20030312141804.A12375@dilbert.robbins.dropbear.id.au> Message-ID: <20030314061240.L817@gamplex.bde.org> References: <20030312141804.A12375@dilbert.robbins.dropbear.id.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Status: O X-Status: X-Keywords: X-UID: 7526 On Wed, 12 Mar 2003, Tim Robbins wrote: > Compile, run under gdb, then type "print test()" when the program receives > SIGABRT. Seems to work incorrectly on 4.7 too. > > #include > #include > > void > test(void) > { > > puts("hello"); > } > > int > main(int argc, char *argv[]) > { > > abort(); > exit(0); > } Here's a simpler example: %%% #include #include #include int main(int argc, char *argv[]) { sigset_t mask, omask; volatile int i; sigfillset(&mask); sigprocmask(SIG_SETMASK, &mask, &omask); exit(0); } %%% Single stepping through this hangs at the end of the sigprocmask() and triggers the INVARIANTS check. This is because masking SIGTRAP fouls up trap handling. I first tried masking only SIGTRAP. This caused a SIGSEGV on return of sigprocmask(). Masking SIGSEGV as well stops gdb seeing any signals. abort() causes similar misbehaviour by masking almost all signals. gdb gets control for SIGABRT because SIGABRT is not masked, but "call test()" hangs because it generates a SIGTRAP but SIGTRAP is masked. The system states are approx. 10% user and 90% sys for the hang in both cases, so it seems that the misbehaviour is just the usual one for bogusly masking signals for restartable exceptions if such an exception occurs, and the bug is mainly in the sanity check (SIGPENDING()'s P_TRACED check is less than a pessimization). Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:28:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B66716A4D9; Mon, 10 Nov 2003 00:28:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57ED943FCB; Mon, 10 Nov 2003 00:28:23 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA8SNXJ088604; Mon, 10 Nov 2003 00:28:23 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA8SNnX088603; Mon, 10 Nov 2003 00:28:23 -0800 (PST) (envelope-from des) Message-Id: <200311100828.hAA8SNnX088603@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Nov 2003 00:28:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/man/manpath manpath.config X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:28:24 -0000 des 2003/11/10 00:28:23 PST FreeBSD src repository Modified files: gnu/usr.bin/man/manpath manpath.config Log: The current Perl 5.8 version is 5.8.1; 5.8.2 is right around the corner. Revision Changes Path 1.24 +3 -1 src/gnu/usr.bin/man/manpath/manpath.config From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:31:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4D2716A4CF; Mon, 10 Nov 2003 00:31:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3230243FCB; Mon, 10 Nov 2003 00:31:45 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA8ViXJ088988; Mon, 10 Nov 2003 00:31:44 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA8ViIo088987; Mon, 10 Nov 2003 00:31:44 -0800 (PST) (envelope-from des) Message-Id: <200311100831.hAA8ViIo088987@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Nov 2003 00:31:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_9 Subject: cvs commit: src/gnu/usr.bin/man/manpath manpath.config X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:31:45 -0000 des 2003/11/10 00:31:44 PST FreeBSD src repository Modified files: (Branch: RELENG_4_9) gnu/usr.bin/man/manpath manpath.config Log: Add optional paths for recent and upcoming Perl versions. Revision Changes Path 1.15.2.1.4.1 +5 -0 src/gnu/usr.bin/man/manpath/manpath.config From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:41:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 199C916A4CF; Mon, 10 Nov 2003 00:41:36 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFB1F43F85; Mon, 10 Nov 2003 00:41:33 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id TAA24463; Mon, 10 Nov 2003 19:41:26 +1100 Date: Mon, 10 Nov 2003 19:41:24 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= In-Reply-To: Message-ID: <20031110193637.G2547@gamplex.bde.org> References: <200311081756.hA8HusgO090591@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Robert Watson cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/security Makefile Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:41:36 -0000 On Mon, 10 Nov 2003, Dag-Erling [iso-8859-1] Sm=F8rgrav wrote: > Robert Watson writes: > > Log: > > Makefile.inc wasn't needed; this is a left-over of other files presen= t > > in share/security in the trustedbsd_sebsd branch that are not present > > in the main tree. Also, .include Makefile.inc from the parent direct= ory > > so that BINDIR is set right. > > Doesn't that .include happen automatically? Yes. There are bad examples throughout src/share (../Makefile.inc is mostly not used, and at least the use of it in src/share/man/Makefile is bogus). A bad example was followed. Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:53:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD6F216A4CE; Mon, 10 Nov 2003 00:53:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37B2943FDF; Mon, 10 Nov 2003 00:53:39 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA8rcXJ095419; Mon, 10 Nov 2003 00:53:38 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA8rchS095414; Mon, 10 Nov 2003 00:53:38 -0800 (PST) (envelope-from harti) Message-Id: <200311100853.hAA8rchS095414@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 00:53:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:53:40 -0000 harti 2003/11/10 00:53:38 PST FreeBSD src repository src/contrib/bsnmp - Imported sources Update of /home/ncvs/src/contrib/bsnmp In directory repoman.freebsd.org:/tmp/cvs-serv95395 Log Message: Virgin import of bsnmp 1.4 Status: Vendor Tag: BEGEMOT Release Tags: BSNMP_1_4 N src/contrib/bsnmp/NEWS N src/contrib/bsnmp/README N src/contrib/bsnmp/TODO N src/contrib/bsnmp/VERSION N src/contrib/bsnmp/gensnmptree/gensnmptree.1 N src/contrib/bsnmp/gensnmptree/gensnmptree.c N src/contrib/bsnmp/lib/snmppriv.h N src/contrib/bsnmp/lib/asn1.c N src/contrib/bsnmp/lib/asn1.h N src/contrib/bsnmp/lib/bsnmpagent.3 N src/contrib/bsnmp/lib/bsnmpclient.3 N src/contrib/bsnmp/lib/bsnmplib.3 N src/contrib/bsnmp/lib/snmp.c N src/contrib/bsnmp/lib/snmp.h N src/contrib/bsnmp/lib/snmpagent.c N src/contrib/bsnmp/lib/snmpagent.h N src/contrib/bsnmp/lib/snmpclient.c N src/contrib/bsnmp/lib/snmpclient.h N src/contrib/bsnmp/lib/asn1.3 N src/contrib/bsnmp/snmp_mibII/mibII.c N src/contrib/bsnmp/snmp_mibII/mibII.h N src/contrib/bsnmp/snmp_mibII/mibII_ifmib.c N src/contrib/bsnmp/snmp_mibII/mibII_ifstack.c N src/contrib/bsnmp/snmp_mibII/mibII_interfaces.c N src/contrib/bsnmp/snmp_mibII/mibII_ip.c N src/contrib/bsnmp/snmp_mibII/mibII_ipaddr.c N src/contrib/bsnmp/snmp_mibII/mibII_nettomedia.c N src/contrib/bsnmp/snmp_mibII/mibII_rcvaddr.c N src/contrib/bsnmp/snmp_mibII/mibII_route.c N src/contrib/bsnmp/snmp_mibII/mibII_tcp.c N src/contrib/bsnmp/snmp_mibII/mibII_tree.def N src/contrib/bsnmp/snmp_mibII/mibII_udp.c N src/contrib/bsnmp/snmp_mibII/snmp_mibII.3 N src/contrib/bsnmp/snmp_mibII/snmp_mibII.h N src/contrib/bsnmp/snmpd/tree.def N src/contrib/bsnmp/snmpd/BEGEMOT-MIB.txt N src/contrib/bsnmp/snmpd/BEGEMOT-SNMPD.txt N src/contrib/bsnmp/snmpd/FOKUS-MIB.txt N src/contrib/bsnmp/snmpd/bsnmpd.1 N src/contrib/bsnmp/snmpd/action.c N src/contrib/bsnmp/snmpd/config.c N src/contrib/bsnmp/snmpd/export.c N src/contrib/bsnmp/snmpd/main.c N src/contrib/bsnmp/snmpd/snmpd.config N src/contrib/bsnmp/snmpd/snmpd.h N src/contrib/bsnmp/snmpd/snmpd.sh N src/contrib/bsnmp/snmpd/snmpmod.3 N src/contrib/bsnmp/snmpd/snmpmod.h N src/contrib/bsnmp/snmpd/trap.c N src/contrib/bsnmp/snmpd/.gdbinit No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:56:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A41616A4CE; Mon, 10 Nov 2003 00:56:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB98843FDD; Mon, 10 Nov 2003 00:56:56 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA8uuXJ095568; Mon, 10 Nov 2003 00:56:56 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA8uuTf095567; Mon, 10 Nov 2003 00:56:56 -0800 (PST) (envelope-from harti) Message-Id: <200311100856.hAA8uuTf095567@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 00:56:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/bsnmp FREEBSD-upgrade X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:56:57 -0000 harti 2003/11/10 00:56:56 PST FreeBSD src repository Added files: contrib/bsnmp FREEBSD-upgrade Log: Add update instructions for bsnmp. Bsnmp is the base for the NgATM ILMI daemon. Revision Changes Path 1.1 +25 -0 src/contrib/bsnmp/FREEBSD-upgrade (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 00:59:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D339816A4CE; Mon, 10 Nov 2003 00:59:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4144443FA3; Mon, 10 Nov 2003 00:59:36 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA8xaXJ095716; Mon, 10 Nov 2003 00:59:36 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA8xZOO095715; Mon, 10 Nov 2003 00:59:35 -0800 (PST) (envelope-from des) Message-Id: <200311100859.hAA8xZOO095715@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Nov 2003 00:59:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_9 Subject: cvs commit: src/gnu/usr.bin/man/manpath manpath.config X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 08:59:37 -0000 des 2003/11/10 00:59:35 PST FreeBSD src repository Modified files: (Branch: RELENG_4_9) gnu/usr.bin/man/manpath manpath.config Log: Revert previous commit, which was applied to the wrong branch. Revision Changes Path 1.15.2.1.4.2 +0 -5 src/gnu/usr.bin/man/manpath/manpath.config From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:00:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6296216A4CF; Mon, 10 Nov 2003 01:00:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4AA743FD7; Mon, 10 Nov 2003 01:00:09 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA909XJ095765; Mon, 10 Nov 2003 01:00:09 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA909Ca095764; Mon, 10 Nov 2003 01:00:09 -0800 (PST) (envelope-from harti) Message-Id: <200311100900.hAA909Ca095764@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:00:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:00:10 -0000 harti 2003/11/10 01:00:09 PST FreeBSD src repository Modified files: . Makefile.inc1 Log: Make two directories under usr/share/bsnmp that are needed during library build to install tree definition files and MIBS. Okay'ed by: ru Revision Changes Path 1.395 +1 -1 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:03:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B75116A4CE; Mon, 10 Nov 2003 01:03:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05DE543F75; Mon, 10 Nov 2003 01:03:01 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA930XJ096054; Mon, 10 Nov 2003 01:03:00 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA93099096023; Mon, 10 Nov 2003 01:03:00 -0800 (PST) (envelope-from des) Message-Id: <200311100903.hAA93099096023@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Nov 2003 01:03:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/gnu/usr.bin/man/manpath manpath.config X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:03:01 -0000 des 2003/11/10 01:03:00 PST FreeBSD src repository Modified files: (Branch: RELENG_4) gnu/usr.bin/man/manpath manpath.config Log: Add optional paths for recent and upcoming Perl versions. Revision Changes Path 1.15.2.3 +5 -0 src/gnu/usr.bin/man/manpath/manpath.config From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:04:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4B5B16A4CE; Mon, 10 Nov 2003 01:04:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5395F43FD7; Mon, 10 Nov 2003 01:04:25 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA94PXJ096875; Mon, 10 Nov 2003 01:04:25 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA94OuM096874; Mon, 10 Nov 2003 01:04:24 -0800 (PST) (envelope-from harti) Message-Id: <200311100904.hAA94OuM096874@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:04:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/mtree BSD.include.dist X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:04:26 -0000 harti 2003/11/10 01:04:24 PST FreeBSD src repository Modified files: etc/mtree BSD.include.dist Log: Create a subdirectory where bsnmp include files will be stuffed to. Revision Changes Path 1.75 +2 -0 src/etc/mtree/BSD.include.dist From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:06:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 082B216A4CF; Mon, 10 Nov 2003 01:06:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B2C643F85; Mon, 10 Nov 2003 01:06:38 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA96cXJ097032; Mon, 10 Nov 2003 01:06:38 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA96cWh097031; Mon, 10 Nov 2003 01:06:38 -0800 (PST) (envelope-from harti) Message-Id: <200311100906.hAA96cWh097031@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:06:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/mtree BSD.usr.dist X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:06:39 -0000 harti 2003/11/10 01:06:38 PST FreeBSD src repository Modified files: etc/mtree BSD.usr.dist Log: Create sub-directories under share for bsnmp tree definition and MIB files. Revision Changes Path 1.286 +6 -0 src/etc/mtree/BSD.usr.dist From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:07:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9821116A4CF; Mon, 10 Nov 2003 01:07:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E030D43FF3; Mon, 10 Nov 2003 01:07:30 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA97UXJ097078; Mon, 10 Nov 2003 01:07:30 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA97UaO097077; Mon, 10 Nov 2003 01:07:30 -0800 (PST) (envelope-from harti) Message-Id: <200311100907.hAA97UaO097077@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:07:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.libnames.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:07:31 -0000 harti 2003/11/10 01:07:30 PST FreeBSD src repository Modified files: share/mk bsd.libnames.mk Log: Add a define for libbsnmp. Revision Changes Path 1.74 +1 -0 src/share/mk/bsd.libnames.mk From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:17:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7725816A4CE; Mon, 10 Nov 2003 01:17:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B98CE43FB1; Mon, 10 Nov 2003 01:17:34 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA9HYXJ097795; Mon, 10 Nov 2003 01:17:34 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA9HYsg097794; Mon, 10 Nov 2003 01:17:34 -0800 (PST) (envelope-from harti) Message-Id: <200311100917.hAA9HYsg097794@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:17:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile genfiles mibII_oid.h mibII_tree.c mibII_tree.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:17:35 -0000 harti 2003/11/10 01:17:34 PST FreeBSD src repository Added files: lib/libbsnmp Makefile Makefile.inc lib/libbsnmp/libbsnmp Makefile lib/libbsnmp/modules Makefile Makefile.inc lib/libbsnmp/modules/snmp_mibII Makefile genfiles mibII_oid.h mibII_tree.c mibII_tree.h lib/libbsnmp/modules/snmp_netgraph BEGEMOT-NETGRAPH.txt Makefile genfiles netgraph_oid.h netgraph_tree.c netgraph_tree.def netgraph_tree.h snmp_netgraph.3 snmp_netgraph.c snmp_netgraph.h Log: Add build infrastructure for libbsnmp and the modules. Add the netgraph module for the SNMP daemon. Revision Changes Path 1.1 +5 -0 src/lib/libbsnmp/Makefile (new) 1.1 +8 -0 src/lib/libbsnmp/Makefile.inc (new) 1.1 +17 -0 src/lib/libbsnmp/libbsnmp/Makefile (new) 1.1 +11 -0 src/lib/libbsnmp/modules/Makefile (new) 1.1 +16 -0 src/lib/libbsnmp/modules/Makefile.inc (new) 1.1 +19 -0 src/lib/libbsnmp/modules/snmp_mibII/Makefile (new) 1.1 +20 -0 src/lib/libbsnmp/modules/snmp_mibII/genfiles (new) 1.1 +35 -0 src/lib/libbsnmp/modules/snmp_mibII/mibII_oid.h (new) 1.1 +154 -0 src/lib/libbsnmp/modules/snmp_mibII/mibII_tree.c (new) 1.1 +163 -0 src/lib/libbsnmp/modules/snmp_mibII/mibII_tree.h (new) 1.1 +398 -0 src/lib/libbsnmp/modules/snmp_netgraph/BEGEMOT-NETGRAPH.txt (new) 1.1 +15 -0 src/lib/libbsnmp/modules/snmp_netgraph/Makefile (new) 1.1 +17 -0 src/lib/libbsnmp/modules/snmp_netgraph/genfiles (new) 1.1 +5 -0 src/lib/libbsnmp/modules/snmp_netgraph/netgraph_oid.h (new) 1.1 +30 -0 src/lib/libbsnmp/modules/snmp_netgraph/netgraph_tree.c (new) 1.1 +78 -0 src/lib/libbsnmp/modules/snmp_netgraph/netgraph_tree.def (new) 1.1 +27 -0 src/lib/libbsnmp/modules/snmp_netgraph/netgraph_tree.h (new) 1.1 +416 -0 src/lib/libbsnmp/modules/snmp_netgraph/snmp_netgraph.3 (new) 1.1 +1691 -0 src/lib/libbsnmp/modules/snmp_netgraph/snmp_netgraph.c (new) 1.1 +91 -0 src/lib/libbsnmp/modules/snmp_netgraph/snmp_netgraph.h (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:18:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D04D16A4CF; Mon, 10 Nov 2003 01:18:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0B3443FD7; Mon, 10 Nov 2003 01:18:04 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA9I4XJ097838; Mon, 10 Nov 2003 01:18:04 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA9I4Ue097837; Mon, 10 Nov 2003 01:18:04 -0800 (PST) (envelope-from harti) Message-Id: <200311100918.hAA9I4Ue097837@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:18:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:18:05 -0000 harti 2003/11/10 01:18:04 PST FreeBSD src repository Modified files: lib Makefile Log: Link libbsnmp to the build. Revision Changes Path 1.175 +1 -1 src/lib/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:22:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F00F16A4CE; Mon, 10 Nov 2003 01:22:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20C5D43FB1; Mon, 10 Nov 2003 01:22:41 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA9MeXJ098158; Mon, 10 Nov 2003 01:22:40 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA9MeSD098157; Mon, 10 Nov 2003 01:22:40 -0800 (PST) (envelope-from harti) Message-Id: <200311100922.hAA9MeSD098157@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:22:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bsnmpd Makefile Makefile.inc src/usr.sbin/bsnmpd/bsnmpd Makefile genfiles oid.h tree.c tree.h src/usr.sbin/bsnmpd/gensnmptree Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:22:41 -0000 harti 2003/11/10 01:22:40 PST FreeBSD src repository Added files: usr.sbin/bsnmpd Makefile Makefile.inc usr.sbin/bsnmpd/bsnmpd Makefile genfiles oid.h tree.c tree.h usr.sbin/bsnmpd/gensnmptree Makefile Log: Add the build infrastructure for the SNMP daemon that is the base for the NgATM ILMI daemon and for the tree parsing helper program. Revision Changes Path 1.1 +6 -0 src/usr.sbin/bsnmpd/Makefile (new) 1.1 +3 -0 src/usr.sbin/bsnmpd/Makefile.inc (new) 1.1 +28 -0 src/usr.sbin/bsnmpd/bsnmpd/Makefile (new) 1.1 +19 -0 src/usr.sbin/bsnmpd/bsnmpd/genfiles (new) 1.1 +26 -0 src/usr.sbin/bsnmpd/bsnmpd/oid.h (new) 1.1 +52 -0 src/usr.sbin/bsnmpd/bsnmpd/tree.c (new) 1.1 +56 -0 src/usr.sbin/bsnmpd/bsnmpd/tree.h (new) 1.1 +12 -0 src/usr.sbin/bsnmpd/gensnmptree/Makefile (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:23:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDE0116A4CF; Mon, 10 Nov 2003 01:23:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4016643F3F; Mon, 10 Nov 2003 01:23:10 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA9NAXJ098196; Mon, 10 Nov 2003 01:23:10 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA9N9n7098195; Mon, 10 Nov 2003 01:23:09 -0800 (PST) (envelope-from harti) Message-Id: <200311100923.hAA9N9n7098195@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 01:23:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:23:11 -0000 harti 2003/11/10 01:23:09 PST FreeBSD src repository Modified files: usr.sbin Makefile Log: Link the SNMP daemon for NgATM to the build. Revision Changes Path 1.279 +1 -0 src/usr.sbin/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:29:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7494616A4CE; Mon, 10 Nov 2003 01:29:51 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B60C43FBD; Mon, 10 Nov 2003 01:29:50 -0800 (PST) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9E05666B28; Mon, 10 Nov 2003 01:29:45 -0800 (PST) Date: Mon, 10 Nov 2003 01:29:45 -0800 From: Kris Kennaway To: Hartmut Brandt Message-ID: <20031110092945.GA8246@xor.obsecurity.org> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9amGYk9869ThD9tj" Content-Disposition: inline In-Reply-To: <200311100853.hAA8rchS095414@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:29:51 -0000 --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 10, 2003 at 12:53:38AM -0800, Hartmut Brandt wrote: > harti 2003/11/10 00:53:38 PST >=20 > FreeBSD src repository >=20 > src/contrib/bsnmp - Imported sources > Update of /home/ncvs/src/contrib/bsnmp > In directory repoman.freebsd.org:/tmp/cvs-serv95395 > =20 > Log Message: > Virgin import of bsnmp 1.4 What is this? I don't remember it being discussed on the mailing lists, which is usual before importing new software into FreeBSD. Kris --9amGYk9869ThD9tj Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/r1qJWry0BWjoQKURAt6eAKDcCAAYKOe/caZ1fWglxuVXfALaqACcDCg/ z7imBXmS7ubY1xP7Gfebz0M= =ZPhj -----END PGP SIGNATURE----- --9amGYk9869ThD9tj-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:37:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE37816A4CE; Mon, 10 Nov 2003 01:37:58 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2EAC43F93; Mon, 10 Nov 2003 01:37:56 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAA9bsU24609; Mon, 10 Nov 2003 10:37:54 +0100 (MET) Date: Mon, 10 Nov 2003 10:37:54 +0100 (CET) From: Harti Brandt To: Kris Kennaway In-Reply-To: <20031110092945.GA8246@xor.obsecurity.org> Message-ID: <20031110103409.R29745@beagle.fokus.fraunhofer.de> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hartmut Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 09:37:58 -0000 On Mon, 10 Nov 2003, Kris Kennaway wrote: KK>On Mon, Nov 10, 2003 at 12:53:38AM -0800, Hartmut Brandt wrote: KK>> harti 2003/11/10 00:53:38 PST KK>> KK>> FreeBSD src repository KK>> KK>> src/contrib/bsnmp - Imported sources KK>> Update of /home/ncvs/src/contrib/bsnmp KK>> In directory repoman.freebsd.org:/tmp/cvs-serv95395 KK>> KK>> Log Message: KK>> Virgin import of bsnmp 1.4 KK> KK>What is this? I don't remember it being discussed on the mailing KK>lists, which is usual before importing new software into FreeBSD. That is the base for the NgATM ILMI daemon. While writing the commit message I was thinking about whether or not to include an explanation into the commit message. We talked about this on the atm mailing list approx. a year ago. harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:40:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5801E16A4CE; Mon, 10 Nov 2003 01:40:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD5A343FBF; Mon, 10 Nov 2003 01:40:18 -0800 (PST) (envelope-from guido@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAA9eIXJ099056; Mon, 10 Nov 2003 01:40:18 -0800 (PST) (envelope-from guido@repoman.freebsd.org) Received: (from guido@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAA9eIlE099055; Mon, 10 Nov 2003 01:40:18 -0800 (PST) (envelope-from guido) Message-Id: <200311100940.hAA9eIlE099055@repoman.freebsd.org> From: Guido van Rooij Date: Mon, 10 Nov 2003 01:40:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/rm rm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:40:19 -0000 guido 2003/11/10 01:40:18 PST FreeBSD src repository Modified files: bin/rm rm.c Log: When the P flag is set (i.e. Overwrite regular files before deleting them), do only unlink the file if we could indeed overwrite the file. Old behaviour: rm -P /tmp/foo (foo mode 0444) would NOT overwrite foo, but still delete it (with a warning: rm: foo: Permission denied) New behaviour: Just the EPERM warning, but no deletion Reviewed by: bde Revision Changes Path 1.45 +14 -8 src/bin/rm/rm.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:43:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC14016A4CE; Mon, 10 Nov 2003 01:43:36 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 963CA43F75; Mon, 10 Nov 2003 01:43:31 -0800 (PST) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id EAFF566B28; Mon, 10 Nov 2003 01:43:30 -0800 (PST) Date: Mon, 10 Nov 2003 01:43:30 -0800 From: Kris Kennaway To: Hartmut Brandt Message-ID: <20031110094330.GA8458@xor.obsecurity.org> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5mCyUwZo2JvN/JJP" Content-Disposition: inline In-Reply-To: <20031110103409.R29745@beagle.fokus.fraunhofer.de> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 09:43:36 -0000 --5mCyUwZo2JvN/JJP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 10, 2003 at 10:37:54AM +0100, Harti Brandt wrote: > KK>What is this? I don't remember it being discussed on the mailing > KK>lists, which is usual before importing new software into FreeBSD. >=20 > That is the base for the NgATM ILMI daemon. While writing the commit > message I was thinking about whether or not to include an explanation into > the commit message. We talked about this on the atm mailing list approx. a > year ago. That's pretty narrow distribution, and self-selected for people who think it's a good idea. Kris --5mCyUwZo2JvN/JJP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/r13CWry0BWjoQKURAjbpAKDfe/pymwUy8iLnVOHPotM1UPMqrgCgzWbF a24t1ywuxrzKKszTQYCLzNc= =h4qT -----END PGP SIGNATURE----- --5mCyUwZo2JvN/JJP-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 01:51:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6820E16A4CF; Mon, 10 Nov 2003 01:51:39 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 294E343FA3; Mon, 10 Nov 2003 01:51:37 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAA9pYU29666; Mon, 10 Nov 2003 10:51:34 +0100 (MET) Date: Mon, 10 Nov 2003 10:51:34 +0100 (CET) From: Harti Brandt To: Kris Kennaway In-Reply-To: <20031110094330.GA8458@xor.obsecurity.org> Message-ID: <20031110104611.U29745@beagle.fokus.fraunhofer.de> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hartmut Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 09:51:39 -0000 On Mon, 10 Nov 2003, Kris Kennaway wrote: KK>On Mon, Nov 10, 2003 at 10:37:54AM +0100, Harti Brandt wrote: KK> KK>> KK>What is this? I don't remember it being discussed on the mailing KK>> KK>lists, which is usual before importing new software into FreeBSD. KK>> KK>> That is the base for the NgATM ILMI daemon. While writing the commit KK>> message I was thinking about whether or not to include an explanation into KK>> the commit message. We talked about this on the atm mailing list approx. a KK>> year ago. KK> KK>That's pretty narrow distribution, and self-selected for people who KK>think it's a good idea. Well, discussing ATM issues with folks who don't care about ATM doesn't make much sense though. The best you get is no response at all. If the problem is that it is in contrib - the reason is that although the development platform is FreeBSD this is actually portable code that runs also on Solaris and Linux and has a different build environment for this (gmake and autoconfig). harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Mon Nov 10 02:09:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFBF316A4CE; Mon, 10 Nov 2003 02:09:39 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id D717A43FBD; Mon, 10 Nov 2003 02:09:36 -0800 (PST) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8EBBD66B4C; Mon, 10 Nov 2003 02:09:36 -0800 (PST) Date: Mon, 10 Nov 2003 02:09:36 -0800 From: Kris Kennaway To: Hartmut Brandt Message-ID: <20031110100936.GA8977@xor.obsecurity.org> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PEIAKu/WMn1b1Hv9" Content-Disposition: inline In-Reply-To: <20031110104611.U29745@beagle.fokus.fraunhofer.de> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 10:09:40 -0000 --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 10, 2003 at 10:51:34AM +0100, Harti Brandt wrote: > On Mon, 10 Nov 2003, Kris Kennaway wrote: >=20 > KK>On Mon, Nov 10, 2003 at 10:37:54AM +0100, Harti Brandt wrote: > KK> > KK>> KK>What is this? I don't remember it being discussed on the mailing > KK>> KK>lists, which is usual before importing new software into FreeBSD. > KK>> > KK>> That is the base for the NgATM ILMI daemon. While writing the commit > KK>> message I was thinking about whether or not to include an explanatio= n into > KK>> the commit message. We talked about this on the atm mailing list app= rox. a > KK>> year ago. > KK> > KK>That's pretty narrow distribution, and self-selected for people who > KK>think it's a good idea. >=20 > Well, discussing ATM issues with folks who don't care about ATM doesn't > make much sense though. The best you get is no response at all. If the > problem is that it is in contrib - the reason is that although the > development platform is FreeBSD this is actually portable code that runs > also on Solaris and Linux and has a different build environment for this > (gmake and autoconfig). The problem is that it's code that is useless to 99% of the FreeBSD userbase, so it's unclear whether it belongs in the base system instead of ports. Kris --PEIAKu/WMn1b1Hv9 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/r2PgWry0BWjoQKURAmu1AKC0O+hMMYIavIB3gsQnvuD+ZJSv2QCdFkU8 nFPA+XzgbAWoTllRPDoiAr4= =TLe8 -----END PGP SIGNATURE----- --PEIAKu/WMn1b1Hv9-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 02:24:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A77C16A4CE; Mon, 10 Nov 2003 02:24:55 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE81443FD7; Mon, 10 Nov 2003 02:24:52 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAAAOoU07226; Mon, 10 Nov 2003 11:24:50 +0100 (MET) Date: Mon, 10 Nov 2003 11:24:50 +0100 (CET) From: Harti Brandt To: Kris Kennaway In-Reply-To: <20031110100936.GA8977@xor.obsecurity.org> Message-ID: <20031110111035.G29745@beagle.fokus.fraunhofer.de> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hartmut Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 10:24:55 -0000 On Mon, 10 Nov 2003, Kris Kennaway wrote: KK>On Mon, Nov 10, 2003 at 10:51:34AM +0100, Harti Brandt wrote: KK>> On Mon, 10 Nov 2003, Kris Kennaway wrote: KK>> KK>> KK>On Mon, Nov 10, 2003 at 10:37:54AM +0100, Harti Brandt wrote: KK>> KK> KK>> KK>> KK>What is this? I don't remember it being discussed on the mailing KK>> KK>> KK>lists, which is usual before importing new software into FreeBSD. KK>> KK>> KK>> KK>> That is the base for the NgATM ILMI daemon. While writing the commit KK>> KK>> message I was thinking about whether or not to include an explanation into KK>> KK>> the commit message. We talked about this on the atm mailing list approx. a KK>> KK>> year ago. KK>> KK> KK>> KK>That's pretty narrow distribution, and self-selected for people who KK>> KK>think it's a good idea. KK>> KK>> Well, discussing ATM issues with folks who don't care about ATM doesn't KK>> make much sense though. The best you get is no response at all. If the KK>> problem is that it is in contrib - the reason is that although the KK>> development platform is FreeBSD this is actually portable code that runs KK>> also on Solaris and Linux and has a different build environment for this KK>> (gmake and autoconfig). KK> KK>The problem is that it's code that is useless to 99% of the FreeBSD KK>userbase, so it's unclear whether it belongs in the base system KK>instead of ports. Maintaining code that is in the kernel or near to it is amost impossible. I maintained the code for two years this way. It is simply a nightmare because you have to change your code, make up new distributions on a weekly basis and to answer user you ask why this and that does not patch or not work and to send them individual patches. You'll have to tell them to update to this or that version of the kernel. Most of the code is under NOATM so it shouldn't pose a problem for people who don't need it. Also this is is a mid-term replacement for the otherwise un-maintained HARP code. In contrast to HARP there is also a regression test-suite for the core protocols that run the ATM-Forum/ITU-T test suites (this will be a port) so maintenance will be a lot easier than with current ATM code. I remember a discussion of breaking the base system into packages. Perhaps this would be the right way to maintain this kind of code. I would happily factor out everything ATM related into such a package. harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Mon Nov 10 02:33:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BB2A16A4CF; Mon, 10 Nov 2003 02:33:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 133F643FBD; Mon, 10 Nov 2003 02:33:40 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAAXdXJ002413; Mon, 10 Nov 2003 02:33:39 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAAXdRY002412; Mon, 10 Nov 2003 02:33:39 -0800 (PST) (envelope-from ume) Message-Id: <200311101033.hAAAXdRY002412@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 10 Nov 2003 02:33:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/crypto/rijndael rijndael-alg-fst.crijndael-alg-fst.h rijndael-api-fst.c rijndael-api-fst.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 10:33:40 -0000 ume 2003/11/10 02:33:39 PST FreeBSD src repository Modified files: sys/crypto/rijndael rijndael-alg-fst.c rijndael-alg-fst.h rijndael-api-fst.c rijndael-api-fst.h Log: rijndael-alg-fst.[ch]: - redo updating. rijndael-api-fst.[ch]: - switch to use new low level rijndael api. - stop using u8, u16 and u32. - space cleanup. Tested by: gbde(8) and phk's test program Revision Changes Path 1.7 +1170 -1398 src/sys/crypto/rijndael/rijndael-alg-fst.c 1.5 +31 -25 src/sys/crypto/rijndael/rijndael-alg-fst.h 1.11 +123 -174 src/sys/crypto/rijndael/rijndael-api-fst.c 1.6 +23 -52 src/sys/crypto/rijndael/rijndael-api-fst.h From owner-cvs-src@FreeBSD.ORG Mon Nov 10 02:35:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70CE716A4CE; Mon, 10 Nov 2003 02:35:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB6343FE0; Mon, 10 Nov 2003 02:35:06 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAAZ6XJ002533; Mon, 10 Nov 2003 02:35:06 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAAZ68C002528; Mon, 10 Nov 2003 02:35:06 -0800 (PST) (envelope-from des) Message-Id: <200311101035.hAAAZ68C002528@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Nov 2003 02:35:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man3 tree.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 10:35:07 -0000 des 2003/11/10 02:35:06 PST FreeBSD src repository Modified files: share/man/man3 tree.3 Log: RB_EMPTY() applies to red-black trees, not splay trees. Revision Changes Path 1.3 +1 -1 src/share/man/man3/tree.3 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 02:39:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D73DE16A4CE; Mon, 10 Nov 2003 02:39:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 492DF43FD7; Mon, 10 Nov 2003 02:39:15 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAAdFXJ002816; Mon, 10 Nov 2003 02:39:15 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAAdEtQ002815; Mon, 10 Nov 2003 02:39:15 -0800 (PST) (envelope-from ume) Message-Id: <200311101039.hAAAdEtQ002815@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 10 Nov 2003 02:39:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/netinet6 ah_core.c esp_core.c esp_rijndael.h src/usr.sbin/setkey setkey.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 10:39:16 -0000 ume 2003/11/10 02:39:14 PST FreeBSD src repository Modified files: sys/conf files sys/netinet6 ah_core.c esp_core.c esp_rijndael.h usr.sbin/setkey setkey.8 Log: enable aes-xcbc-mac and aes-ctr, again. Revision Changes Path 1.846 +3 -3 src/sys/conf/files 1.21 +0 -4 src/sys/netinet6/ah_core.c 1.20 +0 -4 src/sys/netinet6/esp_core.c 1.3 +1 -1 src/sys/netinet6/esp_rijndael.h 1.29 +3 -3 src/usr.sbin/setkey/setkey.8 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 03:42:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B45F916A4CE; Mon, 10 Nov 2003 03:42:45 -0800 (PST) Received: from peedub.jennejohn.org (p213.54.218.201.tisdip.tiscali.de [213.54.218.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67E6243FDF; Mon, 10 Nov 2003 03:42:43 -0800 (PST) (envelope-from garyj@jennejohn.org) Received: from peedub.jennejohn.org (localhost [127.0.0.1]) by peedub.jennejohn.org (8.12.10/8.11.6) with ESMTP id hAABgdGg016357; Mon, 10 Nov 2003 12:42:40 +0100 (CET) (envelope-from garyj@peedub.jennejohn.org) Message-Id: <200311101142.hAABgdGg016357@peedub.jennejohn.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: John Baldwin In-Reply-To: Message from John Baldwin Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 10 Nov 2003 12:42:39 +0100 From: Gary Jennejohn cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Seigo Tanimura Subject: Re: cvs commit: src/sys/cam/scsi scsi_target.c src/sys/coda coda_psdev.c src/sys/dev/aac aac.c src/sys/dev/bktr bktr_core.c src/sys/dev/firewire firewire.c src/sys/dev/kbd kbd.c src/sys/dev/nmdm nmdm.c src/sys/dev/random randomdev.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 11:42:45 -0000 John Baldwin writes: > > On 09-Nov-2003 Seigo Tanimura wrote: > > tanimura 2003/11/09 01:17:26 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/cam/scsi scsi_target.c > > sys/coda coda_psdev.c > > sys/dev/aac aac.c > > sys/dev/bktr bktr_core.c > > sys/dev/firewire firewire.c > > sys/dev/kbd kbd.c > > sys/dev/nmdm nmdm.c > > sys/dev/random randomdev.c > > sys/dev/sab sab.c > > sys/dev/snp snp.c > > sys/dev/sound/midi midibuf.c > > sys/dev/sound/pcm channel.c > > sys/dev/usb ucom.c ugen.c uhid.c ums.c usb.c > > sys/dev/zs zs.c > > sys/i386/bios apm.c > > sys/i386/isa asc.c cx.c istallion.c mse.c spic.c > > stallion.c > > sys/i4b/driver i4b_rbch.c i4b_tel.c > > sys/i4b/layer4 i4b_i4bdrv.c > > sys/isa psm.c > > sys/kern kern_condvar.c kern_event.c subr_log.c > > sys_generic.c sys_pipe.c tty.c tty_pty.c > > uipc_socket.c uipc_socket2.c vfs_subr.c > > sys/net bpf.c if_tap.c if_tun.c > > sys/pc98/pc98 mse.c > > sys/pccard mecia.c pccard.c pcic.c > > sys/sys condvar.h selinfo.h > > Log: > > - Implement selwakeuppri() which allows raising the priority of a > > thread being waken up. The thread waken up can run at a priority as > > high as after tsleep(). > > > > - Replace selwakeup()s with selwakeuppri()s and pass appropriate > > priorities. > > > > - Add cv_broadcastpri() which raises the priority of the broadcast > > threads. Used by selwakeuppri() if collision occurs. > > > > Not objected in: -arch, -current > > Sorry I didn't speak up on arch@, just too busy. But, why do you need > to bump up the priority of the thread you are waking up? > Not to mention that this commit breaks building the i4b stuff because TTIPRI is defined in which is not (and should not be) included by i4b. I have a patch to fix the breakage. --- Gary Jennejohn / garyj[at]jennejohn.org gj[at]freebsd.org gj[at]denx.de From owner-cvs-src@FreeBSD.ORG Mon Nov 10 04:45:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 711FC16A4CE; Mon, 10 Nov 2003 04:45:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2DA643FAF; Mon, 10 Nov 2003 04:45:10 -0800 (PST) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAACjAXJ010630; Mon, 10 Nov 2003 04:45:10 -0800 (PST) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAACjAvj010629; Mon, 10 Nov 2003 04:45:10 -0800 (PST) (envelope-from hmp) Message-Id: <200311101245.hAACjAvj010629@repoman.freebsd.org> From: Hiten Pandya Date: Mon, 10 Nov 2003 04:45:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 12:45:11 -0000 hmp 2003/11/10 04:45:10 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 Makefile Log: Mdoc Janitor: * Add MLINKS for: -> Soundblaster emu10k1(4) Driver [points to pcm(4)] -> Avance Logic ALS400 Driver [points to pcm(4)] We should not need separate manual page for each of these drivers; instead, linking them to pcm(4) manual page is simpler, and new device lists can be easily added to the said manual page. * While I am here, sort out mdoc(7) entries in ${MAN}. Revision Changes Path 1.236 +8 -6 src/share/man/man4/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 04:54:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 836C116A4CE; Mon, 10 Nov 2003 04:54:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00AAA43FBD; Mon, 10 Nov 2003 04:54:55 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAACssXJ016643; Mon, 10 Nov 2003 04:54:54 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAACsshi016642; Mon, 10 Nov 2003 04:54:54 -0800 (PST) (envelope-from ru) Message-Id: <200311101254.hAACsshi016642@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 10 Nov 2003 04:54:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/netgraph/etf Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 12:54:55 -0000 ru 2003/11/10 04:54:54 PST FreeBSD src repository Modified files: sys/modules/netgraph/etf Makefile Log: Don't compile with -g by default; there's a better way to build modules with debug support. Revision Changes Path 1.3 +0 -2 src/sys/modules/netgraph/etf/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 04:56:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBE3316A4CE; Mon, 10 Nov 2003 04:56:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 577F843FCB; Mon, 10 Nov 2003 04:56:23 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAACuNXJ016776; Mon, 10 Nov 2003 04:56:23 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAACuN60016775; Mon, 10 Nov 2003 04:56:23 -0800 (PST) (envelope-from ru) Message-Id: <200311101256.hAACuN60016775@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 10 Nov 2003 04:56:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/modules/netgraph/etf Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 12:56:24 -0000 ru 2003/11/10 04:56:23 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/modules/netgraph/etf Makefile Log: Added the missing KMODDEPS, MFC the removal of -g. Revision Changes Path 1.2.2.2 +3 -4 src/sys/modules/netgraph/etf/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 05:30:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBC4816A4CE; Mon, 10 Nov 2003 05:30:13 -0800 (PST) Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C71643FCB; Mon, 10 Nov 2003 05:30:12 -0800 (PST) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by white.imgsrc.co.jp (Postfix) with ESMTP id 2560C284080; Mon, 10 Nov 2003 22:30:11 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id 1DDE828402D; Mon, 10 Nov 2003 22:30:10 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by black.imgsrc.co.jp (Postfix) with ESMTP id D6F511E4901; Mon, 10 Nov 2003 22:30:09 +0900 (JST) Date: Mon, 10 Nov 2003 22:30:09 +0900 Message-ID: <7mptg0tkpq.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Hartmut Brandt In-Reply-To: <200311100917.hAA9HYsg097794@repoman.freebsd.org> References: <200311100917.hAA9HYsg097794@repoman.freebsd.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020531 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile genfiles mibII_oid.h mibII_tree.c mibII_tree.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 13:30:13 -0000 At Mon, 10 Nov 2003 01:17:34 -0800 (PST), Hartmut Brandt wrote: > Added files: > lib/libbsnmp Makefile Makefile.inc > lib/libbsnmp/libbsnmp Makefile > lib/libbsnmp/modules Makefile Makefile.inc > lib/libbsnmp/modules/snmp_mibII Makefile genfiles mibII_oid.h > mibII_tree.c mibII_tree.h ... > Log: > Add build infrastructure for libbsnmp and the modules. Add the > netgraph module for the SNMP daemon. Is this my pilot error? (on 5.1-RELEASE) ===> lib/libbsnmp/modules ===> lib/libbsnmp/modules/snmp_mibII rm -f .depend mkdep -f .depend -a -I/usr/include/bsnmp -I/usr/src/lib/libbsnmp/modules/snmp_mibII /usr/src/lib/libbsnmp/modules/snmp_mibII/mibII_tree.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_ifmib.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_ip.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_interfaces.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_ipaddr.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_ifstack.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_rcvaddr.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_nettomedia.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_tcp.c /usr/src/lib/lib bsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_udp.c /usr/src/lib/libbsnmp/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_route.c /usr/src/lib/libbsnmp/modules/snmp_mibII/mibII_tree.c:5:18: asn1.h: No such file or directory /usr/src/lib/libbsnmp/modules/snmp_mibII/mibII_tree.c:6:18: snmp.h: No such file or directory /usr/src/lib/libbsnmp/modules/snmp_mibII/mibII_tree.c:7:23: snmpagent.h: No such file or directory -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-src@FreeBSD.ORG Mon Nov 10 05:37:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51AC816A4CE; Mon, 10 Nov 2003 05:37:06 -0800 (PST) Received: from sohgo.tanimura.dyndns.org (IP1A0600.kng.mesh.ad.jp [211.13.103.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEC3643FD7; Mon, 10 Nov 2003 05:37:02 -0800 (PST) (envelope-from tanimura@tanimura.dyndns.org) Received: from sohgo.tanimura.dyndns.org (localhost [IPv6:::1]) ESMTP id hAADavd0032751 ; Mon, 10 Nov 2003 22:36:57 +0900 (JST) Received: (from uucp@localhost) (8.12.9/3.7W-submit-carrots-Tokyu-Meguro) with UUCP id hAADauPs032747 ; Mon, 10 Nov 2003 22:36:56 +0900 (JST) Received: from urban.nkth.tanimura.dyndns.org (localhost [IPv6:::1]) with ESMTP id hAACH9FZ001752 ; Mon, 10 Nov 2003 21:17:10 +0900 (JST) Message-Id: <200311101217.hAACH9FZ001752@urban> Date: Mon, 10 Nov 2003 21:17:09 +0900 From: Seigo Tanimura To: Bruce Evans In-Reply-To: <20031110180540.P2148@gamplex.bde.org> References: <20031110180540.P2148@gamplex.bde.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 MULE XEmacs/21.4 (patch 13) (Rational FORTRAN) (i386--freebsd) Organization: My Home MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Seigo Tanimura cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Baldwin Subject: Re: cvs commit: src/sys/cam/scsi scsi_target.c src/sys/coda coda_psdev.c src/sys/dev/aac aac.c src/sys/dev/bktr bktr_core.c src/sys/dev/firewire firewire.c src/sys/dev/kbd kbd.c src/sys/dev/nmdm nmdm. X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 13:37:06 -0000 X-List-Received-Date: Mon, 10 Nov 2003 13:37:06 -0000 On Mon, 10 Nov 2003 18:14:14 +1100 (EST), Bruce Evans said: bde> On Sun, 9 Nov 2003, John Baldwin wrote: >> On 09-Nov-2003 Seigo Tanimura wrote: >> > tanimura 2003/11/09 01:17:26 PST >> > >> > FreeBSD src repository >> > >> > Modified files: >> > sys/cam/scsi scsi_target.c >> > sys/coda coda_psdev.c >> > ... >> > Log: >> > - Implement selwakeuppri() which allows raising the priority of a >> > thread being waken up. The thread waken up can run at a priority as >> > high as after tsleep(). >> > >> > - Replace selwakeup()s with selwakeuppri()s and pass appropriate >> > priorities. >> > >> > - Add cv_broadcastpri() which raises the priority of the broadcast >> > threads. Used by selwakeuppri() if collision occurs. >> > >> > Not objected in: -arch, -current >> >> Sorry I didn't speak up on arch@, just too busy. But, why do you need >> to bump up the priority of the thread you are waking up? bde> I left the reply to someone else :-). bde> The priority may need to be bumped because the thread is a user thread that bde> is sleeping at a low user priority. As I understand this change, the bde> thread priority may be low for cases that don't use tsleep() so they can't bde> set the thread priority using that. So this changes is needed to get the bde> same behaviour as using tsleep(). However, I think that behaviour is not bde> quite right -- if the thread is a user thread then it waking it up is only bde> urgent if it needs to do some urgent things in kernel mode on wakeup. It bde> should not return to user mode until its user priority permits its bde> scheduling. However2, we still have the bugfeature that user threads keep bde> the kernel priority that they wake up at all the way back to user mode, bde> and this may be necessary for interactivity. I could implement priority bumping in selwakeuppri(), but I thought it would be troublesome to tweak struct cv outside kern_condvar.c. In case of select(2) et. al., selecting threads waken up repolls file descriptors. As it is a in-kernel work, those threads should remain at in-kernel priorities until polling succeeds, aren't they? -- Seigo Tanimura From owner-cvs-src@FreeBSD.ORG Mon Nov 10 05:37:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEC4516A4D2; Mon, 10 Nov 2003 05:37:38 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C07E43FA3; Mon, 10 Nov 2003 05:37:34 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAADbRU18455; Mon, 10 Nov 2003 14:37:27 +0100 (MET) Date: Mon, 10 Nov 2003 14:37:27 +0100 (CET) From: Harti Brandt To: Jun Kuriyama In-Reply-To: <7mptg0tkpq.wl@black.imgsrc.co.jp> Message-ID: <20031110143627.T29745@beagle.fokus.fraunhofer.de> References: <200311100917.hAA9HYsg097794@repoman.freebsd.org> <7mptg0tkpq.wl@black.imgsrc.co.jp> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hartmut Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 13:37:41 -0000 On Mon, 10 Nov 2003, Jun Kuriyama wrote: JK>At Mon, 10 Nov 2003 01:17:34 -0800 (PST), JK>Hartmut Brandt wrote: JK>> Added files: JK>> lib/libbsnmp Makefile Makefile.inc JK>> lib/libbsnmp/libbsnmp Makefile JK>> lib/libbsnmp/modules Makefile Makefile.inc [snip] JK>Is this my pilot error? (on 5.1-RELEASE) No, mine. Although the universe made it just fine, the tinderbox breaks. I'm just testing a fix. harti From owner-cvs-src@FreeBSD.ORG Mon Nov 10 05:43:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7FE916A4CE; Mon, 10 Nov 2003 05:43:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DF2D43F93; Mon, 10 Nov 2003 05:43:27 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAADhQXJ019718; Mon, 10 Nov 2003 05:43:26 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAADhQDh019717; Mon, 10 Nov 2003 05:43:26 -0800 (PST) (envelope-from harti) Message-Id: <200311101343.hAADhQDh019717@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 05:43:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules/snmp_mibII Makefile src/lib/libbsnmp/modules/snmp_netgraph Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 13:43:27 -0000 harti 2003/11/10 05:43:26 PST FreeBSD src repository Modified files: lib/libbsnmp/modules/snmp_mibII Makefile lib/libbsnmp/modules/snmp_netgraph Makefile Log: Fix the build by adjusting the include directives. The problem was that the sources use "..." includes to get at include files that later on reside in an include sub-directory. Revision Changes Path 1.2 +3 -3 src/lib/libbsnmp/modules/snmp_mibII/Makefile 1.2 +3 -1 src/lib/libbsnmp/modules/snmp_netgraph/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 05:59:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 816D716A4CE; Mon, 10 Nov 2003 05:59:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3B1443FB1; Mon, 10 Nov 2003 05:59:54 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAADxsXJ020414; Mon, 10 Nov 2003 05:59:54 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAADxsTo020413; Mon, 10 Nov 2003 05:59:54 -0800 (PST) (envelope-from ru) Message-Id: <200311101359.hAADxsTo020413@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 10 Nov 2003 05:59:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/modules/netgraph/eiface Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 13:59:55 -0000 ru 2003/11/10 05:59:54 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/modules/netgraph/eiface Makefile Log: Added missing module dependency. Revision Changes Path 1.2.2.2 +3 -2 src/sys/modules/netgraph/eiface/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 06:01:20 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 166DF16A4CE; Mon, 10 Nov 2003 06:01:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 884DA43FE1; Mon, 10 Nov 2003 06:01:19 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAE1JXJ020606; Mon, 10 Nov 2003 06:01:19 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAE1ItJ020605; Mon, 10 Nov 2003 06:01:18 -0800 (PST) (envelope-from ru) Message-Id: <200311101401.hAAE1ItJ020605@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 10 Nov 2003 06:01:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/modules/netgraph Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 14:01:20 -0000 ru 2003/11/10 06:01:18 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/modules/netgraph Makefile Log: Attach ng_eiface(4) module to the build. Revision Changes Path 1.8.2.9 +1 -0 src/sys/modules/netgraph/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 06:02:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE2AD16A4CE; Mon, 10 Nov 2003 06:02:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22A6743F93; Mon, 10 Nov 2003 06:02:23 -0800 (PST) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAE2MXJ020670; Mon, 10 Nov 2003 06:02:22 -0800 (PST) (envelope-from gj@repoman.freebsd.org) Received: (from gj@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAE2Mt8020669; Mon, 10 Nov 2003 06:02:22 -0800 (PST) (envelope-from gj) Message-Id: <200311101402.hAAE2Mt8020669@repoman.freebsd.org> From: Gary Jennejohn Date: Mon, 10 Nov 2003 06:02:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i4b/driver i4b_rbch.c i4b_tel.c i4b_trace.c src/sys/i4b/layer4 i4b_i4bdrv.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 14:02:23 -0000 gj 2003/11/10 06:02:22 PST FreeBSD src repository Modified files: sys/i4b/driver i4b_rbch.c i4b_tel.c i4b_trace.c sys/i4b/layer4 i4b_i4bdrv.c Log: Fix breakage cuased by the selwakeuppri commit by defining TTIPRI for recent versions of FreeBSD (based on __FreeBSD_version check). Revision Changes Path 1.29 +7 -0 src/sys/i4b/driver/i4b_rbch.c 1.30 +7 -0 src/sys/i4b/driver/i4b_tel.c 1.26 +7 -0 src/sys/i4b/driver/i4b_trace.c 1.37 +7 -0 src/sys/i4b/layer4/i4b_i4bdrv.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 06:04:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EE9816A4CE; Mon, 10 Nov 2003 06:04:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 895D543FE0; Mon, 10 Nov 2003 06:04:35 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAE4ZXJ021609; Mon, 10 Nov 2003 06:04:35 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAE4Y4J021608; Mon, 10 Nov 2003 06:04:34 -0800 (PST) (envelope-from harti) Message-Id: <200311101404.hAAE4Y4J021608@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 10 Nov 2003 06:04:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bsnmpd/bsnmpd Makefile src/usr.sbin/bsnmpd/gensnmptree Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 14:04:36 -0000 X-List-Received-Date: Mon, 10 Nov 2003 14:04:36 -0000 harti 2003/11/10 06:04:34 PST FreeBSD src repository Modified files: usr.sbin/bsnmpd/bsnmpd Makefile usr.sbin/bsnmpd/gensnmptree Makefile Log: Correct the include path so that the include files are found with include "...". Revision Changes Path 1.2 +4 -2 src/usr.sbin/bsnmpd/bsnmpd/Makefile 1.2 +3 -3 src/usr.sbin/bsnmpd/gensnmptree/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 06:04:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCFA916A4CF; Mon, 10 Nov 2003 06:04:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A55F43F75; Mon, 10 Nov 2003 06:04:38 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAE4cXJ021636; Mon, 10 Nov 2003 06:04:38 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAE4b2A021635; Mon, 10 Nov 2003 06:04:37 -0800 (PST) (envelope-from simokawa) Message-Id: <200311101404.hAAE4b2A021635@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Mon, 10 Nov 2003 06:04:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire sbp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 14:04:39 -0000 simokawa 2003/11/10 06:04:37 PST FreeBSD src repository Modified files: sys/dev/firewire sbp.c Log: Reduce debug message. Revision Changes Path 1.68 +2 -0 src/sys/dev/firewire/sbp.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 06:20:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2DF716A4CF; Mon, 10 Nov 2003 06:20:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA8B843FD7; Mon, 10 Nov 2003 06:20:34 -0800 (PST) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAEKYXJ022498; Mon, 10 Nov 2003 06:20:34 -0800 (PST) (envelope-from gj@repoman.freebsd.org) Received: (from gj@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAEKYXj022496; Mon, 10 Nov 2003 06:20:34 -0800 (PST) (envelope-from gj) Message-Id: <200311101420.hAAEKYXj022496@repoman.freebsd.org> From: Gary Jennejohn Date: Mon, 10 Nov 2003 06:20:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i4b/driver i4b_rbch.c i4b_tel.c i4b_trace.c src/sys/i4b/include i4b_global.h src/sys/i4b/layer4 i4b_i4bdrv.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 14:20:35 -0000 gj 2003/11/10 06:20:34 PST FreeBSD src repository Modified files: sys/i4b/driver i4b_rbch.c i4b_tel.c i4b_trace.c sys/i4b/include i4b_global.h sys/i4b/layer4 i4b_i4bdrv.c Log: Based on an excellent suggestion from tanimura@ define I4BPRI and use it in place of TTIPRI. Revision Changes Path 1.30 +7 -14 src/sys/i4b/driver/i4b_rbch.c 1.31 +9 -16 src/sys/i4b/driver/i4b_tel.c 1.27 +1 -8 src/sys/i4b/driver/i4b_trace.c 1.11 +3 -0 src/sys/i4b/include/i4b_global.h 1.38 +2 -9 src/sys/i4b/layer4/i4b_i4bdrv.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 06:28:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 790D616A4CE; Mon, 10 Nov 2003 06:28:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBA4643F3F; Mon, 10 Nov 2003 06:28:33 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAESXXJ022785; Mon, 10 Nov 2003 06:28:33 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAESXuO022784; Mon, 10 Nov 2003 06:28:33 -0800 (PST) (envelope-from brueffer) Message-Id: <200311101428.hAAESXuO022784@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Nov 2003 06:28:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/route route.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 14:28:34 -0000 brueffer 2003/11/10 06:28:33 PST FreeBSD src repository (doc committer) Modified files: sbin/route route.8 Log: Add a describtion for the '-d' flag While I'm here, add a missing comma PR: 41787 Obtained from: OpenBSD MFC after: 5 days Revision Changes Path 1.35 +3 -1 src/sbin/route/route.8 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 06:32:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A01A16A4CE; Mon, 10 Nov 2003 06:32:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60AD443FF2; Mon, 10 Nov 2003 06:32:14 -0800 (PST) (envelope-from fanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAEWEXJ023026; Mon, 10 Nov 2003 06:32:14 -0800 (PST) (envelope-from fanf@repoman.freebsd.org) Received: (from fanf@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAEWE72023025; Mon, 10 Nov 2003 06:32:14 -0800 (PST) (envelope-from fanf) Message-Id: <200311101432.hAAEWE72023025@repoman.freebsd.org> From: Tony Finch Date: Mon, 10 Nov 2003 06:32:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 style.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 14:32:15 -0000 fanf 2003/11/10 06:32:14 PST FreeBSD src repository Modified files: share/man/man9 style.9 Log: Clarify the rule about structure typedefs being discouraged, following a discussion on src-committers. Revision Changes Path 1.104 +12 -3 src/share/man/man9/style.9 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 07:48:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A89C616A4CE; Mon, 10 Nov 2003 07:48:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28C7C43F93; Mon, 10 Nov 2003 07:48:31 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAFmUXJ028002; Mon, 10 Nov 2003 07:48:30 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAFmUvG028001; Mon, 10 Nov 2003 07:48:30 -0800 (PST) (envelope-from jhb) Message-Id: <200311101548.hAAFmUvG028001@repoman.freebsd.org> From: John Baldwin Date: Mon, 10 Nov 2003 07:48:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 initcpu.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 15:48:31 -0000 jhb 2003/11/10 07:48:30 PST FreeBSD src repository Modified files: sys/i386/i386 initcpu.c Log: Update a comment. Requested by: bde Revision Changes Path 1.49 +1 -1 src/sys/i386/i386/initcpu.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 07:54:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91F0016A4CE; Mon, 10 Nov 2003 07:54:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E75943FD7; Mon, 10 Nov 2003 07:54:35 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAFsYXJ028341; Mon, 10 Nov 2003 07:54:34 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAFsXJ4028340; Mon, 10 Nov 2003 07:54:33 -0800 (PST) (envelope-from jhb) Message-Id: <200311101554.hAAFsXJ4028340@repoman.freebsd.org> From: John Baldwin Date: Mon, 10 Nov 2003 07:54:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 15:54:35 -0000 jhb 2003/11/10 07:54:33 PST FreeBSD src repository Modified files: sys/i386/conf NOTES Log: Update a comment related to SMP and describe the NO_MIXED_MODE kernel option. Requested by: bde Revision Changes Path 1.1102 +11 -4 src/sys/i386/conf/NOTES From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:04:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB0B016A4CE; Mon, 10 Nov 2003 08:04:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25B2743FDF; Mon, 10 Nov 2003 08:04:13 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAG4CXJ029650; Mon, 10 Nov 2003 08:04:12 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAG4CQU029646; Mon, 10 Nov 2003 08:04:12 -0800 (PST) (envelope-from imp) Message-Id: <200311101604.hAAG4CQU029646@repoman.freebsd.org> From: Warner Losh Date: Mon, 10 Nov 2003 08:04:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sn if_sn.c if_sn_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 16:04:13 -0000 imp 2003/11/10 08:04:11 PST FreeBSD src repository Modified files: sys/dev/sn if_sn.c if_sn_isa.c Log: Don't establish the ISR in the sn_activate routine. I've had two crashes that had sn0 as the irq that's being serviced, when there was no sn0 in the system. This seems to prevent them. Also, we want to wait until after we've registered with the network layer before we turn on the interrupt spigot to avoid races. Revision Changes Path 1.31 +11 -7 src/sys/dev/sn/if_sn.c 1.12 +0 -5 src/sys/dev/sn/if_sn_isa.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:04:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0657E16A4CE; Mon, 10 Nov 2003 08:04:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56E0043FDF; Mon, 10 Nov 2003 08:04:49 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAG4nXJ029754; Mon, 10 Nov 2003 08:04:49 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAG4m9h029753; Mon, 10 Nov 2003 08:04:48 -0800 (PST) (envelope-from brueffer) Message-Id: <200311101604.hAAG4m9h029753@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Nov 2003 08:04:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man5 rc.conf.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 16:04:50 -0000 brueffer 2003/11/10 08:04:48 PST FreeBSD src repository (doc committer) Modified files: share/man/man5 rc.conf.5 Log: Add a missing 'the' Revision Changes Path 1.202 +1 -1 src/share/man/man5/rc.conf.5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:22:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2023A16A4CE; Mon, 10 Nov 2003 08:22:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8538443FCB; Mon, 10 Nov 2003 08:22:33 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAGMXXJ030682; Mon, 10 Nov 2003 08:22:33 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAGMXVC030681; Mon, 10 Nov 2003 08:22:33 -0800 (PST) (envelope-from brueffer) Message-Id: <200311101622.hAAGMXVC030681@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Nov 2003 08:22:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man5 rc.conf.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 16:22:34 -0000 brueffer 2003/11/10 08:22:33 PST FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man5 rc.conf.5 Log: MFC: Document usbd_enable and usbd_flags PR: 57118 Reported by: Chris Pepper Revision Changes Path 1.64.2.53 +16 -0 src/share/man/man5/rc.conf.5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:27:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2C3516A4CE; Mon, 10 Nov 2003 08:27:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B63943FAF; Mon, 10 Nov 2003 08:27:54 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAGRsXJ030891; Mon, 10 Nov 2003 08:27:54 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAGRs7w030890; Mon, 10 Nov 2003 08:27:54 -0800 (PST) (envelope-from bmah) Message-Id: <200311101627.hAAGRs7w030890@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 10 Nov 2003 08:27:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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.1 Precedence: 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, 10 Nov 2003 16:27:55 -0000 bmah 2003/11/10 08:27:54 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFCs noted: sendmail-8.12.10, tzdata2003d. Revision Changes Path 1.650 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:39:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A85E16A4CE; Mon, 10 Nov 2003 08:39:48 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E2C443FE1; Mon, 10 Nov 2003 08:39:45 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id hAAGdgfY074746; Mon, 10 Nov 2003 08:39:42 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.10/8.12.9/Submit) id hAAGdgPp074745; Mon, 10 Nov 2003 08:39:42 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Nov 2003 08:39:41 -0800 From: "David O'Brien" To: Hartmut Brandt Message-ID: <20031110163941.GA74723@dragon.nuxi.com> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> <20031110111035.G29745@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031110111035.G29745@beagle.fokus.fraunhofer.de> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: developers@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 16:39:48 -0000 On Mon, Nov 10, 2003 at 11:24:50AM +0100, Harti Brandt wrote: > KK>The problem is that it's code that is useless to 99% of the FreeBSD > KK>userbase, so it's unclear whether it belongs in the base system > KK>instead of ports. ... > Most of the code is under NOATM so it shouldn't pose a problem for > people who don't need it. Committers can't run with NOATM as they could too-easily break the build by not testing a full 'make world'. > Also this is is a mid-term replacement for the otherwise un-maintained > HARP code. Are there plans to HARP 'cvs rm'ed? From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:42:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A51EC16A4CE; Mon, 10 Nov 2003 08:42:03 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E1A343FE0; Mon, 10 Nov 2003 08:42:02 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id hAAGg0fY074808; Mon, 10 Nov 2003 08:42:00 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.10/8.12.9/Submit) id hAAGfwIo074807; Mon, 10 Nov 2003 08:41:58 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Nov 2003 08:41:58 -0800 From: "David O'Brien" To: Hartmut Brandt Message-ID: <20031110164158.GB74723@dragon.nuxi.com> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031110104611.U29745@beagle.fokus.fraunhofer.de> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: developers@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 16:42:03 -0000 On Mon, Nov 10, 2003 at 10:51:34AM +0100, Harti Brandt wrote: > KK>That's pretty narrow distribution, and self-selected for people who > KK>think it's a good idea. > > Well, discussing ATM issues with folks who don't care about ATM doesn't > make much sense though. Open season on a pdksh import! :-) I know lots of ksh users that will support its import, and I've been wanting it in the base system for a long time too. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:47:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E65D16A4CE; Mon, 10 Nov 2003 08:47:41 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1011743FA3; Mon, 10 Nov 2003 08:47:39 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.9p2/8.12.9) with ESMTP id hAAGjsMg058260; Mon, 10 Nov 2003 11:45:54 -0500 (EST) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)hAAGjs8i058257; Mon, 10 Nov 2003 11:45:54 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 10 Nov 2003 11:45:54 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: developers@FreeBSD.org In-Reply-To: <20031110164158.GB74723@dragon.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Hartmut Brandt cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 16:47:41 -0000 On Mon, 10 Nov 2003, David O'Brien wrote: > On Mon, Nov 10, 2003 at 10:51:34AM +0100, Harti Brandt wrote: > > KK>That's pretty narrow distribution, and self-selected for people who > > KK>think it's a good idea. > > > > Well, discussing ATM issues with folks who don't care about ATM doesn't > > make much sense though. > > Open season on a pdksh import! :-) I know lots of ksh users that will > support its import, and I've been wanting it in the base system for a > long time too. A lot like lukemftpd, eh? :-) Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:54:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99B6916A4CE; Mon, 10 Nov 2003 08:54:04 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCDA443F3F; Mon, 10 Nov 2003 08:54:00 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id hAAGrxfY074914; Mon, 10 Nov 2003 08:53:59 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.10/8.12.9/Submit) id hAAGrxNd074913; Mon, 10 Nov 2003 08:53:59 -0800 (PST) (envelope-from obrien) Date: Mon, 10 Nov 2003 08:53:59 -0800 From: "David O'Brien" To: Robert Watson Message-ID: <20031110165358.GC74723@dragon.nuxi.com> Mail-Followup-To: David O'Brien , Robert Watson , developers@FreeBSD.org, Hartmut Brandt , Kris Kennaway , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <20031110164158.GB74723@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: src-committers@FreeBSD.org cc: Hartmut Brandt cc: developers@FreeBSD.org cc: Kris Kennaway cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 16:54:04 -0000 On Mon, Nov 10, 2003 at 11:45:54AM -0500, Robert Watson wrote: > > On Mon, 10 Nov 2003, David O'Brien wrote: > > > On Mon, Nov 10, 2003 at 10:51:34AM +0100, Harti Brandt wrote: > > > KK>That's pretty narrow distribution, and self-selected for people who > > > KK>think it's a good idea. > > > > > > Well, discussing ATM issues with folks who don't care about ATM doesn't > > > make much sense though. > > > > Open season on a pdksh import! :-) I know lots of ksh users that will > > support its import, and I've been wanting it in the base system for a > > long time too. > > A lot like lukemftpd, eh? :-) I get a lot of email about it. As soon as a new feature is added by LukeM poeople want ot know when I'll do the next import, etc... People still want to know when it will become the default ftpd. Maybe I should add a procmail filter to CC you on all lukemftpd related emails. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:55:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A32F16A4D1; Mon, 10 Nov 2003 08:55:26 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD0B443FB1; Mon, 10 Nov 2003 08:55:23 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAAGtMU03420; Mon, 10 Nov 2003 17:55:22 +0100 (MET) Date: Mon, 10 Nov 2003 17:55:22 +0100 (CET) From: Harti Brandt To: developers@FreeBSD.org In-Reply-To: <20031110163941.GA74723@dragon.nuxi.com> Message-ID: <20031110174537.U53715@beagle.fokus.fraunhofer.de> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hartmut Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 16:55:26 -0000 On Mon, 10 Nov 2003, David O'Brien wrote: DO>On Mon, Nov 10, 2003 at 11:24:50AM +0100, Harti Brandt wrote: DO>> KK>The problem is that it's code that is useless to 99% of the FreeBSD DO>> KK>userbase, so it's unclear whether it belongs in the base system DO>> KK>instead of ports. DO>... DO>> Most of the code is under NOATM so it shouldn't pose a problem for DO>> people who don't need it. DO> DO>Committers can't run with NOATM as they could too-easily break the build DO>by not testing a full 'make world'. Sure. But committers are a sub-set of current users. DO> DO>> Also this is is a mid-term replacement for the otherwise un-maintained DO>> HARP code. DO> DO>Are there plans to HARP 'cvs rm'ed? The official HARP isn't maintained anymore. Our HARP is maintained very weakly. It was broken for longer amounts of time because no committer had the interest/equipment/knowledge to work on it. People were forced to stick with -stable or got Linux. I'm also not sure HARP will be 64-bit ready beyound just beeing compilable. There are a lot of fragile places in HARP with regard to mbuf handling, and so on... I think we can remove HARP mid-term (for 6.0) given this state. NgATM will soon support everything what HARP does plus ABR, plus LAN emulation support, remove configuration and a large testsuite for the protocols. It is actively maintained. harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Mon Nov 10 08:57:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB49416A4CE; Mon, 10 Nov 2003 08:57:00 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D8E143FD7; Mon, 10 Nov 2003 08:56:58 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAAGuvU03661; Mon, 10 Nov 2003 17:56:57 +0100 (MET) Date: Mon, 10 Nov 2003 17:56:57 +0100 (CET) From: Harti Brandt To: developers@FreeBSD.org In-Reply-To: <20031110164158.GB74723@dragon.nuxi.com> Message-ID: <20031110175554.R53715@beagle.fokus.fraunhofer.de> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110164158.GB74723@dragon.nuxi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hartmut Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 16:57:00 -0000 On Mon, 10 Nov 2003, David O'Brien wrote: DO>On Mon, Nov 10, 2003 at 10:51:34AM +0100, Harti Brandt wrote: DO>> KK>That's pretty narrow distribution, and self-selected for people who DO>> KK>think it's a good idea. DO>> DO>> Well, discussing ATM issues with folks who don't care about ATM doesn't DO>> make much sense though. DO> DO>Open season on a pdksh import! :-) I know lots of ksh users that will DO>support its import, and I've been wanting it in the base system for a DO>long time too. Well, ATM isn't exactly something like a shell... harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Mon Nov 10 09:04:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E537716A4CE; Mon, 10 Nov 2003 09:04:07 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E19B43F75; Mon, 10 Nov 2003 09:04:05 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id EAA12161; Tue, 11 Nov 2003 04:04:03 +1100 Date: Tue, 11 Nov 2003 04:03:51 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: John Baldwin In-Reply-To: <200311101554.hAAFsXJ4028340@repoman.freebsd.org> Message-ID: <20031111040339.Y717@gamplex.bde.org> References: <200311101554.hAAFsXJ4028340@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 17:04:08 -0000 On Mon, 10 Nov 2003, John Baldwin wrote: > jhb 2003/11/10 07:54:33 PST > > FreeBSD src repository > > Modified files: > sys/i386/conf NOTES > Log: > Update a comment related to SMP and describe the NO_MIXED_MODE kernel > option. > > Requested by: bde Thanks. Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 09:16:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4998516A4CE; Mon, 10 Nov 2003 09:16:51 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id A281143FA3; Mon, 10 Nov 2003 09:16:39 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id EAA13045; Tue, 11 Nov 2003 04:16:18 +1100 Date: Tue, 11 Nov 2003 04:16:15 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Seigo Tanimura In-Reply-To: <200311101217.hAACH9FZ001752@urban> Message-ID: <20031111040413.V717@gamplex.bde.org> References: <20031110180540.P2148@gamplex.bde.org> <200311101217.hAACH9FZ001752@urban> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Seigo Tanimura cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: John Baldwin Subject: Re: cvs commit: src/sys/cam/scsi scsi_target.c src/sys/codacoda_psdev.csrc/sys/dev/firewire firewire.c src/sys/dev/kbd kbd.c src/sys/dev/nmdm nmdm. X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 17:16:51 -0000 On Mon, 10 Nov 2003, Seigo Tanimura wrote: > On Mon, 10 Nov 2003 18:14:14 +1100 (EST), > Bruce Evans said: > ... > bde> set the thread priority using that. So this changes is needed to get the > bde> same behaviour as using tsleep(). However, I think that behaviour is not > bde> quite right -- if the thread is a user thread then it waking it up is only > bde> urgent if it needs to do some urgent things in kernel mode on wakeup. It > bde> should not return to user mode until its user priority permits its > bde> scheduling. However2, we still have the bugfeature that user threads keep > bde> the kernel priority that they wake up at all the way back to user mode, > bde> and this may be necessary for interactivity. > > I could implement priority bumping in selwakeuppri(), but I thought it > would be troublesome to tweak struct cv outside kern_condvar.c. > > In case of select(2) et. al., selecting threads waken up repolls file > descriptors. As it is a in-kernel work, those threads should remain > at in-kernel priorities until polling succeeds, aren't they? I think there is no need for elevated kernel priority in select() if threads drop back to their normal user priority on return to user mode, since nothing (?) except the user process is affected by the results of select() (unlike for some i/o operations). Note that the priority is not elevated at the start of select(), so processes can be preempted there now that we have a semi-preempive kernel. Why should the completion of select() be different if the thread needed to sleep? Any increase in priority should be because the thread slept for a while and not arbitrary. Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 09:26:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A654B16A4CE; Mon, 10 Nov 2003 09:26:08 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A043C43FB1; Mon, 10 Nov 2003 09:26:04 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAAHP8eG034617; Mon, 10 Nov 2003 10:25:08 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 10 Nov 2003 10:23:02 -0700 (MST) Message-Id: <20031110.102302.58436807.imp@bsdimp.com> To: harti@FreeBSD.org, brandt@fokus.fraunhofer.de From: "M. Warner Losh" In-Reply-To: <20031110174537.U53715@beagle.fokus.fraunhofer.de> References: <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> <20031110174537.U53715@beagle.fokus.fraunhofer.de> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: kris@obsecurity.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 17:26:08 -0000 In message: <20031110174537.U53715@beagle.fokus.fraunhofer.de> Harti Brandt writes: : mid-term (for 6.0) given this state. NgATM will soon support everything Sounds like an excellent 'BURN_BRIDGES' #ifdef opportunity to me :-) Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 10:50:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BABC16A4CE; Mon, 10 Nov 2003 10:50:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD1B643FBD; Mon, 10 Nov 2003 10:49:59 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAInxXJ045564; Mon, 10 Nov 2003 10:49:59 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAInxDC045563; Mon, 10 Nov 2003 10:49:59 -0800 (PST) (envelope-from wilko) Message-Id: <200311101849.hAAInxDC045563@repoman.freebsd.org> From: Wilko Bulte Date: Mon, 10 Nov 2003 10:49:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/games/fortune/datfiles fortunes2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 18:50:00 -0000 wilko 2003/11/10 10:49:59 PST FreeBSD src repository Modified files: (Branch: RELENG_4) games/fortune/datfiles fortunes2 Log: MFC: add HP engineering mgr anecdote Revision Changes Path 1.17.2.9 +12 -0 src/games/fortune/datfiles/fortunes2 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 10:52:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22D5E16A4CE; Mon, 10 Nov 2003 10:52:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93BD143FD7; Mon, 10 Nov 2003 10:52:58 -0800 (PST) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAIqwXJ045847; Mon, 10 Nov 2003 10:52:58 -0800 (PST) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAIqw6q045846; Mon, 10 Nov 2003 10:52:58 -0800 (PST) (envelope-from deischen) Message-Id: <200311101852.hAAIqw6q045846@repoman.freebsd.org> From: Daniel Eischen Date: Mon, 10 Nov 2003 10:52:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/gcc/config freebsd-spec.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 18:52:59 -0000 deischen 2003/11/10 10:52:58 PST FreeBSD src repository Modified files: contrib/gcc/config freebsd-spec.h Log: Remove a comment stating that -pthread isn't supported. Revision Changes Path 1.15 +9 -11 src/contrib/gcc/config/freebsd-spec.h From owner-cvs-src@FreeBSD.ORG Mon Nov 10 11:06:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1193A16A4CF; Mon, 10 Nov 2003 11:06:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 945CC43FDF; Mon, 10 Nov 2003 11:06:09 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAJ69XJ047297; Mon, 10 Nov 2003 11:06:09 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAJ69Ct047296; Mon, 10 Nov 2003 11:06:09 -0800 (PST) (envelope-from bde) Message-Id: <200311101906.hAAJ69Ct047296@repoman.freebsd.org> From: Bruce Evans Date: Mon, 10 Nov 2003 11:06:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 19:06:13 -0000 bde 2003/11/10 11:06:09 PST FreeBSD src repository Modified files: sys/boot/i386/boot2 boot2.c Log: Fixed loss of setting of the RB_BOOTINFO flag in rev.1.43. Fixed wrong comment about this flag in rev.1.61. It is not historical like the comment said; it is the flag that says that most of what is laboriously put in the bootinfo struct is actually there. Newer kernels were bootable by even the broken boot2 without losing anything except the symbol table, but older kernels need at least the memory sizes. Restoring the "|" with RB_BOOTINFO that was lost in rev.1.43 costs 5 bytes. The fix can be done in only 4 bytes by fixing some code that was removed in rev.1.61 (put RB_BOOTINFO back in in the initial value of "opts" and fix RBX_MASK to not clobber it.) Revision Changes Path 1.65 +2 -2 src/sys/boot/i386/boot2/boot2.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 11:52:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 787D316A4CE; Mon, 10 Nov 2003 11:52:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE02843FAF; Mon, 10 Nov 2003 11:52:58 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAJqwXJ049955; Mon, 10 Nov 2003 11:52:58 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAJqweq049954; Mon, 10 Nov 2003 11:52:58 -0800 (PST) (envelope-from jhb) Message-Id: <200311101952.hAAJqweq049954@repoman.freebsd.org> From: John Baldwin Date: Mon, 10 Nov 2003 11:52:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica madt.c src/sys/i386/i386 mptable.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 19:52:59 -0000 jhb 2003/11/10 11:52:58 PST FreeBSD src repository Modified files: sys/i386/acpica madt.c sys/i386/i386 mptable.c Log: Bump APIC ID limits up to 32 since a machine with 16 CPUs will have APIC IDs for the I/O APICs that are greater than 16. Reported by: John Cagle Revision Changes Path 1.5 +2 -2 src/sys/i386/acpica/madt.c 1.223 +1 -1 src/sys/i386/i386/mptable.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 12:01:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D796B16A4CE; Mon, 10 Nov 2003 12:01:51 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05E9643FFB; Mon, 10 Nov 2003 12:01:35 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAAK1VU02501; Mon, 10 Nov 2003 21:01:31 +0100 (MET) Date: Mon, 10 Nov 2003 21:01:31 +0100 (CET) From: Harti Brandt To: "M. Warner Losh" In-Reply-To: <20031110.102302.58436807.imp@bsdimp.com> Message-ID: <20031110205931.U84670@beagle.fokus.fraunhofer.de> References: <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110174537.U53715@beagle.fokus.fraunhofer.de> <20031110.102302.58436807.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: kris@obsecurity.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: harti@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2003 20:01:52 -0000 On Mon, 10 Nov 2003, M. Warner Losh wrote: MWL>In message: <20031110174537.U53715@beagle.fokus.fraunhofer.de> MWL> Harti Brandt writes: MWL>: mid-term (for 6.0) given this state. NgATM will soon support everything MWL> MWL>Sounds like an excellent 'BURN_BRIDGES' #ifdef opportunity to me :-) Well, yes. A way to put a warning on a kernel config option would also be not bad or is there such a thing? harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Mon Nov 10 12:25:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 264B816A4CF; Mon, 10 Nov 2003 12:25:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14FB944003; Mon, 10 Nov 2003 12:25:41 -0800 (PST) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAKPfXJ053240; Mon, 10 Nov 2003 12:25:41 -0800 (PST) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAKPfE4053225; Mon, 10 Nov 2003 12:25:41 -0800 (PST) (envelope-from hmp) Message-Id: <200311102025.hAAKPfE4053225@repoman.freebsd.org> From: Hiten Pandya Date: Mon, 10 Nov 2003 12:25:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile uaudio.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 20:25:44 -0000 hmp 2003/11/10 12:25:41 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 Makefile Added files: share/man/man4 uaudio.4 Log: Add a manual page for the USB Audio support in FreeBSD, interfaced via the PCM framework. This manual page was obtained from NetBSD, and the required changes were made to adapt it to our uaudio driver. Pre-cursor review: joe@ Revision Changes Path 1.237 +1 -0 src/share/man/man4/Makefile 1.1 +96 -0 src/share/man/man4/uaudio.4 (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 12:39:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AB1F16A4CE; Mon, 10 Nov 2003 12:39:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C351743FE0; Mon, 10 Nov 2003 12:39:44 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAKdiXJ053821; Mon, 10 Nov 2003 12:39:44 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAKdiTv053820; Mon, 10 Nov 2003 12:39:44 -0800 (PST) (envelope-from alfred) Message-Id: <200311102039.hAAKdiTv053820@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 10 Nov 2003 12:39:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_taskqueue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 20:39:45 -0000 alfred 2003/11/10 12:39:44 PST FreeBSD src repository Modified files: sys/kern subr_taskqueue.c Log: Fix a bug where the taskqueue kproc was being parented by init because RFNOWAIT was being passed to kproc_create. The result was that shutdown took quite a bit longer because this errant "child" would not respond to termination signals from init at system shutdown. RFNOWAIT dissassociates itself from the caller by attaching to init as a parent proc. We could have had the taskqueue proc listen for SIGKILL, but being able to SIGKILL a potentially critical system process doesn't seem like a good idea. Revision Changes Path 1.20 +1 -1 src/sys/kern/subr_taskqueue.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 12:42:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4DD016A4CE; Mon, 10 Nov 2003 12:42:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 432AE43FD7; Mon, 10 Nov 2003 12:42:05 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAKg5XJ054057; Mon, 10 Nov 2003 12:42:05 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAKg40s054056; Mon, 10 Nov 2003 12:42:04 -0800 (PST) (envelope-from hsu) Message-Id: <200311102042.hAAKg40s054056@repoman.freebsd.org> From: Jeffrey Hsu Date: Mon, 10 Nov 2003 12:42:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 20:42:05 -0000 hsu 2003/11/10 12:42:04 PST FreeBSD src repository Modified files: sys/netinet tcp_syncache.c Log: Mark TCP syncache timer as not Giant-free ready yet. Revision Changes Path 1.45 +1 -1 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 12:54:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1571316A4CE; Mon, 10 Nov 2003 12:54:54 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id E942643F75; Mon, 10 Nov 2003 12:54:52 -0800 (PST) (envelope-from sam@errno.com) Received: from 66.127.85.91 ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.9) with ESMTP id hAAKsp0x016400 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 10 Nov 2003 12:54:52 -0800 (PST) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: Jeffrey Hsu , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Date: Mon, 10 Nov 2003 12:56:56 -0800 User-Agent: KMail/1.5.3 References: <200311102042.hAAKg40s054056@repoman.freebsd.org> In-Reply-To: <200311102042.hAAKg40s054056@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311101256.56038.sam@errno.com> Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 20:54:54 -0000 On Monday 10 November 2003 12:42 pm, Jeffrey Hsu wrote: > hsu 2003/11/10 12:42:04 PST > > FreeBSD src repository > > Modified files: > sys/netinet tcp_syncache.c > Log: > Mark TCP syncache timer as not Giant-free ready yet. > > Revision Changes Path > 1.45 +1 -1 src/sys/netinet/tcp_syncache.c > http://cvsweb.FreeBSD.org/src/sys/netinet/tcp_syncache.c.diff?r1=1.44&r2=1. >45 I believe this is wrong. Please revert it or explain why. Sam From owner-cvs-src@FreeBSD.ORG Mon Nov 10 13:10:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79C1116A4CE for ; Mon, 10 Nov 2003 13:10:09 -0800 (PST) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14E8B43FE0 for ; Mon, 10 Nov 2003 13:10:06 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 10521 invoked from network); 10 Nov 2003 21:10:05 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 10 Nov 2003 21:10:05 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAAL9fce015164; Mon, 10 Nov 2003 16:09:41 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20031110143627.T29745@beagle.fokus.fraunhofer.de> Date: Mon, 10 Nov 2003 16:09:39 -0500 (EST) From: John Baldwin To: Hartmut Brandt X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Jun Kuriyama Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 21:10:09 -0000 On 10-Nov-2003 Harti Brandt wrote: > On Mon, 10 Nov 2003, Jun Kuriyama wrote: > > JK>At Mon, 10 Nov 2003 01:17:34 -0800 (PST), > JK>Hartmut Brandt wrote: > JK>> Added files: > JK>> lib/libbsnmp Makefile Makefile.inc > JK>> lib/libbsnmp/libbsnmp Makefile > JK>> lib/libbsnmp/modules Makefile Makefile.inc > > [snip] > > JK>Is this my pilot error? (on 5.1-RELEASE) > > No, mine. Although the universe made it just fine, the tinderbox breaks. > I'm just testing a fix. make universe doesn't fail if there is an error unfortunately, so you still need to check the log files after a make universe completes to see if it really completes. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Mon Nov 10 13:24:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6323316A4CE; Mon, 10 Nov 2003 13:24:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D420A43F85; Mon, 10 Nov 2003 13:24:34 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAALOYXJ062412; Mon, 10 Nov 2003 13:24:34 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAALOYsb062411; Mon, 10 Nov 2003 13:24:34 -0800 (PST) (envelope-from jhb) Message-Id: <200311102124.hAALOYsb062411@repoman.freebsd.org> From: John Baldwin Date: Mon, 10 Nov 2003 13:24:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 mp_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 21:24:35 -0000 jhb 2003/11/10 13:24:34 PST FreeBSD src repository Modified files: sys/i386/i386 mp_machdep.c Log: MFamd64 (via P4, not in CVS yet): - Use the static boot_address variable directly rather than passing it around to several functions. - Clean up a couple of magic numbers. Revision Changes Path 1.222 +21 -21 src/sys/i386/i386/mp_machdep.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 13:26:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 701A316A4CE; Mon, 10 Nov 2003 13:26:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1C1743FD7; Mon, 10 Nov 2003 13:26:52 -0800 (PST) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAALQqXJ062561; Mon, 10 Nov 2003 13:26:52 -0800 (PST) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAALQqQ8062560; Mon, 10 Nov 2003 13:26:52 -0800 (PST) (envelope-from hmp) Message-Id: <200311102126.hAALQqQ8062560@repoman.freebsd.org> From: Hiten Pandya Date: Mon, 10 Nov 2003 13:26:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 21:26:53 -0000 hmp 2003/11/10 13:26:52 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 Makefile Log: Add MLINK net(4), which points to netintro(4). Requested by: dwhite@ Revision Changes Path 1.238 +1 -0 src/share/man/man4/Makefile From owner-cvs-src@FreeBSD.ORG Mon Nov 10 13:56:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53CCA16A4CE; Mon, 10 Nov 2003 13:56:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEFB143F3F; Mon, 10 Nov 2003 13:56:02 -0800 (PST) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAALu2XJ063910; Mon, 10 Nov 2003 13:56:02 -0800 (PST) (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAALu2AK063909; Mon, 10 Nov 2003 13:56:02 -0800 (PST) (envelope-from brian) Message-Id: <200311102156.hAALu2AK063909@repoman.freebsd.org> From: Brian Somers Date: Mon, 10 Nov 2003 13:56:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ppp chap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 21:56:03 -0000 brian 2003/11/10 13:56:02 PST FreeBSD src repository Modified files: usr.sbin/ppp chap.c Log: Ignore case when comparing CHAP/CHAP81 responses PR: 31771 Revision Changes Path 1.85 +12 -7 src/usr.sbin/ppp/chap.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 13:56:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CC2E16A4CE; Mon, 10 Nov 2003 13:56:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EF4B43FD7; Mon, 10 Nov 2003 13:56:47 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAALulXJ063952; Mon, 10 Nov 2003 13:56:47 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAALulMf063951; Mon, 10 Nov 2003 13:56:47 -0800 (PST) (envelope-from trhodes) Message-Id: <200311102156.hAALulMf063951@repoman.freebsd.org> From: Tom Rhodes Date: Mon, 10 Nov 2003 13:56:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 xe.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 21:56:48 -0000 trhodes 2003/11/10 13:56:47 PST FreeBSD src repository Modified files: share/man/man4 xe.4 Log: Score one 'duh' point for me and replace all instances of scott@ with rsm@. Revision Changes Path 1.3 +1 -1 src/share/man/man4/xe.4 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:01:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3445916A4EE; Mon, 10 Nov 2003 14:01:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ECF143FE0; Mon, 10 Nov 2003 14:01:42 -0800 (PST) (envelope-from ghelmer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAM1gXJ064241; Mon, 10 Nov 2003 14:01:42 -0800 (PST) (envelope-from ghelmer@repoman.freebsd.org) Received: (from ghelmer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAM1g3n064240; Mon, 10 Nov 2003 14:01:42 -0800 (PST) (envelope-from ghelmer) Message-Id: <200311102201.hAAM1g3n064240@repoman.freebsd.org> From: Guy Helmer Date: Mon, 10 Nov 2003 14:01:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen daemon.3 daemon.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:01:43 -0000 ghelmer 2003/11/10 14:01:42 PST FreeBSD src repository Modified files: lib/libc/gen daemon.3 daemon.c Log: Prevent abnormal termination of a child daemon process when created by a parent that is a session leader (e.g., login shell) by ignoring SIGHUP in before calling fork(2) and then restoring SIGHUP's action after setsid(3). Based on the patch by Martin Kammerhofer . PR: bin/25462 Reviewed by: bde, alex.neyman@auriga.ru Revision Changes Path 1.13 +15 -2 src/lib/libc/gen/daemon.3 1.6 +20 -1 src/lib/libc/gen/daemon.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:05:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F267316A4CE; Mon, 10 Nov 2003 14:05:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FC0A44003; Mon, 10 Nov 2003 14:05:02 -0800 (PST) (envelope-from ghelmer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAM4pXJ065173; Mon, 10 Nov 2003 14:04:51 -0800 (PST) (envelope-from ghelmer@repoman.freebsd.org) Received: (from ghelmer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAM4pi2065172; Mon, 10 Nov 2003 14:04:51 -0800 (PST) (envelope-from ghelmer) Message-Id: <200311102204.hAAM4pi2065172@repoman.freebsd.org> From: Guy Helmer Date: Mon, 10 Nov 2003 14:04:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen daemon.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:05:57 -0000 ghelmer 2003/11/10 14:04:51 PST FreeBSD src repository Modified files: lib/libc/gen daemon.3 Log: Remove ',' accidentally added after ".Xr fork 2". Revision Changes Path 1.14 +1 -1 src/lib/libc/gen/daemon.3 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:21:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D5EF16A4CE; Mon, 10 Nov 2003 14:21:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A877243FAF; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAML0XJ066067; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAML0sW066066; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman) Message-Id: <200311102221.hAAML0sW066066@repoman.freebsd.org> From: Don Lewis Date: Mon, 10 Nov 2003 14:21:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/fifofs fifo_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:21:01 -0000 truckman 2003/11/10 14:21:00 PST FreeBSD src repository Modified files: sys/fs/fifofs fifo_vnops.c Log: If fifo_open() is interrupted, fifo_close() may not get called, causing a resource leak. Move the resource deallocation code from fifo_close() to a new function, fifo_cleanup(), and call fifo_cleanup() from fifo_close() and the appropriate places in fifo_open(). Tested by: Lukas Ertl Pointy hat to: truckman Revision Changes Path 1.90 +23 -9 src/sys/fs/fifofs/fifo_vnops.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:26:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E6EC16A4CE; Mon, 10 Nov 2003 14:26:23 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 860D943F93; Mon, 10 Nov 2003 14:26:19 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 2308978CAB; Mon, 10 Nov 2003 23:26:18 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id DC6DC9BEC3; Mon, 10 Nov 2003 23:26:17 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id D91B49BB76; Mon, 10 Nov 2003 23:26:13 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id D0212B828; Mon, 10 Nov 2003 23:26:13 +0100 (CET) To: Hartmut Brandt References: <200311100917.hAA9HYsg097794@repoman.freebsd.org> <7mptg0tkpq.wl@black.imgsrc.co.jp> <20031110143627.T29745@beagle.fokus.fraunhofer.de> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Mon, 10 Nov 2003 23:26:13 +0100 In-Reply-To: <20031110143627.T29745@beagle.fokus.fraunhofer.de> (Harti Brandt's message of "Mon, 10 Nov 2003 14:37:27 +0100 (CET)") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=1.0 required=5.0 tests=SUBJ_HAS_SPACES autolearn=no version=2.60 cc: Jun Kuriyama cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:26:23 -0000 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Harti Brandt writes: > No, mine. Although the universe made it just fine, the tinderbox breaks. > I'm just testing a fix. See attached fix for 'make universe'. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=universe.diff Index: Makefile =================================================================== RCS file: /home/ncvs/src/Makefile,v retrieving revision 1.291 diff -u -r1.291 Makefile --- Makefile 7 Nov 2003 08:36:55 -0000 1.291 +++ Makefile 10 Nov 2003 22:25:54 -0000 @@ -3,8 +3,6 @@ # # The user-driven targets are: # -# universe - *Really* build *everything* (buildworld and -# all kernels on all architectures). # buildworld - Rebuild *everything*, including glue to help do # upgrades. # installworld - Install everything built by "buildworld". @@ -182,38 +180,8 @@ ${MMAKE} all && \ ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR= -# -# universe -# -# Attempt to rebuild *everything* for all supported architectures, -# with reasonable chance of success, regardless of how old your -# existing system is. -# -i386_mach= pc98 universe: - @echo "--------------------------------------------------------------" - @echo ">>> make universe started on ${STARTTIME}" - @echo "--------------------------------------------------------------" -.for arch in i386 sparc64 alpha ia64 -.for mach in ${arch} ${${arch}_mach} - @echo ">> ${mach} started on `LC_ALL=C date`" - -cd ${.CURDIR} && ${MAKE} buildworld \ - TARGET_ARCH=${arch} TARGET=${mach} \ - __MAKE_CONF=/dev/null \ - > _.${mach}.buildworld 2>&1 - @echo ">> ${mach} buildworld completed on `LC_ALL=C date`" -.if exists(${.CURDIR}/sys/${mach}/conf/NOTES) - -cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \ - > ${.CURDIR}/_.${mach}.makeLINT 2>&1 -.endif - cd ${.CURDIR} && ${MAKE} buildkernels TARGET_ARCH=${arch} TARGET=${mach} - @echo ">> ${mach} completed on `LC_ALL=C date`" -.endfor -.endfor - @echo "--------------------------------------------------------------" - @echo ">>> make universe completed on `LC_ALL=C date`" - @echo " (started ${STARTTIME})" - @echo "--------------------------------------------------------------" + @echo "Use src/tools/tools/tinderbox instead." KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \ find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES --=-=-=-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:38:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ADB716A4CE; Mon, 10 Nov 2003 14:38:26 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A03143FD7; Mon, 10 Nov 2003 14:38:21 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAAMc8eG038829; Mon, 10 Nov 2003 15:38:08 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 10 Nov 2003 15:36:02 -0700 (MST) Message-Id: <20031110.153602.129358480.imp@bsdimp.com> To: des@des.no From: "M. Warner Losh" In-Reply-To: References: <7mptg0tkpq.wl@black.imgsrc.co.jp> <20031110143627.T29745@beagle.fokus.fraunhofer.de> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.org cc: harti@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:38:26 -0000 In message: des@des.no (Dag-Erling Sm=F8rgrav) writes: : See attached fix for 'make universe'. I don't like this fix :-) Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:44:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B99C816A4CE; Mon, 10 Nov 2003 14:44:52 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9D343FBD; Mon, 10 Nov 2003 14:44:46 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4BBCF65478; Mon, 10 Nov 2003 22:44:45 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 52615-01; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 3831C653C2; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 5832E44; Mon, 10 Nov 2003 22:44:21 +0000 (GMT) Date: Mon, 10 Nov 2003 22:44:21 +0000 From: Bruce M Simpson To: Hartmut Brandt Message-ID: <20031110224421.GD2441@saboteur.dek.spc.org> Mail-Followup-To: Hartmut Brandt , developers@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> <20031110174537.U53715@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031110174537.U53715@beagle.fokus.fraunhofer.de> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:44:53 -0000 On Mon, Nov 10, 2003 at 05:55:22PM +0100, Harti Brandt wrote: > The official HARP isn't maintained anymore. Our HARP is maintained very > weakly. It was broken for longer amounts of time because no committer had > the interest/equipment/knowledge to work on it. People were forced to This situation may change if I obtain my idt(4) card and am able to use it as a viable alternative to a 'black box' DSL router... I am also trying to get ueagle(4) to work with maintainer's help on my hardware, that is another HARP client. BMS From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:45:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8477C16A4CF; Mon, 10 Nov 2003 14:45:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F31C943FB1; Mon, 10 Nov 2003 14:45:09 -0800 (PST) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAMj9XJ067325; Mon, 10 Nov 2003 14:45:09 -0800 (PST) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAMj9BT067324; Mon, 10 Nov 2003 14:45:09 -0800 (PST) (envelope-from hmp) Message-Id: <200311102245.hAAMj9BT067324@repoman.freebsd.org> From: Hiten Pandya Date: Mon, 10 Nov 2003 14:45:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 Makefile alq.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:45:10 -0000 X-List-Received-Date: Mon, 10 Nov 2003 22:45:10 -0000 hmp 2003/11/10 14:45:09 PST FreeBSD src repository (doc committer) Modified files: share/man/man9 Makefile Added files: share/man/man9 alq.9 Log: Manual page for Asynchronous Logging Queues (ALQ) facility. The manual page contains enough information to get someone started with ALQ. MLINKS have been added appropriately. Approved by: jeff, des Reviewed by: des, jeff, sam, brooks, rwatson, mtm Revision Changes Path 1.209 +8 -1 src/share/man/man9/Makefile 1.1 +228 -0 src/share/man/man9/alq.9 (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 14:45:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E8A416A4CE; Mon, 10 Nov 2003 14:45:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB58E43F3F; Mon, 10 Nov 2003 14:45:37 -0800 (PST) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAMjbXJ067399; Mon, 10 Nov 2003 14:45:37 -0800 (PST) (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAMjbAB067398; Mon, 10 Nov 2003 14:45:37 -0800 (PST) (envelope-from iedowse) Message-Id: <200311102245.hAAMjbAB067398@repoman.freebsd.org> From: Ian Dowse Date: Mon, 10 Nov 2003 14:45:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_pcb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 22:45:38 -0000 iedowse 2003/11/10 14:45:37 PST FreeBSD src repository Modified files: sys/netinet in_pcb.c Log: In in_pcbconnect_setup(), don't use the cached inp->inp_route unless it is marked as RTF_UP. This appears to fix a crash that was sometimes triggered when dhclient(8) tried to send a packet after an interface had been detatched. Reviewed by: sam Revision Changes Path 1.128 +4 -4 src/sys/netinet/in_pcb.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 15:02:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A46DE16A4CE; Mon, 10 Nov 2003 15:02:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2081A43F93; Mon, 10 Nov 2003 15:02:36 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAN2ZXJ068294; Mon, 10 Nov 2003 15:02:35 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAN2ZxB068293; Mon, 10 Nov 2003 15:02:35 -0800 (PST) (envelope-from wilko) Message-Id: <200311102302.hAAN2ZxB068293@repoman.freebsd.org> From: Wilko Bulte Date: Mon, 10 Nov 2003 15:02:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/games/fortune/datfiles fortunes2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 23:02:36 -0000 wilko 2003/11/10 15:02:35 PST FreeBSD src repository Modified files: (Branch: RELENG_4) games/fortune/datfiles fortunes2 Log: reformat HP eng. mgr quote Requested by: nate Revision Changes Path 1.17.2.10 +5 -4 src/games/fortune/datfiles/fortunes2 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 15:08:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8002916A4CE; Mon, 10 Nov 2003 15:08:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF29F43FF9; Mon, 10 Nov 2003 15:08:40 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAN8eXJ069416; Mon, 10 Nov 2003 15:08:40 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAN8ew2069415; Mon, 10 Nov 2003 15:08:40 -0800 (PST) (envelope-from wilko) Message-Id: <200311102308.hAAN8ew2069415@repoman.freebsd.org> From: Wilko Bulte Date: Mon, 10 Nov 2003 15:08:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/games/fortune/datfiles fortunes2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 23:08:41 -0000 wilko 2003/11/10 15:08:40 PST FreeBSD src repository Modified files: games/fortune/datfiles fortunes2 Log: reformat HP eng. mgr quote Requested by: nate Revision Changes Path 1.62 +5 -4 src/games/fortune/datfiles/fortunes2 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 15:29:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0428C16A4CE; Mon, 10 Nov 2003 15:29:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 779BF43FBD; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAANTXXJ070409; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAANTX65070408; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam) Message-Id: <200311102329.hAANTX65070408@repoman.freebsd.org> From: Sam Leffler Date: Mon, 10 Nov 2003 15:29:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 23:29:34 -0000 sam 2003/11/10 15:29:33 PST FreeBSD src repository Modified files: sys/netinet tcp_syncache.c Log: use Giant-less callouts when debug_mpsafenet is non-zero Supported by: FreeBSD Foundation Revision Changes Path 1.46 +2 -1 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 15:33:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1B5516A4DF; Mon, 10 Nov 2003 15:33:53 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56E0343FDD; Mon, 10 Nov 2003 15:33:53 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 3A3442A8FB; Mon, 10 Nov 2003 15:33:53 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Sam Leffler In-Reply-To: <200311101256.56038.sam@errno.com> Date: Mon, 10 Nov 2003 15:33:53 -0800 From: Peter Wemm Message-Id: <20031110233353.3A3442A8FB@canning.wemm.org> cc: cvs-src@FreeBSD.org cc: Jeffrey Hsu cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 23:33:54 -0000 Sam Leffler wrote: > On Monday 10 November 2003 12:42 pm, Jeffrey Hsu wrote: > > hsu 2003/11/10 12:42:04 PST > > Modified files: > > sys/netinet tcp_syncache.c > > Log: > > Mark TCP syncache timer as not Giant-free ready yet. > > I believe this is wrong. Please revert it or explain why. Without wanting to get into a fight, I'd like to know too. It is customary to put some details or reasoning in the commit log so that we don't have to have questions like this being asked. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 15:59:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DB3A16A4CE; Mon, 10 Nov 2003 15:59:05 -0800 (PST) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 533F643FE9; Mon, 10 Nov 2003 15:59:04 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from FreeBSD.org (adsl-63-193-112-125.dsl.snfc21.pacbell.net [63.193.112.125])hAANx2xu023566; Mon, 10 Nov 2003 15:59:02 -0800 (PST) Message-Id: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Sam Leffler In-Reply-To: Message from Sam Leffler of "Mon, 10 Nov 2003 12:56:56 PST." <200311101256.56038.sam@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 10 Nov 2003 15:59:29 -0800 From: Jeffrey Hsu cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 10 Nov 2003 23:59:05 -0000 Are you kidding me? Or do you really not understand why it's not Giant-free ready yet? Jeffrey From owner-cvs-src@FreeBSD.ORG Mon Nov 10 16:04:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C6BE16A4CE; Mon, 10 Nov 2003 16:04:12 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB49943F93; Mon, 10 Nov 2003 16:04:06 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAB03weG039952; Mon, 10 Nov 2003 17:03:58 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 10 Nov 2003 17:01:51 -0700 (MST) Message-Id: <20031110.170151.81945639.imp@bsdimp.com> To: hsu@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> References: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: sam@errno.com cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 00:04:12 -0000 In message: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> Jeffrey Hsu writes: : Are you kidding me? Or do you really not understand why it's not : Giant-free ready yet? While it may be obvious to you, it seems that a sentence or two about how it isn't giant-free would be useful. Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 16:32:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 856DC16A4CE; Mon, 10 Nov 2003 16:32:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16CBF43F3F; Mon, 10 Nov 2003 16:32:47 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB0WkXJ073982; Mon, 10 Nov 2003 16:32:46 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB0WkJi073981; Mon, 10 Nov 2003 16:32:46 -0800 (PST) (envelope-from alfred) Message-Id: <200311110032.hAB0WkJi073981@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 10 Nov 2003 16:32:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 00:32:47 -0000 alfred 2003/11/10 16:32:46 PST FreeBSD src repository Modified files: sys/nfsclient nfs_vnops.c Log: Stop using shared locks for nfs vop locks. The reason this was done was to avoid a race to the root when an NFS server went down. However a semi-recent change to the way that the kernel's lookup() routine traverses mount points prevents this. Rev 1.39 of vfs_lookup.c changed the ordering of locks such that we aquire a shared lock on the mount point being accessed and then drop the directory vnode lock before requesting the target lock. With that in place we no longer need shared locks for NFS to prevent race to the root lockups. Revision Changes Path 1.214 +0 -3 src/sys/nfsclient/nfs_vnops.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 17:30:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0578516A4CE; Mon, 10 Nov 2003 17:30:27 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 040B043FDF; Mon, 10 Nov 2003 17:30:26 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 540A42ED473; Mon, 10 Nov 2003 17:30:22 -0800 (PST) Date: Mon, 10 Nov 2003 17:30:22 -0800 From: Alfred Perlstein To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20031111013022.GL33733@elvis.mu.org> References: <200311110032.hAB0WkJi073981@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311110032.hAB0WkJi073981@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/sys/nfsclient nfs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 01:30:27 -0000 This will allow interested parties to smp'ify NFS, otherwise you need a global lock. It also will allow us to remove a lot of the hacks needed to deal with the fake exclusivity of the locking that was going on here. This could be MFC'd but I don't see the point right now. * Alfred Perlstein [031110 16:33] wrote: > alfred 2003/11/10 16:32:46 PST > > FreeBSD src repository > > Modified files: > sys/nfsclient nfs_vnops.c > Log: > Stop using shared locks for nfs vop locks. > > The reason this was done was to avoid a race to the root when an > NFS server went down. However a semi-recent change to the way that > the kernel's lookup() routine traverses mount points prevents this. > > Rev 1.39 of vfs_lookup.c changed the ordering of locks such that we > aquire a shared lock on the mount point being accessed and then drop > the directory vnode lock before requesting the target lock. > > With that in place we no longer need shared locks for NFS to prevent > race to the root lockups. > > Revision Changes Path > 1.214 +0 -3 src/sys/nfsclient/nfs_vnops.c -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 18:43:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 781AF16A4CE; Mon, 10 Nov 2003 18:43:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C406243FD7; Mon, 10 Nov 2003 18:43:12 -0800 (PST) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB2hBXJ086264; Mon, 10 Nov 2003 18:43:11 -0800 (PST) (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB2hAq7086263; Mon, 10 Nov 2003 18:43:10 -0800 (PST) (envelope-from emax) Message-Id: <200311110243.hAB2hAq7086263@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 10 Nov 2003 18:43:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libsdp util.c src/usr.sbin/bluetooth/hccontrol link_control.c link_policy.c util.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 02:43:13 -0000 emax 2003/11/10 18:43:10 PST FreeBSD src repository Modified files: lib/libsdp util.c usr.sbin/bluetooth/hccontrol link_control.c link_policy.c util.c Log: Fix few typos Reviewed by: imp, julian, ru Approved by: imp (mentor) Revision Changes Path 1.2 +1 -1 src/lib/libsdp/util.c 1.4 +3 -3 src/usr.sbin/bluetooth/hccontrol/link_control.c 1.4 +1 -1 src/usr.sbin/bluetooth/hccontrol/link_policy.c 1.4 +3 -3 src/usr.sbin/bluetooth/hccontrol/util.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 19:27:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EA6316A4CE; Mon, 10 Nov 2003 19:27:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B65B43FCB; Mon, 10 Nov 2003 19:27:08 -0800 (PST) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB3R8XJ089007; Mon, 10 Nov 2003 19:27:08 -0800 (PST) (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB3R8Rh089006; Mon, 10 Nov 2003 19:27:08 -0800 (PST) (envelope-from emax) Message-Id: <200311110327.hAB3R8Rh089006@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 10 Nov 2003 19:27:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ng_bluetooth.4 ng_bt3c.4 ng_btsocket.4 ng_h4.4 ng_hci.4 ng_l2cap.4 ng_ubt.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 03:27:09 -0000 emax 2003/11/10 19:27:08 PST FreeBSD src repository Modified files: share/man/man4 ng_bluetooth.4 ng_bt3c.4 ng_btsocket.4 ng_h4.4 ng_hci.4 ng_l2cap.4 ng_ubt.4 Log: Fix SYNOPSIS section in Bluetooth man pages Reviewed by: imp, julian, ru Approved by: ru Revision Changes Path 1.7 +1 -1 src/share/man/man4/ng_bluetooth.4 1.7 +1 -1 src/share/man/man4/ng_bt3c.4 1.7 +4 -4 src/share/man/man4/ng_btsocket.4 1.6 +1 -3 src/share/man/man4/ng_h4.4 1.7 +1 -3 src/share/man/man4/ng_hci.4 1.7 +2 -4 src/share/man/man4/ng_l2cap.4 1.6 +1 -1 src/share/man/man4/ng_ubt.4 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 19:30:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74C9416A4CE; Mon, 10 Nov 2003 19:30:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E546D43FBF; Mon, 10 Nov 2003 19:30:29 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB3UTXJ089208; Mon, 10 Nov 2003 19:30:29 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB3UTqQ089206; Mon, 10 Nov 2003 19:30:29 -0800 (PST) (envelope-from rwatson) Message-Id: <200311110330.hAB3UTqQ089206@repoman.freebsd.org> From: Robert Watson Date: Mon, 10 Nov 2003 19:30:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc mac.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 03:30:30 -0000 rwatson 2003/11/10 19:30:29 PST FreeBSD src repository Modified files: etc mac.conf Log: Use the new "default_labels" syntax in the default mac.conf file. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.4 +3 -3 src/etc/mac.conf From owner-cvs-src@FreeBSD.ORG Mon Nov 10 19:40:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C3BC16A4CE; Mon, 10 Nov 2003 19:40:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A04E943FB1; Mon, 10 Nov 2003 19:40:04 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB3e4XJ089571; Mon, 10 Nov 2003 19:40:04 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB3e435089570; Mon, 10 Nov 2003 19:40:04 -0800 (PST) (envelope-from rwatson) Message-Id: <200311110340.hAB3e435089570@repoman.freebsd.org> From: Robert Watson Date: Mon, 10 Nov 2003 19:40:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_mac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 03:40:05 -0000 rwatson 2003/11/10 19:40:04 PST FreeBSD src repository Modified files: sys/kern kern_mac.c Log: Whitespace sync to MAC branch, expand comment at the head of the file. Revision Changes Path 1.104 +9 -3 src/sys/kern/kern_mac.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:02:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD3D916A4D0 for ; Mon, 10 Nov 2003 20:02:57 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 3A89D43FEC for ; Mon, 10 Nov 2003 20:02:55 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 30691 invoked from network); 11 Nov 2003 04:02:54 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 11 Nov 2003 04:02:54 -0000 X-pair-Authenticated: 209.68.2.70 Date: Mon, 10 Nov 2003 22:02:52 -0600 (CST) From: Mike Silbersack To: "M. Warner Losh" In-Reply-To: <20031110.170151.81945639.imp@bsdimp.com> Message-ID: <20031110215128.F6320@odysseus.silby.com> References: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> <20031110.170151.81945639.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: sam@errno.com cc: hsu@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 04:02:57 -0000 On Mon, 10 Nov 2003, M. Warner Losh wrote: > In message: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> > Jeffrey Hsu writes: > : Are you kidding me? Or do you really not understand why it's not > : Giant-free ready yet? > > While it may be obvious to you, it seems that a sentence or two about > how it isn't giant-free would be useful. > > Warner If I'm not mistaken, syncache_timer calls syncache_respond, which then goes and interacts with the routing table and ip stack. Along with the rest of the non-locked code, it sure looks like it's not-MPSAFE to me. It seems "obvious" that the code isn't giant-free, given that there are no locking assertions in it whatsoever. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:21:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE58D16A4CE for ; Mon, 10 Nov 2003 20:21:51 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE4E143FFB for ; Mon, 10 Nov 2003 20:21:46 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 00D9C5469 for ; Mon, 10 Nov 2003 20:21:45 -0800 (PST) Received: (qmail 32281 invoked by uid 1001); 11 Nov 2003 04:14:44 -0000 Message-ID: <20031111041444.32280.qmail@exxodus.fedaykin.here> Received: (qmail 333 invoked from network); 5 Sep 2003 23:47:14 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 5 Sep 2003 23:47:14 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Fri, 05 Sep 2003 20:47:14 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.177) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C012ED73A for lioux-freebsd@uol.com.br; Fri, 5 Sep 2003 20:26:48 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id F3F606DDC for ; Fri, 5 Sep 2003 20:26:47 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D6FF957DAE for ; Fri, 5 Sep 2003 16:26:46 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 5679F16A4F2; Fri, 5 Sep 2003 16:26:44 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id BBFCE16A4C1; Fri, 5 Sep 2003 16:26:42 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5293C16A4BF; Fri, 5 Sep 2003 16:26:11 -0700 (PDT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11F8443FDF; Fri, 5 Sep 2003 16:26:07 -0700 (PDT) (envelope-from DougB@freebsd.org) Received: from 12-234-22-23.client.attbi.com ([12.234.22.23]) by comcast.net (rwcrmhc11) with SMTP id <200309052326060130036ve6e>; Fri, 5 Sep 2003 23:26:06 +0000 From: Doug Barton To: Marcel Moolenaar In-Reply-To: <20030905212233.GB590@dhcp01.pn.xcllnt.net> References: <42548.1062488547@critter.freebsd.dk> <20030902004917.S6074@znfgre.qbhto.arg> <3F58B8B7.30107@tcoip.com.br> <20030905110128.Y8003@znfgre.qbhto.arg> <20030905135542.M90946@12-234-22-23.pyvrag.nggov.pbz> <20030905212233.GB590@dhcp01.pn.xcllnt.net> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Alexey Dokuchaev cc: Poul-Henning Kamp cc: src-committers@freebsd.org cc: "Daniel C. Sobral" cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/rescue/rescue Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:21:52 -0000 X-Original-Date: Fri, 5 Sep 2003 16:26:05 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:21:52 -0000 On Fri, 5 Sep 2003, Marcel Moolenaar wrote: > Yes, you can. The agreement is reached when everybody accepts the > outcome. This is unrelated to whether everybody likes the outcome. I would argue that we're now discussing two different things.... consensus on the result, versus consensus on what the desired result is, and the method(s) of achieving it. However, I won't quibble further. > > Don't take this the wrong way, but with an attitude like that, how do > > you get out of bed in the morning? > > Willpower, eased by the habit of getting out of bed in the afternoon. LOL... touche. > > The consensus was that we'd use > > seperators for all NEW knobs, and go back and deal with the rest if time > > allows. > > Yes, the first part of the sentence I remember. I can't recall the > second part. If my memory is failing on me and we did in fact reach > that consensus, then there's nothing to argue about. Otherwise we > still need to get clear ruling on that last part. As promised, I posted my bikeshed blueprints for this on -arch. Doug -- This .signature sanitized for your protection From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:22:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D957916A4CF for ; Mon, 10 Nov 2003 20:22:15 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CED143FA3 for ; Mon, 10 Nov 2003 20:22:12 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id DBE7B5466 for ; Mon, 10 Nov 2003 20:22:10 -0800 (PST) Received: (qmail 32083 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32082.qmail@exxodus.fedaykin.here> Received: (qmail 21862 invoked from network); 10 Nov 2003 22:47:44 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:44 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:22 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CAB66 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:46:33 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm3.uol.com.br (Postfix) with ESMTP id 5167AE49D for ; Mon, 10 Nov 2003 20:45:36 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 6A70356AF9 for ; Mon, 10 Nov 2003 14:45:30 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id C3AF416A515; Mon, 10 Nov 2003 14:45:26 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id F15B616A4D1; Mon, 10 Nov 2003 14:45:24 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B99C816A4CE; Mon, 10 Nov 2003 14:44:52 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9D343FBD; Mon, 10 Nov 2003 14:44:46 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4BBCF65478; Mon, 10 Nov 2003 22:44:45 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 52615-01; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 3831C653C2; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 5832E44; Mon, 10 Nov 2003 22:44:21 +0000 (GMT) Date: Mon, 10 Nov 2003 22:44:21 +0000 From: Bruce M Simpson To: Hartmut Brandt Mail-Followup-To: Hartmut Brandt , developers@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> <20031110174537.U53715@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031110174537.U53715@beagle.fokus.fraunhofer.de> Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:22:16 -0000 On Mon, Nov 10, 2003 at 05:55:22PM +0100, Harti Brandt wrote: > The official HARP isn't maintained anymore. Our HARP is maintained very > weakly. It was broken for longer amounts of time because no committer had > the interest/equipment/knowledge to work on it. People were forced to This situation may change if I obtain my idt(4) card and am able to use it as a viable alternative to a 'black box' DSL router... I am also trying to get ueagle(4) to work with maintainer's help on my hardware, that is another HARP client. BMS From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:22:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 486CC16A4CF for ; Mon, 10 Nov 2003 20:22:37 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C03343FA3 for ; Mon, 10 Nov 2003 20:22:35 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id C83D45469 for ; Mon, 10 Nov 2003 20:22:33 -0800 (PST) Received: (qmail 32043 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32042.qmail@exxodus.fedaykin.here> Received: (qmail 48820 invoked from network); 9 Nov 2003 15:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Nov 2003 15:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 09 Nov 2003 13:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C0208073D for lioux-freebsd@uol.com.br; Sun, 9 Nov 2003 11:50:26 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm1.uol.com.br (Postfix) with ESMTP id 9A6BEEBF9 for ; Sun, 9 Nov 2003 12:50:26 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C3F4D576AF for ; Sun, 9 Nov 2003 06:50:25 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id E775716A52B; Sun, 9 Nov 2003 06:50:16 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 3374316A4D0; Sun, 9 Nov 2003 06:50:16 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D82716A4CE; Sun, 9 Nov 2003 06:49:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE0D843F3F; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9EnhXJ098822; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9EnhiW098821; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa) From: Hidetoshi Shimokawa Date: Sun, 9 Nov 2003 06:49:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.sbin/dconschat dconschat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:22:37 -0000 simokawa 2003/11/09 06:49:43 PST FreeBSD src repository Modified files: usr.sbin/dconschat dconschat.c Log: Increase MAXDEV up to 10. Revision Changes Path 1.4 +1 -1 src/usr.sbin/dconschat/dconschat.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:22:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9BB416A4CE; Mon, 10 Nov 2003 20:22:57 -0800 (PST) Received: from sbtm.yonsei.net (sbtm.yonsei.net [61.100.191.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DE8543FA3; Mon, 10 Nov 2003 20:22:55 -0800 (PST) (envelope-from perky@sbtm.yonsei.net) Received: by sbtm.yonsei.net (Postfix, from userid 1001) id BACF628412; Tue, 11 Nov 2003 13:22:54 +0900 (KST) Date: Tue, 11 Nov 2003 13:22:54 +0900 From: Hye-Shik Chang To: "Tim J. Robbins" Message-ID: <20031111042254.GA28372@i18n.org> References: <200311021009.hA2A9XTU063850@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311021009.hA2A9XTU063850@repoman.freebsd.org> Organization: Yonsei University User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/locale big5.c euc.c mskanji.c utf8.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 04:22:58 -0000 On Sun, Nov 02, 2003 at 02:09:33AM -0800, Tim J. Robbins wrote: > tjr 2003/11/02 02:09:33 PST > > FreeBSD src repository > > Modified files: > lib/libc/locale big5.c euc.c mskanji.c utf8.c > Log: > Convert the Big5, EUC, MSKanji and UTF-8 encoding methods to implement > mbrtowc() and wcrtomb() directly. GB18030, GBK and UTF2 are left > unconverted; GB18030 will be done eventually, but GBK and UTF2 may just > be removed, as they are subsets of GB18030 and UTF-8 respectively. > > Revision Changes Path > 1.8 +50 -53 src/lib/libc/locale/big5.c > 1.12 +68 -82 src/lib/libc/locale/euc.c > 1.9 +46 -48 src/lib/libc/locale/mskanji.c > 1.3 +69 -71 src/lib/libc/locale/utf8.c JFYI, I can't input characters in libreadline and GTK+2 on UTF-8 locales (ports/misc/utf8locale) after this change. (and they work again when rollback it to utf8.c rev 1.2) I'm tracking it down but I don't know what's the problem exactly yet. Regards, Hye-Shik =) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:23:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42BD216A4D0 for ; Mon, 10 Nov 2003 20:23:27 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFA8343F93 for ; Mon, 10 Nov 2003 20:23:20 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 700755466 for ; Mon, 10 Nov 2003 20:23:08 -0800 (PST) Received: (qmail 32077 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32076.qmail@exxodus.fedaykin.here> Received: (qmail 21839 invoked from network); 10 Nov 2003 22:47:42 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:42 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:20 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CA5FE for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:39:04 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id 974DE9096 for ; Mon, 10 Nov 2003 20:39:45 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id E4DDF556A3 for ; Mon, 10 Nov 2003 14:39:01 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id BE3A316A4D5; Mon, 10 Nov 2003 14:38:58 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 702A516A4D0; Mon, 10 Nov 2003 14:38:57 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ADB716A4CE; Mon, 10 Nov 2003 14:38:26 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A03143FD7; Mon, 10 Nov 2003 14:38:21 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAAMc8eG038829; Mon, 10 Nov 2003 15:38:08 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 10 Nov 2003 15:36:02 -0700 (MST) To: des@des.no From: "M. Warner Losh" In-Reply-To: References: <7mptg0tkpq.wl@black.imgsrc.co.jp> <20031110143627.T29745@beagle.fokus.fraunhofer.de> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.org cc: harti@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:23:27 -0000 In message: des@des.no (Dag-Erling Sm=F8rgrav) writes: : See attached fix for 'make universe'. I don't like this fix :-) Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:24:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C9BA16A4CE for ; Mon, 10 Nov 2003 20:24:08 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0F4D43FE9 for ; Mon, 10 Nov 2003 20:23:44 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id B24CC54C9 for ; Mon, 10 Nov 2003 20:23:38 -0800 (PST) Received: (qmail 32110 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32109.qmail@exxodus.fedaykin.here> Received: (qmail 22247 invoked from network); 10 Nov 2003 23:47:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 23:47:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 21:47:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CC6EC for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 20:23:50 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm11.uol.com.br (Postfix) with ESMTP id EDF0DCF08 for ; Mon, 10 Nov 2003 20:46:22 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 785FF56C89 for ; Mon, 10 Nov 2003 14:45:40 -0800 (PST) (envelope-from owner-all-developers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 3E0C616A5C3; Mon, 10 Nov 2003 14:45:29 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id ED71216A4EB; Mon, 10 Nov 2003 14:45:26 -0800 (PST) Delivered-To: all-developers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B99C816A4CE; Mon, 10 Nov 2003 14:44:52 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9D343FBD; Mon, 10 Nov 2003 14:44:46 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4BBCF65478; Mon, 10 Nov 2003 22:44:45 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 52615-01; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 3831C653C2; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 5832E44; Mon, 10 Nov 2003 22:44:21 +0000 (GMT) Date: Mon, 10 Nov 2003 22:44:21 +0000 From: Bruce M Simpson To: Hartmut Brandt Mail-Followup-To: Hartmut Brandt , developers@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> <20031110174537.U53715@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031110174537.U53715@beagle.fokus.fraunhofer.de> Sender: owner-all-developers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:24:08 -0000 On Mon, Nov 10, 2003 at 05:55:22PM +0100, Harti Brandt wrote: > The official HARP isn't maintained anymore. Our HARP is maintained very > weakly. It was broken for longer amounts of time because no committer had > the interest/equipment/knowledge to work on it. People were forced to This situation may change if I obtain my idt(4) card and am able to use it as a viable alternative to a 'black box' DSL router... I am also trying to get ueagle(4) to work with maintainer's help on my hardware, that is another HARP client. BMS From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:24:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B5FF16A4CE for ; Mon, 10 Nov 2003 20:24:31 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0A7C43FA3 for ; Mon, 10 Nov 2003 20:24:25 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 81B1F54D4 for ; Mon, 10 Nov 2003 20:24:01 -0800 (PST) Received: (qmail 31878 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31877.qmail@exxodus.fedaykin.here> Received: (qmail 73807 invoked from network); 26 Oct 2003 10:47:32 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 10:47:32 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 08:47:10 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6E977 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:30:02 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 65DE0E339 for ; Sun, 26 Oct 2003 08:30:00 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id A709B571A8 for ; Sun, 26 Oct 2003 02:29:52 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8E74A16A51F; Sun, 26 Oct 2003 02:29:50 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id E083C16A4C0; Sun, 26 Oct 2003 02:29:48 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF57B16A4B3; Sun, 26 Oct 2003 02:29:15 -0800 (PST) Received: from herring.nlsystems.com (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 741E243FA3; Sun, 26 Oct 2003 02:29:14 -0800 (PST) (envelope-from dfr@nlsystems.com) Received: from [10.0.0.2] (herring.nlsystems.com [10.0.0.2]) h9QAT2Tr074052; Sun, 26 Oct 2003 10:29:02 GMT (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Hidetoshi Shimokawa In-Reply-To: <200310260742.h9Q7gXlY027864@repoman.freebsd.org> References: <200310260742.h9Q7gXlY027864@repoman.freebsd.org> Content-Type: text/plain Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on herring.nlsystems.com Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:24:31 -0000 X-Original-Date: Sun, 26 Oct 2003 10:29:02 +0000 X-List-Received-Date: Tue, 11 Nov 2003 04:24:31 -0000 Wouldn't it be simpler to just have: dev/dcons/dcons_crom.c optional dcons firewire since dcons_crom isn't much use without either dcons and firewire. Also, not many people will want to have dcons without a crom attachment (assuming they have firewire), IMHO. On Sun, 2003-10-26 at 07:42, Hidetoshi Shimokawa wrote: > simokawa 2003/10/26 00:42:33 PDT > > FreeBSD src repository > > Modified files: > sys/conf files > Log: > Revert previous change. > > We have to put dcons_crom at first after 'optional' and > dcons and firewire are necessary and not optional for dcons_crom anyway. > > Reported by: brooks > > Revision Changes Path > 1.840 +1 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:24:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7907016A4D1 for ; Mon, 10 Nov 2003 20:24:38 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id A145143F93 for ; Mon, 10 Nov 2003 20:24:35 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id D1EA554B7 for ; Mon, 10 Nov 2003 20:24:08 -0800 (PST) Received: (qmail 31881 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31880.qmail@exxodus.fedaykin.here> Received: (qmail 73814 invoked from network); 26 Oct 2003 10:47:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 10:47:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 08:47:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6E9C3 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:30:59 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id 4CB3BC5C5 for ; Sun, 26 Oct 2003 08:30:59 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 06DA65725A for ; Sun, 26 Oct 2003 02:30:55 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6555F16A529; Sun, 26 Oct 2003 02:30:52 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2C5AC16A4C0; Sun, 26 Oct 2003 02:30:51 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA35016A4B3; Sun, 26 Oct 2003 02:30:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 718C543FB1; Sun, 26 Oct 2003 02:30:18 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9QAUIXJ042466; Sun, 26 Oct 2003 02:30:18 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9QAUITV042465; Sun, 26 Oct 2003 02:30:18 -0800 (PST) (envelope-from ume) From: Hajimu UMEMOTO To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.sbin/rrenumd rrenumd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:24:38 -0000 X-Original-Date: Sun, 26 Oct 2003 02:30:17 -0800 (PST) X-List-Received-Date: Tue, 11 Nov 2003 04:24:38 -0000 ume 2003/10/26 02:30:17 PST FreeBSD src repository Modified files: usr.sbin/rrenumd rrenumd.c Log: fix comment. Revision Changes Path 1.7 +1 -1 src/usr.sbin/rrenumd/rrenumd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:24:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D486716A4CE for ; Mon, 10 Nov 2003 20:24:43 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98A9843F3F for ; Mon, 10 Nov 2003 20:24:38 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 707455466 for ; Mon, 10 Nov 2003 20:24:17 -0800 (PST) Received: (qmail 31839 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31838.qmail@exxodus.fedaykin.here> Received: (qmail 72849 invoked from network); 26 Oct 2003 08:47:35 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 08:47:35 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 06:47:13 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6CE42 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 05:37:33 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm8.uol.com.br (Postfix) with ESMTP id 9B091C839 for ; Sun, 26 Oct 2003 06:37:32 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id A78AE56A1C for ; Sun, 26 Oct 2003 01:37:31 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2986616A528; Sun, 26 Oct 2003 01:37:28 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id D7B2016A4BF; Sun, 26 Oct 2003 01:37:26 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A678D16A50E; Sun, 26 Oct 2003 01:36:54 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4296D43FB1; Sun, 26 Oct 2003 01:36:50 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id TAA30147; Sun, 26 Oct 2003 19:36:41 +1100 From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Tim Kientzle In-Reply-To: <3F9B6EB1.5020705@acm.org> References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> <20031026171515.P17272@gamplex.bde.org> <3F9B6EB1.5020705@acm.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:24:44 -0000 X-Original-Date: Sun, 26 Oct 2003 19:36:39 +1100 (EST) X-List-Received-Date: Tue, 11 Nov 2003 04:24:44 -0000 On Sat, 25 Oct 2003, Tim Kientzle wrote: > > On Sat, 25 Oct 2003, Peter Wemm wrote: > >>peter 2003/10/25 21:49:58 PDT > >> > >> FreeBSD src repository > >> > >> Modified files: > >> usr.bin/chat Makefile > >> Log: > >> The math function logf() probably isn't doing us much good for logging > >> stuff. Add -fno-builtin-logf. > > Rather than commit ugly Makefile hacks like > this, just rename the damned function and > be done with it. Hmm. logf() is an extern function so it was reserved in C90. Oherwise there is nothing wrong with its name. Making it static would fix the immediate problem. The gcc bug doesn't show up until WARNS >=4 gives -Wshadow. Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:25:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10DB816A4CE for ; Mon, 10 Nov 2003 20:25:11 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9B1B43FA3 for ; Mon, 10 Nov 2003 20:25:04 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 5281354B7 for ; Mon, 10 Nov 2003 20:24:39 -0800 (PST) Received: (qmail 32155 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32154.qmail@exxodus.fedaykin.here> Received: (qmail 769 invoked from network); 31 Aug 2003 17:47:08 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 17:47:08 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 14:47:08 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.179) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C6F8C for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 14:17:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm12.uol.com.br (Postfix) with ESMTP id 1DB1D7CD7 for ; Sun, 31 Aug 2003 14:17:53 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 4E2B2560E8 for ; Sun, 31 Aug 2003 10:17:49 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id D77AD16A4E2; Sun, 31 Aug 2003 10:17:46 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id A828C16A4C1; Sun, 31 Aug 2003 10:17:45 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 848AA16A4BF; Sun, 31 Aug 2003 10:17:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E0F243FE9; Sun, 31 Aug 2003 10:17:14 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VHHD0U063808; Sun, 31 Aug 2003 10:17:13 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VHHDHL063807; Sun, 31 Aug 2003 10:17:13 -0700 (PDT) From: Wilko Bulte To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/alpha/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:25:11 -0000 X-Original-Date: Sun, 31 Aug 2003 10:17:13 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:25:11 -0000 wilko 2003/08/31 10:17:13 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/alpha/conf GENERIC Log: esp(4) has been declared dead on Alpha for a long time now. Bury the remains. Approved by: re (scottl) Revision Changes Path 1.71.2.29 +0 -1 src/sys/alpha/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:25:42 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B874116A4CE for ; Mon, 10 Nov 2003 20:25:42 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20C5C43FE9 for ; Mon, 10 Nov 2003 20:25:35 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id A135E54F6 for ; Mon, 10 Nov 2003 20:24:54 -0800 (PST) Received: (qmail 31953 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.31952.qmail@exxodus.fedaykin.here> Received: (qmail 74635 invoked from network); 26 Oct 2003 12:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 12:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 10:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D706F4 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:48:00 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm1.uol.com.br (Postfix) with ESMTP id A7F1DE09E for ; Sun, 26 Oct 2003 09:47:59 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 0E58757127 for ; Sun, 26 Oct 2003 03:47:55 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id D58D116A4D6; Sun, 26 Oct 2003 03:47:50 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 0DAB916A4C2; Sun, 26 Oct 2003 03:47:50 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1AC016A4B3; Sun, 26 Oct 2003 03:47:18 -0800 (PST) Received: from mailout04.sul.t-online.com (mailout04.sul.t-online.com [194.25.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0276243F75; Sun, 26 Oct 2003 03:47:17 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd05.aul.t-online.de by mailout04.sul.t-online.com with smtp id 1ADjMO-0007K7-01; Sun, 26 Oct 2003 12:47:04 +0100 Received: from Andro-Beta.Leidinger.net (JO0T2EZFZez9TuWaU8qhAbhWNxHtPlKLQNCEd+XeRTXndxhP0Byk4k@[217.83.20.54]) by fmrl05.sul.t-online.com with esmtp id 1ADjMI-2Gnrf60; Sun, 26 Oct 2003 12:46:58 +0100 Received: from Magelan.Leidinger.net (Magellan [192.168.1.1]) h9QBknf5071990; Sun, 26 Oct 2003 12:46:49 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) h9QBknDC059440; Sun, 26 Oct 2003 12:46:49 +0100 (CET) (envelope-from Alexander@Leidinger.net) From: Alexander Leidinger To: des@des.no (Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?=) In-Reply-To: References: <20031026064145.18F0E2A8D5@canning.wemm.org> X-Mailer: Sylpheed version 0.9.6claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Seen: false X-ID: JO0T2EZFZez9TuWaU8qhAbhWNxHtPlKLQNCEd+XeRTXndxhP0Byk4k@t-dialin.net Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Peter Wemm cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:25:42 -0000 X-Original-Date: Sun, 26 Oct 2003 12:46:48 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:25:42 -0000 On Sun, 26 Oct 2003 12:13:37 +0100 des@des.no (Dag-Erling Sm=F8rgrav) wrote: > Is there any way to teach (or trick) gcc to generate a branch which > the p4 will predict correctly? First of all: ---snip--- `-fno-guess-branch-probability' Do not guess branch probabilities using a randomized model. Sometimes gcc will opt to use a randomized model to guess branch probabilities, when none are available from either profiling feedback (`-fprofile-arcs') or `__builtin_expect'. This means that different runs of the compiler on the same program may produce different object code. In a hard real-time system, people don't want different runs of the compiler to produce code that has different behavior; minimizing non-determinism is of paramount import. This switch allows users to reduce non-determinism, possibly at the expense of inferior optimization. The default is `-fguess-branch-probability' at levels `-O', `-O2', `-O3', `-Os'. ---snip--- Except instrumenting the code with "expect" or using "-fprofile-arcs" there's only the possibility to modify the code of gcc to match our existing model... Bye, Alexander. --=20 I believe the technical term is "Oops!" http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint =3D C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:26:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1068D16A4CF for ; Mon, 10 Nov 2003 20:26:35 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31D1B43F3F for ; Mon, 10 Nov 2003 20:26:29 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id A045B54D0 for ; Mon, 10 Nov 2003 20:25:57 -0800 (PST) Received: (qmail 32080 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32079.qmail@exxodus.fedaykin.here> Received: (qmail 21846 invoked from network); 10 Nov 2003 22:47:43 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:43 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:21 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CA9F8 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:44:08 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm7.uol.com.br (Postfix) with ESMTP id 8A72D3B47E for ; Mon, 10 Nov 2003 20:22:33 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 0E5CF56539 for ; Mon, 10 Nov 2003 14:21:37 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 5081D16A531; Mon, 10 Nov 2003 14:21:33 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 9721516A4D0; Mon, 10 Nov 2003 14:21:32 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D5EF16A4CE; Mon, 10 Nov 2003 14:21:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A877243FAF; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAML0XJ066067; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAML0sW066066; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman) From: Don Lewis Date: Mon, 10 Nov 2003 14:21:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/fs/fifofs fifo_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:26:35 -0000 truckman 2003/11/10 14:21:00 PST FreeBSD src repository Modified files: sys/fs/fifofs fifo_vnops.c Log: If fifo_open() is interrupted, fifo_close() may not get called, causing a resource leak. Move the resource deallocation code from fifo_close() to a new function, fifo_cleanup(), and call fifo_cleanup() from fifo_close() and the appropriate places in fifo_open(). Tested by: Lukas Ertl Pointy hat to: truckman Revision Changes Path 1.90 +23 -9 src/sys/fs/fifofs/fifo_vnops.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:27:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A27B316A4CE for ; Mon, 10 Nov 2003 20:27:17 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89A2D43F75 for ; Mon, 10 Nov 2003 20:27:12 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id EA6D954CF for ; Mon, 10 Nov 2003 20:26:31 -0800 (PST) Received: (qmail 32215 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32214.qmail@exxodus.fedaykin.here> Received: (qmail 1654 invoked from network); 31 Aug 2003 19:47:09 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 19:47:09 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 16:47:09 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.183) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011CA47D for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 16:44:53 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 92C1B7ABB for ; Sun, 31 Aug 2003 16:44:52 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 7E6145717C for ; Sun, 31 Aug 2003 12:44:12 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8350E16A53F; Sun, 31 Aug 2003 12:44:01 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 55A8416A4E4; Sun, 31 Aug 2003 12:44:00 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B63516A4BF; Sun, 31 Aug 2003 12:43:27 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AEAA43FE1; Sun, 31 Aug 2003 12:42:36 -0700 (PDT) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h7VJgQ86062373 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 31 Aug 2003 22:42:27 +0300 (EEST) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h7VJgP6g062368; Sun, 31 Aug 2003 22:42:25 +0300 (EEST) (envelope-from ru) From: Ruslan Ermilov To: Wilko Bulte References: <200308311821.h7VILRvS067006@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bg08WKrSYDhXBjb5" Content-Disposition: inline In-Reply-To: <200308311821.h7VILRvS067006@repoman.freebsd.org> User-Agent: Mutt/1.5.4i Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:27:17 -0000 X-Original-Date: Sun, 31 Aug 2003 22:42:25 +0300 X-List-Received-Date: Tue, 11 Nov 2003 04:27:17 -0000 --bg08WKrSYDhXBjb5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 31, 2003 at 11:21:27AM -0700, Wilko Bulte wrote: > wilko 2003/08/31 11:21:27 PDT >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_4) > release/alpha dokern.sh=20 > Log: > alpha does not have apm, not in GENERIC either. So dokern.sh has > no business trying to remove it. > =20 > Approved by: re (scottl) > =20 > Revision Changes Path > 1.56.2.7 +0 -1 src/release/alpha/dokern.sh >=20 You can dike even more using the below patched script: %%% Index: tools/tools/release/chk_dokern.sh_and_drivers.conf =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: /home/ncvs/src/tools/tools/release/chk_dokern.sh_and_drivers.conf= ,v retrieving revision 1.1 diff -u -p -u -r1.1 chk_dokern.sh_and_drivers.conf --- tools/tools/release/chk_dokern.sh_and_drivers.conf 28 Jul 2003 18:18:20= -0000 1.1 +++ tools/tools/release/chk_dokern.sh_and_drivers.conf 31 Aug 2003 19:41:01= -0000 @@ -31,7 +31,7 @@ for f in */drivers.conf; do arch=3D`dirname $f` grep -v '^#' $f | grep -v '^$' | awk '{ print $1 }' | while read x; do - egrep -qw "^(device|options)[[:space:]]+$x" ../sys/${arch}/conf/G= ENERIC || \ + egrep -qw "^((pseudo-)?device|options)[[:space:]]+$x" ../sys/${ar= ch}/conf/GENERIC || \ echo $x not found in $arch/GENERIC sed -e'/"SMALL"/,/^else$/d' ${arch}/dokern.sh | \ grep -qw $x && \ @@ -46,7 +46,7 @@ for f in */dokern.sh; do grep -w -- -e | sed -e's,^[^/]*/,,' -e's,/.*$,,' | grep -v '^ident\.\*GENERIC$' | while read x; do - egrep -q "^(device|options|makeoptions)[[:space:]]+$x" \ + egrep -q "^((pseudo-)?device|options|makeoptions)[[:space:]]+$x" \ ../sys/${arch}/conf/GENERIC || \ echo $x not found in $arch/GENERIC grep -qw ^$x ${arch}/drivers.conf && \ %%% Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --bg08WKrSYDhXBjb5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE/Uk+hUkv4P6juNwoRAg07AJ49lMQtqzxyMr8f5qDhZXjAL0CorgCeKKPX XjBMEYmn3M19KZNX31qOIXk= =5jPD -----END PGP SIGNATURE----- --bg08WKrSYDhXBjb5-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:27:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8007F16A4CE for ; Mon, 10 Nov 2003 20:27:52 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id D077243FA3 for ; Mon, 10 Nov 2003 20:27:48 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id D3BD554C9 for ; Mon, 10 Nov 2003 20:26:49 -0800 (PST) Received: (qmail 32179 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32178.qmail@exxodus.fedaykin.here> Received: (qmail 1086 invoked from network); 31 Aug 2003 18:47:08 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 18:47:08 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 15:47:08 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.179) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C8723 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 15:23:02 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm7.uol.com.br (Postfix) with ESMTP id 4CF9E6BD1 for ; Sun, 31 Aug 2003 15:23:02 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 5DAAB56A75 for ; Sun, 31 Aug 2003 11:22:05 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 82D5E16A517; Sun, 31 Aug 2003 11:22:01 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 59B5416A4C1; Sun, 31 Aug 2003 11:22:00 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2773016A4BF; Sun, 31 Aug 2003 11:21:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A785043FBF; Sun, 31 Aug 2003 11:21:27 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VILR0U067007; Sun, 31 Aug 2003 11:21:27 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VILRvS067006; Sun, 31 Aug 2003 11:21:27 -0700 (PDT) From: Wilko Bulte To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:27:52 -0000 X-Original-Date: Sun, 31 Aug 2003 11:21:27 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:27:52 -0000 wilko 2003/08/31 11:21:27 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/alpha dokern.sh Log: alpha does not have apm, not in GENERIC either. So dokern.sh has no business trying to remove it. Approved by: re (scottl) Revision Changes Path 1.56.2.7 +0 -1 src/release/alpha/dokern.sh From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:29:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D2E816A4CE for ; Mon, 10 Nov 2003 20:29:06 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7567E43FA3 for ; Mon, 10 Nov 2003 20:28:50 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 059215469 for ; Mon, 10 Nov 2003 20:27:53 -0800 (PST) Received: (qmail 31941 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31940.qmail@exxodus.fedaykin.here> Received: (qmail 74340 invoked from network); 26 Oct 2003 11:47:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:47:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:47:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6FB9C for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:21:29 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id D1230EA23 for ; Sun, 26 Oct 2003 09:21:28 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D71C556BF2 for ; Sun, 26 Oct 2003 03:21:24 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 81AAC16A529; Sun, 26 Oct 2003 03:21:22 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4619E16A4D9; Sun, 26 Oct 2003 03:21:21 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAE4116A4B3; Sun, 26 Oct 2003 03:20:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C10643F85; Sun, 26 Oct 2003 03:20:48 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9QBKmXJ045902; Sun, 26 Oct 2003 03:20:48 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9QBKm4m045901; Sun, 26 Oct 2003 03:20:48 -0800 (PST) (envelope-from des) From: Dag-Erling Smorgrav To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/crypto/openssh auth2-pam-freebsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:29:06 -0000 X-Original-Date: Sun, 26 Oct 2003 03:20:48 -0800 (PST) X-List-Received-Date: Tue, 11 Nov 2003 04:29:06 -0000 des 2003/10/26 03:20:48 PST FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssh auth2-pam-freebsd.c Log: MFC: (1.14) plug a memory leak in the PAM child process. Revision Changes Path 1.1.2.9 +9 -1 src/crypto/openssh/auth2-pam-freebsd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:29:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 989E016A4CE for ; Mon, 10 Nov 2003 20:29:15 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49DAF43FEC for ; Mon, 10 Nov 2003 20:29:05 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id F2C4154D4 for ; Mon, 10 Nov 2003 20:27:57 -0800 (PST) Received: (qmail 31911 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31910.qmail@exxodus.fedaykin.here> Received: (qmail 74177 invoked from network); 26 Oct 2003 11:17:35 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:35 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:13 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6F190 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:55:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 53907EC48 for ; Sun, 26 Oct 2003 08:55:53 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id BA72E57377 for ; Sun, 26 Oct 2003 02:55:43 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 5394516A4D6; Sun, 26 Oct 2003 02:55:38 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 3B5B316A4C0; Sun, 26 Oct 2003 02:55:37 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C051B16A4BF; Sun, 26 Oct 2003 02:55:04 -0800 (PST) Received: from cheer.mahoroba.org (flets19-227.kamome.or.jp [218.45.19.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70DEF43F75; Sun, 26 Oct 2003 02:54:56 -0800 (PST) (envelope-from ume@mahoroba.org) Received: from lyrics.mahoroba.org (IDENT:gL158urWv7IrOJM4bNKLdgu9eKnXKtTpvxRTe4vLzlIl3EGF9/YgLDG5TV7DzVlx@lyrics.mahoroba.org [IPv6:3ffe:501:185b:8010:280:88ff:fe03:4841]) (user=ume mech=CRAM-MD5 bits=0)h9QAspJR081594 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 26 Oct 2003 19:54:51 +0900 (JST) (envelope-from ume@mahoroba.org) From: Hajimu UMEMOTO To: Bruce Evans In-Reply-To: <20031026162715.I17272@gamplex.bde.org> References: <200310251057.h9PAv8pn086818@repoman.freebsd.org> <20031026031516.U14956@gamplex.bde.org> <20031025192855.GA96324@rot13.obsecurity.org> <20031026145253.N16944@gamplex.bde.org> <20031026040132.GA2036@rot13.obsecurity.org> <1067141195.81969.18.camel@shumai.marcuscom.com> <20031026050059.GA2206@rot13.obsecurity.org> <200310260505.h9Q55G9A069567@khavrinen.lcs.mit.edu> <20031026162715.I17272@gamplex.bde.org> User-Agent: xcite1.38> Wanderlust/2.11.3 (Wonderwall) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) X-Operating-System: FreeBSD 5.1-CURRENT MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on cheer.mahoroba.org Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: Kris Kennaway cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: Garrett Wollman Subject: Re: cvs commit: src/sys/netinet icmp6.h ip6.h src/sys/netinet6 in6.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:29:15 -0000 X-Original-Date: Sun, 26 Oct 2003 19:54:51 +0900 X-List-Received-Date: Tue, 11 Nov 2003 04:29:15 -0000 Hi, >>>>> On Sun, 26 Oct 2003 16:38:38 +1100 (EST) >>>>> Bruce Evans said: bde> - the closure of the changes for apparently included bde> some KAME headers. I found that there was one use of u_int32_t in newly introduced struct definition. I've just correct to use uint32_t. I believe it fix the problem. Sorry for the mess. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:29:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF5E016A4CE for ; Mon, 10 Nov 2003 20:29:44 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15FFA43F85 for ; Mon, 10 Nov 2003 20:29:41 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 244B954CC for ; Mon, 10 Nov 2003 20:28:34 -0800 (PST) Received: (qmail 32212 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32211.qmail@exxodus.fedaykin.here> Received: (qmail 1632 invoked from network); 31 Aug 2003 19:47:08 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 19:47:08 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 16:47:08 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.185) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C9D31 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 16:22:47 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 04CD17843 for ; Sun, 31 Aug 2003 16:22:47 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 34BC3554E4 for ; Sun, 31 Aug 2003 12:22:46 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 51B6B16A4E0; Sun, 31 Aug 2003 12:22:43 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 84FF016A4C1; Sun, 31 Aug 2003 12:22:42 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D50A16A4BF; Sun, 31 Aug 2003 12:22:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B950843FEC; Sun, 31 Aug 2003 12:22:10 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VJMA0U070434; Sun, 31 Aug 2003 12:22:10 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VJMAcX070433; Sun, 31 Aug 2003 12:22:10 -0700 (PDT) From: Nate Lawson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/dev/ichsmb ichsmb_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:29:45 -0000 X-Original-Date: Sun, 31 Aug 2003 12:22:10 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:29:45 -0000 njl 2003/08/31 12:22:10 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/ichsmb ichsmb_pci.c Log: MFC two device ids (ICH4 and ICH5). Approved by: re (murray) Revision Changes Path 1.1.2.4 +9 -2 src/sys/dev/ichsmb/ichsmb_pci.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:29:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F72016A4CE for ; Mon, 10 Nov 2003 20:29:57 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D7EC43F75 for ; Mon, 10 Nov 2003 20:29:52 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 2946A5508 for ; Mon, 10 Nov 2003 20:28:46 -0800 (PST) Received: (qmail 31938 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31937.qmail@exxodus.fedaykin.here> Received: (qmail 74333 invoked from network); 26 Oct 2003 11:47:32 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:47:32 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:47:10 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6FAC8 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:19:33 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 7B7B59F5F for ; Sun, 26 Oct 2003 09:19:31 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 1AB49570CF for ; Sun, 26 Oct 2003 03:19:30 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id C152316A518; Sun, 26 Oct 2003 03:19:27 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id BA93016A4C0; Sun, 26 Oct 2003 03:19:26 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5142416A4BF; Sun, 26 Oct 2003 03:18:55 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCCAE43FBF; Sun, 26 Oct 2003 03:18:52 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id DE16979A43; Sun, 26 Oct 2003 12:18:51 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id AA67C9C0AC; Sun, 26 Oct 2003 12:18:51 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id DEC829C04E; Sun, 26 Oct 2003 12:18:47 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id D7351B823; Sun, 26 Oct 2003 12:18:47 +0100 (CET) To: Bruce Evans References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> <20031026171515.P17272@gamplex.bde.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: <20031026171515.P17272@gamplex.bde.org> (Bruce Evans's message of "Sun, 26 Oct 2003 17:22:35 +1100 (EST)") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:29:57 -0000 X-Original-Date: Sun, 26 Oct 2003 12:18:47 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:29:57 -0000 Bruce Evans writes: > On Sat, 25 Oct 2003, Peter Wemm wrote: > > The math function logf() probably isn't doing us much good for logging > > stuff. Add -fno-builtin-logf. > gcc should be fixed instead of unportabilizing Makefiles like this. In the meantime, now that we have a working fabsl(3), we can add -fno-builtin to CFLAGS in bsd.sys.mk. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:30:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 878F616A4CE for ; Mon, 10 Nov 2003 20:30:48 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E9E243F75 for ; Mon, 10 Nov 2003 20:30:33 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 0BBB8546F for ; Mon, 10 Nov 2003 20:29:33 -0800 (PST) Received: (qmail 32071 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32070.qmail@exxodus.fedaykin.here> Received: (qmail 21825 invoked from network); 10 Nov 2003 22:47:39 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:39 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:17 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020C9FCC for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:31:13 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id CD876EDA6 for ; Mon, 10 Nov 2003 20:27:03 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id CDA3455DF7 for ; Mon, 10 Nov 2003 14:27:02 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id A646A16A52F; Mon, 10 Nov 2003 14:26:55 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 0D67416A4D0; Mon, 10 Nov 2003 14:26:55 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E6EC16A4CE; Mon, 10 Nov 2003 14:26:23 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 860D943F93; Mon, 10 Nov 2003 14:26:19 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 2308978CAB; Mon, 10 Nov 2003 23:26:18 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id DC6DC9BEC3; Mon, 10 Nov 2003 23:26:17 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id D91B49BB76; Mon, 10 Nov 2003 23:26:13 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id D0212B828; Mon, 10 Nov 2003 23:26:13 +0100 (CET) To: Hartmut Brandt References: <200311100917.hAA9HYsg097794@repoman.freebsd.org> <7mptg0tkpq.wl@black.imgsrc.co.jp> <20031110143627.T29745@beagle.fokus.fraunhofer.de> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Mon, 10 Nov 2003 23:26:13 +0100 In-Reply-To: <20031110143627.T29745@beagle.fokus.fraunhofer.de> (Harti Brandt's message of "Mon, 10 Nov 2003 14:37:27 +0100 (CET)") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=1.0 required=5.0 tests=SUBJ_HAS_SPACES autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jun Kuriyama cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:30:48 -0000 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Harti Brandt writes: > No, mine. Although the universe made it just fine, the tinderbox breaks. > I'm just testing a fix. See attached fix for 'make universe'. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=universe.diff Index: Makefile =================================================================== RCS file: /home/ncvs/src/Makefile,v retrieving revision 1.291 diff -u -r1.291 Makefile --- Makefile 7 Nov 2003 08:36:55 -0000 1.291 +++ Makefile 10 Nov 2003 22:25:54 -0000 @@ -3,8 +3,6 @@ # # The user-driven targets are: # -# universe - *Really* build *everything* (buildworld and -# all kernels on all architectures). # buildworld - Rebuild *everything*, including glue to help do # upgrades. # installworld - Install everything built by "buildworld". @@ -182,38 +180,8 @@ ${MMAKE} all && \ ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR= -# -# universe -# -# Attempt to rebuild *everything* for all supported architectures, -# with reasonable chance of success, regardless of how old your -# existing system is. -# -i386_mach= pc98 universe: - @echo "--------------------------------------------------------------" - @echo ">>> make universe started on ${STARTTIME}" - @echo "--------------------------------------------------------------" -.for arch in i386 sparc64 alpha ia64 -.for mach in ${arch} ${${arch}_mach} - @echo ">> ${mach} started on `LC_ALL=C date`" - -cd ${.CURDIR} && ${MAKE} buildworld \ - TARGET_ARCH=${arch} TARGET=${mach} \ - __MAKE_CONF=/dev/null \ - > _.${mach}.buildworld 2>&1 - @echo ">> ${mach} buildworld completed on `LC_ALL=C date`" -.if exists(${.CURDIR}/sys/${mach}/conf/NOTES) - -cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \ - > ${.CURDIR}/_.${mach}.makeLINT 2>&1 -.endif - cd ${.CURDIR} && ${MAKE} buildkernels TARGET_ARCH=${arch} TARGET=${mach} - @echo ">> ${mach} completed on `LC_ALL=C date`" -.endfor -.endfor - @echo "--------------------------------------------------------------" - @echo ">>> make universe completed on `LC_ALL=C date`" - @echo " (started ${STARTTIME})" - @echo "--------------------------------------------------------------" + @echo "Use src/tools/tools/tinderbox instead." KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \ find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES --=-=-=-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:31:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E574116A4CE for ; Mon, 10 Nov 2003 20:31:16 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0776D43F3F for ; Mon, 10 Nov 2003 20:31:12 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 83F2F5526 for ; Mon, 10 Nov 2003 20:30:03 -0800 (PST) Received: (qmail 31968 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.31967.qmail@exxodus.fedaykin.here> Received: (qmail 339 invoked from network); 31 Aug 2003 16:47:14 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 16:47:14 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 13:47:14 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.195) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C5B63 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 13:21:13 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm3.uol.com.br (Postfix) with ESMTP id 3B78ACB70 for ; Sun, 31 Aug 2003 13:21:13 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D2B0156DE9 for ; Sun, 31 Aug 2003 09:21:09 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 88EEA16A51E; Sun, 31 Aug 2003 09:21:07 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 94C3516A4C1; Sun, 31 Aug 2003 09:21:06 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BB7316A4BF; Sun, 31 Aug 2003 09:20:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E535D43F75; Sun, 31 Aug 2003 09:20:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VGKY0U060327; Sun, 31 Aug 2003 09:20:34 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VGKYYU060326; Sun, 31 Aug 2003 09:20:34 -0700 (PDT) From: Poul-Henning Kamp To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 geode.c src/sys/conf files.i386 options.i386 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:31:17 -0000 X-Original-Date: Sun, 31 Aug 2003 09:20:34 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:31:17 -0000 phk 2003/08/31 09:20:34 PDT FreeBSD src repository Modified files: sys/conf files.i386 options.i386 Added files: sys/i386/i386 geode.c Log: Detect Geode CPUs and initialize the 27MHz timecounter "Geode". This timecounter is 2usec faster than the i8254 and has 22 times better resolution. Revision Changes Path 1.453 +1 -0 src/sys/conf/files.i386 1.197 +1 -0 src/sys/conf/options.i386 1.1 +100 -0 src/sys/i386/i386/geode.c (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:31:20 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8043216A4CE for ; Mon, 10 Nov 2003 20:31:20 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id A435143FB1 for ; Mon, 10 Nov 2003 20:31:17 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id ADC305531 for ; Mon, 10 Nov 2003 20:30:11 -0800 (PST) Received: (qmail 32122 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32121.qmail@exxodus.fedaykin.here> Received: (qmail 22275 invoked from network); 10 Nov 2003 23:47:37 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 23:47:37 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 21:47:15 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CCF26 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 20:35:35 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm7.uol.com.br (Postfix) with ESMTP id 9B5307832 for ; Mon, 10 Nov 2003 21:34:43 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id B9C765650F for ; Mon, 10 Nov 2003 15:34:42 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 13E0716A4E1; Mon, 10 Nov 2003 15:34:27 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id EFB8716A4CF; Mon, 10 Nov 2003 15:34:25 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1B5516A4DF; Mon, 10 Nov 2003 15:33:53 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56E0343FDD; Mon, 10 Nov 2003 15:33:53 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 3A3442A8FB; Mon, 10 Nov 2003 15:33:53 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Sam Leffler In-Reply-To: <200311101256.56038.sam@errno.com> Date: Mon, 10 Nov 2003 15:33:53 -0800 From: Peter Wemm Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: Jeffrey Hsu cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:31:20 -0000 Sam Leffler wrote: > On Monday 10 November 2003 12:42 pm, Jeffrey Hsu wrote: > > hsu 2003/11/10 12:42:04 PST > > Modified files: > > sys/netinet tcp_syncache.c > > Log: > > Mark TCP syncache timer as not Giant-free ready yet. > > I believe this is wrong. Please revert it or explain why. Without wanting to get into a fight, I'd like to know too. It is customary to put some details or reasoning in the commit log so that we don't have to have questions like this being asked. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:31:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E55016A4CF for ; Mon, 10 Nov 2003 20:31:56 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97E1F43FA3 for ; Mon, 10 Nov 2003 20:31:51 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id DF68D54C9 for ; Mon, 10 Nov 2003 20:30:33 -0800 (PST) Received: (qmail 31932 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31931.qmail@exxodus.fedaykin.here> Received: (qmail 74326 invoked from network); 26 Oct 2003 11:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6FA77 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:18:42 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm12.uol.com.br (Postfix) with ESMTP id 7B9A7D83A for ; Sun, 26 Oct 2003 09:18:42 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id B835556547 for ; Sun, 26 Oct 2003 03:18:41 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id E43CD16A523; Sun, 26 Oct 2003 03:18:38 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 275FE16A4C0; Sun, 26 Oct 2003 03:18:38 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D53816A4B3; Sun, 26 Oct 2003 03:18:06 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [208.142.252.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDDC543FA3; Sun, 26 Oct 2003 03:18:04 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h9QBI1q01829; Sun, 26 Oct 2003 06:18:01 -0500 (EST) (envelope-from jroberson@chesapeake.net) From: Jeff Roberson To: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= In-Reply-To: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:31:56 -0000 X-Original-Date: Sun, 26 Oct 2003 06:18:01 -0500 (EST) X-List-Received-Date: Tue, 11 Nov 2003 04:31:56 -0000 On Sun, 26 Oct 2003, Dag-Erling [iso-8859-1] Sm=F8rgrav wrote: > Peter Wemm writes: > > Massively deep pipelines help get the MHz up, and careful optimization = can > > stop it affecting frame rates. But it blows chunks if you mispredict a > > branch in typical gcc generated code. Or take our libc syscall stubs.. > > every single one will be mispredicted because the usual case (no errors= ) > > has an opposite direction branch to what intel's static branch predicti= on > > expects. > > Is there any way to teach (or trick) gcc to generate a branch which > the p4 will predict correctly? I doubt the effect would be measurable. We could simply rearrange the code. I do not know why it is arranged the way it is now but you would expect that there is some good reason. > > DES > -- > Dag-Erling Sm=F8rgrav - des@des.no > From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:31:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 687BB16A4CE for ; Mon, 10 Nov 2003 20:31:59 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7602743FDD for ; Mon, 10 Nov 2003 20:31:52 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 4739154D4 for ; Mon, 10 Nov 2003 20:30:35 -0800 (PST) Received: (qmail 31761 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31760.qmail@exxodus.fedaykin.here> Received: (qmail 19730 invoked from network); 26 Oct 2003 06:47:51 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:51 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:29 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6B21D for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:42:24 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id DE0DCE632 for ; Sun, 26 Oct 2003 04:42:23 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id B6E7F56BBB for ; Sat, 25 Oct 2003 23:42:22 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 4584E16A4E4; Sat, 25 Oct 2003 23:42:20 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2385A16A4C0; Sat, 25 Oct 2003 23:42:19 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA32416A4B3; Sat, 25 Oct 2003 23:41:47 -0700 (PDT) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3096B43FA3; Sat, 25 Oct 2003 23:41:45 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 18F0E2A8D5; Sat, 25 Oct 2003 23:41:45 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Jeff Roberson In-Reply-To: <20031025192122.Q43805-100000@mail.chesapeake.net> From: Peter Wemm Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:31:59 -0000 X-Original-Date: Sat, 25 Oct 2003 23:41:45 -0700 X-List-Received-Date: Tue, 11 Nov 2003 04:31:59 -0000 Jeff Roberson wrote: > On Sat, 25 Oct 2003, Peter Wemm wrote: > Wow, pentium4 sucks. Yes, I agree then, we should revert the change. I'll do it. > > Intel looks more disappointing every day. Well, think of their optimization goals... The pentium4 was designed for two things.. 1) to increase MHz, since thats all dumbass customers and sales droids understand, and 2) to increase game framerate benchmarks. Anything that didn't contribute to that goal and consumed transistors started losing. For example.. you dont need a barrel shifter for graphics for values other than the standard vga plane depths (1,2,4,8,15,16,24) so out that goes. Graphics processing doesn't need cli/sti, so that gets demoted to 300 clock cycles instead of 8. invlpg isn't a graphics critical function, so there isn't any need to waste transisitors and microcode on it.. Massively deep pipelines help get the MHz up, and careful optimization can stop it affecting frame rates. But it blows chunks if you mispredict a branch in typical gcc generated code. Or take our libc syscall stubs.. every single one will be mispredicted because the usual case (no errors) has an opposite direction branch to what intel's static branch prediction expects. Argh. I'm too cynical. I'd better stop now before I really upset somebody. Anyway, if you can figure out a way to make invlpg affect graphics performance in a big way, then you can expect the next microcode update to do something dramatic about it. :-) Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:32:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B88CE16A4CE for ; Mon, 10 Nov 2003 20:32:13 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F0E943F85 for ; Mon, 10 Nov 2003 20:32:10 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 45C8A5575 for ; Mon, 10 Nov 2003 20:30:47 -0800 (PST) Received: (qmail 32104 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32103.qmail@exxodus.fedaykin.here> Received: (qmail 22115 invoked from network); 10 Nov 2003 23:17:37 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 23:17:37 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 21:17:15 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CBAF8 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 20:06:59 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm8.uol.com.br (Postfix) with ESMTP id 7447B751E for ; Mon, 10 Nov 2003 21:03:31 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id DF7CA56673 for ; Mon, 10 Nov 2003 15:03:10 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 7E5E716A521; Mon, 10 Nov 2003 15:03:08 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 917EC16A4D0; Mon, 10 Nov 2003 15:03:07 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A46DE16A4CE; Mon, 10 Nov 2003 15:02:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2081A43F93; Mon, 10 Nov 2003 15:02:36 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAN2ZXJ068294; Mon, 10 Nov 2003 15:02:35 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAN2ZxB068293; Mon, 10 Nov 2003 15:02:35 -0800 (PST) (envelope-from wilko) From: Wilko Bulte Date: Mon, 10 Nov 2003 15:02:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/games/fortune/datfiles fortunes2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:32:13 -0000 wilko 2003/11/10 15:02:35 PST FreeBSD src repository Modified files: (Branch: RELENG_4) games/fortune/datfiles fortunes2 Log: reformat HP eng. mgr quote Requested by: nate Revision Changes Path 1.17.2.10 +5 -4 src/games/fortune/datfiles/fortunes2 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:33:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA80E16A4CE for ; Mon, 10 Nov 2003 20:33:10 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id A979643F85 for ; Mon, 10 Nov 2003 20:33:03 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 028965541 for ; Mon, 10 Nov 2003 20:31:32 -0800 (PST) Received: (qmail 31926 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31925.qmail@exxodus.fedaykin.here> Received: (qmail 74221 invoked from network); 26 Oct 2003 11:17:38 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:38 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:16 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6F9CD for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:16:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id D3E04EE56 for ; Sun, 26 Oct 2003 09:16:53 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C16FE567C5 for ; Sun, 26 Oct 2003 03:16:48 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 182E116A52B; Sun, 26 Oct 2003 03:16:46 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id E560316A4C0; Sun, 26 Oct 2003 03:16:44 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E012A16A4B3; Sun, 26 Oct 2003 03:16:12 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C068F43F85; Sun, 26 Oct 2003 03:16:11 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id E5BAC79A34; Sun, 26 Oct 2003 12:16:10 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id AC8879C049; Sun, 26 Oct 2003 12:16:10 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id EE7479BFF3; Sun, 26 Oct 2003 12:16:06 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id E7BD5B823; Sun, 26 Oct 2003 12:16:06 +0100 (CET) To: Alfred Perlstein References: <200310251614.h9PGE925019013@repoman.freebsd.org> <20031025233749.GW99943@elvis.mu.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: <20031025233749.GW99943@elvis.mu.org> (Alfred Perlstein's message of "Sat, 25 Oct 2003 16:37:49 -0700") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Robert Watson cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:33:10 -0000 X-Original-Date: Sun, 26 Oct 2003 12:16:06 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:33:10 -0000 Alfred Perlstein writes: > This is bad, it's time to add a flag to the vnode to do this > properly instead of relying upon the underlying FS to implement > the locking. Sounds like a layering violation to me - or am I talking out of my nether regions? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:33:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA54416A4CE for ; Mon, 10 Nov 2003 20:33:16 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0E1C43F85 for ; Mon, 10 Nov 2003 20:33:10 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 3996456B2 for ; Mon, 10 Nov 2003 20:31:36 -0800 (PST) Received: (qmail 31758 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31757.qmail@exxodus.fedaykin.here> Received: (qmail 19723 invoked from network); 26 Oct 2003 06:47:50 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:50 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:28 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6B1D7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:41:14 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id 037A3D4FB for ; Sun, 26 Oct 2003 04:41:14 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 176C656AC8 for ; Sat, 25 Oct 2003 23:41:13 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6A69A16A520; Sat, 25 Oct 2003 23:41:10 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 6648016A4C0; Sat, 25 Oct 2003 23:41:09 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 360EB16A4B3; Sat, 25 Oct 2003 23:40:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA3FC43FBD; Sat, 25 Oct 2003 23:40:37 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6ebXJ024400; Sat, 25 Oct 2003 23:40:37 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6ebs5024399; Sat, 25 Oct 2003 23:40:37 -0700 (PDT) (envelope-from bde) From: Bruce Evans To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/man/man man.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:33:16 -0000 X-Original-Date: Sat, 25 Oct 2003 23:40:37 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:33:16 -0000 bde 2003/10/25 23:40:37 PDT FreeBSD src repository Modified files: gnu/usr.bin/man/man man.c Log: Fix previous commit. glob_filename() returns "(char **) -1" for certain errors, not necessarily a pointer such that (intptr_t)pointer is -1. Also fix the style bug that the cast was not followed by a space. This style of this file is now perfectly non-KNF for this cast too. Revision Changes Path 1.62 +1 -1 src/gnu/usr.bin/man/man/man.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:33:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BF9316A4CE for ; Mon, 10 Nov 2003 20:33:29 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BA0C43FB1 for ; Mon, 10 Nov 2003 20:33:24 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id A2CA956C4 for ; Mon, 10 Nov 2003 20:31:48 -0800 (PST) Received: (qmail 31923 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31922.qmail@exxodus.fedaykin.here> Received: (qmail 74214 invoked from network); 26 Oct 2003 11:17:38 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:38 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:16 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6F8E6 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:14:22 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id 7FE75D414 for ; Sun, 26 Oct 2003 09:14:22 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 93D4856687 for ; Sun, 26 Oct 2003 03:14:21 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id DC01016A4E7; Sun, 26 Oct 2003 03:14:18 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B0D0416A4C0; Sun, 26 Oct 2003 03:14:17 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EACE16A4B3; Sun, 26 Oct 2003 03:13:46 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF2C143F85; Sun, 26 Oct 2003 03:13:42 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 230D979A5B; Sun, 26 Oct 2003 12:13:42 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id D6E039C044; Sun, 26 Oct 2003 12:13:41 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id 246D49BFF3; Sun, 26 Oct 2003 12:13:38 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id 07946B823; Sun, 26 Oct 2003 12:13:38 +0100 (CET) To: Peter Wemm References: <20031026064145.18F0E2A8D5@canning.wemm.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: <20031026064145.18F0E2A8D5@canning.wemm.org> (Peter Wemm's message of "Sat, 25 Oct 2003 23:41:45 -0700") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:33:29 -0000 X-Original-Date: Sun, 26 Oct 2003 12:13:37 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:33:29 -0000 Peter Wemm writes: > Massively deep pipelines help get the MHz up, and careful optimization can > stop it affecting frame rates. But it blows chunks if you mispredict a > branch in typical gcc generated code. Or take our libc syscall stubs.. > every single one will be mispredicted because the usual case (no errors) > has an opposite direction branch to what intel's static branch prediction > expects. Is there any way to teach (or trick) gcc to generate a branch which the p4 will predict correctly? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:33:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A58616A4CE for ; Mon, 10 Nov 2003 20:33:40 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8F8C43FB1 for ; Mon, 10 Nov 2003 20:33:35 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id DE17556C8 for ; Mon, 10 Nov 2003 20:31:55 -0800 (PST) Received: (qmail 31791 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31790.qmail@exxodus.fedaykin.here> Received: (qmail 72248 invoked from network); 26 Oct 2003 07:47:32 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:47:32 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:47:10 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6BEF7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 04:35:37 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm10.uol.com.br (Postfix) with ESMTP id D8DD96CBB for ; Sun, 26 Oct 2003 05:35:36 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id AAB7E56813 for ; Sun, 26 Oct 2003 00:35:35 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8344316A4E1; Sun, 26 Oct 2003 00:35:32 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 7DFDF16A4C0; Sun, 26 Oct 2003 00:35:31 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4887C16A4BF; Sun, 26 Oct 2003 00:35:00 -0700 (PDT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7500B43FE1; Sun, 26 Oct 2003 00:34:58 -0700 (PDT) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.10/8.12.10) with ESMTP id h9Q7Yqax029912; Sun, 26 Oct 2003 08:34:52 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Peter Wemm From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sat, 25 Oct 2003 23:41:45 MST." <20031026064145.18F0E2A8D5@canning.wemm.org> Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:33:40 -0000 X-Original-Date: Sun, 26 Oct 2003 08:34:52 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:33:40 -0000 In message <20031026064145.18F0E2A8D5@canning.wemm.org>, Peter Wemm writes: > >For example.. you dont need a barrel shifter for graphics for values other >than the standard vga plane depths (1,2,4,8,15,16,24) so out that goes. Without disclosing any numbers unduly I can say that the scientific community will find Opteron a much better deal than Intel if they need to add floating point numbers of different magnitudes. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Core work reduction disclaimer: Poul-Henning speaks only for himself. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:33:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9BB416A4CE for ; Mon, 10 Nov 2003 20:33:47 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB71E43FB1 for ; Mon, 10 Nov 2003 20:33:42 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 657635567 for ; Mon, 10 Nov 2003 20:32:10 -0800 (PST) Received: (qmail 31989 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.31988.qmail@exxodus.fedaykin.here> Received: (qmail 47872 invoked from network); 9 Nov 2003 13:47:36 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Nov 2003 13:47:36 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 09 Nov 2003 11:47:14 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C0207EE9F for lioux-freebsd@uol.com.br; Sun, 9 Nov 2003 10:46:39 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id A8BB5E50A for ; Sun, 9 Nov 2003 11:46:37 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D9ECC57775 for ; Sun, 9 Nov 2003 05:46:31 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B44AC16A527; Sun, 9 Nov 2003 05:46:29 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 7472316A4D1; Sun, 9 Nov 2003 05:46:28 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1FF316A4CE; Sun, 9 Nov 2003 05:45:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C6F843F93; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9DjtXJ093879; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Djt7S093878; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde) From: Bruce Evans Date: Sun, 9 Nov 2003 05:45:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:33:48 -0000 bde 2003/11/09 05:45:55 PST FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: Quick fix for scaling of statclock ticks in the SMP case. As explained in the log message for kern_sched.c 1.83 (which should have been repo-copied to preserve history for this file), the (4BSD) scheduler algorithm only works right if stathz is nearly 128 Hz. The old commit lock said 64 Hz; the scheduler actually wants nearly 16 Hz but there was a scale factor of 4 to give the requirement of 64 Hz, and rev.1.83 changed the scale factor so that the requirement became 128 Hz. The change of the scale factor was incomplete in the SMP case. Then scheduling ticks are provided by smp_ncpu CPUs, and the scheduler cannot tell the difference between this and 1 CPU providing scheduling ticks smp_ncpu times faster, so we need another scale factor of smp_ncp or an algorithm change. This quick fix uses the scale factor without even trying to optimize the runtime divisions required for this as is done for the other scale factor. The main algorithmic problem is the clamp on the scheduling tick counts. This was 295; it is now approximately 295 * smp_ncpu. When the limit is reached, threads get free timeslices and scheduling becomes very unfair to the threads that don't hit the limit. The limit can be reached and maintained in the worst case if the load average is larger than (limit / effective_stathz - 1) / 2 = 0.65 now (was just 0.08 with 2 CPUs before this change), so there are algorithmic problems even for a load average of 1. Fortunately, the worst case isn't common enough for the problem to be very noticeable (it is mainly for niced CPU hogs competing with less nice CPU hogs). Revision Changes Path 1.28 +4 -0 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:34:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56B8516A4CE for ; Mon, 10 Nov 2003 20:34:09 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9390243F75 for ; Mon, 10 Nov 2003 20:34:04 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 8D43554CF for ; Mon, 10 Nov 2003 20:32:30 -0800 (PST) Received: (qmail 31956 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.31955.qmail@exxodus.fedaykin.here> Received: (qmail 74642 invoked from network); 26 Oct 2003 12:17:34 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 12:17:34 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 10:17:12 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D709C7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:53:41 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id B9275D9FA for ; Sun, 26 Oct 2003 09:53:39 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id EC27656C4C for ; Sun, 26 Oct 2003 03:53:35 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 31A9C16A523; Sun, 26 Oct 2003 03:53:33 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 27BB116A4C1; Sun, 26 Oct 2003 03:53:32 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B0B216A4BF; Sun, 26 Oct 2003 03:53:00 -0800 (PST) Received: from herring.nlsystems.com (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1203643FDF; Sun, 26 Oct 2003 03:52:59 -0800 (PST) (envelope-from dfr@nlsystems.com) Received: from [10.0.0.2] (herring.nlsystems.com [10.0.0.2]) h9QBqjpA069833; Sun, 26 Oct 2003 11:52:45 GMT (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Peter Wemm In-Reply-To: <20031026064145.18F0E2A8D5@canning.wemm.org> References: <20031026064145.18F0E2A8D5@canning.wemm.org> Content-Type: text/plain Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on herring.nlsystems.com Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:34:09 -0000 X-Original-Date: Sun, 26 Oct 2003 11:52:45 +0000 X-List-Received-Date: Tue, 11 Nov 2003 04:34:09 -0000 On Sun, 2003-10-26 at 06:41, Peter Wemm wrote: > Jeff Roberson wrote: > > On Sat, 25 Oct 2003, Peter Wemm wrote: > > > Wow, pentium4 sucks. Yes, I agree then, we should revert the change. > I'll do it. > > > > Intel looks more disappointing every day. > > Well, think of their optimization goals... The pentium4 was designed for > two things.. 1) to increase MHz, since thats all dumbass customers and > sales droids understand, and 2) to increase game framerate benchmarks. > Anything that didn't contribute to that goal and consumed transistors > started losing. The trick is to find some way to make intel interested in your problems (e.g. change a large site from using intel processors to amd). When the marketing people start to care about an application, the technical people start to collect instruction traces to use for optimising the next generation. In the mid 90s, 486 processors had terrible floating point performance and intel didn't much care. Their instruction traces showed that the applications they cared about (mainly word and excel) didn't use floating point much. As soon as people started trying to use floating point more intensively for games software, intel started profiling and optimising for it and these days, their floating point performance is reasonable for all applications (not just games). The trick, I guess, is to make the right kind of case. If, for instance, the engineers developing Longhorn started telling Intel that AMD processors could e.g. context switch ten times faster than P4s and this would affect the performance of some bogus Longhorn feature, then I imagine things might change. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:34:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 709DF16A4CE for ; Mon, 10 Nov 2003 20:34:12 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 248DF43FBD for ; Mon, 10 Nov 2003 20:34:08 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 9501456CA for ; Mon, 10 Nov 2003 20:32:34 -0800 (PST) Received: (qmail 32125 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32124.qmail@exxodus.fedaykin.here> Received: (qmail 22282 invoked from network); 10 Nov 2003 23:47:38 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 23:47:38 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 21:47:16 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CD32B for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 20:41:27 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm11.uol.com.br (Postfix) with ESMTP id 199D26FB7 for ; Mon, 10 Nov 2003 21:31:45 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id A402455EF4 for ; Mon, 10 Nov 2003 15:30:30 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2C36216A52C; Mon, 10 Nov 2003 15:30:07 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2A62D16A4D4; Mon, 10 Nov 2003 15:30:06 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0428C16A4CE; Mon, 10 Nov 2003 15:29:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 779BF43FBD; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAANTXXJ070409; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAANTX65070408; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam) From: Sam Leffler Date: Mon, 10 Nov 2003 15:29:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:34:12 -0000 sam 2003/11/10 15:29:33 PST FreeBSD src repository Modified files: sys/netinet tcp_syncache.c Log: use Giant-less callouts when debug_mpsafenet is non-zero Supported by: FreeBSD Foundation Revision Changes Path 1.46 +2 -1 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:34:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F74216A4CE for ; Mon, 10 Nov 2003 20:34:25 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9633043F75 for ; Mon, 10 Nov 2003 20:34:18 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 923C2557A for ; Mon, 10 Nov 2003 20:32:42 -0800 (PST) Received: (qmail 32143 invoked by uid 1001); 11 Nov 2003 04:14:43 -0000 Message-ID: <20031111041443.32142.qmail@exxodus.fedaykin.here> Received: (qmail 22514 invoked from network); 11 Nov 2003 00:17:40 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 11 Nov 2003 00:17:40 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 22:17:18 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CE317 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 21:04:51 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 90540904F for ; Mon, 10 Nov 2003 22:04:49 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id F04CA55EE4 for ; Mon, 10 Nov 2003 16:04:47 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 4337C16A4E4; Mon, 10 Nov 2003 16:04:45 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2A18D16A4D0; Mon, 10 Nov 2003 16:04:44 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C6BE16A4CE; Mon, 10 Nov 2003 16:04:12 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB49943F93; Mon, 10 Nov 2003 16:04:06 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAB03weG039952; Mon, 10 Nov 2003 17:03:58 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 10 Nov 2003 17:01:51 -0700 (MST) To: hsu@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> References: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: sam@errno.com cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:34:25 -0000 In message: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> Jeffrey Hsu writes: : Are you kidding me? Or do you really not understand why it's not : Giant-free ready yet? While it may be obvious to you, it seems that a sentence or two about how it isn't giant-free would be useful. Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:34:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE17016A4CE for ; Mon, 10 Nov 2003 20:34:39 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7725743FBD for ; Mon, 10 Nov 2003 20:34:36 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 959155507 for ; Mon, 10 Nov 2003 20:32:53 -0800 (PST) Received: (qmail 31905 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31904.qmail@exxodus.fedaykin.here> Received: (qmail 74154 invoked from network); 26 Oct 2003 11:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6EEFD for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:49:55 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 9C442ECE3 for ; Sun, 26 Oct 2003 08:49:54 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id DEBD5571E9 for ; Sun, 26 Oct 2003 02:49:53 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 90D3016A522; Sun, 26 Oct 2003 02:49:51 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id AD00616A4C0; Sun, 26 Oct 2003 02:49:50 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4929016A4BF; Sun, 26 Oct 2003 02:49:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0FF843FAF; Sun, 26 Oct 2003 02:49:18 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9QAnIXJ043296; Sun, 26 Oct 2003 02:49:18 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9QAnIZ2043295; Sun, 26 Oct 2003 02:49:18 -0800 (PST) (envelope-from ume) From: Hajimu UMEMOTO To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/netinet6 in6.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:34:40 -0000 X-Original-Date: Sun, 26 Oct 2003 02:49:18 -0800 (PST) X-List-Received-Date: Tue, 11 Nov 2003 04:34:40 -0000 ume 2003/10/26 02:49:18 PST FreeBSD src repository Modified files: sys/netinet6 in6.h Log: use uint32_t instead of u_int32_t for newly introduced struct definition. Revision Changes Path 1.31 +1 -1 src/sys/netinet6/in6.h From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:35:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A787716A4CE for ; Mon, 10 Nov 2003 20:35:16 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C56D43F75 for ; Mon, 10 Nov 2003 20:35:13 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id A73B456B5 for ; Mon, 10 Nov 2003 20:33:20 -0800 (PST) Received: (qmail 31662 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31661.qmail@exxodus.fedaykin.here> Received: (qmail 4228 invoked from network); 21 Oct 2003 22:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 22:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 20:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6F45B for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 19:35:10 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id E567A17668 for ; Tue, 21 Oct 2003 20:18:56 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 9624A5617D for ; Tue, 21 Oct 2003 15:18:55 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B8EF316A50E; Tue, 21 Oct 2003 15:18:52 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id C7DB516A4C0; Tue, 21 Oct 2003 15:18:51 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8541C16A4B3; Tue, 21 Oct 2003 15:18:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C8943FAF; Tue, 21 Oct 2003 15:18:20 -0700 (PDT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LMIJXJ013143; Tue, 21 Oct 2003 15:18:19 -0700 (PDT) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LMIJj4013142; Tue, 21 Oct 2003 15:18:19 -0700 (PDT) (envelope-from thomas) From: Thomas Quinot To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:35:16 -0000 X-Original-Date: Tue, 21 Oct 2003 15:18:19 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:35:16 -0000 thomas 2003/10/21 15:18:19 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_da.c Log: MFC rev. 1.160: (dacleanup, dasysctlinit): Defend against calling sysctl_ctx_free on an uninitialized sysctl_ctx. Approved by: re (murray) Revision Changes Path 1.42.2.46 +5 -2 src/sys/cam/scsi/scsi_da.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:35:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E454416A4CE for ; Mon, 10 Nov 2003 20:35:30 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5295143F75 for ; Mon, 10 Nov 2003 20:35:24 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 66EA456DF for ; Mon, 10 Nov 2003 20:33:29 -0800 (PST) Received: (qmail 31575 invoked by uid 1001); 11 Nov 2003 04:14:41 -0000 Message-ID: <20031111041441.31574.qmail@exxodus.fedaykin.here> Received: (qmail 2760 invoked from network); 21 Oct 2003 20:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 20:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 18:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.198) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C685A5 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 17:16:17 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id D497117EF3 for ; Tue, 21 Oct 2003 17:57:49 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 47266568D4 for ; Tue, 21 Oct 2003 12:56:59 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B8C7616A4E8; Tue, 21 Oct 2003 12:56:56 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 77AAA16A4C0; Tue, 21 Oct 2003 12:56:55 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44DA916A4B3; Tue, 21 Oct 2003 12:56:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B911043FA3; Tue, 21 Oct 2003 12:56:23 -0700 (PDT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LJuNXJ004385; Tue, 21 Oct 2003 12:56:23 -0700 (PDT) (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LJuNXj004384; Tue, 21 Oct 2003 12:56:23 -0700 (PDT) (envelope-from sergei) From: Sergei Kolobov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:35:31 -0000 X-Original-Date: Tue, 21 Oct 2003 12:56:23 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:35:31 -0000 sergei 2003/10/21 12:56:23 PDT FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself. Approved by: krion (mentor) Revision Changes Path 1.108 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:35:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 549F316A4CE for ; Mon, 10 Nov 2003 20:35:43 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2CCB43FBD for ; Mon, 10 Nov 2003 20:35:35 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 1FD1756C8 for ; Mon, 10 Nov 2003 20:33:41 -0800 (PST) Received: (qmail 31539 invoked by uid 1001); 11 Nov 2003 04:14:41 -0000 Message-ID: <20031111041441.31538.qmail@exxodus.fedaykin.here> Received: (qmail 2234 invoked from network); 21 Oct 2003 19:17:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 19:17:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 17:17:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C65262 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 16:16:23 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id B735F6C2BE for ; Tue, 21 Oct 2003 16:55:32 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 2709A56468 for ; Tue, 21 Oct 2003 11:54:27 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6B55416A50D; Tue, 21 Oct 2003 11:54:25 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2940816A4BF; Tue, 21 Oct 2003 11:54:24 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6EFB16A4C0 for ; Tue, 21 Oct 2003 11:53:52 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 2145543FAF for ; Tue, 21 Oct 2003 11:53:50 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 80820 invoked from network); 21 Oct 2003 18:53:48 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 21 Oct 2003 18:53:48 -0000 X-pair-Authenticated: 209.68.2.70 From: Mike Silbersack To: Mike Silbersack In-Reply-To: <200310211828.h9LISaO6093920@repoman.freebsd.org> References: <200310211828.h9LISaO6093920@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/amd64 amd64_mem.c tsc.csrc/sys/dev/aac aac_disk.c src/sys/dev/ata ata-disk.c src/sys/dev/pci pci_pci.c src/sys/i386/i386 i686_mem.c tsc.c src/sys/i386/pci pc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:35:43 -0000 X-Original-Date: Tue, 21 Oct 2003 15:53:35 -0500 (CDT) X-List-Received-Date: Tue, 11 Nov 2003 04:35:43 -0000 On Tue, 21 Oct 2003, Mike Silbersack wrote: > Change all SYSCTLS which are readonly and have a related TUNABLE > from CTLFLAG_RD to CTLFLAG_RDTUN so that sysctl(8) can provide > more useful error messages. For those interested, this series of commits causes the following to happen: > sysctl kern.maxproc=1 Tunable values are set in /boot/loader.conf and require a reboot to take effect. sysctl: oid 'kern.maxproc' is a tunable. This should help reduce confusion for sysadmins trying to tune FreeBSD for the first time. Perhaps the documentation could be improved as well, but I'm too lazy to tackle that right now. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:36:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8265016A4CF for ; Mon, 10 Nov 2003 20:36:02 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D12143F75 for ; Mon, 10 Nov 2003 20:35:53 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 4316F54B4 for ; Mon, 10 Nov 2003 20:33:59 -0800 (PST) Received: (qmail 31737 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31736.qmail@exxodus.fedaykin.here> Received: (qmail 19638 invoked from network); 26 Oct 2003 06:47:37 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:37 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:15 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AC85 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:23:17 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm13.uol.com.br (Postfix) with ESMTP id BC8CE8FAA6 for ; Sun, 26 Oct 2003 04:23:16 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 6317156457 for ; Sat, 25 Oct 2003 23:23:15 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id ACBB216A525; Sat, 25 Oct 2003 23:23:12 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 9C06616A4C0; Sat, 25 Oct 2003 23:23:11 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F10116A4B3; Sat, 25 Oct 2003 23:22:40 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19FC643FA3; Sat, 25 Oct 2003 23:22:38 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id RAA18555; Sun, 26 Oct 2003 17:22:35 +1100 From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Peter Wemm In-Reply-To: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:36:02 -0000 X-Original-Date: Sun, 26 Oct 2003 17:22:35 +1100 (EST) X-List-Received-Date: Tue, 11 Nov 2003 04:36:02 -0000 On Sat, 25 Oct 2003, Peter Wemm wrote: > peter 2003/10/25 21:49:58 PDT > > FreeBSD src repository > > Modified files: > usr.bin/chat Makefile > Log: > The math function logf() probably isn't doing us much good for logging > stuff. Add -fno-builtin-logf. gcc should be fixed instead of unportabilizing Makefiles like this. Don't forget to change this and all the misspellings of log and sin back when gcc is fixed :-). Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:36:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF38516A4CE for ; Mon, 10 Nov 2003 20:36:25 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E24D43FE0 for ; Mon, 10 Nov 2003 20:36:21 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 727D656D0 for ; Mon, 10 Nov 2003 20:34:21 -0800 (PST) Received: (qmail 31806 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31805.qmail@exxodus.fedaykin.here> Received: (qmail 72276 invoked from network); 26 Oct 2003 07:47:34 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:47:34 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:47:12 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6C1C7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 04:46:30 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm13.uol.com.br (Postfix) with ESMTP id 1B3C38E37A for ; Sun, 26 Oct 2003 05:46:29 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 890FF56C8C for ; Sun, 26 Oct 2003 00:46:24 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 9F5B016A524; Sun, 26 Oct 2003 00:46:21 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 5CF1816A4C0; Sun, 26 Oct 2003 00:46:20 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21D1E16A4B3; Sun, 26 Oct 2003 00:45:49 -0700 (PDT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B6A443FA3; Sun, 26 Oct 2003 00:45:48 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.9p2/8.12.9) with ESMTP id h9Q7jVeF020616; Sun, 26 Oct 2003 00:45:36 -0700 (PDT) (envelope-from truckman@FreeBSD.org) From: Don Lewis To: alc@cs.rice.edu In-Reply-To: <20031026041909.GY20658@cs.rice.edu> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: jroberson@chesapeake.net cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: peter@wemm.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:36:26 -0000 X-Original-Date: Sun, 26 Oct 2003 00:45:31 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:36:26 -0000 On 25 Oct, Alan Cox wrote: > On Sat, Oct 25, 2003 at 11:14:48PM -0400, Jeff Roberson wrote: >> >> Uhm, dumb question, why don't we just allocate one page of kva per >> processor and avoid the mutex, the switchin/out, etc? To save KVA? At 3 >> pages per processor and a max of 8 processors on intel, that's 192k. We >> can probably spare it. I just saved that much with some UMA tuning. >> > > The mutex and the switchin mechanism are addressing two distinct needs. > > The mutex exists because there is a single KVA for some low-level pmap > functions on i386. (This could be changed, eliminating the need for > the mutex.) > > If, however, you eliminate the need for the mutex, you still require > the switchin mechanism as a means of handling preemption, > specifically, migration of the preempted thread between CPUs. The > alternative is to make pmap_zero_page() and the like critical > sections. Why not allow preemption, but just mark the thread as being ineligable for migration while it is executing pmap_zero_page() and similar bits of code? The thread might have to wait longer to get the CPU again after it was preempted, but so what. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:36:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02D2C16A4CE for ; Mon, 10 Nov 2003 20:36:34 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A4F43FCB for ; Mon, 10 Nov 2003 20:36:25 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 923CB557A for ; Mon, 10 Nov 2003 20:34:25 -0800 (PST) Received: (qmail 31803 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31802.qmail@exxodus.fedaykin.here> Received: (qmail 72269 invoked from network); 26 Oct 2003 07:47:34 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:47:34 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:47:12 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6C103 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 04:43:10 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 39E9ADBF5 for ; Sun, 26 Oct 2003 05:43:10 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 6D21256ED7 for ; Sun, 26 Oct 2003 00:43:09 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 527DD16A51F; Sun, 26 Oct 2003 00:43:06 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 71F3E16A4BF; Sun, 26 Oct 2003 00:43:05 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33DDF16A4C0; Sun, 26 Oct 2003 00:42:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5495543FD7; Sun, 26 Oct 2003 00:42:33 -0700 (PDT) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q7gXXJ027865; Sun, 26 Oct 2003 00:42:33 -0700 (PDT) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q7gXlY027864; Sun, 26 Oct 2003 00:42:33 -0700 (PDT) (envelope-from simokawa) From: Hidetoshi Shimokawa To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:36:34 -0000 X-Original-Date: Sun, 26 Oct 2003 00:42:33 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:36:34 -0000 simokawa 2003/10/26 00:42:33 PDT FreeBSD src repository Modified files: sys/conf files Log: Revert previous change. We have to put dcons_crom at first after 'optional' and dcons and firewire are necessary and not optional for dcons_crom anyway. Reported by: brooks Revision Changes Path 1.840 +1 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:36:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6ADE16A4CE for ; Mon, 10 Nov 2003 20:36:40 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0741243FCB for ; Mon, 10 Nov 2003 20:36:34 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 6A5F356E9 for ; Mon, 10 Nov 2003 20:34:30 -0800 (PST) Received: (qmail 31752 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31751.qmail@exxodus.fedaykin.here> Received: (qmail 19682 invoked from network); 26 Oct 2003 06:47:45 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:45 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:23 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AFAE for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:33:28 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id 28A76CDF1 for ; Sun, 26 Oct 2003 04:33:27 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 699CF56A17 for ; Sat, 25 Oct 2003 23:33:26 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2DF1716A522; Sat, 25 Oct 2003 23:33:24 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4208316A4C0; Sat, 25 Oct 2003 23:33:23 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9311616A4B3; Sat, 25 Oct 2003 23:32:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1619243FAF; Sat, 25 Oct 2003 23:32:51 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6WoXJ023916; Sat, 25 Oct 2003 23:32:50 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6Woj1023915; Sat, 25 Oct 2003 23:32:50 -0700 (PDT) (envelope-from imp) From: Warner Losh To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/dev/pccard pccarddevs.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:36:40 -0000 X-Original-Date: Sat, 25 Oct 2003 23:32:50 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:36:40 -0000 imp 2003/10/25 23:32:50 PDT FreeBSD src repository Modified files: sys/dev/pccard pccarddevs.h Log: Sync to pccarddevs 1.74 Revision Changes Path 1.74 +4 -1 src/sys/dev/pccard/pccarddevs.h From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:36:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1A1316A4CF for ; Mon, 10 Nov 2003 20:36:49 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3D2143FCB for ; Mon, 10 Nov 2003 20:36:47 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id B85BD56D2 for ; Mon, 10 Nov 2003 20:34:42 -0800 (PST) Received: (qmail 31749 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31748.qmail@exxodus.fedaykin.here> Received: (qmail 19675 invoked from network); 26 Oct 2003 06:47:44 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:44 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:22 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AF60 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:32:25 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id 8829CD1C3 for ; Sun, 26 Oct 2003 04:32:24 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 61EC655726 for ; Sat, 25 Oct 2003 23:32:23 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id D567316A4DF; Sat, 25 Oct 2003 23:32:19 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 1160816A4C0; Sat, 25 Oct 2003 23:32:19 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A554316A4B3; Sat, 25 Oct 2003 23:31:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E8B43FBF; Sat, 25 Oct 2003 23:31:47 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6VkXJ023859; Sat, 25 Oct 2003 23:31:46 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6Vkae023858; Sat, 25 Oct 2003 23:31:46 -0700 (PDT) (envelope-from imp) From: Warner Losh To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/dev/pccard pccarddevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:36:49 -0000 X-Original-Date: Sat, 25 Oct 2003 23:31:46 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:36:49 -0000 imp 2003/10/25 23:31:46 PDT FreeBSD src repository Modified files: sys/dev/pccard pccarddevs Log: Add ID for olicom GOCARD Ethernet (OC2220) Revision Changes Path 1.74 +1 -0 src/sys/dev/pccard/pccarddevs From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:37:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1B2016A4CE for ; Mon, 10 Nov 2003 20:37:01 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2BC543F75 for ; Mon, 10 Nov 2003 20:36:57 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 4A3405466 for ; Mon, 10 Nov 2003 20:34:48 -0800 (PST) Received: (qmail 31731 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31730.qmail@exxodus.fedaykin.here> Received: (qmail 19631 invoked from network); 26 Oct 2003 06:47:35 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:35 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:13 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AC00 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:21:57 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 4FC61C859 for ; Sun, 26 Oct 2003 04:21:54 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 3C3EB5622F for ; Sat, 25 Oct 2003 23:21:52 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8525516A526; Sat, 25 Oct 2003 23:21:49 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B7FC116A4C0; Sat, 25 Oct 2003 23:21:48 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A79716A4B3; Sat, 25 Oct 2003 23:21:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E07843FBD; Sat, 25 Oct 2003 23:21:17 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6LGXJ023252; Sat, 25 Oct 2003 23:21:16 -0700 (PDT) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6LGQN023251; Sat, 25 Oct 2003 23:21:16 -0700 (PDT) (envelope-from ume) From: Hajimu UMEMOTO To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.sbin/rrenumd rrenumd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:37:02 -0000 X-Original-Date: Sat, 25 Oct 2003 23:21:16 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:37:02 -0000 ume 2003/10/25 23:21:16 PDT FreeBSD src repository Modified files: usr.sbin/rrenumd rrenumd.c Log: one more IPV6_PKTINFO -> IPV6_RECVPKTINFO. Revision Changes Path 1.6 +2 -2 src/usr.sbin/rrenumd/rrenumd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:37:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C72FA16A4CE for ; Mon, 10 Nov 2003 20:37:09 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90BB843F75 for ; Mon, 10 Nov 2003 20:37:05 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 8E20D552F for ; Mon, 10 Nov 2003 20:35:08 -0800 (PST) Received: (qmail 31782 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31781.qmail@exxodus.fedaykin.here> Received: (qmail 52803 invoked from network); 26 Oct 2003 07:18:06 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:18:06 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:17:44 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6B424 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:51:09 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 6220DE680 for ; Sun, 26 Oct 2003 04:51:07 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 29424564EB for ; Sat, 25 Oct 2003 23:51:05 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id C820616A51E; Sat, 25 Oct 2003 23:51:02 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B5D4116A4C0; Sat, 25 Oct 2003 23:51:01 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77FCB16A4B3; Sat, 25 Oct 2003 23:50:30 -0700 (PDT) Received: from kientzle.com (h-66-166-149-50.SNVACAID.covad.net [66.166.149.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3507943F75; Sat, 25 Oct 2003 23:50:27 -0700 (PDT) (envelope-from kientzle@acm.org) Received: from acm.org ([66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id h9Q6oPkX018064; Sat, 25 Oct 2003 23:50:26 -0700 (PDT) (envelope-from kientzle@acm.org) From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031006 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bruce Evans References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> <20031026171515.P17272@gamplex.bde.org> In-Reply-To: <20031026171515.P17272@gamplex.bde.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Reply-To: kientzle@acm.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:37:09 -0000 X-Original-Date: Sat, 25 Oct 2003 23:50:25 -0700 X-List-Received-Date: Tue, 11 Nov 2003 04:37:09 -0000 > On Sat, 25 Oct 2003, Peter Wemm wrote: >>peter 2003/10/25 21:49:58 PDT >> >> FreeBSD src repository >> >> Modified files: >> usr.bin/chat Makefile >> Log: >> The math function logf() probably isn't doing us much good for logging >> stuff. Add -fno-builtin-logf. Rather than commit ugly Makefile hacks like this, just rename the damned function and be done with it. Tim Kientzle From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:37:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BD8016A4CE for ; Mon, 10 Nov 2003 20:37:14 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0078343FB1 for ; Mon, 10 Nov 2003 20:37:11 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id AD8525541 for ; Mon, 10 Nov 2003 20:35:14 -0800 (PST) Received: (qmail 31671 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31670.qmail@exxodus.fedaykin.here> Received: (qmail 4235 invoked from network); 21 Oct 2003 22:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 22:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 20:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6F560 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 19:36:25 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id AE26D8B6E for ; Tue, 21 Oct 2003 20:27:44 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C34F856E63 for ; Tue, 21 Oct 2003 15:26:49 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 94BF316A537; Tue, 21 Oct 2003 15:26:46 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4246716A4E7; Tue, 21 Oct 2003 15:26:45 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E93BC16A4B3; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6ACBE43F93; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LMQCXJ013488; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LMQCx1013487; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) (envelope-from thomas) From: Thomas Quinot To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_cd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:37:14 -0000 X-Original-Date: Tue, 21 Oct 2003 15:26:12 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:37:14 -0000 thomas 2003/10/21 15:26:12 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_cd.c Log: MFC rev. 1.86: (cdcleanup,cdsysctlinit): Defend against calling sysctl_ctx_free on an uninitialized sysctl_ctx. Approved by: re (murray) Revision Changes Path 1.31.2.16 +6 -2 src/sys/cam/scsi/scsi_cd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:37:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E2B416A4CE for ; Mon, 10 Nov 2003 20:37:26 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A7A943FCB for ; Mon, 10 Nov 2003 20:37:22 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 358555547 for ; Mon, 10 Nov 2003 20:35:29 -0800 (PST) Received: (qmail 31746 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31745.qmail@exxodus.fedaykin.here> Received: (qmail 19668 invoked from network); 26 Oct 2003 06:47:42 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:42 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:20 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AEE4 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:31:05 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id E418BE6F9 for ; Sun, 26 Oct 2003 04:31:04 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 2D440568F5 for ; Sat, 25 Oct 2003 23:31:04 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id E9F2F16A533; Sat, 25 Oct 2003 23:31:00 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 3167716A4C0; Sat, 25 Oct 2003 23:31:00 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6DED16A4B3; Sat, 25 Oct 2003 23:30:27 -0700 (PDT) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43CAE43FDD; Sat, 25 Oct 2003 23:30:27 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 253692A8DA; Sat, 25 Oct 2003 23:30:27 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: From: Peter Wemm Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:37:26 -0000 X-Original-Date: Sat, 25 Oct 2003 23:30:27 -0700 X-List-Received-Date: Tue, 11 Nov 2003 04:37:26 -0000 Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= wrote: > Jeff Roberson writes: > > Wow, pentium4 sucks [...] Intel looks more disappointing every day. > > "Our records indicate that you are not currently licensed to make > disparaging comments about Intel products. Should you choose to apply > for such a license, we will process your application with all due > speed - as soon as our AMD-based computers, which all run FreeBSD 5, > manage to stay up for more than ten minutes at a time." > > DES (typing on a P4 which, unlike his dual Athlon, *works*) Heh. This problem is the reason why your dual athlon doesn't work. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:37:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C76DF16A4CE for ; Mon, 10 Nov 2003 20:37:35 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id D206743FE3 for ; Mon, 10 Nov 2003 20:37:31 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 847EB555E for ; Mon, 10 Nov 2003 20:35:43 -0800 (PST) Received: (qmail 31668 invoked by uid 1001); 11 Nov 2003 04:14:42 -0000 Message-ID: <20031111041442.31667.qmail@exxodus.fedaykin.here> Received: (qmail 4222 invoked from network); 21 Oct 2003 22:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 22:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 20:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6EE1F for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 19:27:06 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id 357AF1AE61E for ; Tue, 21 Oct 2003 19:54:07 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 55E0D55D55 for ; Tue, 21 Oct 2003 14:53:37 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 9339816A4E2; Tue, 21 Oct 2003 14:53:33 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id BB43216A4C0; Tue, 21 Oct 2003 14:53:32 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 508C316A4B3; Tue, 21 Oct 2003 14:53:01 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EC7243FBD; Tue, 21 Oct 2003 14:53:00 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 7081E2ED44E; Tue, 21 Oct 2003 14:53:00 -0700 (PDT) From: Alfred Perlstein To: Mike Silbersack References: <200310211648.h9LGmXFK087432@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310211648.h9LGmXFK087432@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sysctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:37:35 -0000 X-Original-Date: Tue, 21 Oct 2003 14:53:00 -0700 X-List-Received-Date: Tue, 11 Nov 2003 04:37:35 -0000 * Mike Silbersack [031021 09:49] wrote: > silby 2003/10/21 09:48:33 PDT > > FreeBSD src repository > > Modified files: > sys/sys sysctl.h > Log: > Add another sysctl flag, CTLFLAG_TUN, which is a hint to the userland > sysctl that a given variable is tunable. > > Also added is CTLFLAG_RDTUN, which is CTLFLAG_RD|CTLFLAG_TUN; TUN does > not always imply read-only, so RDTUN should be used where RD was used > before. why not just make new TUNABLE macros to export them as sysctl? -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:39:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8E2816A4CE for ; Mon, 10 Nov 2003 20:39:09 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29BA643FCB for ; Mon, 10 Nov 2003 20:38:55 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 58C8256D8 for ; Mon, 10 Nov 2003 20:36:55 -0800 (PST) Received: (qmail 31638 invoked by uid 1001); 11 Nov 2003 04:14:41 -0000 Message-ID: <20031111041441.31637.qmail@exxodus.fedaykin.here> Received: (qmail 3604 invoked from network); 21 Oct 2003 21:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 21:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 19:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.198) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6C998 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 18:40:25 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id 374F98FD6 for ; Tue, 21 Oct 2003 19:24:39 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 31EAB5641B for ; Tue, 21 Oct 2003 14:23:14 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id BA9A216A51C; Tue, 21 Oct 2003 14:23:11 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 8289C16A4C0; Tue, 21 Oct 2003 14:23:10 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62B7D16A4B3 for ; Tue, 21 Oct 2003 14:22:39 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id D5BEA43FB1 for ; Tue, 21 Oct 2003 14:22:36 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 57305 invoked from network); 21 Oct 2003 21:22:34 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 21 Oct 2003 21:22:34 -0000 X-pair-Authenticated: 209.68.2.70 From: Mike Silbersack To: John Baldwin In-Reply-To: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/sys sysctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:39:10 -0000 X-Original-Date: Tue, 21 Oct 2003 18:22:21 -0500 (CDT) X-List-Received-Date: Tue, 11 Nov 2003 04:39:10 -0000 On Tue, 21 Oct 2003, John Baldwin wrote: > Why have a RDTUN special case flag? You can just add CTLFLAG_TUN to the > appropriate places. The TUN flag seems somewhat dubious as well for > that matter. > > -- > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ I made the CTLFLAG_RDTUN flag to save myself some typing, that's all. The TUN flag can easily be removed when something better comes along. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:39:33 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6554016A4CE for ; Mon, 10 Nov 2003 20:39:33 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4D1B43FB1 for ; Mon, 10 Nov 2003 20:39:28 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id CD760552F for ; Mon, 10 Nov 2003 20:37:11 -0800 (PST) Received: (qmail 31569 invoked by uid 1001); 11 Nov 2003 04:14:41 -0000 Message-ID: <20031111041441.31568.qmail@exxodus.fedaykin.here> Received: (qmail 2703 invoked from network); 21 Oct 2003 20:17:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 20:17:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 18:17:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C677C3 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 16:58:30 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id 82390135DE for ; Tue, 21 Oct 2003 17:17:11 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C1BC1563DE for ; Tue, 21 Oct 2003 12:16:05 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B4A5C16A52E; Tue, 21 Oct 2003 12:16:02 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B5B7A16A4C0; Tue, 21 Oct 2003 12:16:01 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D18E16A4B3; Tue, 21 Oct 2003 12:15:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F69343F3F; Tue, 21 Oct 2003 12:15:30 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LJFTXJ096742; Tue, 21 Oct 2003 12:15:29 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LJFTiT096741; Tue, 21 Oct 2003 12:15:29 -0700 (PDT) (envelope-from imp) From: Warner Losh To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/etc remote X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:39:33 -0000 X-Original-Date: Tue, 21 Oct 2003 12:15:29 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:39:33 -0000 imp 2003/10/21 12:15:29 PDT FreeBSD src repository Modified files: etc remote Log: Modernize examples/usage. Kill 1200/300 baud modem entries and instead use 14.4kbps and faster modems as examples. Separate line speed and baud rate and be careful when talking of one verses the other. Revision Changes Path 1.13 +37 -31 src/etc/remote From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:39:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FF4216A4CE for ; Mon, 10 Nov 2003 20:39:50 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F02F43F93 for ; Mon, 10 Nov 2003 20:39:48 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 8424E5547 for ; Mon, 10 Nov 2003 20:37:29 -0800 (PST) Received: (qmail 31424 invoked by uid 1001); 11 Nov 2003 04:14:40 -0000 Message-ID: <20031111041440.31423.qmail@exxodus.fedaykin.here> Received: (qmail 1136 invoked from network); 21 Oct 2003 17:17:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 17:17:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 15:17:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C5DB5B for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 13:52:12 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id 25DFEC20E for ; Tue, 21 Oct 2003 14:51:25 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 59DA156BD5 for ; Tue, 21 Oct 2003 09:50:06 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 857B016A523; Tue, 21 Oct 2003 09:50:03 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id C926916A4C0; Tue, 21 Oct 2003 09:50:02 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FCDD16A4B3; Tue, 21 Oct 2003 09:49:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C556F43F75; Tue, 21 Oct 2003 09:49:30 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LGnUXJ087502; Tue, 21 Oct 2003 09:49:30 -0700 (PDT) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LGnUnv087499; Tue, 21 Oct 2003 09:49:30 -0700 (PDT) (envelope-from silby) From: Mike Silbersack To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sbin/sysctl sysctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:39:50 -0000 X-Original-Date: Tue, 21 Oct 2003 09:49:30 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:39:50 -0000 silby 2003/10/21 09:49:30 PDT FreeBSD src repository Modified files: sbin/sysctl sysctl.c Log: Have sysctl print out a more useful error message when it detects that the user has attempted to write to a read only, tunable value. Revision Changes Path 1.54 +6 -1 src/sbin/sysctl/sysctl.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:41:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 114D516A4CE for ; Mon, 10 Nov 2003 20:41:00 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 162BF43FBF for ; Mon, 10 Nov 2003 20:40:53 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 106225562 for ; Mon, 10 Nov 2003 20:37:55 -0800 (PST) Received: (qmail 31348 invoked by uid 1001); 11 Nov 2003 04:14:40 -0000 Message-ID: <20031111041440.31347.qmail@exxodus.fedaykin.here> Received: (qmail 542 invoked from network); 21 Oct 2003 16:18:46 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 16:18:46 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 14:18:24 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C59F87 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 12:36:03 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id 06D387F51 for ; Tue, 21 Oct 2003 13:36:02 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 19B1356992 for ; Tue, 21 Oct 2003 08:35:18 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id CDF8316A523; Tue, 21 Oct 2003 08:35:15 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 91E2C16A4C0; Tue, 21 Oct 2003 08:35:14 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EAD816A4BF for ; Tue, 21 Oct 2003 08:34:43 -0700 (PDT) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 629D843FBD for ; Tue, 21 Oct 2003 08:34:40 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 25551 invoked from network); 21 Oct 2003 15:34:39 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 21 Oct 2003 15:34:39 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id h9LFYZce087049; Tue, 21 Oct 2003 11:34:36 -0400 (EDT) (envelope-from jhb@FreeBSD.org) X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii MIME-Version: 1.0 In-Reply-To: <200310190556.h9J5uxo8002406@repoman.freebsd.org> From: John Baldwin To: Nate Lawson X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:41:00 -0000 X-Original-Date: Tue, 21 Oct 2003 11:34:49 -0400 (EDT) X-List-Received-Date: Tue, 11 Nov 2003 04:41:00 -0000 On 19-Oct-2003 Nate Lawson wrote: > njl 2003/10/18 22:56:59 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/acpica acpi.c=20 > Log: > Disable irqs before entering the power-off state. This is not known > to fix any problems but is similar to how Linux implements this > function. By the way, any ideas on why my laptop gets an interrupt storm when it resumes from S1 and any ideas on how to fix that? --=20 John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:41:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F78D16A4CE for ; Mon, 10 Nov 2003 20:41:44 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AEBC43FBF for ; Mon, 10 Nov 2003 20:41:39 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 8C81656DC for ; Mon, 10 Nov 2003 20:38:31 -0800 (PST) Received: (qmail 31509 invoked by uid 1001); 11 Nov 2003 04:14:41 -0000 Message-ID: <20031111041441.31508.qmail@exxodus.fedaykin.here> Received: (qmail 1957 invoked from network); 21 Oct 2003 18:47:30 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 18:47:30 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 16:47:08 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C63504 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 15:42:34 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 3ADF018EDE6 for ; Tue, 21 Oct 2003 16:29:23 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 84F825661F for ; Tue, 21 Oct 2003 11:29:14 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 04DBA16A52E; Tue, 21 Oct 2003 11:29:10 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4166C16A4C0; Tue, 21 Oct 2003 11:29:09 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5894416A4B3; Tue, 21 Oct 2003 11:28:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A66B743FB1; Tue, 21 Oct 2003 11:28:36 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LISaXJ093921; Tue, 21 Oct 2003 11:28:36 -0700 (PDT) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LISaO6093920; Tue, 21 Oct 2003 11:28:36 -0700 (PDT) (envelope-from silby) From: Mike Silbersack To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/amd64/amd64 amd64_mem.c tsc.c src/sys/dev/aac aac_disk.c src/sys/dev/ata ata-disk.c src/sys/dev/pci pci_pci.c src/sys/i386/i386 i686_mem.c tsc.c src/sys/i386/pci pci_cfgreg.c src/sys/kern kern_mib.c subr_mbuf.c subr_smp.c subr_witness.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:41:44 -0000 X-Original-Date: Tue, 21 Oct 2003 11:28:36 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:41:44 -0000 silby 2003/10/21 11:28:36 PDT FreeBSD src repository Modified files: sys/amd64/amd64 amd64_mem.c tsc.c sys/dev/aac aac_disk.c sys/dev/ata ata-disk.c sys/dev/pci pci_pci.c sys/i386/i386 i686_mem.c tsc.c sys/i386/pci pci_cfgreg.c sys/kern kern_mib.c subr_mbuf.c subr_smp.c subr_witness.c sys_pipe.c sysv_msg.c sysv_sem.c sysv_shm.c uipc_socket.c uipc_socket2.c vfs_init.c sys/netgraph ng_base.c sys/netinet tcp_subr.c tcp_syncache.c sys/pccard pcic.c pcic_pci.c Log: Change all SYSCTLS which are readonly and have a related TUNABLE from CTLFLAG_RD to CTLFLAG_RDTUN so that sysctl(8) can provide more useful error messages. Revision Changes Path 1.22 +1 -1 src/sys/amd64/amd64/amd64_mem.c 1.204 +1 -1 src/sys/amd64/amd64/tsc.c 1.36 +1 -1 src/sys/dev/aac/aac_disk.c 1.161 +2 -2 src/sys/dev/ata/ata-disk.c 1.28 +1 -1 src/sys/dev/pci/pci_pci.c 1.23 +1 -1 src/sys/i386/i386/i686_mem.c 1.204 +1 -1 src/sys/i386/i386/tsc.c 1.106 +1 -1 src/sys/i386/pci/pci_cfgreg.c 1.70 +2 -2 src/sys/kern/kern_mib.c 1.56 +4 -4 src/sys/kern/subr_mbuf.c 1.177 +1 -1 src/sys/kern/subr_smp.c 1.160 +1 -1 src/sys/kern/subr_witness.c 1.154 +1 -1 src/sys/kern/sys_pipe.c 1.51 +3 -3 src/sys/kern/sysv_msg.c 1.64 +6 -6 src/sys/kern/sysv_sem.c 1.87 +2 -2 src/sys/kern/sysv_shm.c 1.155 +2 -1 src/sys/kern/uipc_socket.c 1.115 +1 -1 src/sys/kern/uipc_socket2.c 1.66 +1 -1 src/sys/kern/vfs_init.c 1.70 +2 -2 src/sys/netgraph/ng_base.c 1.163 +1 -1 src/sys/netinet/tcp_subr.c 1.43 +3 -3 src/sys/netinet/tcp_syncache.c 1.183 +3 -3 src/sys/pccard/pcic.c 1.127 +6 -6 src/sys/pccard/pcic_pci.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:43:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A0A616A4D0 for ; Mon, 10 Nov 2003 20:43:45 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BA8443FCB for ; Mon, 10 Nov 2003 20:43:29 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id D40E65709 for ; Mon, 10 Nov 2003 20:39:31 -0800 (PST) Received: (qmail 31158 invoked by uid 1001); 11 Nov 2003 04:14:39 -0000 Message-ID: <20031111041439.31157.qmail@exxodus.fedaykin.here> Received: (qmail 3237 invoked from network); 9 Oct 2003 06:47:11 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Oct 2003 06:47:11 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Thu, 09 Oct 2003 03:47:11 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C019AB962 for lioux-freebsd@uol.com.br; Thu, 9 Oct 2003 03:39:35 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id 4579A143A6 for ; Thu, 9 Oct 2003 03:40:07 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 5447D55F38 for ; Wed, 8 Oct 2003 23:39:30 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6B73916A4E9; Wed, 8 Oct 2003 23:39:27 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2627416A4C0; Wed, 8 Oct 2003 23:39:26 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1C7116A4B3; Wed, 8 Oct 2003 23:38:54 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64F2643FBF; Wed, 8 Oct 2003 23:38:53 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from mail by mx.nsu.ru with drweb-scanned (Exim 3.35 #1 (Debian)) id 1A7UUE-0006Mt-00; Thu, 09 Oct 2003 13:41:22 +0700 Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 3.35 #1 (Debian)) id 1A7UUB-0006Jk-00; Thu, 09 Oct 2003 13:41:19 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.9/8.12.9) with ESMTP id h996d02R062578; Thu, 9 Oct 2003 13:39:01 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.9/8.12.9/Submit) id h996d0Tx062553; Thu, 9 Oct 2003 13:39:00 +0700 (NOVST) From: Alexey Dokuchaev To: Sam Leffler References: <200310082352.h98Nq0ws011528@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310082352.h98Nq0ws011528@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Envelope-To: sam@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:43:45 -0000 X-Original-Date: Thu, 9 Oct 2003 13:39:00 +0700 X-List-Received-Date: Tue, 11 Nov 2003 04:43:45 -0000 On Wed, Oct 08, 2003 at 04:52:00PM -0700, Sam Leffler wrote: > sam 2003/10/08 16:52:00 PDT > > FreeBSD src repository > > Modified files: (Branch: RELENG_4) > sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h > Log: > MFC 7955/7956 symmetric crypto support Hmm, had this stuff been extensively tested to be insta-MFCed, especially considering we're so close to 4.9-RELEASE and, just as you said, it's performance being currently suboptimal? I've always been under impression that -STABLE should probably stay out of such treatments. ./danfe From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:45:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9943116A4CE for ; Mon, 10 Nov 2003 20:45:01 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FAD343FA3 for ; Mon, 10 Nov 2003 20:44:55 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 46B7E571E for ; Mon, 10 Nov 2003 20:40:44 -0800 (PST) Received: (qmail 31273 invoked by uid 1001); 11 Nov 2003 04:14:40 -0000 Message-ID: <20031111041440.31272.qmail@exxodus.fedaykin.here> Received: (qmail 13863 invoked from network); 31 Aug 2003 12:47:14 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 12:47:14 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 09:47:14 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.178) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C1071 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 09:44:48 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm10.uol.com.br (Postfix) with ESMTP id 9BD9E704F for ; Sun, 31 Aug 2003 09:44:46 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id E89D4567EC for ; Sun, 31 Aug 2003 05:44:35 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 3717716A521; Sun, 31 Aug 2003 05:44:32 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id A8B7A16A4C1; Sun, 31 Aug 2003 05:44:30 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BC8516A4BF; Sun, 31 Aug 2003 05:43:59 -0700 (PDT) Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C4B743FE5; Sun, 31 Aug 2003 05:43:58 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd04.aul.t-online.de by mailout02.sul.t-online.com with smtp id 19tRYi-0000ZI-05; Sun, 31 Aug 2003 14:43:56 +0200 Received: from Andro-Beta.Leidinger.net (E2oIheZ1YeEZ6QL0NMfTDV4p--KoUh0RDlPBG8MFJuhTqtkbfvY06t@[217.83.24.164]) by fmrl04.sul.t-online.com with esmtp id 19tRYc-1XUMyW0; Sun, 31 Aug 2003 14:43:50 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h7VCip9O005437; Sun, 31 Aug 2003 14:44:52 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h7VCjVjN046287; Sun, 31 Aug 2003 14:45:32 +0200 (CEST) (envelope-from Alexander@Leidinger.net) From: Alexander Leidinger To: Robert Watson In-Reply-To: References: <20030830023923.Q811@odysseus.silby.com> X-Mailer: Sylpheed version 0.9.3claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Seen: false X-ID: E2oIheZ1YeEZ6QL0NMfTDV4p--KoUh0RDlPBG8MFJuhTqtkbfvY06t@t-dialin.net Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: src-committers@freebsd.org cc: phk@FreeBSd.org cc: cvs-src@freebsd.org cc: Mike Silbersack cc: dds@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/net if_ethersubr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:45:01 -0000 X-Original-Date: Sun, 31 Aug 2003 14:45:31 +0200 X-List-Received-Date: Tue, 11 Nov 2003 04:45:01 -0000 On Sat, 30 Aug 2003 10:41:02 -0400 (EDT) Robert Watson wrote: > mind. The other thing we should encourage developers to do more is use > code coverage tools -- phk recently pointed me at kernbb(8) as a way to > feed gcov(1). Documenting the various tools and how to use them on FreeBSD would be a nice start. Maybe the interested parties can come up with a list of programs and maybe a short introduction what those tools do/provide and a link to documentation and hand them over to the doc people... Bye, Alexander. -- Yes, I've heard of "decaf." What's your point? http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:45:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B937E16A4CE; Mon, 10 Nov 2003 20:45:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38F8043FCB; Mon, 10 Nov 2003 20:45:38 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB4jcXJ093254; Mon, 10 Nov 2003 20:45:38 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB4jbYw093253; Mon, 10 Nov 2003 20:45:37 -0800 (PST) (envelope-from alc) Message-Id: <200311110445.hAB4jbYw093253@repoman.freebsd.org> From: Alan Cox Date: Mon, 10 Nov 2003 20:45:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_bio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 04:45:39 -0000 alc 2003/11/10 20:45:37 PST FreeBSD src repository Modified files: sys/kern vfs_bio.c Log: - Revision 1.469 of vfs_subr.c resulted in the buf's b_object field being consistency initialized. Consequently, a number of conditionals that checked the validity of b_object before passing it to VM_OBJECT_LOCK() and VM_OBJECT_UNLOCK() are no longer needed. Revision Changes Path 1.421 +7 -14 src/sys/kern/vfs_bio.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:46:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A35616A4CE for ; Mon, 10 Nov 2003 20:46:23 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 356F643FAF for ; Mon, 10 Nov 2003 20:46:15 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id A7F9B54CC for ; Mon, 10 Nov 2003 20:41:30 -0800 (PST) Received: (qmail 31366 invoked by uid 1001); 11 Nov 2003 04:14:40 -0000 Message-ID: <20031111041440.31365.qmail@exxodus.fedaykin.here> Received: (qmail 593 invoked from network); 21 Oct 2003 16:18:48 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 16:18:48 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 14:18:26 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C5B7F3 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 13:07:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 7E1C6DAF12 for ; Tue, 21 Oct 2003 13:52:17 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 76D45565AA for ; Tue, 21 Oct 2003 08:51:32 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2653416A52B; Tue, 21 Oct 2003 08:51:28 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 37F5116A4C0; Tue, 21 Oct 2003 08:51:27 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E33CF16A4B3; Tue, 21 Oct 2003 08:50:54 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F79643FBF; Tue, 21 Oct 2003 08:50:52 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id h9LFolE7025994; Tue, 21 Oct 2003 09:50:47 -0600 (MDT) (envelope-from imp@bsdimp.com) To: sam@errno.com From: "M. Warner Losh" In-Reply-To: <200310210850.03204.sam@errno.com> References: <200310181522.h9IFMhrS025003@repoman.freebsd.org> <20031021074238.GA1182@webcom.it> <200310210850.03204.sam@errno.com> X-Mailer: Mew version 2.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: andrea@webcom.it cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ep if_ep.c if_ep_isa.c if_ep_pccard.c if_epreg.h if_epvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:46:23 -0000 X-Original-Date: Tue, 21 Oct 2003 09:50:53 -0600 (MDT) X-List-Received-Date: Tue, 11 Nov 2003 04:46:23 -0000 In message: <200310210850.03204.sam@errno.com> Sam Leffler writes: : On Tuesday 21 October 2003 12:42 am, Andrea Campi wrote: : > Incidentally, even when ep is sane, I still need to remove MPSAFE from : > pccbb.c, or it stops after a few dozens of packets are sent/received. : > Rerunning ifconfig on the interface brings it back for a few more packets. : : Could this be the same problem that people are reporting on current@ as "IP : stack is busted"? Some of those folks were, however, using USB Ethernet : devices... Unlikely, as far as I can tell. But who knows. Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:46:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D17416A4CE for ; Mon, 10 Nov 2003 20:46:43 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E4943F75 for ; Mon, 10 Nov 2003 20:46:36 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 1E95056D1 for ; Mon, 10 Nov 2003 20:41:45 -0800 (PST) Received: (qmail 31144 invoked by uid 1001); 11 Nov 2003 04:14:39 -0000 Message-ID: <20031111041439.31143.qmail@exxodus.fedaykin.here> Received: (qmail 3230 invoked from network); 9 Oct 2003 06:47:11 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Oct 2003 06:47:11 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Thu, 09 Oct 2003 03:47:11 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.198) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C019AB5ED for lioux-freebsd@uol.com.br; Thu, 9 Oct 2003 03:33:48 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm13.uol.com.br (Postfix) with ESMTP id 1D9AB8FF22 for ; Thu, 9 Oct 2003 03:33:48 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 637C4561BE for ; Wed, 8 Oct 2003 23:33:42 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B37C816A4EE; Wed, 8 Oct 2003 23:33:39 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 8636116A4C2; Wed, 8 Oct 2003 23:33:38 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D74DB16A4B3; Wed, 8 Oct 2003 23:33:05 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 369D843FE3; Wed, 8 Oct 2003 23:33:04 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from mail by mx.nsu.ru with drweb-scanned (Exim 3.35 #1 (Debian)) id 1A7UOb-00053L-00; Thu, 09 Oct 2003 13:35:33 +0700 Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 3.35 #1 (Debian)) id 1A7UOb-00051t-00; Thu, 09 Oct 2003 13:35:33 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.9/8.12.9) with ESMTP id h996XC2R059732; Thu, 9 Oct 2003 13:33:13 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.9/8.12.9/Submit) id h996XCct059716; Thu, 9 Oct 2003 13:33:12 +0700 (NOVST) From: Alexey Dokuchaev To: Sam Leffler References: <200310082025.h98KPliQ094708@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310082025.h98KPliQ094708@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Envelope-To: sam@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:46:43 -0000 X-Original-Date: Thu, 9 Oct 2003 13:33:12 +0700 X-List-Received-Date: Tue, 11 Nov 2003 04:46:43 -0000 On Wed, Oct 08, 2003 at 01:25:47PM -0700, Sam Leffler wrote: > sam 2003/10/08 13:25:47 PDT > > FreeBSD src repository > > Modified files: > sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h > Log: > Add symmetric crypto support for the 7955 and 7956. Hmm, time to rename those hifn7751* files, or does 7751 denote something that 7955 and 7956 are based on? ./danfe From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:47:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B071816A4CE for ; Mon, 10 Nov 2003 20:47:04 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E44443FA3 for ; Mon, 10 Nov 2003 20:46:58 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 698145725 for ; Mon, 10 Nov 2003 20:41:57 -0800 (PST) Received: (qmail 31076 invoked by uid 1001); 11 Nov 2003 04:14:39 -0000 Message-ID: <20031111041439.31075.qmail@exxodus.fedaykin.here> Received: (qmail 13833 invoked from network); 31 Aug 2003 12:47:12 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 12:47:12 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 09:47:12 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.195) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C0C88 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 09:27:16 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 9A006C697 for ; Sun, 31 Aug 2003 09:27:12 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id DA15A56589 for ; Sun, 31 Aug 2003 05:27:08 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 4608416A52C; Sun, 31 Aug 2003 05:27:06 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4EFD716A4D5; Sun, 31 Aug 2003 05:27:05 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE56416A4BF; Sun, 31 Aug 2003 05:26:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3581843FBF; Sun, 31 Aug 2003 05:26:32 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VCQW0U042837; Sun, 31 Aug 2003 05:26:32 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VCQVge042836; Sun, 31 Aug 2003 05:26:31 -0700 (PDT) From: Wilko Bulte To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:47:04 -0000 X-Original-Date: Sun, 31 Aug 2003 05:26:31 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:47:04 -0000 wilko 2003/08/31 05:26:31 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Onboard Adaptec SCSI HBAs are bootable on UP2000. Obtained from: obrien Approved by: re (bmah) Revision Changes Path 1.13.2.40 +1 -2 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:47:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1C7116A4CF for ; Mon, 10 Nov 2003 20:47:38 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCB6843FBD for ; Mon, 10 Nov 2003 20:47:30 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 9C56D572D for ; Mon, 10 Nov 2003 20:42:12 -0800 (PST) Received: (qmail 27029 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.27028.qmail@exxodus.fedaykin.here> Received: (qmail 22247 invoked from network); 10 Nov 2003 23:47:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 23:47:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 21:47:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CC6EC for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 20:23:50 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm11.uol.com.br (Postfix) with ESMTP id EDF0DCF08 for ; Mon, 10 Nov 2003 20:46:22 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 785FF56C89 for ; Mon, 10 Nov 2003 14:45:40 -0800 (PST) (envelope-from owner-all-developers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 3E0C616A5C3; Mon, 10 Nov 2003 14:45:29 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id ED71216A4EB; Mon, 10 Nov 2003 14:45:26 -0800 (PST) Delivered-To: all-developers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B99C816A4CE; Mon, 10 Nov 2003 14:44:52 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9D343FBD; Mon, 10 Nov 2003 14:44:46 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4BBCF65478; Mon, 10 Nov 2003 22:44:45 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 52615-01; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 3831C653C2; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 5832E44; Mon, 10 Nov 2003 22:44:21 +0000 (GMT) Date: Mon, 10 Nov 2003 22:44:21 +0000 From: Bruce M Simpson To: Hartmut Brandt Mail-Followup-To: Hartmut Brandt , developers@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> <20031110174537.U53715@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031110174537.U53715@beagle.fokus.fraunhofer.de> Sender: owner-all-developers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:47:39 -0000 On Mon, Nov 10, 2003 at 05:55:22PM +0100, Harti Brandt wrote: > The official HARP isn't maintained anymore. Our HARP is maintained very > weakly. It was broken for longer amounts of time because no committer had > the interest/equipment/knowledge to work on it. People were forced to This situation may change if I obtain my idt(4) card and am able to use it as a viable alternative to a 'black box' DSL router... I am also trying to get ueagle(4) to work with maintainer's help on my hardware, that is another HARP client. BMS From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:49:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7DC716A4CE for ; Mon, 10 Nov 2003 20:49:55 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D39943FBD for ; Mon, 10 Nov 2003 20:49:51 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 9F54C5702 for ; Mon, 10 Nov 2003 20:43:28 -0800 (PST) Received: (qmail 26963 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26962.qmail@exxodus.fedaykin.here> Received: (qmail 48820 invoked from network); 9 Nov 2003 15:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Nov 2003 15:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 09 Nov 2003 13:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C0208073D for lioux-freebsd@uol.com.br; Sun, 9 Nov 2003 11:50:26 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm1.uol.com.br (Postfix) with ESMTP id 9A6BEEBF9 for ; Sun, 9 Nov 2003 12:50:26 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C3F4D576AF for ; Sun, 9 Nov 2003 06:50:25 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id E775716A52B; Sun, 9 Nov 2003 06:50:16 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 3374316A4D0; Sun, 9 Nov 2003 06:50:16 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D82716A4CE; Sun, 9 Nov 2003 06:49:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE0D843F3F; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9EnhXJ098822; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9EnhiW098821; Sun, 9 Nov 2003 06:49:43 -0800 (PST) (envelope-from simokawa) From: Hidetoshi Shimokawa Date: Sun, 9 Nov 2003 06:49:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.sbin/dconschat dconschat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:49:56 -0000 simokawa 2003/11/09 06:49:43 PST FreeBSD src repository Modified files: usr.sbin/dconschat dconschat.c Log: Increase MAXDEV up to 10. Revision Changes Path 1.4 +1 -1 src/usr.sbin/dconschat/dconschat.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:51:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA8C16A4CF for ; Mon, 10 Nov 2003 20:51:47 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A7C543F85 for ; Mon, 10 Nov 2003 20:51:43 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id B004C5752 for ; Mon, 10 Nov 2003 20:44:33 -0800 (PST) Received: (qmail 27098 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.27097.qmail@exxodus.fedaykin.here> Received: (qmail 1086 invoked from network); 31 Aug 2003 18:47:08 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 18:47:08 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 15:47:08 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.179) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C8723 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 15:23:02 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm7.uol.com.br (Postfix) with ESMTP id 4CF9E6BD1 for ; Sun, 31 Aug 2003 15:23:02 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 5DAAB56A75 for ; Sun, 31 Aug 2003 11:22:05 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 82D5E16A517; Sun, 31 Aug 2003 11:22:01 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 59B5416A4C1; Sun, 31 Aug 2003 11:22:00 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2773016A4BF; Sun, 31 Aug 2003 11:21:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A785043FBF; Sun, 31 Aug 2003 11:21:27 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VILR0U067007; Sun, 31 Aug 2003 11:21:27 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VILRvS067006; Sun, 31 Aug 2003 11:21:27 -0700 (PDT) From: Wilko Bulte To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:51:47 -0000 X-Original-Date: Sun, 31 Aug 2003 11:21:27 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:51:47 -0000 wilko 2003/08/31 11:21:27 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/alpha dokern.sh Log: alpha does not have apm, not in GENERIC either. So dokern.sh has no business trying to remove it. Approved by: re (scottl) Revision Changes Path 1.56.2.7 +0 -1 src/release/alpha/dokern.sh From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:52:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F1B316A4CE; Mon, 10 Nov 2003 20:52:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88F0643FF2; Mon, 10 Nov 2003 20:52:40 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB4qeXJ099151; Mon, 10 Nov 2003 20:52:40 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB4qdrP099149; Mon, 10 Nov 2003 20:52:39 -0800 (PST) (envelope-from gshapiro) Message-Id: <200311110452.hAB4qdrP099149@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 10 Nov 2003 20:52:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/examples/cvsup refuse refuse.README X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 04:52:47 -0000 gshapiro 2003/11/10 20:52:39 PST FreeBSD src repository Modified files: (Branch: RELENG_4) share/examples/cvsup refuse refuse.README Log: MFC: People are blindly coping this example refuse file. Doing so breaks buildworld as src/etc/sendmail/freebsd.mc is missing. That example was added 3 years ago, before the /etc/mail/ infrastructure was in place for customized configurations. It is time to remove this example. Revision Changes Path 1.11 +0 -1 src/share/examples/cvsup/refuse 1.10 +4 -6 src/share/examples/cvsup/refuse.README Revision Changes Path 1.1.2.11 +0 -1 src/share/examples/cvsup/refuse 1.1.2.10 +4 -6 src/share/examples/cvsup/refuse.README From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:52:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A523216A4D0 for ; Mon, 10 Nov 2003 20:52:55 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAB4C43FAF for ; Mon, 10 Nov 2003 20:52:35 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 8D8A054D4 for ; Mon, 10 Nov 2003 20:45:08 -0800 (PST) Received: (qmail 26643 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26642.qmail@exxodus.fedaykin.here> Received: (qmail 19638 invoked from network); 26 Oct 2003 06:47:37 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:37 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:15 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AC85 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:23:17 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm13.uol.com.br (Postfix) with ESMTP id BC8CE8FAA6 for ; Sun, 26 Oct 2003 04:23:16 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 6317156457 for ; Sat, 25 Oct 2003 23:23:15 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id ACBB216A525; Sat, 25 Oct 2003 23:23:12 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 9C06616A4C0; Sat, 25 Oct 2003 23:23:11 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F10116A4B3; Sat, 25 Oct 2003 23:22:40 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19FC643FA3; Sat, 25 Oct 2003 23:22:38 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id RAA18555; Sun, 26 Oct 2003 17:22:35 +1100 From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Peter Wemm In-Reply-To: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:52:55 -0000 X-Original-Date: Sun, 26 Oct 2003 17:22:35 +1100 (EST) X-List-Received-Date: Tue, 11 Nov 2003 04:52:55 -0000 On Sat, 25 Oct 2003, Peter Wemm wrote: > peter 2003/10/25 21:49:58 PDT > > FreeBSD src repository > > Modified files: > usr.bin/chat Makefile > Log: > The math function logf() probably isn't doing us much good for logging > stuff. Add -fno-builtin-logf. gcc should be fixed instead of unportabilizing Makefiles like this. Don't forget to change this and all the misspellings of log and sin back when gcc is fixed :-). Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:53:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04F6416A4CE for ; Mon, 10 Nov 2003 20:53:08 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5959143FB1 for ; Mon, 10 Nov 2003 20:53:02 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 200385721 for ; Mon, 10 Nov 2003 20:45:16 -0800 (PST) Received: (qmail 26996 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26995.qmail@exxodus.fedaykin.here> Received: (qmail 21839 invoked from network); 10 Nov 2003 22:47:42 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:42 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:20 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CA5FE for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:39:04 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id 974DE9096 for ; Mon, 10 Nov 2003 20:39:45 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id E4DDF556A3 for ; Mon, 10 Nov 2003 14:39:01 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id BE3A316A4D5; Mon, 10 Nov 2003 14:38:58 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 702A516A4D0; Mon, 10 Nov 2003 14:38:57 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ADB716A4CE; Mon, 10 Nov 2003 14:38:26 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A03143FD7; Mon, 10 Nov 2003 14:38:21 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAAMc8eG038829; Mon, 10 Nov 2003 15:38:08 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 10 Nov 2003 15:36:02 -0700 (MST) To: des@des.no From: "M. Warner Losh" In-Reply-To: References: <7mptg0tkpq.wl@black.imgsrc.co.jp> <20031110143627.T29745@beagle.fokus.fraunhofer.de> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.org cc: harti@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:53:08 -0000 In message: des@des.no (Dag-Erling Sm=F8rgrav) writes: : See attached fix for 'make universe'. I don't like this fix :-) Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:53:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C182D16A4CE for ; Mon, 10 Nov 2003 20:53:21 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A68743F3F for ; Mon, 10 Nov 2003 20:53:15 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id E7869575F for ; Mon, 10 Nov 2003 20:45:32 -0800 (PST) Received: (qmail 27062 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.27061.qmail@exxodus.fedaykin.here> Received: (qmail 22514 invoked from network); 11 Nov 2003 00:17:40 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 11 Nov 2003 00:17:40 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 22:17:18 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CE317 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 21:04:51 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 90540904F for ; Mon, 10 Nov 2003 22:04:49 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id F04CA55EE4 for ; Mon, 10 Nov 2003 16:04:47 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 4337C16A4E4; Mon, 10 Nov 2003 16:04:45 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2A18D16A4D0; Mon, 10 Nov 2003 16:04:44 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C6BE16A4CE; Mon, 10 Nov 2003 16:04:12 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB49943F93; Mon, 10 Nov 2003 16:04:06 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAB03weG039952; Mon, 10 Nov 2003 17:03:58 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 10 Nov 2003 17:01:51 -0700 (MST) To: hsu@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> References: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: sam@errno.com cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:53:21 -0000 In message: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> Jeffrey Hsu writes: : Are you kidding me? Or do you really not understand why it's not : Giant-free ready yet? While it may be obvious to you, it seems that a sentence or two about how it isn't giant-free would be useful. Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:54:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2D7116A4CE; Mon, 10 Nov 2003 20:54:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D5343FAF; Mon, 10 Nov 2003 20:54:11 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB4sBXJ099250; Mon, 10 Nov 2003 20:54:11 -0800 (PST) (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB4sBVg099249; Mon, 10 Nov 2003 20:54:11 -0800 (PST) (envelope-from jkoshy) Message-Id: <200311110454.hAB4sBVg099249@repoman.freebsd.org> From: Joseph Koshy Date: Mon, 10 Nov 2003 20:54:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys utrace.2 src/sys/kern kern_ktrace.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 04:54:14 -0000 jkoshy 2003/11/10 20:54:11 PST FreeBSD src repository Modified files: lib/libc/sys utrace.2 sys/kern kern_ktrace.c Log: Have utrace(2) return ENOMEM if malloc() fails. Document this error return in its manual page. Reviewed by: jhb Revision Changes Path 1.2 +6 -4 src/lib/libc/sys/utrace.2 1.90 +1 -1 src/sys/kern/kern_ktrace.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:54:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FBE516A4CF for ; Mon, 10 Nov 2003 20:54:14 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BCAB4400B for ; Mon, 10 Nov 2003 20:53:52 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 3000F56E6 for ; Mon, 10 Nov 2003 20:46:09 -0800 (PST) Received: (qmail 26990 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26989.qmail@exxodus.fedaykin.here> Received: (qmail 21825 invoked from network); 10 Nov 2003 22:47:39 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:39 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:17 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020C9FCC for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:31:13 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id CD876EDA6 for ; Mon, 10 Nov 2003 20:27:03 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id CDA3455DF7 for ; Mon, 10 Nov 2003 14:27:02 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id A646A16A52F; Mon, 10 Nov 2003 14:26:55 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 0D67416A4D0; Mon, 10 Nov 2003 14:26:55 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E6EC16A4CE; Mon, 10 Nov 2003 14:26:23 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 860D943F93; Mon, 10 Nov 2003 14:26:19 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 2308978CAB; Mon, 10 Nov 2003 23:26:18 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id DC6DC9BEC3; Mon, 10 Nov 2003 23:26:17 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id D91B49BB76; Mon, 10 Nov 2003 23:26:13 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id D0212B828; Mon, 10 Nov 2003 23:26:13 +0100 (CET) To: Hartmut Brandt References: <200311100917.hAA9HYsg097794@repoman.freebsd.org> <7mptg0tkpq.wl@black.imgsrc.co.jp> <20031110143627.T29745@beagle.fokus.fraunhofer.de> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Mon, 10 Nov 2003 23:26:13 +0100 In-Reply-To: <20031110143627.T29745@beagle.fokus.fraunhofer.de> (Harti Brandt's message of "Mon, 10 Nov 2003 14:37:27 +0100 (CET)") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=1.0 required=5.0 tests=SUBJ_HAS_SPACES autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jun Kuriyama cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:54:14 -0000 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Harti Brandt writes: > No, mine. Although the universe made it just fine, the tinderbox breaks. > I'm just testing a fix. See attached fix for 'make universe'. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=universe.diff Index: Makefile =================================================================== RCS file: /home/ncvs/src/Makefile,v retrieving revision 1.291 diff -u -r1.291 Makefile --- Makefile 7 Nov 2003 08:36:55 -0000 1.291 +++ Makefile 10 Nov 2003 22:25:54 -0000 @@ -3,8 +3,6 @@ # # The user-driven targets are: # -# universe - *Really* build *everything* (buildworld and -# all kernels on all architectures). # buildworld - Rebuild *everything*, including glue to help do # upgrades. # installworld - Install everything built by "buildworld". @@ -182,38 +180,8 @@ ${MMAKE} all && \ ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR= -# -# universe -# -# Attempt to rebuild *everything* for all supported architectures, -# with reasonable chance of success, regardless of how old your -# existing system is. -# -i386_mach= pc98 universe: - @echo "--------------------------------------------------------------" - @echo ">>> make universe started on ${STARTTIME}" - @echo "--------------------------------------------------------------" -.for arch in i386 sparc64 alpha ia64 -.for mach in ${arch} ${${arch}_mach} - @echo ">> ${mach} started on `LC_ALL=C date`" - -cd ${.CURDIR} && ${MAKE} buildworld \ - TARGET_ARCH=${arch} TARGET=${mach} \ - __MAKE_CONF=/dev/null \ - > _.${mach}.buildworld 2>&1 - @echo ">> ${mach} buildworld completed on `LC_ALL=C date`" -.if exists(${.CURDIR}/sys/${mach}/conf/NOTES) - -cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \ - > ${.CURDIR}/_.${mach}.makeLINT 2>&1 -.endif - cd ${.CURDIR} && ${MAKE} buildkernels TARGET_ARCH=${arch} TARGET=${mach} - @echo ">> ${mach} completed on `LC_ALL=C date`" -.endfor -.endfor - @echo "--------------------------------------------------------------" - @echo ">>> make universe completed on `LC_ALL=C date`" - @echo " (started ${STARTTIME})" - @echo "--------------------------------------------------------------" + @echo "Use src/tools/tools/tinderbox instead." KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \ find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES --=-=-=-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:54:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3C4416A4D1 for ; Mon, 10 Nov 2003 20:54:19 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7970A43FAF for ; Mon, 10 Nov 2003 20:54:14 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 9956F56E8 for ; Mon, 10 Nov 2003 20:46:19 -0800 (PST) Received: (qmail 26999 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26998.qmail@exxodus.fedaykin.here> Received: (qmail 21846 invoked from network); 10 Nov 2003 22:47:43 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:43 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:21 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CA9F8 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:44:08 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm7.uol.com.br (Postfix) with ESMTP id 8A72D3B47E for ; Mon, 10 Nov 2003 20:22:33 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 0E5CF56539 for ; Mon, 10 Nov 2003 14:21:37 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 5081D16A531; Mon, 10 Nov 2003 14:21:33 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 9721516A4D0; Mon, 10 Nov 2003 14:21:32 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D5EF16A4CE; Mon, 10 Nov 2003 14:21:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A877243FAF; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAAML0XJ066067; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAAML0sW066066; Mon, 10 Nov 2003 14:21:00 -0800 (PST) (envelope-from truckman) From: Don Lewis Date: Mon, 10 Nov 2003 14:21:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/fs/fifofs fifo_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:54:19 -0000 truckman 2003/11/10 14:21:00 PST FreeBSD src repository Modified files: sys/fs/fifofs fifo_vnops.c Log: If fifo_open() is interrupted, fifo_close() may not get called, causing a resource leak. Move the resource deallocation code from fifo_close() to a new function, fifo_cleanup(), and call fifo_cleanup() from fifo_close() and the appropriate places in fifo_open(). Tested by: Lukas Ertl Pointy hat to: truckman Revision Changes Path 1.90 +23 -9 src/sys/fs/fifofs/fifo_vnops.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:54:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0D2316A4CE for ; Mon, 10 Nov 2003 20:54:38 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8709143FDF for ; Mon, 10 Nov 2003 20:54:31 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 1D14956CF for ; Mon, 10 Nov 2003 20:46:39 -0800 (PST) Received: (qmail 26831 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26830.qmail@exxodus.fedaykin.here> Received: (qmail 74177 invoked from network); 26 Oct 2003 11:17:35 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:35 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:13 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6F190 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:55:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 53907EC48 for ; Sun, 26 Oct 2003 08:55:53 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id BA72E57377 for ; Sun, 26 Oct 2003 02:55:43 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 5394516A4D6; Sun, 26 Oct 2003 02:55:38 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 3B5B316A4C0; Sun, 26 Oct 2003 02:55:37 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C051B16A4BF; Sun, 26 Oct 2003 02:55:04 -0800 (PST) Received: from cheer.mahoroba.org (flets19-227.kamome.or.jp [218.45.19.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70DEF43F75; Sun, 26 Oct 2003 02:54:56 -0800 (PST) (envelope-from ume@mahoroba.org) Received: from lyrics.mahoroba.org (IDENT:gL158urWv7IrOJM4bNKLdgu9eKnXKtTpvxRTe4vLzlIl3EGF9/YgLDG5TV7DzVlx@lyrics.mahoroba.org [IPv6:3ffe:501:185b:8010:280:88ff:fe03:4841]) (user=ume mech=CRAM-MD5 bits=0)h9QAspJR081594 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 26 Oct 2003 19:54:51 +0900 (JST) (envelope-from ume@mahoroba.org) From: Hajimu UMEMOTO To: Bruce Evans In-Reply-To: <20031026162715.I17272@gamplex.bde.org> References: <200310251057.h9PAv8pn086818@repoman.freebsd.org> <20031026031516.U14956@gamplex.bde.org> <20031025192855.GA96324@rot13.obsecurity.org> <20031026145253.N16944@gamplex.bde.org> <20031026040132.GA2036@rot13.obsecurity.org> <1067141195.81969.18.camel@shumai.marcuscom.com> <20031026050059.GA2206@rot13.obsecurity.org> <200310260505.h9Q55G9A069567@khavrinen.lcs.mit.edu> <20031026162715.I17272@gamplex.bde.org> User-Agent: xcite1.38> Wanderlust/2.11.3 (Wonderwall) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) X-Operating-System: FreeBSD 5.1-CURRENT MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on cheer.mahoroba.org Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: Kris Kennaway cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: Garrett Wollman Subject: Re: cvs commit: src/sys/netinet icmp6.h ip6.h src/sys/netinet6 in6.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:54:39 -0000 X-Original-Date: Sun, 26 Oct 2003 19:54:51 +0900 X-List-Received-Date: Tue, 11 Nov 2003 04:54:39 -0000 Hi, >>>>> On Sun, 26 Oct 2003 16:38:38 +1100 (EST) >>>>> Bruce Evans said: bde> - the closure of the changes for apparently included bde> some KAME headers. I found that there was one use of u_int32_t in newly introduced struct definition. I've just correct to use uint32_t. I believe it fix the problem. Sorry for the mess. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:55:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A790F16A4CE for ; Mon, 10 Nov 2003 20:55:07 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C31C43F3F for ; Mon, 10 Nov 2003 20:55:01 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 46B215724 for ; Mon, 10 Nov 2003 20:46:52 -0800 (PST) Received: (qmail 27131 invoked by uid 1001); 11 Nov 2003 04:07:36 -0000 Message-ID: <20031111040736.27130.qmail@exxodus.fedaykin.here> Received: (qmail 1654 invoked from network); 31 Aug 2003 19:47:09 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 19:47:09 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 16:47:09 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.183) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011CA47D for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 16:44:53 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 92C1B7ABB for ; Sun, 31 Aug 2003 16:44:52 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 7E6145717C for ; Sun, 31 Aug 2003 12:44:12 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8350E16A53F; Sun, 31 Aug 2003 12:44:01 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 55A8416A4E4; Sun, 31 Aug 2003 12:44:00 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B63516A4BF; Sun, 31 Aug 2003 12:43:27 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AEAA43FE1; Sun, 31 Aug 2003 12:42:36 -0700 (PDT) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h7VJgQ86062373 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 31 Aug 2003 22:42:27 +0300 (EEST) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h7VJgP6g062368; Sun, 31 Aug 2003 22:42:25 +0300 (EEST) (envelope-from ru) From: Ruslan Ermilov To: Wilko Bulte References: <200308311821.h7VILRvS067006@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bg08WKrSYDhXBjb5" Content-Disposition: inline In-Reply-To: <200308311821.h7VILRvS067006@repoman.freebsd.org> User-Agent: Mutt/1.5.4i Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:55:07 -0000 X-Original-Date: Sun, 31 Aug 2003 22:42:25 +0300 X-List-Received-Date: Tue, 11 Nov 2003 04:55:07 -0000 --bg08WKrSYDhXBjb5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 31, 2003 at 11:21:27AM -0700, Wilko Bulte wrote: > wilko 2003/08/31 11:21:27 PDT >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_4) > release/alpha dokern.sh=20 > Log: > alpha does not have apm, not in GENERIC either. So dokern.sh has > no business trying to remove it. > =20 > Approved by: re (scottl) > =20 > Revision Changes Path > 1.56.2.7 +0 -1 src/release/alpha/dokern.sh >=20 You can dike even more using the below patched script: %%% Index: tools/tools/release/chk_dokern.sh_and_drivers.conf =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: /home/ncvs/src/tools/tools/release/chk_dokern.sh_and_drivers.conf= ,v retrieving revision 1.1 diff -u -p -u -r1.1 chk_dokern.sh_and_drivers.conf --- tools/tools/release/chk_dokern.sh_and_drivers.conf 28 Jul 2003 18:18:20= -0000 1.1 +++ tools/tools/release/chk_dokern.sh_and_drivers.conf 31 Aug 2003 19:41:01= -0000 @@ -31,7 +31,7 @@ for f in */drivers.conf; do arch=3D`dirname $f` grep -v '^#' $f | grep -v '^$' | awk '{ print $1 }' | while read x; do - egrep -qw "^(device|options)[[:space:]]+$x" ../sys/${arch}/conf/G= ENERIC || \ + egrep -qw "^((pseudo-)?device|options)[[:space:]]+$x" ../sys/${ar= ch}/conf/GENERIC || \ echo $x not found in $arch/GENERIC sed -e'/"SMALL"/,/^else$/d' ${arch}/dokern.sh | \ grep -qw $x && \ @@ -46,7 +46,7 @@ for f in */dokern.sh; do grep -w -- -e | sed -e's,^[^/]*/,,' -e's,/.*$,,' | grep -v '^ident\.\*GENERIC$' | while read x; do - egrep -q "^(device|options|makeoptions)[[:space:]]+$x" \ + egrep -q "^((pseudo-)?device|options|makeoptions)[[:space:]]+$x" \ ../sys/${arch}/conf/GENERIC || \ echo $x not found in $arch/GENERIC grep -qw ^$x ${arch}/drivers.conf && \ %%% Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --bg08WKrSYDhXBjb5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE/Uk+hUkv4P6juNwoRAg07AJ49lMQtqzxyMr8f5qDhZXjAL0CorgCeKKPX XjBMEYmn3M19KZNX31qOIXk= =5jPD -----END PGP SIGNATURE----- --bg08WKrSYDhXBjb5-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:55:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E88B116A4CF for ; Mon, 10 Nov 2003 20:55:35 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id D419F43F75 for ; Mon, 10 Nov 2003 20:55:29 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id E11525728 for ; Mon, 10 Nov 2003 20:47:15 -0800 (PST) Received: (qmail 26846 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26845.qmail@exxodus.fedaykin.here> Received: (qmail 74221 invoked from network); 26 Oct 2003 11:17:38 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:38 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:16 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6F9CD for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:16:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id D3E04EE56 for ; Sun, 26 Oct 2003 09:16:53 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C16FE567C5 for ; Sun, 26 Oct 2003 03:16:48 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 182E116A52B; Sun, 26 Oct 2003 03:16:46 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id E560316A4C0; Sun, 26 Oct 2003 03:16:44 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E012A16A4B3; Sun, 26 Oct 2003 03:16:12 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C068F43F85; Sun, 26 Oct 2003 03:16:11 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id E5BAC79A34; Sun, 26 Oct 2003 12:16:10 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id AC8879C049; Sun, 26 Oct 2003 12:16:10 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id EE7479BFF3; Sun, 26 Oct 2003 12:16:06 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id E7BD5B823; Sun, 26 Oct 2003 12:16:06 +0100 (CET) To: Alfred Perlstein References: <200310251614.h9PGE925019013@repoman.freebsd.org> <20031025233749.GW99943@elvis.mu.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: <20031025233749.GW99943@elvis.mu.org> (Alfred Perlstein's message of "Sat, 25 Oct 2003 16:37:49 -0700") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Robert Watson cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:55:36 -0000 X-Original-Date: Sun, 26 Oct 2003 12:16:06 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:55:36 -0000 Alfred Perlstein writes: > This is bad, it's time to add a flag to the vnode to do this > properly instead of relying upon the underlying FS to implement > the locking. Sounds like a layering violation to me - or am I talking out of my nether regions? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:56:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8388116A4CE for ; Mon, 10 Nov 2003 20:56:05 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id B766643FBD for ; Mon, 10 Nov 2003 20:55:56 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 12FEA5772 for ; Mon, 10 Nov 2003 20:47:30 -0800 (PST) Received: (qmail 26703 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26702.qmail@exxodus.fedaykin.here> Received: (qmail 72248 invoked from network); 26 Oct 2003 07:47:32 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:47:32 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:47:10 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6BEF7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 04:35:37 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm10.uol.com.br (Postfix) with ESMTP id D8DD96CBB for ; Sun, 26 Oct 2003 05:35:36 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id AAB7E56813 for ; Sun, 26 Oct 2003 00:35:35 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8344316A4E1; Sun, 26 Oct 2003 00:35:32 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 7DFDF16A4C0; Sun, 26 Oct 2003 00:35:31 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4887C16A4BF; Sun, 26 Oct 2003 00:35:00 -0700 (PDT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7500B43FE1; Sun, 26 Oct 2003 00:34:58 -0700 (PDT) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.10/8.12.10) with ESMTP id h9Q7Yqax029912; Sun, 26 Oct 2003 08:34:52 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Peter Wemm From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sat, 25 Oct 2003 23:41:45 MST." <20031026064145.18F0E2A8D5@canning.wemm.org> Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:56:05 -0000 X-Original-Date: Sun, 26 Oct 2003 08:34:52 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:56:05 -0000 In message <20031026064145.18F0E2A8D5@canning.wemm.org>, Peter Wemm writes: > >For example.. you dont need a barrel shifter for graphics for values other >than the standard vga plane depths (1,2,4,8,15,16,24) so out that goes. Without disclosing any numbers unduly I can say that the scientific community will find Opteron a much better deal than Intel if they need to add floating point numbers of different magnitudes. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Core work reduction disclaimer: Poul-Henning speaks only for himself. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:56:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EEE016A4CE for ; Mon, 10 Nov 2003 20:56:17 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5171F43FBD for ; Mon, 10 Nov 2003 20:56:11 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id EE706572D for ; Mon, 10 Nov 2003 20:47:38 -0800 (PST) Received: (qmail 27197 invoked by uid 1001); 11 Nov 2003 04:07:36 -0000 Message-ID: <20031111040736.27196.qmail@exxodus.fedaykin.here> Received: (qmail 333 invoked from network); 5 Sep 2003 23:47:14 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 5 Sep 2003 23:47:14 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Fri, 05 Sep 2003 20:47:14 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.177) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C012ED73A for lioux-freebsd@uol.com.br; Fri, 5 Sep 2003 20:26:48 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id F3F606DDC for ; Fri, 5 Sep 2003 20:26:47 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D6FF957DAE for ; Fri, 5 Sep 2003 16:26:46 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 5679F16A4F2; Fri, 5 Sep 2003 16:26:44 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id BBFCE16A4C1; Fri, 5 Sep 2003 16:26:42 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5293C16A4BF; Fri, 5 Sep 2003 16:26:11 -0700 (PDT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11F8443FDF; Fri, 5 Sep 2003 16:26:07 -0700 (PDT) (envelope-from DougB@freebsd.org) Received: from 12-234-22-23.client.attbi.com ([12.234.22.23]) by comcast.net (rwcrmhc11) with SMTP id <200309052326060130036ve6e>; Fri, 5 Sep 2003 23:26:06 +0000 From: Doug Barton To: Marcel Moolenaar In-Reply-To: <20030905212233.GB590@dhcp01.pn.xcllnt.net> References: <42548.1062488547@critter.freebsd.dk> <20030902004917.S6074@znfgre.qbhto.arg> <3F58B8B7.30107@tcoip.com.br> <20030905110128.Y8003@znfgre.qbhto.arg> <20030905135542.M90946@12-234-22-23.pyvrag.nggov.pbz> <20030905212233.GB590@dhcp01.pn.xcllnt.net> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Alexey Dokuchaev cc: Poul-Henning Kamp cc: src-committers@freebsd.org cc: "Daniel C. Sobral" cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/rescue/rescue Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:56:17 -0000 X-Original-Date: Fri, 5 Sep 2003 16:26:05 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:56:17 -0000 On Fri, 5 Sep 2003, Marcel Moolenaar wrote: > Yes, you can. The agreement is reached when everybody accepts the > outcome. This is unrelated to whether everybody likes the outcome. I would argue that we're now discussing two different things.... consensus on the result, versus consensus on what the desired result is, and the method(s) of achieving it. However, I won't quibble further. > > Don't take this the wrong way, but with an attitude like that, how do > > you get out of bed in the morning? > > Willpower, eased by the habit of getting out of bed in the afternoon. LOL... touche. > > The consensus was that we'd use > > seperators for all NEW knobs, and go back and deal with the rest if time > > allows. > > Yes, the first part of the sentence I remember. I can't recall the > second part. If my memory is failing on me and we did in fact reach > that consensus, then there's nothing to argue about. Otherwise we > still need to get clear ruling on that last part. As promised, I posted my bikeshed blueprints for this on -arch. Doug -- This .signature sanitized for your protection From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:56:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E27016A4CE for ; Mon, 10 Nov 2003 20:56:27 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0603C43F3F for ; Mon, 10 Nov 2003 20:56:22 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 8DC3D5733 for ; Mon, 10 Nov 2003 20:47:46 -0800 (PST) Received: (qmail 27128 invoked by uid 1001); 11 Nov 2003 04:07:36 -0000 Message-ID: <20031111040736.27127.qmail@exxodus.fedaykin.here> Received: (qmail 1632 invoked from network); 31 Aug 2003 19:47:08 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 19:47:08 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 16:47:08 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.185) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C9D31 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 16:22:47 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 04CD17843 for ; Sun, 31 Aug 2003 16:22:47 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 34BC3554E4 for ; Sun, 31 Aug 2003 12:22:46 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 51B6B16A4E0; Sun, 31 Aug 2003 12:22:43 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 84FF016A4C1; Sun, 31 Aug 2003 12:22:42 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D50A16A4BF; Sun, 31 Aug 2003 12:22:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B950843FEC; Sun, 31 Aug 2003 12:22:10 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VJMA0U070434; Sun, 31 Aug 2003 12:22:10 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VJMAcX070433; Sun, 31 Aug 2003 12:22:10 -0700 (PDT) From: Nate Lawson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/dev/ichsmb ichsmb_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:56:27 -0000 X-Original-Date: Sun, 31 Aug 2003 12:22:10 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:56:27 -0000 njl 2003/08/31 12:22:10 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/ichsmb ichsmb_pci.c Log: MFC two device ids (ICH4 and ICH5). Approved by: re (murray) Revision Changes Path 1.1.2.4 +9 -2 src/sys/dev/ichsmb/ichsmb_pci.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:56:33 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F38E016A4CE for ; Mon, 10 Nov 2003 20:56:32 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D5D043F85 for ; Mon, 10 Nov 2003 20:56:28 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 1852E5735 for ; Mon, 10 Nov 2003 20:47:53 -0800 (PST) Received: (qmail 27044 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.27043.qmail@exxodus.fedaykin.here> Received: (qmail 22282 invoked from network); 10 Nov 2003 23:47:38 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 23:47:38 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 21:47:16 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CD32B for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 20:41:27 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm11.uol.com.br (Postfix) with ESMTP id 199D26FB7 for ; Mon, 10 Nov 2003 21:31:45 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id A402455EF4 for ; Mon, 10 Nov 2003 15:30:30 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2C36216A52C; Mon, 10 Nov 2003 15:30:07 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2A62D16A4D4; Mon, 10 Nov 2003 15:30:06 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0428C16A4CE; Mon, 10 Nov 2003 15:29:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 779BF43FBD; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAANTXXJ070409; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAANTX65070408; Mon, 10 Nov 2003 15:29:33 -0800 (PST) (envelope-from sam) From: Sam Leffler Date: Mon, 10 Nov 2003 15:29:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:56:33 -0000 sam 2003/11/10 15:29:33 PST FreeBSD src repository Modified files: sys/netinet tcp_syncache.c Log: use Giant-less callouts when debug_mpsafenet is non-zero Supported by: FreeBSD Foundation Revision Changes Path 1.46 +2 -1 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:56:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCAF616A4CE for ; Mon, 10 Nov 2003 20:56:34 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93D7843FAF for ; Mon, 10 Nov 2003 20:56:29 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 413B35776 for ; Mon, 10 Nov 2003 20:47:54 -0800 (PST) Received: (qmail 26915 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26914.qmail@exxodus.fedaykin.here> Received: (qmail 339 invoked from network); 31 Aug 2003 16:47:14 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 16:47:14 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 13:47:14 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.195) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C5B63 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 13:21:13 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm3.uol.com.br (Postfix) with ESMTP id 3B78ACB70 for ; Sun, 31 Aug 2003 13:21:13 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D2B0156DE9 for ; Sun, 31 Aug 2003 09:21:09 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 88EEA16A51E; Sun, 31 Aug 2003 09:21:07 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 94C3516A4C1; Sun, 31 Aug 2003 09:21:06 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BB7316A4BF; Sun, 31 Aug 2003 09:20:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E535D43F75; Sun, 31 Aug 2003 09:20:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VGKY0U060327; Sun, 31 Aug 2003 09:20:34 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VGKYYU060326; Sun, 31 Aug 2003 09:20:34 -0700 (PDT) From: Poul-Henning Kamp To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 geode.c src/sys/conf files.i386 options.i386 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:56:34 -0000 X-Original-Date: Sun, 31 Aug 2003 09:20:34 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:56:34 -0000 phk 2003/08/31 09:20:34 PDT FreeBSD src repository Modified files: sys/conf files.i386 options.i386 Added files: sys/i386/i386 geode.c Log: Detect Geode CPUs and initialize the 27MHz timecounter "Geode". This timecounter is 2usec faster than the i8254 and has 22 times better resolution. Revision Changes Path 1.453 +1 -0 src/sys/conf/files.i386 1.197 +1 -0 src/sys/conf/options.i386 1.1 +100 -0 src/sys/i386/i386/geode.c (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:56:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C0C516A4CE for ; Mon, 10 Nov 2003 20:56:45 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68EA243FAF for ; Mon, 10 Nov 2003 20:56:41 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 1913856E2 for ; Mon, 10 Nov 2003 20:48:08 -0800 (PST) Received: (qmail 26861 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26860.qmail@exxodus.fedaykin.here> Received: (qmail 74340 invoked from network); 26 Oct 2003 11:47:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:47:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:47:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6FB9C for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:21:29 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id D1230EA23 for ; Sun, 26 Oct 2003 09:21:28 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D71C556BF2 for ; Sun, 26 Oct 2003 03:21:24 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 81AAC16A529; Sun, 26 Oct 2003 03:21:22 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4619E16A4D9; Sun, 26 Oct 2003 03:21:21 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAE4116A4B3; Sun, 26 Oct 2003 03:20:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C10643F85; Sun, 26 Oct 2003 03:20:48 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9QBKmXJ045902; Sun, 26 Oct 2003 03:20:48 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9QBKm4m045901; Sun, 26 Oct 2003 03:20:48 -0800 (PST) (envelope-from des) From: Dag-Erling Smorgrav To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/crypto/openssh auth2-pam-freebsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:56:45 -0000 X-Original-Date: Sun, 26 Oct 2003 03:20:48 -0800 (PST) X-List-Received-Date: Tue, 11 Nov 2003 04:56:45 -0000 des 2003/10/26 03:20:48 PST FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssh auth2-pam-freebsd.c Log: MFC: (1.14) plug a memory leak in the PAM child process. Revision Changes Path 1.1.2.9 +9 -1 src/crypto/openssh/auth2-pam-freebsd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:56:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC2F816A4CE for ; Mon, 10 Nov 2003 20:56:56 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 905DF43F3F for ; Mon, 10 Nov 2003 20:56:52 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200-101-111-208.bsace705.dsl.brasiltelecom.net.br (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id ADEBB573B for ; Mon, 10 Nov 2003 20:48:25 -0800 (PST) Received: (qmail 25989 invoked by uid 1001); 11 Nov 2003 04:07:32 -0000 Message-ID: <20031111040732.25988.qmail@exxodus.fedaykin.here> Received: (qmail 13833 invoked from network); 31 Aug 2003 12:47:12 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 12:47:12 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 09:47:12 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.195) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C0C88 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 09:27:16 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 9A006C697 for ; Sun, 31 Aug 2003 09:27:12 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id DA15A56589 for ; Sun, 31 Aug 2003 05:27:08 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 4608416A52C; Sun, 31 Aug 2003 05:27:06 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4EFD716A4D5; Sun, 31 Aug 2003 05:27:05 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE56416A4BF; Sun, 31 Aug 2003 05:26:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3581843FBF; Sun, 31 Aug 2003 05:26:32 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VCQW0U042837; Sun, 31 Aug 2003 05:26:32 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VCQVge042836; Sun, 31 Aug 2003 05:26:31 -0700 (PDT) From: Wilko Bulte To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:56:56 -0000 X-Original-Date: Sun, 31 Aug 2003 05:26:31 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:56:56 -0000 wilko 2003/08/31 05:26:31 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Onboard Adaptec SCSI HBAs are bootable on UP2000. Obtained from: obrien Approved by: re (bmah) Revision Changes Path 1.13.2.40 +1 -2 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:57:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E96516A4D3 for ; Mon, 10 Nov 2003 20:57:19 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BAC443FB1 for ; Mon, 10 Nov 2003 20:56:59 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 42DC5577D for ; Mon, 10 Nov 2003 20:48:31 -0800 (PST) Received: (qmail 26843 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26842.qmail@exxodus.fedaykin.here> Received: (qmail 74214 invoked from network); 26 Oct 2003 11:17:38 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:38 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:16 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6F8E6 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:14:22 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id 7FE75D414 for ; Sun, 26 Oct 2003 09:14:22 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 93D4856687 for ; Sun, 26 Oct 2003 03:14:21 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id DC01016A4E7; Sun, 26 Oct 2003 03:14:18 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B0D0416A4C0; Sun, 26 Oct 2003 03:14:17 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EACE16A4B3; Sun, 26 Oct 2003 03:13:46 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF2C143F85; Sun, 26 Oct 2003 03:13:42 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id 230D979A5B; Sun, 26 Oct 2003 12:13:42 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id D6E039C044; Sun, 26 Oct 2003 12:13:41 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id 246D49BFF3; Sun, 26 Oct 2003 12:13:38 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id 07946B823; Sun, 26 Oct 2003 12:13:38 +0100 (CET) To: Peter Wemm References: <20031026064145.18F0E2A8D5@canning.wemm.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: <20031026064145.18F0E2A8D5@canning.wemm.org> (Peter Wemm's message of "Sat, 25 Oct 2003 23:41:45 -0700") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:57:19 -0000 X-Original-Date: Sun, 26 Oct 2003 12:13:37 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:57:19 -0000 Peter Wemm writes: > Massively deep pipelines help get the MHz up, and careful optimization can > stop it affecting frame rates. But it blows chunks if you mispredict a > branch in typical gcc generated code. Or take our libc syscall stubs.. > every single one will be mispredicted because the usual case (no errors) > has an opposite direction branch to what intel's static branch prediction > expects. Is there any way to teach (or trick) gcc to generate a branch which the p4 will predict correctly? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:57:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9434316A4CE for ; Mon, 10 Nov 2003 20:57:29 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCECD43FDF for ; Mon, 10 Nov 2003 20:57:27 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 5C00456F2 for ; Mon, 10 Nov 2003 20:48:52 -0800 (PST) Received: (qmail 26640 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26639.qmail@exxodus.fedaykin.here> Received: (qmail 19631 invoked from network); 26 Oct 2003 06:47:35 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:35 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:13 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AC00 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:21:57 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 4FC61C859 for ; Sun, 26 Oct 2003 04:21:54 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 3C3EB5622F for ; Sat, 25 Oct 2003 23:21:52 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8525516A526; Sat, 25 Oct 2003 23:21:49 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B7FC116A4C0; Sat, 25 Oct 2003 23:21:48 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A79716A4B3; Sat, 25 Oct 2003 23:21:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E07843FBD; Sat, 25 Oct 2003 23:21:17 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6LGXJ023252; Sat, 25 Oct 2003 23:21:16 -0700 (PDT) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6LGQN023251; Sat, 25 Oct 2003 23:21:16 -0700 (PDT) (envelope-from ume) From: Hajimu UMEMOTO To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.sbin/rrenumd rrenumd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:57:29 -0000 X-Original-Date: Sat, 25 Oct 2003 23:21:16 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:57:29 -0000 ume 2003/10/25 23:21:16 PDT FreeBSD src repository Modified files: usr.sbin/rrenumd rrenumd.c Log: one more IPV6_PKTINFO -> IPV6_RECVPKTINFO. Revision Changes Path 1.6 +2 -2 src/usr.sbin/rrenumd/rrenumd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:57:33 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3330816A4CE for ; Mon, 10 Nov 2003 20:57:33 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9211C43F75 for ; Mon, 10 Nov 2003 20:57:31 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 0C74256F4 for ; Mon, 10 Nov 2003 20:48:56 -0800 (PST) Received: (qmail 27074 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.27073.qmail@exxodus.fedaykin.here> Received: (qmail 769 invoked from network); 31 Aug 2003 17:47:08 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 17:47:08 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 14:47:08 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.179) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C6F8C for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 14:17:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm12.uol.com.br (Postfix) with ESMTP id 1DB1D7CD7 for ; Sun, 31 Aug 2003 14:17:53 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 4E2B2560E8 for ; Sun, 31 Aug 2003 10:17:49 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id D77AD16A4E2; Sun, 31 Aug 2003 10:17:46 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id A828C16A4C1; Sun, 31 Aug 2003 10:17:45 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 848AA16A4BF; Sun, 31 Aug 2003 10:17:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E0F243FE9; Sun, 31 Aug 2003 10:17:14 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7VHHD0U063808; Sun, 31 Aug 2003 10:17:13 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7VHHDHL063807; Sun, 31 Aug 2003 10:17:13 -0700 (PDT) From: Wilko Bulte To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/alpha/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:57:33 -0000 X-Original-Date: Sun, 31 Aug 2003 10:17:13 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:57:33 -0000 wilko 2003/08/31 10:17:13 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/alpha/conf GENERIC Log: esp(4) has been declared dead on Alpha for a long time now. Bury the remains. Approved by: re (scottl) Revision Changes Path 1.71.2.29 +0 -1 src/sys/alpha/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:57:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89C5B16A4CE for ; Mon, 10 Nov 2003 20:57:47 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4242443F75 for ; Mon, 10 Nov 2003 20:57:45 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id DECB05787 for ; Mon, 10 Nov 2003 20:49:09 -0800 (PST) Received: (qmail 27041 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.27040.qmail@exxodus.fedaykin.here> Received: (qmail 22275 invoked from network); 10 Nov 2003 23:47:37 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 23:47:37 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 21:47:15 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CCF26 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 20:35:35 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm7.uol.com.br (Postfix) with ESMTP id 9B5307832 for ; Mon, 10 Nov 2003 21:34:43 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id B9C765650F for ; Mon, 10 Nov 2003 15:34:42 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 13E0716A4E1; Mon, 10 Nov 2003 15:34:27 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id EFB8716A4CF; Mon, 10 Nov 2003 15:34:25 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1B5516A4DF; Mon, 10 Nov 2003 15:33:53 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56E0343FDD; Mon, 10 Nov 2003 15:33:53 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 3A3442A8FB; Mon, 10 Nov 2003 15:33:53 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Sam Leffler In-Reply-To: <200311101256.56038.sam@errno.com> Date: Mon, 10 Nov 2003 15:33:53 -0800 From: Peter Wemm Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: Jeffrey Hsu cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:57:47 -0000 Sam Leffler wrote: > On Monday 10 November 2003 12:42 pm, Jeffrey Hsu wrote: > > hsu 2003/11/10 12:42:04 PST > > Modified files: > > sys/netinet tcp_syncache.c > > Log: > > Mark TCP syncache timer as not Giant-free ready yet. > > I believe this is wrong. Please revert it or explain why. Without wanting to get into a fight, I'd like to know too. It is customary to put some details or reasoning in the commit log so that we don't have to have questions like this being asked. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:58:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78CAF16A4CE for ; Mon, 10 Nov 2003 20:58:07 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 739A143F75 for ; Mon, 10 Nov 2003 20:57:53 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 0C3A456D8 for ; Mon, 10 Nov 2003 20:49:17 -0800 (PST) Received: (qmail 26825 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26824.qmail@exxodus.fedaykin.here> Received: (qmail 74154 invoked from network); 26 Oct 2003 11:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6EEFD for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:49:55 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 9C442ECE3 for ; Sun, 26 Oct 2003 08:49:54 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id DEBD5571E9 for ; Sun, 26 Oct 2003 02:49:53 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 90D3016A522; Sun, 26 Oct 2003 02:49:51 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id AD00616A4C0; Sun, 26 Oct 2003 02:49:50 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4929016A4BF; Sun, 26 Oct 2003 02:49:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0FF843FAF; Sun, 26 Oct 2003 02:49:18 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9QAnIXJ043296; Sun, 26 Oct 2003 02:49:18 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9QAnIZ2043295; Sun, 26 Oct 2003 02:49:18 -0800 (PST) (envelope-from ume) From: Hajimu UMEMOTO To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/netinet6 in6.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:58:07 -0000 X-Original-Date: Sun, 26 Oct 2003 02:49:18 -0800 (PST) X-List-Received-Date: Tue, 11 Nov 2003 04:58:07 -0000 ume 2003/10/26 02:49:18 PST FreeBSD src repository Modified files: sys/netinet6 in6.h Log: use uint32_t instead of u_int32_t for newly introduced struct definition. Revision Changes Path 1.31 +1 -1 src/sys/netinet6/in6.h From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:58:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0615916A4CE for ; Mon, 10 Nov 2003 20:58:39 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7547143F93 for ; Mon, 10 Nov 2003 20:58:31 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 86567578F for ; Mon, 10 Nov 2003 20:49:26 -0800 (PST) Received: (qmail 26661 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26660.qmail@exxodus.fedaykin.here> Received: (qmail 19682 invoked from network); 26 Oct 2003 06:47:45 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:45 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:23 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AFAE for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:33:28 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id 28A76CDF1 for ; Sun, 26 Oct 2003 04:33:27 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 699CF56A17 for ; Sat, 25 Oct 2003 23:33:26 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2DF1716A522; Sat, 25 Oct 2003 23:33:24 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4208316A4C0; Sat, 25 Oct 2003 23:33:23 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9311616A4B3; Sat, 25 Oct 2003 23:32:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1619243FAF; Sat, 25 Oct 2003 23:32:51 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6WoXJ023916; Sat, 25 Oct 2003 23:32:50 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6Woj1023915; Sat, 25 Oct 2003 23:32:50 -0700 (PDT) (envelope-from imp) From: Warner Losh To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/dev/pccard pccarddevs.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:58:39 -0000 X-Original-Date: Sat, 25 Oct 2003 23:32:50 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 04:58:39 -0000 imp 2003/10/25 23:32:50 PDT FreeBSD src repository Modified files: sys/dev/pccard pccarddevs.h Log: Sync to pccarddevs 1.74 Revision Changes Path 1.74 +4 -1 src/sys/dev/pccard/pccarddevs.h From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:58:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43A0616A4D0 for ; Mon, 10 Nov 2003 20:58:59 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECAAC43FB1 for ; Mon, 10 Nov 2003 20:58:55 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 92BFA56D2 for ; Mon, 10 Nov 2003 20:49:36 -0800 (PST) Received: (qmail 26909 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26908.qmail@exxodus.fedaykin.here> Received: (qmail 47872 invoked from network); 9 Nov 2003 13:47:36 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Nov 2003 13:47:36 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 09 Nov 2003 11:47:14 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C0207EE9F for lioux-freebsd@uol.com.br; Sun, 9 Nov 2003 10:46:39 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id A8BB5E50A for ; Sun, 9 Nov 2003 11:46:37 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D9ECC57775 for ; Sun, 9 Nov 2003 05:46:31 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B44AC16A527; Sun, 9 Nov 2003 05:46:29 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 7472316A4D1; Sun, 9 Nov 2003 05:46:28 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1FF316A4CE; Sun, 9 Nov 2003 05:45:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C6F843F93; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA9DjtXJ093879; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA9Djt7S093878; Sun, 9 Nov 2003 05:45:55 -0800 (PST) (envelope-from bde) From: Bruce Evans Date: Sun, 9 Nov 2003 05:45:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 04:58:59 -0000 bde 2003/11/09 05:45:55 PST FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: Quick fix for scaling of statclock ticks in the SMP case. As explained in the log message for kern_sched.c 1.83 (which should have been repo-copied to preserve history for this file), the (4BSD) scheduler algorithm only works right if stathz is nearly 128 Hz. The old commit lock said 64 Hz; the scheduler actually wants nearly 16 Hz but there was a scale factor of 4 to give the requirement of 64 Hz, and rev.1.83 changed the scale factor so that the requirement became 128 Hz. The change of the scale factor was incomplete in the SMP case. Then scheduling ticks are provided by smp_ncpu CPUs, and the scheduler cannot tell the difference between this and 1 CPU providing scheduling ticks smp_ncpu times faster, so we need another scale factor of smp_ncp or an algorithm change. This quick fix uses the scale factor without even trying to optimize the runtime divisions required for this as is done for the other scale factor. The main algorithmic problem is the clamp on the scheduling tick counts. This was 295; it is now approximately 295 * smp_ncpu. When the limit is reached, threads get free timeslices and scheduling becomes very unfair to the threads that don't hit the limit. The limit can be reached and maintained in the worst case if the load average is larger than (limit / effective_stathz - 1) / 2 = 0.65 now (was just 0.08 with 2 CPUs before this change), so there are algorithmic problems even for a load average of 1. Fortunately, the worst case isn't common enough for the problem to be very noticeable (it is mainly for niced CPU hogs competing with less nice CPU hogs). Revision Changes Path 1.28 +4 -0 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:59:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC31F16A4CE; Mon, 10 Nov 2003 20:59:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 671B743F3F; Mon, 10 Nov 2003 20:59:23 -0800 (PST) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB4xNXJ099522; Mon, 10 Nov 2003 20:59:23 -0800 (PST) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB4xNaL099521; Mon, 10 Nov 2003 20:59:23 -0800 (PST) (envelope-from kientzle) Message-Id: <200311110459.hAB4xNaL099521@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 10 Nov 2003 20:59:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib radixsort.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 04:59:24 -0000 kientzle 2003/11/10 20:59:23 PST FreeBSD src repository Modified files: lib/libc/stdlib radixsort.c Log: Improve the performance of radixsort() when sorting strings with common prefixes by noting when all the strings land in just one bin. Testing shows significant speedups (on the order of 30%) on strings with common prefixes and no slowdowns on any of my test cases. Submitted by: Markus Bjartveit Kruger PR: 58860 Approved by: gordon (mentor) Revision Changes Path 1.7 +11 -0 src/lib/libc/stdlib/radixsort.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:59:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C61F716A4CF; Mon, 10 Nov 2003 20:59:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F84843F85; Mon, 10 Nov 2003 20:59:26 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB4xPXJ099549; Mon, 10 Nov 2003 20:59:25 -0800 (PST) (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB4xPba099548; Mon, 10 Nov 2003 20:59:25 -0800 (PST) (envelope-from jkoshy) Message-Id: <200311110459.hAB4xPba099548@repoman.freebsd.org> From: Joseph Koshy Date: Mon, 10 Nov 2003 20:59:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys ktrace.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 04:59:26 -0000 X-List-Received-Date: Tue, 11 Nov 2003 04:59:26 -0000 jkoshy 2003/11/10 20:59:25 PST FreeBSD src repository Modified files: lib/libc/sys ktrace.2 Log: Add a section documenting the sysctl(8) tunables that influence the operation of ktrace(2). Add a cross-reference to sysctl(8). Make the language of rev 1.22 more consistent with the rest of the manual page. Revision Changes Path 1.23 +15 -2 src/lib/libc/sys/ktrace.2 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:59:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F26A516A4D0 for ; Mon, 10 Nov 2003 20:59:27 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E54ED43FE0 for ; Mon, 10 Nov 2003 20:59:20 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 331E4579C for ; Mon, 10 Nov 2003 20:49:49 -0800 (PST) Received: (qmail 26876 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26875.qmail@exxodus.fedaykin.here> Received: (qmail 74642 invoked from network); 26 Oct 2003 12:17:34 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 12:17:34 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 10:17:12 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D709C7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:53:41 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id B9275D9FA for ; Sun, 26 Oct 2003 09:53:39 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id EC27656C4C for ; Sun, 26 Oct 2003 03:53:35 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 31A9C16A523; Sun, 26 Oct 2003 03:53:33 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 27BB116A4C1; Sun, 26 Oct 2003 03:53:32 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B0B216A4BF; Sun, 26 Oct 2003 03:53:00 -0800 (PST) Received: from herring.nlsystems.com (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1203643FDF; Sun, 26 Oct 2003 03:52:59 -0800 (PST) (envelope-from dfr@nlsystems.com) Received: from [10.0.0.2] (herring.nlsystems.com [10.0.0.2]) h9QBqjpA069833; Sun, 26 Oct 2003 11:52:45 GMT (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Peter Wemm In-Reply-To: <20031026064145.18F0E2A8D5@canning.wemm.org> References: <20031026064145.18F0E2A8D5@canning.wemm.org> Content-Type: text/plain Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on herring.nlsystems.com Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:59:28 -0000 X-Original-Date: Sun, 26 Oct 2003 11:52:45 +0000 X-List-Received-Date: Tue, 11 Nov 2003 04:59:28 -0000 On Sun, 2003-10-26 at 06:41, Peter Wemm wrote: > Jeff Roberson wrote: > > On Sat, 25 Oct 2003, Peter Wemm wrote: > > > Wow, pentium4 sucks. Yes, I agree then, we should revert the change. > I'll do it. > > > > Intel looks more disappointing every day. > > Well, think of their optimization goals... The pentium4 was designed for > two things.. 1) to increase MHz, since thats all dumbass customers and > sales droids understand, and 2) to increase game framerate benchmarks. > Anything that didn't contribute to that goal and consumed transistors > started losing. The trick is to find some way to make intel interested in your problems (e.g. change a large site from using intel processors to amd). When the marketing people start to care about an application, the technical people start to collect instruction traces to use for optimising the next generation. In the mid 90s, 486 processors had terrible floating point performance and intel didn't much care. Their instruction traces showed that the applications they cared about (mainly word and excel) didn't use floating point much. As soon as people started trying to use floating point more intensively for games software, intel started profiling and optimising for it and these days, their floating point performance is reasonable for all applications (not just games). The trick, I guess, is to make the right kind of case. If, for instance, the engineers developing Longhorn started telling Intel that AMD processors could e.g. context switch ten times faster than P4s and this would affect the performance of some bogus Longhorn feature, then I imagine things might change. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:59:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9841F16A4D0 for ; Mon, 10 Nov 2003 20:59:29 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCC2A43F75 for ; Mon, 10 Nov 2003 20:59:25 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id EB0595700 for ; Mon, 10 Nov 2003 20:49:50 -0800 (PST) Received: (qmail 26755 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26754.qmail@exxodus.fedaykin.here> Received: (qmail 72849 invoked from network); 26 Oct 2003 08:47:35 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 08:47:35 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 06:47:13 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6CE42 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 05:37:33 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm8.uol.com.br (Postfix) with ESMTP id 9B091C839 for ; Sun, 26 Oct 2003 06:37:32 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id A78AE56A1C for ; Sun, 26 Oct 2003 01:37:31 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2986616A528; Sun, 26 Oct 2003 01:37:28 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id D7B2016A4BF; Sun, 26 Oct 2003 01:37:26 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A678D16A50E; Sun, 26 Oct 2003 01:36:54 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4296D43FB1; Sun, 26 Oct 2003 01:36:50 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id TAA30147; Sun, 26 Oct 2003 19:36:41 +1100 From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Tim Kientzle In-Reply-To: <3F9B6EB1.5020705@acm.org> References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> <20031026171515.P17272@gamplex.bde.org> <3F9B6EB1.5020705@acm.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:59:29 -0000 X-Original-Date: Sun, 26 Oct 2003 19:36:39 +1100 (EST) X-List-Received-Date: Tue, 11 Nov 2003 04:59:29 -0000 On Sat, 25 Oct 2003, Tim Kientzle wrote: > > On Sat, 25 Oct 2003, Peter Wemm wrote: > >>peter 2003/10/25 21:49:58 PDT > >> > >> FreeBSD src repository > >> > >> Modified files: > >> usr.bin/chat Makefile > >> Log: > >> The math function logf() probably isn't doing us much good for logging > >> stuff. Add -fno-builtin-logf. > > Rather than commit ugly Makefile hacks like > this, just rename the damned function and > be done with it. Hmm. logf() is an extern function so it was reserved in C90. Oherwise there is nothing wrong with its name. Making it static would fix the immediate problem. The gcc bug doesn't show up until WARNS >=4 gives -Wshadow. Bruce From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:59:32 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6433916A4D0 for ; Mon, 10 Nov 2003 20:59:32 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BE8D43F75 for ; Mon, 10 Nov 2003 20:59:29 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 351A85508 for ; Mon, 10 Nov 2003 20:49:53 -0800 (PST) Received: (qmail 26547 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26546.qmail@exxodus.fedaykin.here> Received: (qmail 3604 invoked from network); 21 Oct 2003 21:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 21:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 19:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.198) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6C998 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 18:40:25 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id 374F98FD6 for ; Tue, 21 Oct 2003 19:24:39 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 31EAB5641B for ; Tue, 21 Oct 2003 14:23:14 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id BA9A216A51C; Tue, 21 Oct 2003 14:23:11 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 8289C16A4C0; Tue, 21 Oct 2003 14:23:10 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62B7D16A4B3 for ; Tue, 21 Oct 2003 14:22:39 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id D5BEA43FB1 for ; Tue, 21 Oct 2003 14:22:36 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 57305 invoked from network); 21 Oct 2003 21:22:34 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 21 Oct 2003 21:22:34 -0000 X-pair-Authenticated: 209.68.2.70 From: Mike Silbersack To: John Baldwin In-Reply-To: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/sys sysctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:59:32 -0000 X-Original-Date: Tue, 21 Oct 2003 18:22:21 -0500 (CDT) X-List-Received-Date: Tue, 11 Nov 2003 04:59:32 -0000 On Tue, 21 Oct 2003, John Baldwin wrote: > Why have a RDTUN special case flag? You can just add CTLFLAG_TUN to the > appropriate places. The TUN flag seems somewhat dubious as well for > that matter. > > -- > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ I made the CTLFLAG_RDTUN flag to save myself some typing, that's all. The TUN flag can easily be removed when something better comes along. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:59:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38A2116A4CE for ; Mon, 10 Nov 2003 20:59:52 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AA7343FBD for ; Mon, 10 Nov 2003 20:59:42 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200-101-111-208.bsace705.dsl.brasiltelecom.net.br (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 3D6D657A1 for ; Mon, 10 Nov 2003 20:50:00 -0800 (PST) Received: (qmail 26184 invoked by uid 1001); 11 Nov 2003 04:07:32 -0000 Message-ID: <20031111040732.26183.qmail@exxodus.fedaykin.here> Received: (qmail 13863 invoked from network); 31 Aug 2003 12:47:14 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 31 Aug 2003 12:47:14 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.2) for lioux-freebsd@localhost (single-drop); Sun, 31 Aug 2003 09:47:14 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.178) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C011C1071 for lioux-freebsd@uol.com.br; Sun, 31 Aug 2003 09:44:48 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm10.uol.com.br (Postfix) with ESMTP id 9BD9E704F for ; Sun, 31 Aug 2003 09:44:46 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id E89D4567EC for ; Sun, 31 Aug 2003 05:44:35 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 3717716A521; Sun, 31 Aug 2003 05:44:32 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id A8B7A16A4C1; Sun, 31 Aug 2003 05:44:30 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BC8516A4BF; Sun, 31 Aug 2003 05:43:59 -0700 (PDT) Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C4B743FE5; Sun, 31 Aug 2003 05:43:58 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd04.aul.t-online.de by mailout02.sul.t-online.com with smtp id 19tRYi-0000ZI-05; Sun, 31 Aug 2003 14:43:56 +0200 Received: from Andro-Beta.Leidinger.net (E2oIheZ1YeEZ6QL0NMfTDV4p--KoUh0RDlPBG8MFJuhTqtkbfvY06t@[217.83.24.164]) by fmrl04.sul.t-online.com with esmtp id 19tRYc-1XUMyW0; Sun, 31 Aug 2003 14:43:50 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h7VCip9O005437; Sun, 31 Aug 2003 14:44:52 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h7VCjVjN046287; Sun, 31 Aug 2003 14:45:32 +0200 (CEST) (envelope-from Alexander@Leidinger.net) From: Alexander Leidinger To: Robert Watson In-Reply-To: References: <20030830023923.Q811@odysseus.silby.com> X-Mailer: Sylpheed version 0.9.3claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Seen: false X-ID: E2oIheZ1YeEZ6QL0NMfTDV4p--KoUh0RDlPBG8MFJuhTqtkbfvY06t@t-dialin.net Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: src-committers@freebsd.org cc: phk@FreeBSd.org cc: cvs-src@freebsd.org cc: Mike Silbersack cc: dds@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/net if_ethersubr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:59:52 -0000 X-Original-Date: Sun, 31 Aug 2003 14:45:31 +0200 X-List-Received-Date: Tue, 11 Nov 2003 04:59:52 -0000 X-List-Received-Date: Tue, 11 Nov 2003 04:59:52 -0000 On Sat, 30 Aug 2003 10:41:02 -0400 (EDT) Robert Watson wrote: > mind. The other thing we should encourage developers to do more is use > code coverage tools -- phk recently pointed me at kernbb(8) as a way to > feed gcov(1). Documenting the various tools and how to use them on FreeBSD would be a nice start. Maybe the interested parties can come up with a list of programs and maybe a short introduction what those tools do/provide and a link to documentation and hand them over to the doc people... Bye, Alexander. -- Yes, I've heard of "decaf." What's your point? http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 20:59:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 328C916A4CE for ; Mon, 10 Nov 2003 20:59:54 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDF8843FA3 for ; Mon, 10 Nov 2003 20:59:47 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id F1606551C for ; Mon, 10 Nov 2003 20:50:03 -0800 (PST) Received: (qmail 26858 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26857.qmail@exxodus.fedaykin.here> Received: (qmail 74333 invoked from network); 26 Oct 2003 11:47:32 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:47:32 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:47:10 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6FAC8 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:19:33 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 7B7B59F5F for ; Sun, 26 Oct 2003 09:19:31 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 1AB49570CF for ; Sun, 26 Oct 2003 03:19:30 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id C152316A518; Sun, 26 Oct 2003 03:19:27 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id BA93016A4C0; Sun, 26 Oct 2003 03:19:26 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5142416A4BF; Sun, 26 Oct 2003 03:18:55 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCCAE43FBF; Sun, 26 Oct 2003 03:18:52 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id DE16979A43; Sun, 26 Oct 2003 12:18:51 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id AA67C9C0AC; Sun, 26 Oct 2003 12:18:51 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id DEC829C04E; Sun, 26 Oct 2003 12:18:47 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id D7351B823; Sun, 26 Oct 2003 12:18:47 +0100 (CET) To: Bruce Evans References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> <20031026171515.P17272@gamplex.bde.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: <20031026171515.P17272@gamplex.bde.org> (Bruce Evans's message of "Sun, 26 Oct 2003 17:22:35 +1100 (EST)") User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 04:59:54 -0000 X-Original-Date: Sun, 26 Oct 2003 12:18:47 +0100 X-List-Received-Date: Tue, 11 Nov 2003 04:59:54 -0000 Bruce Evans writes: > On Sat, 25 Oct 2003, Peter Wemm wrote: > > The math function logf() probably isn't doing us much good for logging > > stuff. Add -fno-builtin-logf. > gcc should be fixed instead of unportabilizing Makefiles like this. In the meantime, now that we have a working fabsl(3), we can add -fno-builtin to CFLAGS in bsd.sys.mk. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:00:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2185F16A4D7 for ; Mon, 10 Nov 2003 21:00:53 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00DDA43FAF for ; Mon, 10 Nov 2003 21:00:21 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200-101-111-208.bsace705.dsl.brasiltelecom.net.br (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 4D6F75745 for ; Mon, 10 Nov 2003 20:50:26 -0800 (PST) Received: (qmail 26286 invoked by uid 1001); 11 Nov 2003 04:07:33 -0000 Message-ID: <20031111040733.26285.qmail@exxodus.fedaykin.here> Received: (qmail 1136 invoked from network); 21 Oct 2003 17:17:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 17:17:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 15:17:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C5DB5B for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 13:52:12 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id 25DFEC20E for ; Tue, 21 Oct 2003 14:51:25 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 59DA156BD5 for ; Tue, 21 Oct 2003 09:50:06 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 857B016A523; Tue, 21 Oct 2003 09:50:03 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id C926916A4C0; Tue, 21 Oct 2003 09:50:02 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FCDD16A4B3; Tue, 21 Oct 2003 09:49:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C556F43F75; Tue, 21 Oct 2003 09:49:30 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LGnUXJ087502; Tue, 21 Oct 2003 09:49:30 -0700 (PDT) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LGnUnv087499; Tue, 21 Oct 2003 09:49:30 -0700 (PDT) (envelope-from silby) From: Mike Silbersack To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sbin/sysctl sysctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:00:53 -0000 X-Original-Date: Tue, 21 Oct 2003 09:49:30 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:00:53 -0000 silby 2003/10/21 09:49:30 PDT FreeBSD src repository Modified files: sbin/sysctl sysctl.c Log: Have sysctl print out a more useful error message when it detects that the user has attempted to write to a read only, tunable value. Revision Changes Path 1.54 +6 -1 src/sbin/sysctl/sysctl.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:00:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A895816A4E6 for ; Mon, 10 Nov 2003 21:00:53 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FBFB43FBD for ; Mon, 10 Nov 2003 21:00:29 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 9B8735747 for ; Mon, 10 Nov 2003 20:50:29 -0800 (PST) Received: (qmail 26577 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26576.qmail@exxodus.fedaykin.here> Received: (qmail 4235 invoked from network); 21 Oct 2003 22:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 22:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 20:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6F560 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 19:36:25 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id AE26D8B6E for ; Tue, 21 Oct 2003 20:27:44 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C34F856E63 for ; Tue, 21 Oct 2003 15:26:49 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 94BF316A537; Tue, 21 Oct 2003 15:26:46 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4246716A4E7; Tue, 21 Oct 2003 15:26:45 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E93BC16A4B3; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6ACBE43F93; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LMQCXJ013488; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LMQCx1013487; Tue, 21 Oct 2003 15:26:12 -0700 (PDT) (envelope-from thomas) From: Thomas Quinot To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_cd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:00:54 -0000 X-Original-Date: Tue, 21 Oct 2003 15:26:12 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:00:54 -0000 thomas 2003/10/21 15:26:12 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_cd.c Log: MFC rev. 1.86: (cdcleanup,cdsysctlinit): Defend against calling sysctl_ctx_free on an uninitialized sysctl_ctx. Approved by: re (murray) Revision Changes Path 1.31.2.16 +6 -2 src/sys/cam/scsi/scsi_cd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:02:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 784D116A4CE for ; Mon, 10 Nov 2003 21:02:30 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC1C343F75 for ; Mon, 10 Nov 2003 21:02:19 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 31C6457AF for ; Mon, 10 Nov 2003 20:51:08 -0800 (PST) Received: (qmail 27002 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.27001.qmail@exxodus.fedaykin.here> Received: (qmail 21862 invoked from network); 10 Nov 2003 22:47:44 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 10 Nov 2003 22:47:44 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Mon, 10 Nov 2003 20:47:22 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C020CAB66 for lioux-freebsd@uol.com.br; Mon, 10 Nov 2003 19:46:33 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm3.uol.com.br (Postfix) with ESMTP id 5167AE49D for ; Mon, 10 Nov 2003 20:45:36 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 6A70356AF9 for ; Mon, 10 Nov 2003 14:45:30 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id C3AF416A515; Mon, 10 Nov 2003 14:45:26 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id F15B616A4D1; Mon, 10 Nov 2003 14:45:24 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B99C816A4CE; Mon, 10 Nov 2003 14:44:52 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9D343FBD; Mon, 10 Nov 2003 14:44:46 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4BBCF65478; Mon, 10 Nov 2003 22:44:45 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 52615-01; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 3831C653C2; Mon, 10 Nov 2003 22:44:44 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 5832E44; Mon, 10 Nov 2003 22:44:21 +0000 (GMT) Date: Mon, 10 Nov 2003 22:44:21 +0000 From: Bruce M Simpson To: Hartmut Brandt Mail-Followup-To: Hartmut Brandt , developers@FreeBSD.org, Kris Kennaway , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> <20031110174537.U53715@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031110174537.U53715@beagle.fokus.fraunhofer.de> Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 05:02:30 -0000 On Mon, Nov 10, 2003 at 05:55:22PM +0100, Harti Brandt wrote: > The official HARP isn't maintained anymore. Our HARP is maintained very > weakly. It was broken for longer amounts of time because no committer had > the interest/equipment/knowledge to work on it. People were forced to This situation may change if I obtain my idt(4) card and am able to use it as a viable alternative to a 'black box' DSL router... I am also trying to get ueagle(4) to work with maintainer's help on my hardware, that is another HARP client. BMS From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:03:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53CD816A4CE; Mon, 10 Nov 2003 21:03:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C03EB43F75; Mon, 10 Nov 2003 21:03:00 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB530XJ099770; Mon, 10 Nov 2003 21:03:00 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB530XF099765; Mon, 10 Nov 2003 21:03:00 -0800 (PST) (envelope-from bmah) Message-Id: <200311110503.hAB530XF099765@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 10 Nov 2003 21:03:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 05:03:01 -0000 bmah 2003/11/10 21:03:00 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: xterm termcap(5) entry breaks hack(6). ata(4) tagged queueing broken. Revision Changes Path 1.1.2.118 +11 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:03:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E214516A4D0 for ; Mon, 10 Nov 2003 21:03:03 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C38943FB1 for ; Mon, 10 Nov 2003 21:02:58 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 6FFC657BB for ; Mon, 10 Nov 2003 20:51:30 -0800 (PST) Received: (qmail 26720 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26719.qmail@exxodus.fedaykin.here> Received: (qmail 72276 invoked from network); 26 Oct 2003 07:47:34 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:47:34 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:47:12 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6C1C7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 04:46:30 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm13.uol.com.br (Postfix) with ESMTP id 1B3C38E37A for ; Sun, 26 Oct 2003 05:46:29 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 890FF56C8C for ; Sun, 26 Oct 2003 00:46:24 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 9F5B016A524; Sun, 26 Oct 2003 00:46:21 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 5CF1816A4C0; Sun, 26 Oct 2003 00:46:20 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21D1E16A4B3; Sun, 26 Oct 2003 00:45:49 -0700 (PDT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B6A443FA3; Sun, 26 Oct 2003 00:45:48 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.9p2/8.12.9) with ESMTP id h9Q7jVeF020616; Sun, 26 Oct 2003 00:45:36 -0700 (PDT) (envelope-from truckman@FreeBSD.org) From: Don Lewis To: alc@cs.rice.edu In-Reply-To: <20031026041909.GY20658@cs.rice.edu> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: jroberson@chesapeake.net cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: peter@wemm.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:03:04 -0000 X-Original-Date: Sun, 26 Oct 2003 00:45:31 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:03:04 -0000 On 25 Oct, Alan Cox wrote: > On Sat, Oct 25, 2003 at 11:14:48PM -0400, Jeff Roberson wrote: >> >> Uhm, dumb question, why don't we just allocate one page of kva per >> processor and avoid the mutex, the switchin/out, etc? To save KVA? At 3 >> pages per processor and a max of 8 processors on intel, that's 192k. We >> can probably spare it. I just saved that much with some UMA tuning. >> > > The mutex and the switchin mechanism are addressing two distinct needs. > > The mutex exists because there is a single KVA for some low-level pmap > functions on i386. (This could be changed, eliminating the need for > the mutex.) > > If, however, you eliminate the need for the mutex, you still require > the switchin mechanism as a means of handling preemption, > specifically, migration of the preempted thread between CPUs. The > alternative is to make pmap_zero_page() and the like critical > sections. Why not allow preemption, but just mark the thread as being ineligable for migration while it is executing pmap_zero_page() and similar bits of code? The thread might have to wait longer to get the CPU again after it was preempted, but so what. From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:03:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33D8616A4D1 for ; Mon, 10 Nov 2003 21:03:12 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1473443F85 for ; Mon, 10 Nov 2003 21:03:05 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id BA43157BF for ; Mon, 10 Nov 2003 20:51:35 -0800 (PST) Received: (qmail 26656 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26655.qmail@exxodus.fedaykin.here> Received: (qmail 19675 invoked from network); 26 Oct 2003 06:47:44 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:44 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:22 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AF60 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:32:25 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id 8829CD1C3 for ; Sun, 26 Oct 2003 04:32:24 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 61EC655726 for ; Sat, 25 Oct 2003 23:32:23 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id D567316A4DF; Sat, 25 Oct 2003 23:32:19 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 1160816A4C0; Sat, 25 Oct 2003 23:32:19 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A554316A4B3; Sat, 25 Oct 2003 23:31:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E8B43FBF; Sat, 25 Oct 2003 23:31:47 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6VkXJ023859; Sat, 25 Oct 2003 23:31:46 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6Vkae023858; Sat, 25 Oct 2003 23:31:46 -0700 (PDT) (envelope-from imp) From: Warner Losh To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/dev/pccard pccarddevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:03:12 -0000 X-Original-Date: Sat, 25 Oct 2003 23:31:46 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:03:12 -0000 imp 2003/10/25 23:31:46 PDT FreeBSD src repository Modified files: sys/dev/pccard pccarddevs Log: Add ID for olicom GOCARD Ethernet (OC2220) Revision Changes Path 1.74 +1 -0 src/sys/dev/pccard/pccarddevs From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:04:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28A6716A4CF for ; Mon, 10 Nov 2003 21:04:07 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 313A543FD7 for ; Mon, 10 Nov 2003 21:04:05 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 7017D57CD for ; Mon, 10 Nov 2003 20:52:09 -0800 (PST) Received: (qmail 26855 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26854.qmail@exxodus.fedaykin.here> Received: (qmail 74326 invoked from network); 26 Oct 2003 11:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 11:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 09:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6FA77 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:18:42 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm12.uol.com.br (Postfix) with ESMTP id 7B9A7D83A for ; Sun, 26 Oct 2003 09:18:42 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id B835556547 for ; Sun, 26 Oct 2003 03:18:41 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id E43CD16A523; Sun, 26 Oct 2003 03:18:38 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 275FE16A4C0; Sun, 26 Oct 2003 03:18:38 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D53816A4B3; Sun, 26 Oct 2003 03:18:06 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [208.142.252.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDDC543FA3; Sun, 26 Oct 2003 03:18:04 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h9QBI1q01829; Sun, 26 Oct 2003 06:18:01 -0500 (EST) (envelope-from jroberson@chesapeake.net) From: Jeff Roberson To: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= In-Reply-To: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:04:07 -0000 X-Original-Date: Sun, 26 Oct 2003 06:18:01 -0500 (EST) X-List-Received-Date: Tue, 11 Nov 2003 05:04:07 -0000 On Sun, 26 Oct 2003, Dag-Erling [iso-8859-1] Sm=F8rgrav wrote: > Peter Wemm writes: > > Massively deep pipelines help get the MHz up, and careful optimization = can > > stop it affecting frame rates. But it blows chunks if you mispredict a > > branch in typical gcc generated code. Or take our libc syscall stubs.. > > every single one will be mispredicted because the usual case (no errors= ) > > has an opposite direction branch to what intel's static branch predicti= on > > expects. > > Is there any way to teach (or trick) gcc to generate a branch which > the p4 will predict correctly? I doubt the effect would be measurable. We could simply rearrange the code. I do not know why it is arranged the way it is now but you would expect that there is some good reason. > > DES > -- > Dag-Erling Sm=F8rgrav - des@des.no > From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:04:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73EA816A4CE for ; Mon, 10 Nov 2003 21:04:07 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7562B43F85 for ; Mon, 10 Nov 2003 21:04:03 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 7E9CC571B for ; Mon, 10 Nov 2003 20:52:07 -0800 (PST) Received: (qmail 26873 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26872.qmail@exxodus.fedaykin.here> Received: (qmail 74635 invoked from network); 26 Oct 2003 12:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 12:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 10:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D706F4 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 08:48:00 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm1.uol.com.br (Postfix) with ESMTP id A7F1DE09E for ; Sun, 26 Oct 2003 09:47:59 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 0E58757127 for ; Sun, 26 Oct 2003 03:47:55 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id D58D116A4D6; Sun, 26 Oct 2003 03:47:50 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 0DAB916A4C2; Sun, 26 Oct 2003 03:47:50 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1AC016A4B3; Sun, 26 Oct 2003 03:47:18 -0800 (PST) Received: from mailout04.sul.t-online.com (mailout04.sul.t-online.com [194.25.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0276243F75; Sun, 26 Oct 2003 03:47:17 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd05.aul.t-online.de by mailout04.sul.t-online.com with smtp id 1ADjMO-0007K7-01; Sun, 26 Oct 2003 12:47:04 +0100 Received: from Andro-Beta.Leidinger.net (JO0T2EZFZez9TuWaU8qhAbhWNxHtPlKLQNCEd+XeRTXndxhP0Byk4k@[217.83.20.54]) by fmrl05.sul.t-online.com with esmtp id 1ADjMI-2Gnrf60; Sun, 26 Oct 2003 12:46:58 +0100 Received: from Magelan.Leidinger.net (Magellan [192.168.1.1]) h9QBknf5071990; Sun, 26 Oct 2003 12:46:49 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) h9QBknDC059440; Sun, 26 Oct 2003 12:46:49 +0100 (CET) (envelope-from Alexander@Leidinger.net) From: Alexander Leidinger To: des@des.no (Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?=) In-Reply-To: References: <20031026064145.18F0E2A8D5@canning.wemm.org> X-Mailer: Sylpheed version 0.9.6claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Seen: false X-ID: JO0T2EZFZez9TuWaU8qhAbhWNxHtPlKLQNCEd+XeRTXndxhP0Byk4k@t-dialin.net Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Peter Wemm cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:04:07 -0000 X-Original-Date: Sun, 26 Oct 2003 12:46:48 +0100 X-List-Received-Date: Tue, 11 Nov 2003 05:04:07 -0000 On Sun, 26 Oct 2003 12:13:37 +0100 des@des.no (Dag-Erling Sm=F8rgrav) wrote: > Is there any way to teach (or trick) gcc to generate a branch which > the p4 will predict correctly? First of all: ---snip--- `-fno-guess-branch-probability' Do not guess branch probabilities using a randomized model. Sometimes gcc will opt to use a randomized model to guess branch probabilities, when none are available from either profiling feedback (`-fprofile-arcs') or `__builtin_expect'. This means that different runs of the compiler on the same program may produce different object code. In a hard real-time system, people don't want different runs of the compiler to produce code that has different behavior; minimizing non-determinism is of paramount import. This switch allows users to reduce non-determinism, possibly at the expense of inferior optimization. The default is `-fguess-branch-probability' at levels `-O', `-O2', `-O3', `-Os'. ---snip--- Except instrumenting the code with "expect" or using "-fprofile-arcs" there's only the possibility to modify the code of gcc to match our existing model... Bye, Alexander. --=20 I believe the technical term is "Oops!" http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint =3D C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:04:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0504F16A4CE for ; Mon, 10 Nov 2003 21:04:38 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id D285543FA3 for ; Mon, 10 Nov 2003 21:04:32 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 1F08E57CA for ; Mon, 10 Nov 2003 20:52:21 -0800 (PST) Received: (qmail 26716 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26715.qmail@exxodus.fedaykin.here> Received: (qmail 72269 invoked from network); 26 Oct 2003 07:47:34 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:47:34 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:47:12 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6C103 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 04:43:10 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 39E9ADBF5 for ; Sun, 26 Oct 2003 05:43:10 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 6D21256ED7 for ; Sun, 26 Oct 2003 00:43:09 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 527DD16A51F; Sun, 26 Oct 2003 00:43:06 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 71F3E16A4BF; Sun, 26 Oct 2003 00:43:05 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33DDF16A4C0; Sun, 26 Oct 2003 00:42:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5495543FD7; Sun, 26 Oct 2003 00:42:33 -0700 (PDT) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q7gXXJ027865; Sun, 26 Oct 2003 00:42:33 -0700 (PDT) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q7gXlY027864; Sun, 26 Oct 2003 00:42:33 -0700 (PDT) (envelope-from simokawa) From: Hidetoshi Shimokawa To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:04:38 -0000 X-Original-Date: Sun, 26 Oct 2003 00:42:33 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:04:38 -0000 simokawa 2003/10/26 00:42:33 PDT FreeBSD src repository Modified files: sys/conf files Log: Revert previous change. We have to put dcons_crom at first after 'optional' and dcons and firewire are necessary and not optional for dcons_crom anyway. Reported by: brooks Revision Changes Path 1.840 +1 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:05:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AC0916A4CE for ; Mon, 10 Nov 2003 21:05:38 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51B0343FA3 for ; Mon, 10 Nov 2003 21:05:34 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 28B6957E1 for ; Mon, 10 Nov 2003 20:52:44 -0800 (PST) Received: (qmail 26482 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26481.qmail@exxodus.fedaykin.here> Received: (qmail 2760 invoked from network); 21 Oct 2003 20:17:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 20:17:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 18:17:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.198) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C685A5 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 17:16:17 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id D497117EF3 for ; Tue, 21 Oct 2003 17:57:49 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 47266568D4 for ; Tue, 21 Oct 2003 12:56:59 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B8C7616A4E8; Tue, 21 Oct 2003 12:56:56 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 77AAA16A4C0; Tue, 21 Oct 2003 12:56:55 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44DA916A4B3; Tue, 21 Oct 2003 12:56:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B911043FA3; Tue, 21 Oct 2003 12:56:23 -0700 (PDT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LJuNXJ004385; Tue, 21 Oct 2003 12:56:23 -0700 (PDT) (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LJuNXj004384; Tue, 21 Oct 2003 12:56:23 -0700 (PDT) (envelope-from sergei) From: Sergei Kolobov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:05:38 -0000 X-Original-Date: Tue, 21 Oct 2003 12:56:23 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:05:38 -0000 sergei 2003/10/21 12:56:23 PDT FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself. Approved by: krion (mentor) Revision Changes Path 1.108 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:05:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73D6716A4CE for ; Mon, 10 Nov 2003 21:05:41 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FDAA43F85 for ; Mon, 10 Nov 2003 21:05:36 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200-101-111-208.bsace705.dsl.brasiltelecom.net.br (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 29B4857E2 for ; Mon, 10 Nov 2003 20:52:44 -0800 (PST) Received: (qmail 26247 invoked by uid 1001); 11 Nov 2003 04:07:33 -0000 Message-ID: <20031111040733.26246.qmail@exxodus.fedaykin.here> Received: (qmail 593 invoked from network); 21 Oct 2003 16:18:48 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 16:18:48 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 14:18:26 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C5B7F3 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 13:07:54 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm14.uol.com.br (Postfix) with ESMTP id 7E1C6DAF12 for ; Tue, 21 Oct 2003 13:52:17 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 76D45565AA for ; Tue, 21 Oct 2003 08:51:32 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 2653416A52B; Tue, 21 Oct 2003 08:51:28 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 37F5116A4C0; Tue, 21 Oct 2003 08:51:27 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E33CF16A4B3; Tue, 21 Oct 2003 08:50:54 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F79643FBF; Tue, 21 Oct 2003 08:50:52 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id h9LFolE7025994; Tue, 21 Oct 2003 09:50:47 -0600 (MDT) (envelope-from imp@bsdimp.com) To: sam@errno.com From: "M. Warner Losh" In-Reply-To: <200310210850.03204.sam@errno.com> References: <200310181522.h9IFMhrS025003@repoman.freebsd.org> <20031021074238.GA1182@webcom.it> <200310210850.03204.sam@errno.com> X-Mailer: Mew version 2.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: andrea@webcom.it cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ep if_ep.c if_ep_isa.c if_ep_pccard.c if_epreg.h if_epvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:05:41 -0000 X-Original-Date: Tue, 21 Oct 2003 09:50:53 -0600 (MDT) X-List-Received-Date: Tue, 11 Nov 2003 05:05:41 -0000 In message: <200310210850.03204.sam@errno.com> Sam Leffler writes: : On Tuesday 21 October 2003 12:42 am, Andrea Campi wrote: : > Incidentally, even when ep is sane, I still need to remove MPSAFE from : > pccbb.c, or it stops after a few dozens of packets are sent/received. : > Rerunning ifconfig on the interface brings it back for a few more packets. : : Could this be the same problem that people are reporting on current@ as "IP : stack is busted"? Some of those folks were, however, using USB Ethernet : devices... Unlikely, as far as I can tell. But who knows. Warner From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:06:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A365916A4CE for ; Mon, 10 Nov 2003 21:06:49 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9476643FB1 for ; Mon, 10 Nov 2003 21:06:40 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id E7F1857F1 for ; Mon, 10 Nov 2003 20:53:19 -0800 (PST) Received: (qmail 26798 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26797.qmail@exxodus.fedaykin.here> Received: (qmail 73814 invoked from network); 26 Oct 2003 10:47:33 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 10:47:33 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 08:47:11 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6E9C3 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:30:59 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id 4CB3BC5C5 for ; Sun, 26 Oct 2003 08:30:59 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 06DA65725A for ; Sun, 26 Oct 2003 02:30:55 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6555F16A529; Sun, 26 Oct 2003 02:30:52 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2C5AC16A4C0; Sun, 26 Oct 2003 02:30:51 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA35016A4B3; Sun, 26 Oct 2003 02:30:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 718C543FB1; Sun, 26 Oct 2003 02:30:18 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9QAUIXJ042466; Sun, 26 Oct 2003 02:30:18 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9QAUITV042465; Sun, 26 Oct 2003 02:30:18 -0800 (PST) (envelope-from ume) From: Hajimu UMEMOTO To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.sbin/rrenumd rrenumd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:06:49 -0000 X-Original-Date: Sun, 26 Oct 2003 02:30:17 -0800 (PST) X-List-Received-Date: Tue, 11 Nov 2003 05:06:49 -0000 ume 2003/10/26 02:30:17 PST FreeBSD src repository Modified files: usr.sbin/rrenumd rrenumd.c Log: fix comment. Revision Changes Path 1.7 +1 -1 src/usr.sbin/rrenumd/rrenumd.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:07:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE97216A4CE for ; Mon, 10 Nov 2003 21:07:14 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3330D43FA3 for ; Mon, 10 Nov 2003 21:07:10 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 67B8057F3 for ; Mon, 10 Nov 2003 20:53:24 -0800 (PST) Received: (qmail 26692 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26691.qmail@exxodus.fedaykin.here> Received: (qmail 52803 invoked from network); 26 Oct 2003 07:18:06 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 07:18:06 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 05:17:44 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6B424 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:51:09 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 6220DE680 for ; Sun, 26 Oct 2003 04:51:07 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 29424564EB for ; Sat, 25 Oct 2003 23:51:05 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id C820616A51E; Sat, 25 Oct 2003 23:51:02 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B5D4116A4C0; Sat, 25 Oct 2003 23:51:01 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77FCB16A4B3; Sat, 25 Oct 2003 23:50:30 -0700 (PDT) Received: from kientzle.com (h-66-166-149-50.SNVACAID.covad.net [66.166.149.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3507943F75; Sat, 25 Oct 2003 23:50:27 -0700 (PDT) (envelope-from kientzle@acm.org) Received: from acm.org ([66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id h9Q6oPkX018064; Sat, 25 Oct 2003 23:50:26 -0700 (PDT) (envelope-from kientzle@acm.org) From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031006 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bruce Evans References: <200310260449.h9Q4nwm9016893@repoman.freebsd.org> <20031026171515.P17272@gamplex.bde.org> In-Reply-To: <20031026171515.P17272@gamplex.bde.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm Subject: Re: cvs commit: src/usr.bin/chat Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Reply-To: kientzle@acm.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:07:14 -0000 X-Original-Date: Sat, 25 Oct 2003 23:50:25 -0700 X-List-Received-Date: Tue, 11 Nov 2003 05:07:14 -0000 > On Sat, 25 Oct 2003, Peter Wemm wrote: >>peter 2003/10/25 21:49:58 PDT >> >> FreeBSD src repository >> >> Modified files: >> usr.bin/chat Makefile >> Log: >> The math function logf() probably isn't doing us much good for logging >> stuff. Add -fno-builtin-logf. Rather than commit ugly Makefile hacks like this, just rename the damned function and be done with it. Tim Kientzle From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:07:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D91916A4CF for ; Mon, 10 Nov 2003 21:07:28 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id C289E43FA3 for ; Mon, 10 Nov 2003 21:07:14 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200-101-111-208.bsace705.dsl.brasiltelecom.net.br (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 5D64F57F4 for ; Mon, 10 Nov 2003 20:53:29 -0800 (PST) Received: (qmail 26039 invoked by uid 1001); 11 Nov 2003 04:07:32 -0000 Message-ID: <20031111040732.26038.qmail@exxodus.fedaykin.here> Received: (qmail 3230 invoked from network); 9 Oct 2003 06:47:11 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Oct 2003 06:47:11 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Thu, 09 Oct 2003 03:47:11 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.198) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C019AB5ED for lioux-freebsd@uol.com.br; Thu, 9 Oct 2003 03:33:48 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm13.uol.com.br (Postfix) with ESMTP id 1D9AB8FF22 for ; Thu, 9 Oct 2003 03:33:48 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 637C4561BE for ; Wed, 8 Oct 2003 23:33:42 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B37C816A4EE; Wed, 8 Oct 2003 23:33:39 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 8636116A4C2; Wed, 8 Oct 2003 23:33:38 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D74DB16A4B3; Wed, 8 Oct 2003 23:33:05 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 369D843FE3; Wed, 8 Oct 2003 23:33:04 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from mail by mx.nsu.ru with drweb-scanned (Exim 3.35 #1 (Debian)) id 1A7UOb-00053L-00; Thu, 09 Oct 2003 13:35:33 +0700 Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 3.35 #1 (Debian)) id 1A7UOb-00051t-00; Thu, 09 Oct 2003 13:35:33 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.9/8.12.9) with ESMTP id h996XC2R059732; Thu, 9 Oct 2003 13:33:13 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.9/8.12.9/Submit) id h996XCct059716; Thu, 9 Oct 2003 13:33:12 +0700 (NOVST) From: Alexey Dokuchaev To: Sam Leffler References: <200310082025.h98KPliQ094708@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310082025.h98KPliQ094708@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Envelope-To: sam@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:07:28 -0000 X-Original-Date: Thu, 9 Oct 2003 13:33:12 +0700 X-List-Received-Date: Tue, 11 Nov 2003 05:07:28 -0000 X-List-Received-Date: Tue, 11 Nov 2003 05:07:28 -0000 On Wed, Oct 08, 2003 at 01:25:47PM -0700, Sam Leffler wrote: > sam 2003/10/08 13:25:47 PDT > > FreeBSD src repository > > Modified files: > sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h > Log: > Add symmetric crypto support for the 7955 and 7956. Hmm, time to rename those hifn7751* files, or does 7751 denote something that 7955 and 7956 are based on? ./danfe From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:07:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC47716A4CE for ; Mon, 10 Nov 2003 21:07:28 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5E1044003 for ; Mon, 10 Nov 2003 21:07:17 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 191B75570 for ; Mon, 10 Nov 2003 20:53:32 -0800 (PST) Received: (qmail 26574 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26573.qmail@exxodus.fedaykin.here> Received: (qmail 4222 invoked from network); 21 Oct 2003 22:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 22:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 20:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.187) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6EE1F for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 19:27:06 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id 357AF1AE61E for ; Tue, 21 Oct 2003 19:54:07 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 55E0D55D55 for ; Tue, 21 Oct 2003 14:53:37 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 9339816A4E2; Tue, 21 Oct 2003 14:53:33 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id BB43216A4C0; Tue, 21 Oct 2003 14:53:32 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 508C316A4B3; Tue, 21 Oct 2003 14:53:01 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EC7243FBD; Tue, 21 Oct 2003 14:53:00 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 7081E2ED44E; Tue, 21 Oct 2003 14:53:00 -0700 (PDT) From: Alfred Perlstein To: Mike Silbersack References: <200310211648.h9LGmXFK087432@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310211648.h9LGmXFK087432@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sysctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:07:29 -0000 X-Original-Date: Tue, 21 Oct 2003 14:53:00 -0700 X-List-Received-Date: Tue, 11 Nov 2003 05:07:29 -0000 * Mike Silbersack [031021 09:49] wrote: > silby 2003/10/21 09:48:33 PDT > > FreeBSD src repository > > Modified files: > sys/sys sysctl.h > Log: > Add another sysctl flag, CTLFLAG_TUN, which is a hint to the userland > sysctl that a given variable is tunable. > > Also added is CTLFLAG_RDTUN, which is CTLFLAG_RD|CTLFLAG_TUN; TUN does > not always imply read-only, so RDTUN should be used where RD was used > before. why not just make new TUNABLE macros to export them as sysctl? -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:07:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4125216A4CF for ; Mon, 10 Nov 2003 21:07:57 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A5F43FDD for ; Mon, 10 Nov 2003 21:07:54 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id CB3B457FC for ; Mon, 10 Nov 2003 20:53:51 -0800 (PST) Received: (qmail 26673 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26672.qmail@exxodus.fedaykin.here> Received: (qmail 19730 invoked from network); 26 Oct 2003 06:47:51 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:51 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:29 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6B21D for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:42:24 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id DE0DCE632 for ; Sun, 26 Oct 2003 04:42:23 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id B6E7F56BBB for ; Sat, 25 Oct 2003 23:42:22 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 4584E16A4E4; Sat, 25 Oct 2003 23:42:20 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2385A16A4C0; Sat, 25 Oct 2003 23:42:19 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA32416A4B3; Sat, 25 Oct 2003 23:41:47 -0700 (PDT) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3096B43FA3; Sat, 25 Oct 2003 23:41:45 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 18F0E2A8D5; Sat, 25 Oct 2003 23:41:45 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Jeff Roberson In-Reply-To: <20031025192122.Q43805-100000@mail.chesapeake.net> From: Peter Wemm Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:07:57 -0000 X-Original-Date: Sat, 25 Oct 2003 23:41:45 -0700 X-List-Received-Date: Tue, 11 Nov 2003 05:07:57 -0000 Jeff Roberson wrote: > On Sat, 25 Oct 2003, Peter Wemm wrote: > Wow, pentium4 sucks. Yes, I agree then, we should revert the change. I'll do it. > > Intel looks more disappointing every day. Well, think of their optimization goals... The pentium4 was designed for two things.. 1) to increase MHz, since thats all dumbass customers and sales droids understand, and 2) to increase game framerate benchmarks. Anything that didn't contribute to that goal and consumed transistors started losing. For example.. you dont need a barrel shifter for graphics for values other than the standard vga plane depths (1,2,4,8,15,16,24) so out that goes. Graphics processing doesn't need cli/sti, so that gets demoted to 300 clock cycles instead of 8. invlpg isn't a graphics critical function, so there isn't any need to waste transisitors and microcode on it.. Massively deep pipelines help get the MHz up, and careful optimization can stop it affecting frame rates. But it blows chunks if you mispredict a branch in typical gcc generated code. Or take our libc syscall stubs.. every single one will be mispredicted because the usual case (no errors) has an opposite direction branch to what intel's static branch prediction expects. Argh. I'm too cynical. I'd better stop now before I really upset somebody. Anyway, if you can figure out a way to make invlpg affect graphics performance in a big way, then you can expect the next microcode update to do something dramatic about it. :-) Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:08:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26F1116A4CE for ; Mon, 10 Nov 2003 21:08:17 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0281743FB1 for ; Mon, 10 Nov 2003 21:08:11 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 4A2845801 for ; Mon, 10 Nov 2003 20:54:04 -0800 (PST) Received: (qmail 26795 invoked by uid 1001); 11 Nov 2003 04:07:35 -0000 Message-ID: <20031111040735.26794.qmail@exxodus.fedaykin.here> Received: (qmail 73807 invoked from network); 26 Oct 2003 10:47:32 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 10:47:32 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 08:47:10 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6E977 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 07:30:02 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm2.uol.com.br (Postfix) with ESMTP id 65DE0E339 for ; Sun, 26 Oct 2003 08:30:00 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id A709B571A8 for ; Sun, 26 Oct 2003 02:29:52 -0800 (PST) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 8E74A16A51F; Sun, 26 Oct 2003 02:29:50 -0800 (PST) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id E083C16A4C0; Sun, 26 Oct 2003 02:29:48 -0800 (PST) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF57B16A4B3; Sun, 26 Oct 2003 02:29:15 -0800 (PST) Received: from herring.nlsystems.com (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 741E243FA3; Sun, 26 Oct 2003 02:29:14 -0800 (PST) (envelope-from dfr@nlsystems.com) Received: from [10.0.0.2] (herring.nlsystems.com [10.0.0.2]) h9QAT2Tr074052; Sun, 26 Oct 2003 10:29:02 GMT (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Hidetoshi Shimokawa In-Reply-To: <200310260742.h9Q7gXlY027864@repoman.freebsd.org> References: <200310260742.h9Q7gXlY027864@repoman.freebsd.org> Content-Type: text/plain Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on herring.nlsystems.com Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:08:17 -0000 X-Original-Date: Sun, 26 Oct 2003 10:29:02 +0000 X-List-Received-Date: Tue, 11 Nov 2003 05:08:17 -0000 Wouldn't it be simpler to just have: dev/dcons/dcons_crom.c optional dcons firewire since dcons_crom isn't much use without either dcons and firewire. Also, not many people will want to have dcons without a crom attachment (assuming they have firewire), IMHO. On Sun, 2003-10-26 at 07:42, Hidetoshi Shimokawa wrote: > simokawa 2003/10/26 00:42:33 PDT > > FreeBSD src repository > > Modified files: > sys/conf files > Log: > Revert previous change. > > We have to put dcons_crom at first after 'optional' and > dcons and firewire are necessary and not optional for dcons_crom anyway. > > Reported by: brooks > > Revision Changes Path > 1.840 +1 -1 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:08:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A98A16A4CE for ; Mon, 10 Nov 2003 21:08:49 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CD0C43FB1 for ; Mon, 10 Nov 2003 21:08:45 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id D6439580A for ; Mon, 10 Nov 2003 20:54:12 -0800 (PST) Received: (qmail 26653 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26652.qmail@exxodus.fedaykin.here> Received: (qmail 19668 invoked from network); 26 Oct 2003 06:47:42 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:42 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:20 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6AEE4 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:31:05 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id E418BE6F9 for ; Sun, 26 Oct 2003 04:31:04 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 2D440568F5 for ; Sat, 25 Oct 2003 23:31:04 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id E9F2F16A533; Sat, 25 Oct 2003 23:31:00 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 3167716A4C0; Sat, 25 Oct 2003 23:31:00 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6DED16A4B3; Sat, 25 Oct 2003 23:30:27 -0700 (PDT) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43CAE43FDD; Sat, 25 Oct 2003 23:30:27 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 253692A8DA; Sat, 25 Oct 2003 23:30:27 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: From: Peter Wemm Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:08:49 -0000 X-Original-Date: Sat, 25 Oct 2003 23:30:27 -0700 X-List-Received-Date: Tue, 11 Nov 2003 05:08:49 -0000 Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= wrote: > Jeff Roberson writes: > > Wow, pentium4 sucks [...] Intel looks more disappointing every day. > > "Our records indicate that you are not currently licensed to make > disparaging comments about Intel products. Should you choose to apply > for such a license, we will process your application with all due > speed - as soon as our AMD-based computers, which all run FreeBSD 5, > manage to stay up for more than ten minutes at a time." > > DES (typing on a P4 which, unlike his dual Athlon, *works*) Heh. This problem is the reason why your dual athlon doesn't work. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:09:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E672F16A4CE for ; Mon, 10 Nov 2003 21:09:44 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF5BA43F3F for ; Mon, 10 Nov 2003 21:09:37 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id A1873576A for ; Mon, 10 Nov 2003 20:54:36 -0800 (PST) Received: (qmail 26235 invoked by uid 1001); 11 Nov 2003 04:07:33 -0000 Message-ID: <20031111040733.26234.qmail@exxodus.fedaykin.here> Received: (qmail 542 invoked from network); 21 Oct 2003 16:18:46 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 16:18:46 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 14:18:24 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C59F87 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 12:36:03 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id 06D387F51 for ; Tue, 21 Oct 2003 13:36:02 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 19B1356992 for ; Tue, 21 Oct 2003 08:35:18 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id CDF8316A523; Tue, 21 Oct 2003 08:35:15 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 91E2C16A4C0; Tue, 21 Oct 2003 08:35:14 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EAD816A4BF for ; Tue, 21 Oct 2003 08:34:43 -0700 (PDT) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 629D843FBD for ; Tue, 21 Oct 2003 08:34:40 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 25551 invoked from network); 21 Oct 2003 15:34:39 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 21 Oct 2003 15:34:39 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id h9LFYZce087049; Tue, 21 Oct 2003 11:34:36 -0400 (EDT) (envelope-from jhb@FreeBSD.org) X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii MIME-Version: 1.0 In-Reply-To: <200310190556.h9J5uxo8002406@repoman.freebsd.org> From: John Baldwin To: Nate Lawson X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:09:45 -0000 X-Original-Date: Tue, 21 Oct 2003 11:34:49 -0400 (EDT) X-List-Received-Date: Tue, 11 Nov 2003 05:09:45 -0000 On 19-Oct-2003 Nate Lawson wrote: > njl 2003/10/18 22:56:59 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/acpica acpi.c=20 > Log: > Disable irqs before entering the power-off state. This is not known > to fix any problems but is similar to how Linux implements this > function. By the way, any ideas on why my laptop gets an interrupt storm when it resumes from S1 and any ideas on how to fix that? --=20 John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:11:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 316EE16A4CE; Mon, 10 Nov 2003 21:11:13 -0800 (PST) Received: from smtp02.syd.iprimus.net.au (smtp02.syd.iprimus.net.au [210.50.76.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FEF543FAF; Mon, 10 Nov 2003 21:11:11 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from robbins.dropbear.id.au (203.134.131.38) by smtp02.syd.iprimus.net.au (7.0.020) id 3F8F522A00866AE2; Tue, 11 Nov 2003 16:11:09 +1100 Received: by robbins.dropbear.id.au (Postfix, from userid 1000) id 2AD81611E; Tue, 11 Nov 2003 16:11:51 +1100 (EST) Date: Tue, 11 Nov 2003 16:11:50 +1100 From: Tim Robbins To: Hye-Shik Chang Message-ID: <20031111051150.GB59673@wombat.robbins.dropbear.id.au> References: <200311021009.hA2A9XTU063850@repoman.freebsd.org> <20031111042254.GA28372@i18n.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031111042254.GA28372@i18n.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/locale big5.c euc.c mskanji.c utf8.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 05:11:13 -0000 On Tue, Nov 11, 2003 at 01:22:54PM +0900, Hye-Shik Chang wrote: > On Sun, Nov 02, 2003 at 02:09:33AM -0800, Tim J. Robbins wrote: > > tjr 2003/11/02 02:09:33 PST > > > > FreeBSD src repository > > > > Modified files: > > lib/libc/locale big5.c euc.c mskanji.c utf8.c > > Log: > > Convert the Big5, EUC, MSKanji and UTF-8 encoding methods to implement > > mbrtowc() and wcrtomb() directly. GB18030, GBK and UTF2 are left > > unconverted; GB18030 will be done eventually, but GBK and UTF2 may just > > be removed, as they are subsets of GB18030 and UTF-8 respectively. > > > > Revision Changes Path > > 1.8 +50 -53 src/lib/libc/locale/big5.c > > 1.12 +68 -82 src/lib/libc/locale/euc.c > > 1.9 +46 -48 src/lib/libc/locale/mskanji.c > > 1.3 +69 -71 src/lib/libc/locale/utf8.c > > JFYI, I can't input characters in libreadline and GTK+2 on UTF-8 locales > (ports/misc/utf8locale) after this change. (and they work again when rollback > it to utf8.c rev 1.2) > > I'm tracking it down but I don't know what's the problem exactly yet. Ugh, sorry. Can you try this patch and let me know whether it fixes it? --- utf8.c.old Tue Nov 11 16:05:05 2003 +++ utf8.c Tue Nov 11 16:05:19 2003 @@ -143,7 +143,7 @@ _UTF8_mbrtowc(wchar_t * __restrict pwc, } if (pwc != NULL) *pwc = wch; - return (wch == L'\0' ? 0 : i); + return (wch == L'\0' ? 0 : len); } size_t From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:11:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A435116A4CF for ; Mon, 10 Nov 2003 21:11:24 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2185543FAF for ; Mon, 10 Nov 2003 21:11:20 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 6145D5829 for ; Mon, 10 Nov 2003 20:55:43 -0800 (PST) Received: (qmail 26571 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26570.qmail@exxodus.fedaykin.here> Received: (qmail 4228 invoked from network); 21 Oct 2003 22:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 22:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 20:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6F45B for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 19:35:10 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id E567A17668 for ; Tue, 21 Oct 2003 20:18:56 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 9624A5617D for ; Tue, 21 Oct 2003 15:18:55 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B8EF316A50E; Tue, 21 Oct 2003 15:18:52 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id C7DB516A4C0; Tue, 21 Oct 2003 15:18:51 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8541C16A4B3; Tue, 21 Oct 2003 15:18:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C8943FAF; Tue, 21 Oct 2003 15:18:20 -0700 (PDT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LMIJXJ013143; Tue, 21 Oct 2003 15:18:19 -0700 (PDT) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LMIJj4013142; Tue, 21 Oct 2003 15:18:19 -0700 (PDT) (envelope-from thomas) From: Thomas Quinot To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:11:24 -0000 X-Original-Date: Tue, 21 Oct 2003 15:18:19 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:11:24 -0000 thomas 2003/10/21 15:18:19 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_da.c Log: MFC rev. 1.160: (dacleanup, dasysctlinit): Defend against calling sysctl_ctx_free on an uninitialized sysctl_ctx. Approved by: re (murray) Revision Changes Path 1.42.2.46 +5 -2 src/sys/cam/scsi/scsi_da.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:11:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F46216A4CF for ; Mon, 10 Nov 2003 21:11:26 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id C09AC43FA3 for ; Mon, 10 Nov 2003 21:11:21 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200-101-111-208.bsace705.dsl.brasiltelecom.net.br (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 075FD5828 for ; Mon, 10 Nov 2003 20:55:43 -0800 (PST) Received: (qmail 26571 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26570.qmail@exxodus.fedaykin.here> Received: (qmail 4228 invoked from network); 21 Oct 2003 22:47:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 22:47:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 20:47:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.218) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C6F45B for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 19:35:10 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm6.uol.com.br (Postfix) with ESMTP id E567A17668 for ; Tue, 21 Oct 2003 20:18:56 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 9624A5617D for ; Tue, 21 Oct 2003 15:18:55 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B8EF316A50E; Tue, 21 Oct 2003 15:18:52 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id C7DB516A4C0; Tue, 21 Oct 2003 15:18:51 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8541C16A4B3; Tue, 21 Oct 2003 15:18:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C8943FAF; Tue, 21 Oct 2003 15:18:20 -0700 (PDT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LMIJXJ013143; Tue, 21 Oct 2003 15:18:19 -0700 (PDT) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LMIJj4013142; Tue, 21 Oct 2003 15:18:19 -0700 (PDT) (envelope-from thomas) From: Thomas Quinot To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:11:26 -0000 X-Original-Date: Tue, 21 Oct 2003 15:18:19 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:11:26 -0000 thomas 2003/10/21 15:18:19 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_da.c Log: MFC rev. 1.160: (dacleanup, dasysctlinit): Defend against calling sysctl_ctx_free on an uninitialized sysctl_ctx. Approved by: re (murray) Revision Changes Path 1.42.2.46 +5 -2 src/sys/cam/scsi/scsi_da.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:12:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1088A16A4CE for ; Mon, 10 Nov 2003 21:12:13 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82EED43FAF for ; Mon, 10 Nov 2003 21:12:08 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 6CDBC572A for ; Mon, 10 Nov 2003 20:56:06 -0800 (PST) Received: (qmail 26667 invoked by uid 1001); 11 Nov 2003 04:07:34 -0000 Message-ID: <20031111040734.26666.qmail@exxodus.fedaykin.here> Received: (qmail 19723 invoked from network); 26 Oct 2003 06:47:50 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 26 Oct 2003 06:47:50 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.5) for lioux-freebsd@localhost (single-drop); Sun, 26 Oct 2003 04:47:28 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01D6B1D7 for lioux-freebsd@uol.com.br; Sun, 26 Oct 2003 03:41:14 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id 037A3D4FB for ; Sun, 26 Oct 2003 04:41:14 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 176C656AC8 for ; Sat, 25 Oct 2003 23:41:13 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6A69A16A520; Sat, 25 Oct 2003 23:41:10 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 6648016A4C0; Sat, 25 Oct 2003 23:41:09 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 360EB16A4B3; Sat, 25 Oct 2003 23:40:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA3FC43FBD; Sat, 25 Oct 2003 23:40:37 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9Q6ebXJ024400; Sat, 25 Oct 2003 23:40:37 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9Q6ebs5024399; Sat, 25 Oct 2003 23:40:37 -0700 (PDT) (envelope-from bde) From: Bruce Evans To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/man/man man.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:12:14 -0000 X-Original-Date: Sat, 25 Oct 2003 23:40:37 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:12:14 -0000 bde 2003/10/25 23:40:37 PDT FreeBSD src repository Modified files: gnu/usr.bin/man/man man.c Log: Fix previous commit. glob_filename() returns "(char **) -1" for certain errors, not necessarily a pointer such that (intptr_t)pointer is -1. Also fix the style bug that the cast was not followed by a space. This style of this file is now perfectly non-KNF for this cast too. Revision Changes Path 1.62 +1 -1 src/gnu/usr.bin/man/man/man.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:12:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5D7D16A4DC for ; Mon, 10 Nov 2003 21:12:29 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AF7D43F85 for ; Mon, 10 Nov 2003 21:12:26 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id A8693572D for ; Mon, 10 Nov 2003 20:56:19 -0800 (PST) Received: (qmail 26430 invoked by uid 1001); 11 Nov 2003 04:07:33 -0000 Message-ID: <20031111040733.26429.qmail@exxodus.fedaykin.here> Received: (qmail 2234 invoked from network); 21 Oct 2003 19:17:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 19:17:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 17:17:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C65262 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 16:16:23 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm4.uol.com.br (Postfix) with ESMTP id B735F6C2BE for ; Tue, 21 Oct 2003 16:55:32 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 2709A56468 for ; Tue, 21 Oct 2003 11:54:27 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6B55416A50D; Tue, 21 Oct 2003 11:54:25 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2940816A4BF; Tue, 21 Oct 2003 11:54:24 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6EFB16A4C0 for ; Tue, 21 Oct 2003 11:53:52 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 2145543FAF for ; Tue, 21 Oct 2003 11:53:50 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 80820 invoked from network); 21 Oct 2003 18:53:48 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 21 Oct 2003 18:53:48 -0000 X-pair-Authenticated: 209.68.2.70 From: Mike Silbersack To: Mike Silbersack In-Reply-To: <200310211828.h9LISaO6093920@repoman.freebsd.org> References: <200310211828.h9LISaO6093920@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/amd64 amd64_mem.c tsc.csrc/sys/dev/aac aac_disk.c src/sys/dev/ata ata-disk.c src/sys/dev/pci pci_pci.c src/sys/i386/i386 i686_mem.c tsc.c src/sys/i386/pci pc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:12:29 -0000 X-Original-Date: Tue, 21 Oct 2003 15:53:35 -0500 (CDT) X-List-Received-Date: Tue, 11 Nov 2003 05:12:29 -0000 On Tue, 21 Oct 2003, Mike Silbersack wrote: > Change all SYSCTLS which are readonly and have a related TUNABLE > from CTLFLAG_RD to CTLFLAG_RDTUN so that sysctl(8) can provide > more useful error messages. For those interested, this series of commits causes the following to happen: > sysctl kern.maxproc=1 Tunable values are set in /boot/loader.conf and require a reboot to take effect. sysctl: oid 'kern.maxproc' is a tunable. This should help reduce confusion for sysadmins trying to tune FreeBSD for the first time. Perhaps the documentation could be improved as well, but I'm too lazy to tackle that right now. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:13:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DCD416A4CF for ; Mon, 10 Nov 2003 21:13:52 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DE1443F85 for ; Mon, 10 Nov 2003 21:13:29 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 072965842 for ; Mon, 10 Nov 2003 20:56:41 -0800 (PST) Received: (qmail 26042 invoked by uid 1001); 11 Nov 2003 04:07:32 -0000 Message-ID: <20031111040732.26041.qmail@exxodus.fedaykin.here> Received: (qmail 3237 invoked from network); 9 Oct 2003 06:47:11 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 9 Oct 2003 06:47:11 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Thu, 09 Oct 2003 03:47:11 -0259 (BRT) Received: from peart.uol.com.br (172.26.5.199) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C019AB962 for lioux-freebsd@uol.com.br; Thu, 9 Oct 2003 03:39:35 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm15.uol.com.br (Postfix) with ESMTP id 4579A143A6 for ; Thu, 9 Oct 2003 03:40:07 -0300 (BRT) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 5447D55F38 for ; Wed, 8 Oct 2003 23:39:30 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 6B73916A4E9; Wed, 8 Oct 2003 23:39:27 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 2627416A4C0; Wed, 8 Oct 2003 23:39:26 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1C7116A4B3; Wed, 8 Oct 2003 23:38:54 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64F2643FBF; Wed, 8 Oct 2003 23:38:53 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from mail by mx.nsu.ru with drweb-scanned (Exim 3.35 #1 (Debian)) id 1A7UUE-0006Mt-00; Thu, 09 Oct 2003 13:41:22 +0700 Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 3.35 #1 (Debian)) id 1A7UUB-0006Jk-00; Thu, 09 Oct 2003 13:41:19 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.9/8.12.9) with ESMTP id h996d02R062578; Thu, 9 Oct 2003 13:39:01 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.9/8.12.9/Submit) id h996d0Tx062553; Thu, 9 Oct 2003 13:39:00 +0700 (NOVST) From: Alexey Dokuchaev To: Sam Leffler References: <200310082352.h98Nq0ws011528@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310082352.h98Nq0ws011528@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Envelope-To: sam@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:13:52 -0000 X-Original-Date: Thu, 9 Oct 2003 13:39:00 +0700 X-List-Received-Date: Tue, 11 Nov 2003 05:13:52 -0000 On Wed, Oct 08, 2003 at 04:52:00PM -0700, Sam Leffler wrote: > sam 2003/10/08 16:52:00 PDT > > FreeBSD src repository > > Modified files: (Branch: RELENG_4) > sys/dev/hifn hifn7751.c hifn7751reg.h hifn7751var.h > Log: > MFC 7955/7956 symmetric crypto support Hmm, had this stuff been extensively tested to be insta-MFCed, especially considering we're so close to 4.9-RELEASE and, just as you said, it's performance being currently suboptimal? I've always been under impression that -STABLE should probably stay out of such treatments. ./danfe From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:15:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8203016A4CE for ; Mon, 10 Nov 2003 21:15:04 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DC4843FAF for ; Mon, 10 Nov 2003 21:14:56 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 3DE88584D for ; Mon, 10 Nov 2003 20:57:03 -0800 (PST) Received: (qmail 26386 invoked by uid 1001); 11 Nov 2003 04:07:33 -0000 Message-ID: <20031111040733.26385.qmail@exxodus.fedaykin.here> Received: (qmail 1957 invoked from network); 21 Oct 2003 18:47:30 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 18:47:30 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 16:47:08 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.121) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C63504 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 15:42:34 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm5.uol.com.br (Postfix) with ESMTP id 3ADF018EDE6 for ; Tue, 21 Oct 2003 16:29:23 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 84F825661F for ; Tue, 21 Oct 2003 11:29:14 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id 04DBA16A52E; Tue, 21 Oct 2003 11:29:10 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 4166C16A4C0; Tue, 21 Oct 2003 11:29:09 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5894416A4B3; Tue, 21 Oct 2003 11:28:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A66B743FB1; Tue, 21 Oct 2003 11:28:36 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LISaXJ093921; Tue, 21 Oct 2003 11:28:36 -0700 (PDT) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LISaO6093920; Tue, 21 Oct 2003 11:28:36 -0700 (PDT) (envelope-from silby) From: Mike Silbersack To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/sys/amd64/amd64 amd64_mem.c tsc.c src/sys/dev/aac aac_disk.c src/sys/dev/ata ata-disk.c src/sys/dev/pci pci_pci.c src/sys/i386/i386 i686_mem.c tsc.c src/sys/i386/pci pci_cfgreg.c src/sys/kern kern_mib.c subr_mbuf.c subr_smp.c subr_witness.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:15:04 -0000 X-Original-Date: Tue, 21 Oct 2003 11:28:36 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:15:04 -0000 silby 2003/10/21 11:28:36 PDT FreeBSD src repository Modified files: sys/amd64/amd64 amd64_mem.c tsc.c sys/dev/aac aac_disk.c sys/dev/ata ata-disk.c sys/dev/pci pci_pci.c sys/i386/i386 i686_mem.c tsc.c sys/i386/pci pci_cfgreg.c sys/kern kern_mib.c subr_mbuf.c subr_smp.c subr_witness.c sys_pipe.c sysv_msg.c sysv_sem.c sysv_shm.c uipc_socket.c uipc_socket2.c vfs_init.c sys/netgraph ng_base.c sys/netinet tcp_subr.c tcp_syncache.c sys/pccard pcic.c pcic_pci.c Log: Change all SYSCTLS which are readonly and have a related TUNABLE from CTLFLAG_RD to CTLFLAG_RDTUN so that sysctl(8) can provide more useful error messages. Revision Changes Path 1.22 +1 -1 src/sys/amd64/amd64/amd64_mem.c 1.204 +1 -1 src/sys/amd64/amd64/tsc.c 1.36 +1 -1 src/sys/dev/aac/aac_disk.c 1.161 +2 -2 src/sys/dev/ata/ata-disk.c 1.28 +1 -1 src/sys/dev/pci/pci_pci.c 1.23 +1 -1 src/sys/i386/i386/i686_mem.c 1.204 +1 -1 src/sys/i386/i386/tsc.c 1.106 +1 -1 src/sys/i386/pci/pci_cfgreg.c 1.70 +2 -2 src/sys/kern/kern_mib.c 1.56 +4 -4 src/sys/kern/subr_mbuf.c 1.177 +1 -1 src/sys/kern/subr_smp.c 1.160 +1 -1 src/sys/kern/subr_witness.c 1.154 +1 -1 src/sys/kern/sys_pipe.c 1.51 +3 -3 src/sys/kern/sysv_msg.c 1.64 +6 -6 src/sys/kern/sysv_sem.c 1.87 +2 -2 src/sys/kern/sysv_shm.c 1.155 +2 -1 src/sys/kern/uipc_socket.c 1.115 +1 -1 src/sys/kern/uipc_socket2.c 1.66 +1 -1 src/sys/kern/vfs_init.c 1.70 +2 -2 src/sys/netgraph/ng_base.c 1.163 +1 -1 src/sys/netinet/tcp_subr.c 1.43 +3 -3 src/sys/netinet/tcp_syncache.c 1.183 +3 -3 src/sys/pccard/pcic.c 1.127 +6 -6 src/sys/pccard/pcic_pci.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:15:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C9B716A4CE for ; Mon, 10 Nov 2003 21:15:08 -0800 (PST) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 877FF43FE9 for ; Mon, 10 Nov 2003 21:15:04 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200.101.111.208 (200-101-111-208.bsace705.dsl.brasiltelecom.net.br [200.101.111.208]) by vette.gigo.com (Postfix) with ESMTP id 096815851 for ; Mon, 10 Nov 2003 20:57:06 -0800 (PST) Received: (qmail 26474 invoked by uid 1001); 11 Nov 2003 04:07:33 -0000 Message-ID: <20031111040733.26473.qmail@exxodus.fedaykin.here> Received: (qmail 2703 invoked from network); 21 Oct 2003 20:17:31 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 21 Oct 2003 20:17:31 -0000 Received: from pop3.uol.com.br by localhost with POP3 (fetchmail-6.2.4) for lioux-freebsd@localhost (single-drop); Tue, 21 Oct 2003 18:17:09 -0200 (BRST) Received: from peart.uol.com.br (172.26.5.186) by mtauol7.mail.sys.intranet (5.1.071) id 3EDB5C0C01C677C3 for lioux-freebsd@uol.com.br; Tue, 21 Oct 2003 16:58:30 -0300 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by storm9.uol.com.br (Postfix) with ESMTP id 82390135DE for ; Tue, 21 Oct 2003 17:17:11 -0200 (BRST) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id C1BC1563DE for ; Tue, 21 Oct 2003 12:16:05 -0700 (PDT) (envelope-from owner-src-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id B4A5C16A52E; Tue, 21 Oct 2003 12:16:02 -0700 (PDT) Delivered-To: lioux@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B5B7A16A4C0; Tue, 21 Oct 2003 12:16:01 -0700 (PDT) Delivered-To: src-committers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D18E16A4B3; Tue, 21 Oct 2003 12:15:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F69343F3F; Tue, 21 Oct 2003 12:15:30 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9LJFTXJ096742; Tue, 21 Oct 2003 12:15:29 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9LJFTiT096741; Tue, 21 Oct 2003 12:15:29 -0700 (PDT) (envelope-from imp) From: Warner Losh To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Sender: owner-src-committers@FreeBSD.org Precedence: bulk X-Loop: FreeBSD.ORG Subject: cvs commit: src/etc remote X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 11 Nov 2003 05:15:08 -0000 X-Original-Date: Tue, 21 Oct 2003 12:15:29 -0700 (PDT) X-List-Received-Date: Tue, 11 Nov 2003 05:15:08 -0000 imp 2003/10/21 12:15:29 PDT FreeBSD src repository Modified files: etc remote Log: Modernize examples/usage. Kill 1200/300 baud modem entries and instead use 14.4kbps and faster modems as examples. Separate line speed and baud rate and be careful when talking of one verses the other. Revision Changes Path 1.13 +37 -31 src/etc/remote From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:21:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF12C16A4CE; Mon, 10 Nov 2003 21:21:37 -0800 (PST) Received: from sbtm.yonsei.net (sbtm.yonsei.net [61.100.191.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCB9843F85; Mon, 10 Nov 2003 21:21:36 -0800 (PST) (envelope-from perky@sbtm.yonsei.net) Received: by sbtm.yonsei.net (Postfix, from userid 1001) id F38F728411; Tue, 11 Nov 2003 14:21:35 +0900 (KST) Date: Tue, 11 Nov 2003 14:21:35 +0900 From: Hye-Shik Chang To: Tim Robbins Message-ID: <20031111052135.GA29527@i18n.org> References: <200311021009.hA2A9XTU063850@repoman.freebsd.org> <20031111042254.GA28372@i18n.org> <20031111051150.GB59673@wombat.robbins.dropbear.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031111051150.GB59673@wombat.robbins.dropbear.id.au> Organization: Yonsei University User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/locale big5.c euc.c mskanji.c utf8.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 05:21:37 -0000 On Tue, Nov 11, 2003 at 04:11:50PM +1100, Tim Robbins wrote: > On Tue, Nov 11, 2003 at 01:22:54PM +0900, Hye-Shik Chang wrote: [snip] > > > > JFYI, I can't input characters in libreadline and GTK+2 on UTF-8 locales > > (ports/misc/utf8locale) after this change. (and they work again when rollback > > it to utf8.c rev 1.2) > > > > I'm tracking it down but I don't know what's the problem exactly yet. > > Ugh, sorry. Can you try this patch and let me know whether it fixes it? > > --- utf8.c.old Tue Nov 11 16:05:05 2003 > +++ utf8.c Tue Nov 11 16:05:19 2003 > @@ -143,7 +143,7 @@ _UTF8_mbrtowc(wchar_t * __restrict pwc, > } > if (pwc != NULL) > *pwc = wch; > - return (wch == L'\0' ? 0 : i); > + return (wch == L'\0' ? 0 : len); > } > > size_t > Okay. It works again! Thank you! :) Regards, Hye-Shik =) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:22:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF0B616A4D0; Mon, 10 Nov 2003 21:22:05 -0800 (PST) Received: from sohgo.tanimura.dyndns.org (IP1A0514.kng.mesh.ad.jp [211.13.103.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71F2B44008; Mon, 10 Nov 2003 21:22:00 -0800 (PST) (envelope-from tanimura@tanimura.dyndns.org) Received: from sohgo.tanimura.dyndns.org (localhost [IPv6:::1]) ESMTP id hAB5Lvd0041124 ; Tue, 11 Nov 2003 14:21:57 +0900 (JST) Received: (from uucp@localhost) (8.12.9/3.7W-submit-carrots-Tokyu-Meguro) with UUCP id hAB5LuZ5041123 ; Tue, 11 Nov 2003 14:21:56 +0900 (JST) Received: from urban.nkth.tanimura.dyndns.org (localhost [IPv6:::1]) with ESMTP id hAB5JgFX008891 ; Tue, 11 Nov 2003 14:19:42 +0900 (JST) Message-Id: <200311110519.hAB5JgFX008891@urban> Date: Tue, 11 Nov 2003 14:19:42 +0900 From: Seigo Tanimura To: Bruce Evans In-Reply-To: <20031111040413.V717@gamplex.bde.org> References: <20031110180540.P2148@gamplex.bde.org> <200311101217.hAACH9FZ001752@urban> <20031111040413.V717@gamplex.bde.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 MULE XEmacs/21.4 (patch 13) (Rational FORTRAN) (i386--freebsd) Organization: My Home MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: cvs-src@freebsd.org cc: Seigo Tanimura cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: John Baldwin Subject: Re: cvs commit: src/sys/cam/scsi scsi_target.c src/sys/coda coda_psdev.c src/sys/dev/aac aac.c src/sys/dev/bktr bktr_core.c src/sys/dev/firewire firewire.c src/sys/dev/kbd kbd.c src/sys/dev/nmdm nmdm. X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 05:22:06 -0000 On Tue, 11 Nov 2003 04:16:15 +1100 (EST), Bruce Evans said: bde> On Mon, 10 Nov 2003, Seigo Tanimura wrote: >> On Mon, 10 Nov 2003 18:14:14 +1100 (EST), >> Bruce Evans said: >> ... bde> set the thread priority using that. So this changes is needed to get the bde> same behaviour as using tsleep(). However, I think that behaviour is not bde> quite right -- if the thread is a user thread then it waking it up is only bde> urgent if it needs to do some urgent things in kernel mode on wakeup. It bde> should not return to user mode until its user priority permits its bde> scheduling. However2, we still have the bugfeature that user threads keep bde> the kernel priority that they wake up at all the way back to user mode, bde> and this may be necessary for interactivity. >> >> I could implement priority bumping in selwakeuppri(), but I thought it >> would be troublesome to tweak struct cv outside kern_condvar.c. >> >> In case of select(2) et. al., selecting threads waken up repolls file >> descriptors. As it is a in-kernel work, those threads should remain >> at in-kernel priorities until polling succeeds, aren't they? bde> I think there is no need for elevated kernel priority in select() if bde> threads drop back to their normal user priority on return to user mode, bde> since nothing (?) except the user process is affected by the results bde> of select() (unlike for some i/o operations). Note that the priority That would hold if a thread waken up went straightly back to user mode. bde> is not elevated at the start of select(), so processes can be preempted bde> there now that we have a semi-preempive kernel. Why should the bde> completion of select() be different if the thread needed to sleep? bde> Any increase in priority should be because the thread slept for a while bde> and not arbitrary. We may need some tricks to protect all of the file descriptors being polled in kern_select(). -- Seigo Tanimura From owner-cvs-src@FreeBSD.ORG Mon Nov 10 21:38:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42DF916A4CE; Mon, 10 Nov 2003 21:38:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A16843FE5; Mon, 10 Nov 2003 21:38:28 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB5cSXJ002280; Mon, 10 Nov 2003 21:38:28 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB5cSp9002279; Mon, 10 Nov 2003 21:38:28 -0800 (PST) (envelope-from scottl) Message-Id: <200311110538.hAB5cSp9002279@repoman.freebsd.org> From: Scott Long Date: Mon, 10 Nov 2003 21:38:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/pci cmi.c src/sys/dev/sound/pcm dsp.c mixer.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 05:38:30 -0000 scottl 2003/11/10 21:38:28 PST FreeBSD src repository Modified files: sys/dev/sound/pci cmi.c sys/dev/sound/pcm dsp.c mixer.c Log: Fix sound LOR problems: dsp_open: rearrange to only hold one lock at a time dsp_close: ditto mixer_hwvol_init: delete locking, the only consumer seems to be the ess driver and it only call it a creation time, I think the device will be stable across the sleepable malloc. cmi interrupt routine: Release locks while caller chn_intr, either this or do what emu10k1 does which is have no locks at in the interrupt handler. Submitted by: mat@cnd.mcgill.ca Revision Changes Path 1.24 +28 -28 src/sys/dev/sound/pci/cmi.c 1.67 +88 -81 src/sys/dev/sound/pcm/dsp.c 1.33 +0 -2 src/sys/dev/sound/pcm/mixer.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 22:08:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4318F16A4CF; Mon, 10 Nov 2003 22:08:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6721343FFB; Mon, 10 Nov 2003 22:08:11 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB68BXJ004522; Mon, 10 Nov 2003 22:08:11 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB68Bwo004521; Mon, 10 Nov 2003 22:08:11 -0800 (PST) (envelope-from jake) Message-Id: <200311110608.hAB68Bwo004521@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 22:08:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 06:08:16 -0000 jake 2003/11/10 22:08:11 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 machdep.c Log: Rearrange slightly so that DELAY(9) works during cninit. Revision Changes Path 1.104 +12 -12 src/sys/sparc64/sparc64/machdep.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 22:13:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 807B516A4CF for ; Mon, 10 Nov 2003 22:13:53 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 53DFE43FEC for ; Mon, 10 Nov 2003 22:13:49 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 35458 invoked by uid 1000); 11 Nov 2003 06:13:57 -0000 Date: Mon, 10 Nov 2003 22:13:57 -0800 (PST) From: Nate Lawson To: John Baldwin In-Reply-To: <20031111041440.31347.qmail@exxodus.fedaykin.here> Message-ID: <20031110221318.C35445@root.org> References: <20031111041440.31347.qmail@exxodus.fedaykin.here> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 06:13:53 -0000 On Tue, 21 Oct 2003, John Baldwin wrote: > On 19-Oct-2003 Nate Lawson wrote: > > Modified files: > > sys/dev/acpica acpi.c > > Log: > > Disable irqs before entering the power-off state. This is not known > > to fix any problems but is similar to how Linux implements this > > function. > > By the way, any ideas on why my laptop gets an interrupt storm when it > resumes from S1 and any ideas on how to fix that? I assume this is an echo from a month ago? From owner-cvs-src@FreeBSD.ORG Mon Nov 10 22:27:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4E4A16A4CE; Mon, 10 Nov 2003 22:27:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6278943FB1; Mon, 10 Nov 2003 22:27:35 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB6RZXJ005281; Mon, 10 Nov 2003 22:27:35 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB6RZNf005280; Mon, 10 Nov 2003 22:27:35 -0800 (PST) (envelope-from bde) Message-Id: <200311110627.hAB6RZNf005280@repoman.freebsd.org> From: Bruce Evans Date: Mon, 10 Nov 2003 22:27:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 06:27:36 -0000 bde 2003/11/10 22:27:35 PST FreeBSD src repository Modified files: sys/boot/i386/boot2 boot2.c Log: Include the definition of RB_BOOTINFO. The previous commit broke the world because it depended on namespace pollution that was only in my version of . The include was removed in rev.1.63 after the last reference to it went away in rev.1.61. Revision Changes Path 1.66 +2 -0 src/sys/boot/i386/boot2/boot2.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 22:41:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A45E216A4CE; Mon, 10 Nov 2003 22:41:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2817243FD7; Mon, 10 Nov 2003 22:41:55 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB6fsXJ005966; Mon, 10 Nov 2003 22:41:54 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB6fsVE005965; Mon, 10 Nov 2003 22:41:54 -0800 (PST) (envelope-from jake) Message-Id: <200311110641.hAB6fsVE005965@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 22:41:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include cache.h src/sys/sparc64/sparc64 cache.c cheetah.c spitfire.c support.S trap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 06:41:55 -0000 jake 2003/11/10 22:41:54 PST FreeBSD src repository Modified files: sys/sparc64/include cache.h sys/sparc64/sparc64 cache.c cheetah.c spitfire.c support.S trap.c Log: Fix a bug in the data access error recorvery. Before re-enabling the data cache after a data access error we must discard all cache lines. When disabled existing cache lines are not invalidated by stores to memory, so we risk reading stale data that was cached before the data access error if we don't flush them. This is especially fatal when the memory involved is the active part of the kernel or user stack. For good measure we also flush the instruction cache. This fixes random crashes when the X server probes the PCI bus through /dev/pci. Revision Changes Path 1.10 +9 -0 src/sys/sparc64/include/cache.h 1.18 +6 -0 src/sys/sparc64/sparc64/cache.c 1.5 +16 -0 src/sys/sparc64/sparc64/cheetah.c 1.5 +27 -0 src/sys/sparc64/sparc64/spitfire.c 1.29 +0 -4 src/sys/sparc64/sparc64/support.S 1.69 +2 -0 src/sys/sparc64/sparc64/trap.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 22:47:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2305A16A4CE; Mon, 10 Nov 2003 22:47:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DACA43FE1; Mon, 10 Nov 2003 22:47:01 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB6l1XJ006209; Mon, 10 Nov 2003 22:47:01 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB6l1kG006208; Mon, 10 Nov 2003 22:47:01 -0800 (PST) (envelope-from jake) Message-Id: <200311110647.hAB6l1kG006208@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 22:47:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/creator creator_upa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 06:47:04 -0000 jake 2003/11/10 22:47:00 PST FreeBSD src repository Modified files: sys/sparc64/creator creator_upa.c Log: Assume that unit 0 is the graphics console initialized by syscons, instead of testing if the device's firmware node is stdout. This allows syscons to be used when the firmware's input and output is the serial console. Revision Changes Path 1.2 +1 -1 src/sys/sparc64/creator/creator_upa.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 22:52:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F4716A4CE; Mon, 10 Nov 2003 22:52:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7430343FAF; Mon, 10 Nov 2003 22:52:04 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB6q4XJ006525; Mon, 10 Nov 2003 22:52:04 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB6q4Qf006524; Mon, 10 Nov 2003 22:52:04 -0800 (PST) (envelope-from jake) Message-Id: <200311110652.hAB6q4Qf006524@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 22:52:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/uart uart_cpu_sparc64.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 06:52:05 -0000 jake 2003/11/10 22:52:04 PST FreeBSD src repository Modified files: sys/dev/uart uart_cpu_sparc64.c Log: Allow uart to attach to keyboards that are not the firmware's notion of stdin, such as when using a serial console. We must recognize these devices here so that we can override the tty attach routine. Revision Changes Path 1.7 +34 -13 src/sys/dev/uart/uart_cpu_sparc64.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:14:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BBAF16A4CF; Mon, 10 Nov 2003 23:14:58 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55EA64400B; Mon, 10 Nov 2003 23:14:52 -0800 (PST) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7D3A666B28; Mon, 10 Nov 2003 23:14:51 -0800 (PST) Date: Mon, 10 Nov 2003 23:14:51 -0800 From: Kris Kennaway To: Nate Lawson Message-ID: <20031111071451.GA20061@xor.obsecurity.org> References: <20031111041440.31347.qmail@exxodus.fedaykin.here> <20031110221318.C35445@root.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xHFwDpU9dbj6ez1V" Content-Disposition: inline In-Reply-To: <20031110221318.C35445@root.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Baldwin Subject: Re: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:14:58 -0000 --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 10, 2003 at 10:13:57PM -0800, Nate Lawson wrote: > On Tue, 21 Oct 2003, John Baldwin wrote: > > On 19-Oct-2003 Nate Lawson wrote: > > > Modified files: > > > sys/dev/acpica acpi.c > > > Log: > > > Disable irqs before entering the power-off state. This is not known > > > to fix any problems but is similar to how Linux implements this > > > function. > > > > By the way, any ideas on why my laptop gets an interrupt storm when it > > resumes from S1 and any ideas on how to fix that? >=20 > I assume this is an echo from a month ago? It looks like someone's feeding old mail back to the list. Kris --xHFwDpU9dbj6ez1V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/sIxrWry0BWjoQKURAkOAAKCaENQzmI10j0fWdfhgdC3v6mc52gCgmm+v fWq/3H6RTbFVlW7/XQaray0= =2r/l -----END PGP SIGNATURE----- --xHFwDpU9dbj6ez1V-- From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:25:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34AE916A4CE; Mon, 10 Nov 2003 23:25:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F02643FBD; Mon, 10 Nov 2003 23:25:06 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7P5XJ008622; Mon, 10 Nov 2003 23:25:06 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7P5oP008621; Mon, 10 Nov 2003 23:25:05 -0800 (PST) (envelope-from tjr) Message-Id: <200311110725.hAB7P5oP008621@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 10 Nov 2003 23:25:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/locale utf8.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:25:07 -0000 X-List-Received-Date: Tue, 11 Nov 2003 07:25:07 -0000 tjr 2003/11/10 23:25:05 PST FreeBSD src repository Modified files: lib/libc/locale utf8.c Log: Fix a typo that caused mbrtowc() to always return 0. Revision Changes Path 1.4 +1 -1 src/lib/libc/locale/utf8.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:26:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FB2B16A4CE; Mon, 10 Nov 2003 23:26:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FB6843FBD; Mon, 10 Nov 2003 23:26:34 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7QXXJ008729; Mon, 10 Nov 2003 23:26:33 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7QXrM008728; Mon, 10 Nov 2003 23:26:33 -0800 (PST) (envelope-from das) Message-Id: <200311110726.hAB7QXrM008728@repoman.freebsd.org> From: David Schultz Date: Mon, 10 Nov 2003 23:26:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/sys unistd.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:26:34 -0000 das 2003/11/10 23:26:33 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/sys unistd.h Log: MFC src/sys/sys/unistd.h,v 1.29 Revision Changes Path 1.22.2.3 +2 -1 src/sys/sys/unistd.h From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:26:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC51616A4CF; Mon, 10 Nov 2003 23:26:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B12F43FA3; Mon, 10 Nov 2003 23:26:45 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7QjXJ008759; Mon, 10 Nov 2003 23:26:45 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7QifI008758; Mon, 10 Nov 2003 23:26:44 -0800 (PST) (envelope-from das) Message-Id: <200311110726.hAB7QifI008758@repoman.freebsd.org> From: David Schultz Date: Mon, 10 Nov 2003 23:26:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern kern_fork.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:26:45 -0000 das 2003/11/10 23:26:44 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern kern_fork.c Log: MFC src/sys/kern/kern_fork.c,v 1.126 This closes a local DOS whereby a user can put a process in an uninterruptible sleep by calling rfork(RFNOWAIT|RFPPWAIT|RFPROC). Reported by: Igor Serikov Revision Changes Path 1.72.2.16 +4 -0 src/sys/kern/kern_fork.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:27:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C524916A4CE; Mon, 10 Nov 2003 23:27:45 -0800 (PST) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 327F943FE3; Mon, 10 Nov 2003 23:27:44 -0800 (PST) (envelope-from des@des.no) Received: from smtp.des.no (37.80-203-228.nextgentel.com [80.203.228.37]) by mail.broadpark.no (Postfix) with ESMTP id E7C7F78EB9; Tue, 11 Nov 2003 08:27:42 +0100 (MET) Received: by smtp.des.no (Pony Express, from userid 666) id 946A89BFB0; Tue, 11 Nov 2003 08:27:42 +0100 (CET) Received: from dwp.des.no (dwp.des.no [10.0.0.4]) by smtp.des.no (Pony Express) with ESMTP id C1BC69BE1C; Tue, 11 Nov 2003 08:27:38 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id AC0E1B828; Tue, 11 Nov 2003 08:27:38 +0100 (CET) To: Hartmut Brandt References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110092945.GA8246@xor.obsecurity.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110094330.GA8458@xor.obsecurity.org> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110100936.GA8977@xor.obsecurity.org> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110163941.GA74723@dragon.nuxi.com> <20031110174537.U53715@beagle.fokus.fraunhofer.de> <20031110224421.GD2441@saboteur.dek.spc.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Tue, 11 Nov 2003 08:27:38 +0100 In-Reply-To: <20031110224421.GD2441@saboteur.dek.spc.org> (Bruce M. Simpson's message of "Mon, 10 Nov 2003 22:44:21 +0000") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dsa.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:27:45 -0000 Bruce M Simpson writes: > This situation may change if I obtain my idt(4) card and am able to use it > as a viable alternative to a 'black box' DSL router... I am also trying > to get ueagle(4) to work with maintainer's help on my hardware, that is > another HARP client. I recently got an fatm(4) adapter from Wilko which I intend to use for the same purpose... however, I am completely clueless about ATM (beyond the purely theoretical stuff from Tanenbaum) and would be grateful for any tips on how to make it work. I'm willing to write docs if someone helps me figure it out... DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:33:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0055B16A4CE; Mon, 10 Nov 2003 23:33:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FBF943FBD; Mon, 10 Nov 2003 23:33:25 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7XOXJ009114; Mon, 10 Nov 2003 23:33:24 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7XOme009113; Mon, 10 Nov 2003 23:33:24 -0800 (PST) (envelope-from jake) Message-Id: <200311110733.hAB7XOme009113@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 23:33:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.sparc64 src/sys/dev/uart uart_kbd_sun.c uart_kbd_sun.h uart_kbd_sun_tables.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:33:26 -0000 jake 2003/11/10 23:33:24 PST FreeBSD src repository Modified files: sys/conf files.sparc64 Added files: sys/dev/uart uart_kbd_sun.c uart_kbd_sun.h uart_kbd_sun_tables.h Log: Add a uart attachment/syscons keyboard driver for sun keyboards. In theory this will work with any uart backend, currently supported hardware uses either ns8250 or z8530. Revision Changes Path 1.47 +1 -0 src/sys/conf/files.sparc64 1.1 +529 -0 src/sys/dev/uart/uart_kbd_sun.c (new) 1.1 +65 -0 src/sys/dev/uart/uart_kbd_sun.h (new) 1.1 +144 -0 src/sys/dev/uart/uart_kbd_sun_tables.h (new) From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:34:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17EEE16A4CE; Mon, 10 Nov 2003 23:34:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A8F643F93; Mon, 10 Nov 2003 23:34:08 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7Y8XJ009157; Mon, 10 Nov 2003 23:34:08 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7Y8p3009156; Mon, 10 Nov 2003 23:34:08 -0800 (PST) (envelope-from jake) Message-Id: <200311110734.hAB7Y8p3009156@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 23:34:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fb creator.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:34:09 -0000 jake 2003/11/10 23:34:08 PST FreeBSD src repository Modified files: sys/dev/fb creator.c Log: Fix a typo. Allow for the creator not being stdout. Revision Changes Path 1.2 +8 -9 src/sys/dev/fb/creator.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:40:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84EF916A4CE; Mon, 10 Nov 2003 23:40:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC1DA43F93; Mon, 10 Nov 2003 23:40:45 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7ejXJ009574; Mon, 10 Nov 2003 23:40:45 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7ej1l009573; Mon, 10 Nov 2003 23:40:45 -0800 (PST) (envelope-from jake) Message-Id: <200311110740.hAB7ej1l009573@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 23:40:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:40:46 -0000 jake 2003/11/10 23:40:45 PST FreeBSD src repository Modified files: sys/sparc64/conf GENERIC Log: Remove references to atkbd, atkbdc, psm and vga. Revision Changes Path 1.61 +1 -7 src/sys/sparc64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:48:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E480F16A4E8; Mon, 10 Nov 2003 23:48:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F5343FAF; Mon, 10 Nov 2003 23:48:02 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7m2XJ009914; Mon, 10 Nov 2003 23:48:02 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7m247009913; Mon, 10 Nov 2003 23:48:02 -0800 (PST) (envelope-from jake) Message-Id: <200311110748.hAB7m247009913@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 10 Nov 2003 23:48:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:48:03 -0000 jake 2003/11/10 23:48:02 PST FreeBSD src repository Modified files: sys/sparc64/conf GENERIC Log: Add entries for creator, splash, uart and puc, commented out until they're made the default. These are needed to run X. Revision Changes Path 1.62 +5 -1 src/sys/sparc64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:49:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F89616A4CE; Mon, 10 Nov 2003 23:49:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 821D743F93; Mon, 10 Nov 2003 23:49:46 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB7nkXJ010000; Mon, 10 Nov 2003 23:49:46 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB7nkiQ009999; Mon, 10 Nov 2003 23:49:46 -0800 (PST) (envelope-from sos) Message-Id: <200311110749.hAB7nkiQ009999@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 10 Nov 2003 23:49:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-disk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:49:47 -0000 sos 2003/11/10 23:49:46 PST FreeBSD src repository Modified files: sys/dev/ata ata-disk.c Log: Update the dump code to flush buffers at the end of the dump to avoid loosing evt cached data. Revision Changes Path 1.163 +25 -19 src/sys/dev/ata/ata-disk.c From owner-cvs-src@FreeBSD.ORG Mon Nov 10 23:56:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35B4C16A4D0; Mon, 10 Nov 2003 23:56:28 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id C419D43FEA; Mon, 10 Nov 2003 23:56:25 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.10/8.12.10) with ESMTP id hAB7uKtB019883; Tue, 11 Nov 2003 08:56:21 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 10 Nov 2003 23:26:13 +0100." Date: Tue, 11 Nov 2003 08:56:20 +0100 Message-ID: <19882.1068537380@critter.freebsd.dk> cc: Jun Kuriyama cc: src-committers@FreeBSD.org cc: Hartmut Brandt cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 07:56:28 -0000 In message , Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= writes: >--=-=-= >Content-Type: text/plain; charset=iso-8859-1 >Content-Transfer-Encoding: quoted-printable > >Harti Brandt writes: >> No, mine. Although the universe made it just fine, the tinderbox breaks. >> I'm just testing a fix. > >See attached fix for 'make universe'. Very funny. -- 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 Tue Nov 11 00:13:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A1CD16A4CE; Tue, 11 Nov 2003 00:13:10 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A9AC43F93; Tue, 11 Nov 2003 00:13:08 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAB8D6U02000; Tue, 11 Nov 2003 09:13:06 +0100 (MET) Date: Tue, 11 Nov 2003 09:13:06 +0100 (CET) From: Harti Brandt To: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= In-Reply-To: Message-ID: <20031111090724.Q7611@beagle.fokus.fraunhofer.de> References: <200311100917.hAA9HYsg097794@repoman.freebsd.org> <20031110143627.T29745@beagle.fokus.fraunhofer.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 08:13:10 -0000 On Mon, 10 Nov 2003, Dag-Erling [iso-8859-1] Sm?rgrav wrote: DS>Harti Brandt writes: DS>> No, mine. Although the universe made it just fine, the tinderbox breaks. DS>> I'm just testing a fix. DS> DS>See attached fix for 'make universe'. Actually I always look at the output from the universe so I see when an error happens. The problem was different: the original source does an #include "foo.h" for a file that will end up in a subdirectory of /usr/include. This is done so that a standalone build will find the include file. The makefile for the standalone build has a -I directive that points to the right package sub-directory. I was under the impression that during stage 4.2 of buildworld (building libraries) the INCLUDEDIR points to the temporary environment in /usr/obj/.... That is, however, not the case. INCLUDEDIR points to /usr/include. Unfortunately on my build system I already had the /usr/include subdirectory populated so the build went through successfully, but failed obviously in the tinderbox. harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Tue Nov 11 00:24:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68D2E16A4CE; Tue, 11 Nov 2003 00:24:22 -0800 (PST) Received: from mailhub.fokus.fraunhofer.de (mailhub.fokus.fraunhofer.de [193.174.154.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59A5F43FCB; Tue, 11 Nov 2003 00:24:19 -0800 (PST) (envelope-from brandt@fokus.fraunhofer.de) Received: from beagle (beagle [193.175.132.100])hAB8OHU03779; Tue, 11 Nov 2003 09:24:17 +0100 (MET) Date: Tue, 11 Nov 2003 09:24:17 +0100 (CET) From: Harti Brandt To: Bruce M Simpson In-Reply-To: <20031110224421.GD2441@saboteur.dek.spc.org> Message-ID: <20031111091315.R7611@beagle.fokus.fraunhofer.de> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> <20031110103409.R29745@beagle.fokus.fraunhofer.de> <20031110104611.U29745@beagle.fokus.fraunhofer.de> <20031110111035.G29745@beagle.fokus.fraunhofer.de> <20031110174537.U53715@beagle.fokus.fraunhofer.de> <20031110224421.GD2441@saboteur.dek.spc.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: Kris Kennaway cc: cvs-src@FreeBSD.org cc: des@FreeBSD.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hartmut Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 08:24:22 -0000 On Mon, 10 Nov 2003, Bruce M Simpson wrote: BMS>On Mon, Nov 10, 2003 at 05:55:22PM +0100, Harti Brandt wrote: BMS>> The official HARP isn't maintained anymore. Our HARP is maintained very BMS>> weakly. It was broken for longer amounts of time because no committer had BMS>> the interest/equipment/knowledge to work on it. People were forced to BMS> BMS>This situation may change if I obtain my idt(4) card and am able to use it BMS>as a viable alternative to a 'black box' DSL router... I am also trying BMS>to get ueagle(4) to work with maintainer's help on my hardware, that is BMS>another HARP client. I wonder what is it that you need from HARP. All DSL variantes I have looked up so far use an PVC and either IP over ATM, PPP over ATM or PPPoE over ATM. The first variant is easy to configure once you know the PVC: ifconfig hatm0 atmconfig natm add hatm0 0 llc/snap That's it. As for PPP I tried to contact Brian Somers because I want to write a handbook chapter on setting up PPP servers and client for ATM, but he seems very busy. Basically ppp has already support for netgraph, so setting up PPP over ATM is a matter of ifconfig hatm0 up kldload ng_atm ppp ... For all of this you need nothing from the HARP stack. You just need a driver for your ATM card. For all ATM cards except the IDT77211 we have already non-HARP drivers (en, fatm, hatm, patm) that can do the above. The driver for the IDT77201/211 is almost ready. I plan to craft a handbook chapter on ATM as soon as possible (given someone will help me to do the markup). harti -- harti brandt, http://www.fokus.fraunhofer.de/research/cc/cats/employees/hartmut.brandt/private brandt@fokus.fraunhofer.de, harti@freebsd.org From owner-cvs-src@FreeBSD.ORG Tue Nov 11 00:27:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 606EB16A4CE; Tue, 11 Nov 2003 00:27:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A304A43F85; Tue, 11 Nov 2003 00:27:54 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB8RsXJ012438; Tue, 11 Nov 2003 00:27:54 -0800 (PST) (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB8Rs8p012437; Tue, 11 Nov 2003 00:27:54 -0800 (PST) (envelope-from roam) Message-Id: <200311110827.hAB8Rs8p012437@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 11 Nov 2003 00:27:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/games/fortune/datfiles fortunes2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 08:27:55 -0000 roam 2003/11/11 00:27:54 PST FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) games/fortune/datfiles fortunes2 Log: MFC the typo fix from rev. 1.61: 'in cloud' -> 'in a cloud'. Revision Changes Path 1.17.2.11 +2 -1 src/games/fortune/datfiles/fortunes2 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 00:40:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72AFD16A4CE; Tue, 11 Nov 2003 00:40:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E39BB43FFB; Tue, 11 Nov 2003 00:40:43 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB8ehXJ013139; Tue, 11 Nov 2003 00:40:43 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB8ehtM013138; Tue, 11 Nov 2003 00:40:43 -0800 (PST) (envelope-from scottl) Message-Id: <200311110840.hAB8ehtM013138@repoman.freebsd.org> From: Scott Long Date: Tue, 11 Nov 2003 00:40:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 aac.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 08:40:44 -0000 scottl 2003/11/11 00:40:43 PST FreeBSD src repository Modified files: share/man/man4 aac.4 Log: Note support for the Adaptec 2410SA in the aac.4 manpage. Revision Changes Path 1.22 +2 -0 src/share/man/man4/aac.4 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 01:09:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC80B16A4CE; Tue, 11 Nov 2003 01:09:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ADE143FA3; Tue, 11 Nov 2003 01:09:27 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB99RXJ021151; Tue, 11 Nov 2003 01:09:27 -0800 (PST) (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB99QOL021150; Tue, 11 Nov 2003 01:09:26 -0800 (PST) (envelope-from jkoshy) Message-Id: <200311110909.hAB99QOL021150@repoman.freebsd.org> From: Joseph Koshy Date: Tue, 11 Nov 2003 01:09:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_ktrace.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 09:09:28 -0000 jkoshy 2003/11/11 01:09:26 PST FreeBSD src repository Modified files: sys/kern kern_ktrace.c Log: Bound the number of iterations a thread can perform inside ktr_resize_pool(); this eliminates a potential livelock. Return ENOSPC only if we encountered an out-of-memory condition when trying to increase the pool size. Reviewed by: jhb, bde (style) Revision Changes Path 1.91 +8 -6 src/sys/kern/kern_ktrace.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 01:25:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29F2B16A4CF; Tue, 11 Nov 2003 01:25:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C2B43FF7; Tue, 11 Nov 2003 01:25:20 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB9PJXJ021906; Tue, 11 Nov 2003 01:25:19 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB9PJK5021905; Tue, 11 Nov 2003 01:25:19 -0800 (PST) (envelope-from marcel) Message-Id: <200311110925.hAB9PJK5021905@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 11 Nov 2003 01:25:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c syscall.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 09:25:25 -0000 marcel 2003/11/11 01:25:19 PST FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c syscall.S Log: Fix a nasty bug that got exposed when the sendsig() and sigreturn() functions switched to using {g|s}et_mcontext(). The problem is that sigreturn(), being a syscall, can be given an async. context (i.e. one corresponding to an interrupt or trap). When this happens, we try to return to user mode via epc_syscall_return with a trapframe that can only be used to return to user mode via exception_restore. To fix this, we check the frame's flags immediately prior to epc_syscall_return and branch to exception_restore for non-syscall frames. Modify the assertion in set_mcontext() to check that if there's a mismatch, it's because of sigreturn(). Revision Changes Path 1.167 +10 -1 src/sys/ia64/ia64/machdep.c 1.11 +16 -3 src/sys/ia64/ia64/syscall.S From owner-cvs-src@FreeBSD.ORG Tue Nov 11 01:53:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A16516A4CE; Tue, 11 Nov 2003 01:53:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A24C43FE3; Tue, 11 Nov 2003 01:53:38 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAB9rcXJ023328; Tue, 11 Nov 2003 01:53:38 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAB9rccv023327; Tue, 11 Nov 2003 01:53:38 -0800 (PST) (envelope-from marcel) Message-Id: <200311110953.hAB9rccv023327@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 11 Nov 2003 01:53:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 09:53:39 -0000 marcel 2003/11/11 01:53:38 PST FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c Log: Save and restore the high FP registers in {g|s}_mcontext(). Note that we currently do not keep track of whether the thread has actually used the high FP registers before. If not, we should not save them in the context which automaticly means that we also would not restore them from the context. For now, do it unconditionally so that we can reach functional completeness. Revision Changes Path 1.168 +9 -2 src/sys/ia64/ia64/machdep.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 03:24:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA02816A4CE; Tue, 11 Nov 2003 03:24:35 -0800 (PST) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4219743FDD; Tue, 11 Nov 2003 03:24:34 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd09.aul.t-online.de by mailout08.sul.t-online.com with smtp id 1AJWdL-0001wr-00; Tue, 11 Nov 2003 12:24:31 +0100 Received: from Andro-Beta.Leidinger.net (EB4cSYZVYegGUeuYWo4jEa3Gc3M2WaZPJt3OjEtRa8FPXiaF9STq4G@[217.83.23.62]) by fmrl09.sul.t-online.com with esmtp id 1AJWco-1WoZXc0; Tue, 11 Nov 2003 12:23:58 +0100 Received: from Magelan.Leidinger.net (Magellan [192.168.1.1]) hABBNnsm014877; Tue, 11 Nov 2003 12:23:50 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) hABBO9kP024341; Tue, 11 Nov 2003 12:24:09 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Tue, 11 Nov 2003 12:24:09 +0100 From: Alexander Leidinger To: Nate Lawson Message-Id: <20031111122409.11f133c7.Alexander@Leidinger.net> In-Reply-To: <20031110221318.C35445@root.org> References: <20031111041440.31347.qmail@exxodus.fedaykin.here> <20031110221318.C35445@root.org> X-Mailer: Sylpheed version 0.9.6claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Seen: false X-ID: EB4cSYZVYegGUeuYWo4jEa3Gc3M2WaZPJt3OjEtRa8FPXiaF9STq4G@t-dialin.net cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: John Baldwin Subject: Re: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 11:24:35 -0000 On Mon, 10 Nov 2003 22:13:57 -0800 (PST) Nate Lawson wrote: > On Tue, 21 Oct 2003, John Baldwin wrote: > > On 19-Oct-2003 Nate Lawson wrote: > > > Modified files: > > > sys/dev/acpica acpi.c > > > Log: > > > Disable irqs before entering the power-off state. This is not known > > > to fix any problems but is similar to how Linux implements this > > > function. > > > > By the way, any ideas on why my laptop gets an interrupt storm when it > > resumes from S1 and any ideas on how to fix that? > > I assume this is an echo from a month ago? Have a look at the message ID. I see a lot of such echos since some hours, all seem to come from the same host. Bye, Alexander. -- Reboot America. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 03:45:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2CFC16A4CF for ; Tue, 11 Nov 2003 03:45:53 -0800 (PST) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0340243FBF for ; Tue, 11 Nov 2003 03:45:53 -0800 (PST) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.11.6p2/8.9.3) with ESMTP id hABBjmu13393; Tue, 11 Nov 2003 03:45:48 -0800 From: Kent Stewart To: Kris Kennaway , Nate Lawson Date: Tue, 11 Nov 2003 03:45:48 -0800 User-Agent: KMail/1.5.4 References: <20031111041440.31347.qmail@exxodus.fedaykin.here> <20031110221318.C35445@root.org> <20031111071451.GA20061@xor.obsecurity.org> In-Reply-To: <20031111071451.GA20061@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311110345.48085.kstewart@owt.com> cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 11:45:54 -0000 On Monday 10 November 2003 11:14 pm, Kris Kennaway wrote: > On Mon, Nov 10, 2003 at 10:13:57PM -0800, Nate Lawson wrote: > > On Tue, 21 Oct 2003, John Baldwin wrote: > > > On 19-Oct-2003 Nate Lawson wrote: > > > > Modified files: > > > > sys/dev/acpica acpi.c > > > > Log: > > > > Disable irqs before entering the power-off state. This is not > > > > known to fix any problems but is similar to how Linux implements this > > > > function. > > > > > > By the way, any ideas on why my laptop gets an interrupt storm when it > > > resumes from S1 and any ideas on how to fix that? > > > > I assume this is an echo from a month ago? > > It looks like someone's feeding old mail back to the list. > The headers of the dups start with delivered to lioux@freebsd.org :). It looks like he started something up and this all happened. A small section of the headers is Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 6CAD055D88 for ; Thu, 9 Oct 2003 01:48:19 -0700 (PDT) (envelope-from owner-ports-committers@FreeBSD.org) Received: by hub.freebsd.org (Postfix) id A592016A50B; Thu, 9 Oct 2003 01:48:17 -0700 (PDT) Delivered-To: lioux@freebsd.org I send him an email 3 hours ago and asked if he was responsible. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-cvs-src@FreeBSD.ORG Tue Nov 11 04:30:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B3F116A4CE; Tue, 11 Nov 2003 04:30:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D356743FBF; Tue, 11 Nov 2003 04:30:38 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABCUcXJ032637; Tue, 11 Nov 2003 04:30:38 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABCUchj032635; Tue, 11 Nov 2003 04:30:38 -0800 (PST) (envelope-from ru) Message-Id: <200311111230.hABCUchj032635@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 11 Nov 2003 04:30:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph netgraph.h ng_UI.h ng_async.h ng_bpf.h ng_cisco.h ng_device.h ng_echo.h ng_eiface.h ng_etf.h ng_fec.h ng_frame_relay.h ng_hole.h ng_iface.h ng_ip_input.h... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 12:30:39 -0000 ru 2003/11/11 04:30:38 PST FreeBSD src repository Modified files: sys/netgraph netgraph.h ng_UI.h ng_async.h ng_bpf.h ng_cisco.h ng_device.h ng_echo.h ng_eiface.h ng_etf.h ng_fec.h ng_frame_relay.h ng_hole.h ng_iface.h ng_ip_input.h ng_ksocket.h ng_l2tp.h ng_lmi.h ng_message.h ng_mppc.h ng_parse.h ng_ppp.h ng_pppoe.h ng_pptpgre.h ng_rfc1490.h ng_sample.h ng_socket.h ng_socketvar.h ng_source.h ng_split.h ng_tee.h ng_tty.h ng_vjc.h Log: Use a single style of multiple inclusion protection for Netgraph headers. Reviewed by: archie, harti, emax Revision Changes Path 1.36 +1 -1 src/sys/netgraph/netgraph.h 1.4 +4 -4 src/sys/netgraph/ng_UI.h 1.10 +3 -3 src/sys/netgraph/ng_async.h 1.8 +3 -3 src/sys/netgraph/ng_bpf.h 1.7 +3 -3 src/sys/netgraph/ng_cisco.h 1.2 +3 -3 src/sys/netgraph/ng_device.h 1.3 +4 -4 src/sys/netgraph/ng_echo.h 1.4 +3 -3 src/sys/netgraph/ng_eiface.h 1.3 +3 -3 src/sys/netgraph/ng_etf.h 1.2 +3 -3 src/sys/netgraph/ng_fec.h 1.3 +4 -4 src/sys/netgraph/ng_frame_relay.h 1.3 +4 -4 src/sys/netgraph/ng_hole.h 1.5 +3 -3 src/sys/netgraph/ng_iface.h 1.2 +3 -3 src/sys/netgraph/ng_ip_input.h 1.8 +3 -3 src/sys/netgraph/ng_ksocket.h 1.2 +3 -3 src/sys/netgraph/ng_l2tp.h 1.3 +4 -4 src/sys/netgraph/ng_lmi.h 1.19 +1 -1 src/sys/netgraph/ng_message.h 1.4 +3 -3 src/sys/netgraph/ng_mppc.h 1.8 +3 -3 src/sys/netgraph/ng_parse.h 1.10 +3 -3 src/sys/netgraph/ng_ppp.h 1.17 +3 -3 src/sys/netgraph/ng_pppoe.h 1.7 +3 -3 src/sys/netgraph/ng_pptpgre.h 1.4 +4 -4 src/sys/netgraph/ng_rfc1490.h 1.6 +3 -3 src/sys/netgraph/ng_sample.h 1.5 +2 -2 src/sys/netgraph/ng_socket.h 1.8 +2 -2 src/sys/netgraph/ng_socketvar.h 1.2 +3 -3 src/sys/netgraph/ng_source.h 1.3 +4 -4 src/sys/netgraph/ng_split.h 1.7 +3 -3 src/sys/netgraph/ng_tee.h 1.3 +4 -4 src/sys/netgraph/ng_tty.h 1.8 +3 -3 src/sys/netgraph/ng_vjc.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 05:45:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1451916A4CE; Tue, 11 Nov 2003 05:45:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C8F843F93; Tue, 11 Nov 2003 05:44:59 -0800 (PST) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABDixXJ042121; Tue, 11 Nov 2003 05:44:59 -0800 (PST) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABDixie042120; Tue, 11 Nov 2003 05:44:59 -0800 (PST) (envelope-from fjoe) Message-Id: <200311111344.hABDixie042120@repoman.freebsd.org> From: Max Khon Date: Tue, 11 Nov 2003 05:44:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern sysv_shm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 13:45:01 -0000 fjoe 2003/11/11 05:44:59 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern sysv_shm.c Log: MFC: rev. 1.88 Add kern.ipc.shm_allow_removed (integer, rw) sysctl (default 0) which when set to 1 allows to return removed segments in shm_find_segment_by_shmid(). Revision Changes Path 1.45.2.7 +5 -2 src/sys/kern/sysv_shm.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 06:55:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 817E416A4CE; Tue, 11 Nov 2003 06:55:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9A5143F93; Tue, 11 Nov 2003 06:55:36 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABEtaXJ046310; Tue, 11 Nov 2003 06:55:36 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABEtalc046309; Tue, 11 Nov 2003 06:55:36 -0800 (PST) (envelope-from sos) Message-Id: <200311111455.hABEtalc046309@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 11 Nov 2003 06:55:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.c atapi-cam.c atapi-cd.c atapi-fd.c atapi-tape.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 14:55:37 -0000 sos 2003/11/11 06:55:36 PST FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-disk.c atapi-cam.c atapi-cd.c atapi-fd.c atapi-tape.c Log: Centralise mode setting. Instead of doing it in all subdrivers, do it in ata-all.c where it belongs. Prime controller HW by always setting PIO mode first in attach. Revision Changes Path 1.197 +27 -10 src/sys/dev/ata/ata-all.c 1.67 +1 -1 src/sys/dev/ata/ata-all.h 1.164 +0 -6 src/sys/dev/ata/ata-disk.c 1.28 +0 -5 src/sys/dev/ata/atapi-cam.c 1.154 +0 -7 src/sys/dev/ata/atapi-cd.c 1.89 +0 -7 src/sys/dev/ata/atapi-fd.c 1.84 +0 -7 src/sys/dev/ata/atapi-tape.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 07:47:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83F2916A4CE; Tue, 11 Nov 2003 07:47:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD36243FCB; Tue, 11 Nov 2003 07:47:45 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABFljXJ049435; Tue, 11 Nov 2003 07:47:45 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABFljhg049434; Tue, 11 Nov 2003 07:47:45 -0800 (PST) (envelope-from jhb) Message-Id: <200311111547.hABFljhg049434@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 07:47:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 15:47:46 -0000 jhb 2003/11/11 07:47:44 PST FreeBSD src repository Modified files: sys/i386/conf NOTES Log: Axe rotted comment about MP Tables and PCI cards with built in bridges. Now that we properly route PCI interrupts for the apic case, these cards are no longer a problem. Revision Changes Path 1.1103 +0 -6 src/sys/i386/conf/NOTES From owner-cvs-src@FreeBSD.ORG Tue Nov 11 07:49:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E01D616A4CE; Tue, 11 Nov 2003 07:49:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D1CB43FCB; Tue, 11 Nov 2003 07:49:38 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABFncXJ049503; Tue, 11 Nov 2003 07:49:38 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABFnbUh049502; Tue, 11 Nov 2003 07:49:37 -0800 (PST) (envelope-from jhb) Message-Id: <200311111549.hABFnbUh049502@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 07:49:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 15:49:39 -0000 jhb 2003/11/11 07:49:37 PST FreeBSD src repository Modified files: sys/i386/conf NOTES Log: Use the same style of paragraph indention that the rest of NOTES uses in the SMP section. Revision Changes Path 1.1104 +10 -10 src/sys/i386/conf/NOTES From owner-cvs-src@FreeBSD.ORG Tue Nov 11 07:52:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50DD416A4CE; Tue, 11 Nov 2003 07:52:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90B0443F85; Tue, 11 Nov 2003 07:52:33 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABFqXXJ049748; Tue, 11 Nov 2003 07:52:33 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABFqWft049747; Tue, 11 Nov 2003 07:52:32 -0800 (PST) (envelope-from jhb) Message-Id: <200311111552.hABFqWft049747@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 07:52:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 15:52:36 -0000 jhb 2003/11/11 07:52:32 PST FreeBSD src repository Modified files: sys/i386/conf NOTES Log: - Remove empty rogue SMP hardware section. - Add some additional comments about 'device apic' to note that it can be used in both UP and SMP kernels but is required for SMP kernels. Revision Changes Path 1.1105 +4 -8 src/sys/i386/conf/NOTES From owner-cvs-src@FreeBSD.ORG Tue Nov 11 08:12:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C028816A4CE; Tue, 11 Nov 2003 08:12:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C79C243FAF; Tue, 11 Nov 2003 08:12:05 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABGC5XJ051498; Tue, 11 Nov 2003 08:12:05 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABGC5Oc051497; Tue, 11 Nov 2003 08:12:05 -0800 (PST) (envelope-from ru) Message-Id: <200311111612.hABGC5Oc051497@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 11 Nov 2003 08:12:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_eiface.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 16:12:07 -0000 ru 2003/11/11 08:12:05 PST FreeBSD src repository Modified files: sys/netgraph ng_eiface.h Log: MFS: Change interface name from "nge" to "ngeth" to avoid conflict with nge(4). Revision Changes Path 1.5 +1 -1 src/sys/netgraph/ng_eiface.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 08:22:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7464716A4CF for ; Tue, 11 Nov 2003 08:22:51 -0800 (PST) Received: from mail.speakeasy.net (mail7.speakeasy.net [216.254.0.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5049F43FE9 for ; Tue, 11 Nov 2003 08:22:48 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 26652 invoked from network); 11 Nov 2003 16:22:47 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 11 Nov 2003 16:22:47 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hABGMNce019636; Tue, 11 Nov 2003 11:22:23 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311102245.hAAMjbAB067398@repoman.freebsd.org> Date: Tue, 11 Nov 2003 11:22:21 -0500 (EST) From: John Baldwin To: Ian Dowse X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/netinet in_pcb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 16:22:51 -0000 On 10-Nov-2003 Ian Dowse wrote: > iedowse 2003/11/10 14:45:37 PST > > FreeBSD src repository > > Modified files: > sys/netinet in_pcb.c > Log: > In in_pcbconnect_setup(), don't use the cached inp->inp_route unless > it is marked as RTF_UP. This appears to fix a crash that was sometimes > triggered when dhclient(8) tried to send a packet after an interface > had been detatched. > > Reviewed by: sam Yay! My laptop thanks you. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Tue Nov 11 08:38:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 332CA16A4CE for ; Tue, 11 Nov 2003 08:38:57 -0800 (PST) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B29A43FB1 for ; Tue, 11 Nov 2003 08:38:55 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 30476 invoked from network); 11 Nov 2003 16:38:53 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 11 Nov 2003 16:38:53 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hABGcTce019725; Tue, 11 Nov 2003 11:38:29 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20031110221318.C35445@root.org> Date: Tue, 11 Nov 2003 11:38:27 -0500 (EST) From: John Baldwin To: Nate Lawson X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 16:38:57 -0000 On 11-Nov-2003 Nate Lawson wrote: > On Tue, 21 Oct 2003, John Baldwin wrote: >> On 19-Oct-2003 Nate Lawson wrote: >> > Modified files: >> > sys/dev/acpica acpi.c >> > Log: >> > Disable irqs before entering the power-off state. This is not known >> > to fix any problems but is similar to how Linux implements this >> > function. >> >> By the way, any ideas on why my laptop gets an interrupt storm when it >> resumes from S1 and any ideas on how to fix that? > > I assume this is an echo from a month ago? Eh, yes. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Tue Nov 11 08:41:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56A6C16A4CE; Tue, 11 Nov 2003 08:41:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7685A43FD7; Tue, 11 Nov 2003 08:41:27 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABGfRXJ052836; Tue, 11 Nov 2003 08:41:27 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABGfRAI052835; Tue, 11 Nov 2003 08:41:27 -0800 (PST) (envelope-from brueffer) Message-Id: <200311111641.hABGfRAI052835@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 11 Nov 2003 08:41:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys kqueue.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 16:41:28 -0000 brueffer 2003/11/11 08:41:27 PST FreeBSD src repository (doc committer) Modified files: lib/libc/sys kqueue.2 Log: Add information about the EVFILT_NETDEV filter PR: docs/56872 (based on) Submitted by: Suleiman Souhlal Reviewed by: hmp, jmg Revision Changes Path 1.36 +24 -0 src/lib/libc/sys/kqueue.2 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:14:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1462A16A4CE; Tue, 11 Nov 2003 09:14:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9173343F85; Tue, 11 Nov 2003 09:14:26 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHEQXJ060787; Tue, 11 Nov 2003 09:14:26 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHEQ8r060786; Tue, 11 Nov 2003 09:14:26 -0800 (PST) (envelope-from jhb) Message-Id: <200311111714.hABHEQ8r060786@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 09:14:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/i386/i386 mptable.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:14:27 -0000 jhb 2003/11/11 09:14:26 PST FreeBSD src repository Modified files: sys/conf options.i386 options.pc98 sys/i386/conf NOTES sys/i386/i386 mptable.c Log: Disable probing of HTT CPUs by default for the MP Table case. HTT CPUs should only be used if they are enabled in the BIOS. Now that we support enumerating CPUs using the ACPI MADT, any HTT machine using ACPI should respect the BIOS setting. For HTT machines with ACPI disabled in the kernel, the MPTABLE_FORCE_HTT kernel option can be used to try to probe HTT CPUs like have done in the past for the MP Table case. This option should only be enabled if HTT is enabled in the BIOS. Revision Changes Path 1.202 +1 -0 src/sys/conf/options.i386 1.170 +1 -0 src/sys/conf/options.pc98 1.1106 +13 -0 src/sys/i386/conf/NOTES 1.224 +7 -0 src/sys/i386/i386/mptable.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:16:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D315116A4CE; Tue, 11 Nov 2003 09:16:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BF3443F75; Tue, 11 Nov 2003 09:16:16 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHGGXJ060915; Tue, 11 Nov 2003 09:16:16 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHGGMt060914; Tue, 11 Nov 2003 09:16:16 -0800 (PST) (envelope-from jhb) Message-Id: <200311111716.hABHGGMt060914@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 09:16:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 mp_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:16:17 -0000 jhb 2003/11/11 09:16:15 PST FreeBSD src repository Modified files: sys/i386/i386 mp_machdep.c Log: Enable HTT CPUs by default instead of halting them by default. Users should now only have HTT CPUs if they have explicitly asked for them either by enabling HyperThreading in the BIOS or by using the MPTABLE_FORCE_HTT kernel option. Revision Changes Path 1.223 +1 -1 src/sys/i386/i386/mp_machdep.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:18:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D571A16A4CE; Tue, 11 Nov 2003 09:18:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E06943FBD; Tue, 11 Nov 2003 09:18:19 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHIJXJ060998; Tue, 11 Nov 2003 09:18:19 -0800 (PST) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHIJpL060997; Tue, 11 Nov 2003 09:18:19 -0800 (PST) (envelope-from silby) Message-Id: <200311111718.hABHIJpL060997@repoman.freebsd.org> From: Mike Silbersack Date: Tue, 11 Nov 2003 09:18:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern uipc_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:18:20 -0000 silby 2003/11/11 09:18:19 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern uipc_socket.c Log: MFC rev 1.143; don't allow a listen on already connected sockets Revision Changes Path 1.68.2.24 +4 -0 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:25:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5552516A4CE; Tue, 11 Nov 2003 09:25:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7F3543FAF; Tue, 11 Nov 2003 09:25:45 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHPjXJ061352; Tue, 11 Nov 2003 09:25:45 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHPjmU061351; Tue, 11 Nov 2003 09:25:45 -0800 (PST) (envelope-from ume) Message-Id: <200311111725.hABHPjmU061351@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 11 Nov 2003 09:25:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netkey key.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:25:46 -0000 ume 2003/11/11 09:25:45 PST FreeBSD src repository Modified files: sys/netkey key.c Log: ipsec_esp_auth is unused when IPSEC_ESP is not defined. Reported by: Andre Oppermann Revision Changes Path 1.58 +2 -0 src/sys/netkey/key.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:28:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA2C616A4CE; Tue, 11 Nov 2003 09:28:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 220DD4402F; Tue, 11 Nov 2003 09:28:16 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHSGXJ061446; Tue, 11 Nov 2003 09:28:16 -0800 (PST) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHSGQs061445; Tue, 11 Nov 2003 09:28:16 -0800 (PST) (envelope-from silby) Message-Id: <200311111728.hABHSGQs061445@repoman.freebsd.org> From: Mike Silbersack Date: Tue, 11 Nov 2003 09:28:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/pci if_dc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:28:18 -0000 silby 2003/11/11 09:28:16 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/pci if_dc.c Log: MFC rev 1.127; fix a condition where dc_encap would allocate a new mbuf, causing bpf_mtap to be fed the stale, now-freed m_head. Revision Changes Path 1.9.2.54 +9 -9 src/sys/pci/if_dc.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:54:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 450DC16A4CE; Tue, 11 Nov 2003 09:54:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1FB543FA3; Tue, 11 Nov 2003 09:54:48 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHslXJ062586; Tue, 11 Nov 2003 09:54:47 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHslNG062585; Tue, 11 Nov 2003 09:54:47 -0800 (PST) (envelope-from sam) Message-Id: <200311111754.hABHslNG062585@repoman.freebsd.org> From: Sam Leffler Date: Tue, 11 Nov 2003 09:54:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:54:49 -0000 sam 2003/11/11 09:54:47 PST FreeBSD src repository Modified files: sys/netinet tcp_syncache.c Log: o add missing inpcb locking in tcp_respond o replace spl's with lock assertions Supported by: FreeBSD Foundation Revision Changes Path 1.47 +46 -37 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:57:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8D4E16A4CE; Tue, 11 Nov 2003 09:57:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54BB343F85; Tue, 11 Nov 2003 09:57:04 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHv4XJ062771; Tue, 11 Nov 2003 09:57:04 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHv3Kc062770; Tue, 11 Nov 2003 09:57:03 -0800 (PST) (envelope-from sam) Message-Id: <200311111757.hABHv3Kc062770@repoman.freebsd.org> From: Sam Leffler Date: Tue, 11 Nov 2003 09:57:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c if_bgereg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:57:05 -0000 sam 2003/11/11 09:57:03 PST FreeBSD src repository Modified files: sys/dev/bge if_bge.c if_bgereg.h Log: o add locking o mark isr MPSAFE Supported by: FreeBSD Foundation Revision Changes Path 1.58 +106 -60 src/sys/dev/bge/if_bge.c 1.25 +9 -1 src/sys/dev/bge/if_bgereg.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 09:58:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0132316A4CE; Tue, 11 Nov 2003 09:58:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7117E43FA3; Tue, 11 Nov 2003 09:58:36 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABHwaXJ062910; Tue, 11 Nov 2003 09:58:36 -0800 (PST) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABHwaeq062909; Tue, 11 Nov 2003 09:58:36 -0800 (PST) (envelope-from silby) Message-Id: <200311111758.hABHwaeq062909@repoman.freebsd.org> From: Mike Silbersack Date: Tue, 11 Nov 2003 09:58:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_loop.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 17:58:37 -0000 silby 2003/11/11 09:58:36 PST FreeBSD src repository Modified files: sys/net if_loop.c Log: Remove the m_defrag call from if_loop; testing with m_fragment has shown that the IPv6 stack can clearly handle fragmented mbuf chains without a problem. MFC after: 1 week Revision Changes Path 1.91 +0 -27 src/sys/net/if_loop.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:01:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1DDA16A4D0; Tue, 11 Nov 2003 10:01:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13F0343F75; Tue, 11 Nov 2003 10:01:45 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABI1iXJ063159; Tue, 11 Nov 2003 10:01:44 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABI1ica063158; Tue, 11 Nov 2003 10:01:44 -0800 (PST) (envelope-from jake) Message-Id: <200311111801.hABI1ica063158@repoman.freebsd.org> From: Jake Burkholder Date: Tue, 11 Nov 2003 10:01:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/sparc64/loader metadata.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:01:46 -0000 jake 2003/11/11 10:01:44 PST FreeBSD src repository Modified files: sys/boot/sparc64/loader metadata.c Log: Set RB_SERIAL in boothowto if the firmware output-device is ttya or ttyb. This ensures that uart gets a higher console priority than syscons when a serial console is being used. Testing against the "console" environment variable doesn't make sense since we only have one loader console driver. Revision Changes Path 1.10 +6 -4 src/sys/boot/sparc64/loader/metadata.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:04:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBFB216A4CE for ; Tue, 11 Nov 2003 10:04:33 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 00B6843FBF for ; Tue, 11 Nov 2003 10:04:30 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 39399 invoked from network); 11 Nov 2003 18:04:29 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 11 Nov 2003 18:04:29 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 11 Nov 2003 12:04:27 -0600 (CST) From: Mike Silbersack To: Sam Leffler In-Reply-To: <200311111754.hABHslNG062585@repoman.freebsd.org> Message-ID: <20031111120300.Y16061@odysseus.silby.com> References: <200311111754.hABHslNG062585@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:04:34 -0000 On Tue, 11 Nov 2003, Sam Leffler wrote: > sam 2003/11/11 09:54:47 PST > > FreeBSD src repository > > Modified files: > sys/netinet tcp_syncache.c > Log: > o add missing inpcb locking in tcp_respond > o replace spl's with lock assertions > > Supported by: FreeBSD Foundation Part of this looks goofy to me: @@ -377,14 +374,12 @@ syncache_timer(xslot) intptr_t slot = (intptr_t)xslot; struct syncache *sc, *nsc; struct inpcb *inp; - int s; - s = splnet(); INP_INFO_WLOCK(&tcbinfo); if (callout_pending(&tcp_syncache.tt_timerq[slot]) || !callout_active(&tcp_syncache.tt_timerq[slot])) { - INP_INFO_WUNLOCK(&tcbinfo); - splx(s); + /* XXX can this happen? */ + INP_INFO_WLOCK(&tcbinfo); return; } callout_deactivate(&tcp_syncache.tt_timerq[slot]); @@ -421,8 +416,7 @@ syncache_timer(xslot) if (nsc != NULL) callout_reset(&tcp_syncache.tt_timerq[slot], nsc->sc_rxttime - ticks, syncache_timer, (void *)(slot)); - INP_INFO_WUNLOCK(&tcbinfo); - splx(s); + INP_INFO_WLOCK(&tcbinfo); } Shouldn't those WUNLOCK calls stay as WUNLOCK? Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:12:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43B1E16A4CE; Tue, 11 Nov 2003 10:12:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F88743FBF; Tue, 11 Nov 2003 10:12:13 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABICDXJ064440; Tue, 11 Nov 2003 10:12:13 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABICDtR064439; Tue, 11 Nov 2003 10:12:13 -0800 (PST) (envelope-from jhb) Message-Id: <200311111812.hABICDtR064439@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 10:12:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpivar.h src/sys/dev/acpica/Osd OsdInterrupt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:12:14 -0000 jhb 2003/11/11 10:12:12 PST FreeBSD src repository Modified files: sys/dev/acpica acpivar.h sys/dev/acpica/Osd OsdInterrupt.c Log: Add an acpi_OverrideInterruptLevel() method that OSPM can use to override the InterruptLevel used for the SCI. Revision Changes Path 1.13 +18 -0 src/sys/dev/acpica/Osd/OsdInterrupt.c 1.47 +1 -0 src/sys/dev/acpica/acpivar.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:16:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A813C16A4CE; Tue, 11 Nov 2003 10:16:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28C4143F85; Tue, 11 Nov 2003 10:16:55 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIGsXJ064677; Tue, 11 Nov 2003 10:16:55 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIGsws064676; Tue, 11 Nov 2003 10:16:54 -0800 (PST) (envelope-from sam) Message-Id: <200311111816.hABIGsws064676@repoman.freebsd.org> From: Sam Leffler Date: Tue, 11 Nov 2003 10:16:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:16:55 -0000 sam 2003/11/11 10:16:54 PST FreeBSD src repository Modified files: sys/netinet tcp_syncache.c Log: correct typos Pointed out by: Mike Silbersack Revision Changes Path 1.48 +2 -2 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:20:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5886516A4CE; Tue, 11 Nov 2003 10:20:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC6D243FE0; Tue, 11 Nov 2003 10:20:10 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIKAXJ064766; Tue, 11 Nov 2003 10:20:10 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIKAIY064765; Tue, 11 Nov 2003 10:20:10 -0800 (PST) (envelope-from jhb) Message-Id: <200311111820.hABIKAIY064765@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 10:20:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica madt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:20:11 -0000 jhb 2003/11/11 10:20:10 PST FreeBSD src repository Modified files: sys/i386/acpica madt.c Log: Some motherboards like to remap the SCI (normally IRQ 9) up to a PCI interrupt such as IRQ 22 or 19. However, the ACPI BIOS still routes interrupts from some PCI devices to the same intpin calling the pin IRQ 22. Thus, ACPI expects to address a single interrupt source via two different names. To work around this, if the SCI is remapped to a non-ISA interrupt (i.e., greater than 15), then we use acpi_OverrideInterruptLevel() function to tell ACPI to use IRQ 22 or 19 rather than IRQ 9 for the SCI. Previously we would change IRQ 22 or 19's name to IRQ 9 when we encountered such an Interrupt Source Override entry in the MADT which routed the SCI properly but left PCI devices mapped to IRQ 22 or 19 w/o a routable interrupt. Tested by: sos Revision Changes Path 1.6 +6 -1 src/sys/i386/acpica/madt.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:21:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C53016A4CE; Tue, 11 Nov 2003 10:21:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4670E43FF2; Tue, 11 Nov 2003 10:21:21 -0800 (PST) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABILLXJ064977; Tue, 11 Nov 2003 10:21:21 -0800 (PST) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABILKYv064976; Tue, 11 Nov 2003 10:21:20 -0800 (PST) (envelope-from kensmith) Message-Id: <200311111821.hABILKYv064976@repoman.freebsd.org> From: Ken Smith Date: Tue, 11 Nov 2003 10:21:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys jail.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:21:22 -0000 kensmith 2003/11/11 10:21:20 PST FreeBSD src repository (doc committer) Modified files: lib/libc/sys jail.2 Log: - Add a note about how jail(2) effects the securelevel. Reviewed by: rwatson Approved by: blackend (mentor) Revision Changes Path 1.25 +6 -0 src/lib/libc/sys/jail.2 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:31:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E270F16A4CE; Tue, 11 Nov 2003 10:31:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F5D543FBF; Tue, 11 Nov 2003 10:31:36 -0800 (PST) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIVaXJ065414; Tue, 11 Nov 2003 10:31:36 -0800 (PST) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIVavs065413; Tue, 11 Nov 2003 10:31:36 -0800 (PST) (envelope-from kensmith) Message-Id: <200311111831.hABIVavs065413@repoman.freebsd.org> From: Ken Smith Date: Tue, 11 Nov 2003 10:31:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys jail.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:31:37 -0000 kensmith 2003/11/11 10:31:36 PST FreeBSD src repository (doc committer) Modified files: lib/libc/sys jail.2 Log: - Markup fix-ups (add .Dq, and some hard line breaks at the end of sentences). Approved by: blackend (mentor) Revision Changes Path 1.26 +10 -4 src/lib/libc/sys/jail.2 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:34:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1697D16A4CE; Tue, 11 Nov 2003 10:34:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8388E43FAF; Tue, 11 Nov 2003 10:34:29 -0800 (PST) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIYTXJ065484; Tue, 11 Nov 2003 10:34:29 -0800 (PST) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIYTt5065483; Tue, 11 Nov 2003 10:34:29 -0800 (PST) (envelope-from kensmith) Message-Id: <200311111834.hABIYTt5065483@repoman.freebsd.org> From: Ken Smith Date: Tue, 11 Nov 2003 10:34:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/jail jail.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:34:30 -0000 kensmith 2003/11/11 10:34:29 PST FreeBSD src repository (doc committer) Modified files: usr.sbin/jail jail.8 Log: - Add a note that there are two MIB variables that have per-jail settings. Reviewed by: rwatson Approved by: blackend (mentor) Revision Changes Path 1.45 +8 -0 src/usr.sbin/jail/jail.8 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:37:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1042016A4CE; Tue, 11 Nov 2003 10:37:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E5A943FA3; Tue, 11 Nov 2003 10:37:51 -0800 (PST) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIbpXJ065624; Tue, 11 Nov 2003 10:37:51 -0800 (PST) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIbppd065623; Tue, 11 Nov 2003 10:37:51 -0800 (PST) (envelope-from kensmith) Message-Id: <200311111837.hABIbppd065623@repoman.freebsd.org> From: Ken Smith Date: Tue, 11 Nov 2003 10:37:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/init init.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:37:52 -0000 kensmith 2003/11/11 10:37:50 PST FreeBSD src repository (doc committer) Modified files: sbin/init init.8 Log: - Add some information about how init, securelevel, and jails interact with each other. - Minor markup fix (.Dq -> .Va for a variable) Reviewed by: rwatson Approved by: blackend (mentor) Revision Changes Path 1.40 +17 -1 src/sbin/init/init.8 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:47:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 579E216A4CE; Tue, 11 Nov 2003 10:47:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7A8543F75; Tue, 11 Nov 2003 10:47:01 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIl1XJ066094; Tue, 11 Nov 2003 10:47:01 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIl12c066093; Tue, 11 Nov 2003 10:47:01 -0800 (PST) (envelope-from trhodes) Message-Id: <200311111847.hABIl12c066093@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 11 Nov 2003 10:47:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ips.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:47:02 -0000 trhodes 2003/11/11 10:47:01 PST FreeBSD src repository Added files: share/man/man4 ips.4 Log: Add a manual page for the ips(4) driver. Requested by: obrien Reviewed by: scottl (older version) Revision Changes Path 1.1 +181 -0 src/share/man/man4/ips.4 (new) From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:48:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D8CF16A4CE; Tue, 11 Nov 2003 10:48:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CD0843F85; Tue, 11 Nov 2003 10:48:03 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIm3XJ066146; Tue, 11 Nov 2003 10:48:03 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIm3xI066145; Tue, 11 Nov 2003 10:48:03 -0800 (PST) (envelope-from trhodes) Message-Id: <200311111848.hABIm3xI066145@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 11 Nov 2003 10:48:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:48:04 -0000 trhodes 2003/11/11 10:48:02 PST FreeBSD src repository Modified files: share/man/man4 Makefile Log: Attach ips.4 to the build. Revision Changes Path 1.239 +1 -0 src/share/man/man4/Makefile From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:58:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A355316A4CE; Tue, 11 Nov 2003 10:58:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE74543FCB; Tue, 11 Nov 2003 10:58:54 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABIwsXJ066750; Tue, 11 Nov 2003 10:58:54 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABIwskE066749; Tue, 11 Nov 2003 10:58:54 -0800 (PST) (envelope-from ume) Message-Id: <200311111858.hABIwskE066749@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 11 Nov 2003 10:58:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/crypto/rijndael rijndael.c rijndael.h src/sys/netinet6 esp_rijndael.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:58:55 -0000 ume 2003/11/11 10:58:54 PST FreeBSD src repository Modified files: sys/conf files sys/crypto/rijndael rijndael.h sys/netinet6 esp_rijndael.c Added files: sys/crypto/rijndael rijndael.c Log: cleanup rijndael API. since there are naming conflicts with opencrypto, #define was added to rename functions intend to avoid conflicts. Obtained from: KAME Revision Changes Path 1.847 +1 -1 src/sys/conf/files 1.1 +57 -0 src/sys/crypto/rijndael/rijndael.c (new) 1.2 +50 -1 src/sys/crypto/rijndael/rijndael.h 1.4 +12 -32 src/sys/netinet6/esp_rijndael.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 10:59:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D132216A4CF for ; Tue, 11 Nov 2003 10:59:21 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 3373443FCB for ; Tue, 11 Nov 2003 10:59:19 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 37820 invoked by uid 1000); 11 Nov 2003 18:59:20 -0000 Date: Tue, 11 Nov 2003 10:59:20 -0800 (PST) From: Nate Lawson To: John Baldwin In-Reply-To: <20031111182044.3374816A528@hub.freebsd.org> Message-ID: <20031111105725.A37789@root.org> References: <20031111182044.3374816A528@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/acpica madt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 18:59:21 -0000 On Tue, 11 Nov 2003, John Baldwin wrote: > Modified files: > sys/i386/acpica madt.c > Log: > Some motherboards like to remap the SCI (normally IRQ 9) up to a PCI > interrupt such as IRQ 22 or 19. However, the ACPI BIOS still routes > interrupts from some PCI devices to the same intpin calling the pin > IRQ 22. Thus, ACPI expects to address a single interrupt source via two > different names. To work around this, if the SCI is remapped to a non-ISA > interrupt (i.e., greater than 15), then we use > acpi_OverrideInterruptLevel() function to tell ACPI to use IRQ 22 or 19 > rather than IRQ 9 for the SCI. > > Previously we would change IRQ 22 or 19's name to IRQ 9 when we encountered > such an Interrupt Source Override entry in the MADT which routed the SCI > properly but left PCI devices mapped to IRQ 22 or 19 w/o a routable > interrupt. > > Tested by: sos > > Revision Changes Path > 1.6 +6 -1 src/sys/i386/acpica/madt.c > > --- src/sys/i386/acpica/madt.c:1.5 Mon Nov 10 11:52:57 2003 > +++ src/sys/i386/acpica/madt.c Tue Nov 11 10:20:10 2003 > @@ -536,7 +536,12 @@ > } > > if (intr->Source != intr->GlobalSystemInterrupt) { > - ioapic_remap_vector(new_ioapic, new_pin, intr->Source); > + /* XXX: This assumes that the SCI uses IRQ 9. */ > + if (intr->GlobalSystemInterrupt > 15 && intr->Source == 9) > + acpi_OverrideInterruptLevel( > + intr->GlobalSystemInterrupt); > + else > + ioapic_remap_vector(new_ioapic, new_pin, intr->Source); > if (madt_find_interrupt(intr->Source, &old_ioapic, > &old_pin) != 0) > printf("MADT: Could not find APIC for source IRQ %d\n", Yikes, couldn't that be done by using devclass to get the acpi driver and find which interrupt it is using? Or maybe better, move this into acpi itself which can call the override if it finds itself on a different pin? I'm certain there are non-9 acpi sci implementations although not common. -Nate From owner-cvs-src@FreeBSD.ORG Tue Nov 11 11:06:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E78316A4CE; Tue, 11 Nov 2003 11:06:00 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id F325E43F93; Tue, 11 Nov 2003 11:05:59 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id CB2372A8FB; Tue, 11 Nov 2003 11:05:59 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Mike Silbersack In-Reply-To: <20031110215128.F6320@odysseus.silby.com> Date: Tue, 11 Nov 2003 11:05:59 -0800 From: Peter Wemm Message-Id: <20031111190559.CB2372A8FB@canning.wemm.org> cc: src-committers@FreeBSD.org cc: "M. Warner Losh" cc: cvs-src@FreeBSD.org cc: sam@errno.com cc: hsu@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 19:06:00 -0000 Mike Silbersack wrote: > > On Mon, 10 Nov 2003, M. Warner Losh wrote: > > > In message: <200311102359.hAANx2xu023566@mta7.pltn13.pbi.net> > > Jeffrey Hsu writes: > > : Are you kidding me? Or do you really not understand why it's not > > : Giant-free ready yet? > > > > While it may be obvious to you, it seems that a sentence or two about > > how it isn't giant-free would be useful. > > > > Warner > > If I'm not mistaken, syncache_timer calls syncache_respond, which then > goes and interacts with the routing table and ip stack. Along with the > rest of the non-locked code, it sure looks like it's not-MPSAFE to me. > > It seems "obvious" that the code isn't giant-free, given that there are no > locking assertions in it whatsoever. Sure, but that's what the commit message should have said. eg: "Revert rev 1.40. Mark TCP syncache timer as not Giant-free ready yet. It still calls syncache_respond which interacts with the routing table and ip stack which is not locked yet." It isn't that hard. ---------------------------- revision 1.40 date: 2003/07/17 11:19:25; author: hsu; state: Exp; lines: +1 -1 Drop Giant around syncache timer processing. ---------------------------- revision 1.45 date: 2003/11/10 20:42:04; author: hsu; state: Exp; lines: +1 -1 Mark TCP syncache timer as not Giant-free ready yet. ---------------------------- Considering the history, an explanation in the commit log is in order. Both commit messages have plenty of conviction but there is no explanation of the contradiction. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 11:20:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9B5D16A4CE; Tue, 11 Nov 2003 11:20:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52B4143F3F; Tue, 11 Nov 2003 11:20:14 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABJKEXJ076490; Tue, 11 Nov 2003 11:20:14 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABJKDbe076474; Tue, 11 Nov 2003 11:20:13 -0800 (PST) (envelope-from trhodes) Message-Id: <200311111920.hABJKDbe076474@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 11 Nov 2003 11:20:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 19:20:15 -0000 trhodes 2003/11/11 11:20:13 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Help bmah out and add the ips(4) entity. Revision Changes Path 1.197 +1 -1 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Tue Nov 11 11:34:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07B1C16A4CE; Tue, 11 Nov 2003 11:34:06 -0800 (PST) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40DFB43FB1; Tue, 11 Nov 2003 11:34:04 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from FreeBSD.org (adsl-63-193-112-125.dsl.snfc21.pacbell.net [63.193.112.125]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id hABJXPVs016926; Tue, 11 Nov 2003 11:33:25 -0800 (PST) Message-Id: <200311111933.hABJXPVs016926@mtaw6.prodigy.net> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Peter Wemm In-Reply-To: Message from Peter Wemm <20031111190559.CB2372A8FB@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 11 Nov 2003 11:34:40 -0800 From: Jeffrey Hsu cc: src-committers@FreeBSD.org cc: "M. Warner Losh" cc: cvs-src@FreeBSD.org cc: sam@errno.com cc: Mike Silbersack cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 19:34:06 -0000 It is customary when demanding a backout for the challenger to explain why, especially if he is wrong. Jeffrey From owner-cvs-src@FreeBSD.ORG Tue Nov 11 11:47:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B2F616A4CE; Tue, 11 Nov 2003 11:47:12 -0800 (PST) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC1A143F75; Tue, 11 Nov 2003 11:47:10 -0800 (PST) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 10E7B5309; Tue, 11 Nov 2003 20:47:09 +0100 (CET) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id D35015308; Tue, 11 Nov 2003 20:47:00 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id BC5EFB828; Tue, 11 Nov 2003 20:47:00 +0100 (CET) To: Jeffrey Hsu References: <200311111933.hABJXPVs016926@mtaw6.prodigy.net> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Tue, 11 Nov 2003 20:47:00 +0100 In-Reply-To: <200311111933.hABJXPVs016926@mtaw6.prodigy.net> (Jeffrey Hsu's message of "Tue, 11 Nov 2003 11:34:40 -0800") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on flood.des.no X-Spam-Level: ss X-Spam-Status: No, hits=2.5 required=5.0 tests=RCVD_IN_DYNABLOCK autolearn=no version=2.60 cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: sam@errno.com cc: Mike Silbersack cc: "M. Warner Losh" Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 19:47:12 -0000 Jeffrey Hsu writes: > It is customary when demanding a backout for the challenger to > explain why, especially if he is wrong. It is customary when committing changes to CVS to include an explanation of why the change was required. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Tue Nov 11 11:56:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32EA116A4CE; Tue, 11 Nov 2003 11:56:44 -0800 (PST) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23D9A43FE1; Tue, 11 Nov 2003 11:56:43 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from FreeBSD.org (adsl-63-193-112-125.dsl.snfc21.pacbell.net [63.193.112.125])hABJuYoe011020; Tue, 11 Nov 2003 13:56:34 -0600 (CST) Message-Id: <200311111956.hABJuYoe011020@mta4.rcsntx.swbell.net> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) In-Reply-To: Message from des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) of "Tue, 11 Nov 2003 20:47:00 +0100." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 11 Nov 2003 11:57:20 -0800 From: Jeffrey Hsu cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: sam@errno.com cc: Mike Silbersack cc: "M. Warner Losh" Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 19:56:44 -0000 Asking nicely for a more verbose clarification of a commit message this is too short is perfectly fine and reasonable. Demanding an immediate backout without justification is an entirely different matter. It's just plain bullying. Jeffrey From owner-cvs-src@FreeBSD.ORG Tue Nov 11 12:06:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C50B16A4CE; Tue, 11 Nov 2003 12:06:53 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C1D643FAF; Tue, 11 Nov 2003 12:06:52 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hABK6neG051504; Tue, 11 Nov 2003 13:06:49 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Tue, 11 Nov 2003 13:04:28 -0700 (MST) Message-Id: <20031111.130428.84670868.imp@bsdimp.com> To: hsu@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200311111933.hABJXPVs016926@mtaw6.prodigy.net> References: <200311111933.hABJXPVs016926@mtaw6.prodigy.net> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: src-committers@FreeBSD.org cc: peter@wemm.org cc: cvs-src@FreeBSD.org cc: sam@errno.com cc: silby@silby.com cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 20:06:53 -0000 In message: <200311111933.hABJXPVs016926@mtaw6.prodigy.net> Jeffrey Hsu writes: : It is customary when demanding a backout for the challenger to : explain why, especially if he is wrong. It is also customary to behave in a polite and civil way, as well as providing an explaination as to the underlying facts when making a commit too. Warner From owner-cvs-src@FreeBSD.ORG Tue Nov 11 12:09:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E103D16A4E5 for ; Tue, 11 Nov 2003 12:09:34 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 814B443FE5 for ; Tue, 11 Nov 2003 12:09:30 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 13354 invoked from network); 11 Nov 2003 20:09:29 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 11 Nov 2003 20:09:29 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 11 Nov 2003 14:09:27 -0600 (CST) From: Mike Silbersack To: Jeffrey Hsu In-Reply-To: <200311111956.hABJuYoe011020@mta4.rcsntx.swbell.net> Message-ID: <20031111140440.V16061@odysseus.silby.com> References: <200311111956.hABJuYoe011020@mta4.rcsntx.swbell.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: sam@errno.com cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= cc: "M. Warner Losh" Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 20:09:35 -0000 On Tue, 11 Nov 2003, Jeffrey Hsu wrote: > Asking nicely for a more verbose clarification of a commit message this > is too short is perfectly fine and reasonable. Demanding an immediate > backout without justification is an entirely different matter. It's > just plain bullying. > > Jeffrey Technically, your original change was correct, since syncache_respond turned out not to have complete locking... ... also technically, sam didn't back out your change, he switched the MPSAFEness to be dependent on the debug_mpsafenet flag, so that it would only be MPSAFE for those who took the risk... ... and Sam had some assertions and fixes in p4 which he was planning to commit to CVS, but hadn't gotten to yet... So, let's all just agree that things got a bit desynchronized and drop this, it's not worth our time to argue over a one line change. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Tue Nov 11 12:32:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A065E16A4CE; Tue, 11 Nov 2003 12:32:52 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AAA943FEA; Tue, 11 Nov 2003 12:32:51 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (localhost [127.0.0.1]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id hABKWpbe002718; Tue, 11 Nov 2003 12:32:51 -0800 (PST) (envelope-from marcel@ns1.xcllnt.net) Received: (from marcel@localhost) by ns1.xcllnt.net (8.12.9/8.12.9/Submit) id hABKWoGD002717; Tue, 11 Nov 2003 12:32:50 -0800 (PST) (envelope-from marcel) Date: Tue, 11 Nov 2003 12:32:50 -0800 From: Marcel Moolenaar To: Jake Burkholder Message-ID: <20031111203250.GA2581@ns1.xcllnt.net> References: <200311110733.hAB7XOme009113@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311110733.hAB7XOme009113@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files.sparc64 src/sys/dev/uart uart_kbd_sun.c uart_kbd_sun.h uart_kbd_sun_tables.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 20:32:52 -0000 On Mon, Nov 10, 2003 at 11:33:24PM -0800, Jake Burkholder wrote: > Add a uart attachment/syscons keyboard driver for sun keyboards. In theory > this will work with any uart backend, currently supported hardware uses > either ns8250 or z8530. Very nice! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Tue Nov 11 13:19:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EECF916A4D0; Tue, 11 Nov 2003 13:19:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53F5A43FE0; Tue, 11 Nov 2003 13:19:44 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABLJiXJ000882; Tue, 11 Nov 2003 13:19:44 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABLJhqx000876; Tue, 11 Nov 2003 13:19:43 -0800 (PST) (envelope-from jhb) Message-Id: <200311112119.hABLJhqx000876@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 13:19:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 mptable.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 21:19:46 -0000 jhb 2003/11/11 13:19:43 PST FreeBSD src repository Modified files: sys/i386/i386 mptable.c Log: Don't probe busses in the MP Table for the MP Table PCI bridge drivers if the bus number doesn't correspond to a PCI bus in the MP Table. Reported by: jhay Revision Changes Path 1.225 +2 -0 src/sys/i386/i386/mptable.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 13:23:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6225F16A4CE; Tue, 11 Nov 2003 13:23:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D20D043F93; Tue, 11 Nov 2003 13:23:54 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABLNsXJ002962; Tue, 11 Nov 2003 13:23:54 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABLNsn2002961; Tue, 11 Nov 2003 13:23:54 -0800 (PST) (envelope-from rwatson) Message-Id: <200311112123.hABLNsn2002961@repoman.freebsd.org> From: Robert Watson Date: Tue, 11 Nov 2003 13:23:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/mac_stub Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 21:23:55 -0000 rwatson 2003/11/11 13:23:54 PST FreeBSD src repository Modified files: sys/modules/mac_stub Makefile Log: Following the repo-copy from src/sys/modules/mac_none/Makefile, I neglected to update the filenames/etc in mac_stub. Do so now. Revision Changes Path 1.4 +3 -3 src/sys/modules/mac_stub/Makefile From owner-cvs-src@FreeBSD.ORG Tue Nov 11 13:49:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7276016A4CE; Tue, 11 Nov 2003 13:49:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E270443F85; Tue, 11 Nov 2003 13:49:18 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABLnIXJ004392; Tue, 11 Nov 2003 13:49:18 -0800 (PST) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABLnIga004391; Tue, 11 Nov 2003 13:49:18 -0800 (PST) (envelope-from anholt) Message-Id: <200311112149.hABLnIga004391@repoman.freebsd.org> From: Eric Anholt Date: Tue, 11 Nov 2003 13:49:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci agp.c agp_ali.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 21:49:19 -0000 anholt 2003/11/11 13:49:18 PST FreeBSD src repository Modified files: sys/pci agp.c agp_ali.c Log: - Disable AGP on ALI chipsets if aperture size is 0. - Fail in agp_alloc_gatt if the aperture size is 0 instead of panicing in contigmalloc. Reported by: Bjoern Fischer Reviewed by: jhb MFC after: 1 week Revision Changes Path 1.34 +5 -0 src/sys/pci/agp.c 1.9 +4 -0 src/sys/pci/agp_ali.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 14:07:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 715EA16A4CF; Tue, 11 Nov 2003 14:07:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9247C43FE1; Tue, 11 Nov 2003 14:07:30 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABM7UXJ006145; Tue, 11 Nov 2003 14:07:30 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABM7UAu006144; Tue, 11 Nov 2003 14:07:30 -0800 (PST) (envelope-from jhb) Message-Id: <200311112207.hABM7UAu006144@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 14:07:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/kern kern_mutex.c kern_thread.c subr_turnstile.c subr_witness.c src/sys/sys _mutex.h filedesc.h proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 22:07:31 -0000 jhb 2003/11/11 14:07:30 PST FreeBSD src repository Modified files: sys/conf files sys/kern kern_mutex.c kern_thread.c subr_turnstile.c subr_witness.c sys/sys _mutex.h filedesc.h proc.h Log: Add an implementation of turnstiles and change the sleep mutex code to use turnstiles to implement blocking isntead of implementing a thread queue directly. These turnstiles are somewhat similar to those used in Solaris 7 as described in Solaris Internals but are also different. Turnstiles do not come out of a fixed-sized pool. Rather, each thread is assigned a turnstile when it is created that it frees when it is destroyed. When a thread blocks on a lock, it donates its turnstile to that lock to serve as queue of blocked threads. The queue associated with a given lock is found by a lookup in a simple hash table. The turnstile itself is protected by a lock associated with its entry in the hash table. This means that sched_lock is no longer needed to contest on a mutex. Instead, sched_lock is only used when manipulating run queues or thread priorities. Turnstiles also implement priority propagation inherently. Currently turnstiles only support mutexes. Eventually, however, turnstiles may grow two queue's to support a non-sleepable reader/writer lock implementation. For more details, see the comments in sys/turnstile.h and kern/subr_turnstile.c. The two primary advantages from the turnstile code include: 1) the size of struct mutex shrinks by four pointers as it no longer stores the thread queue linkages directly, and 2) less contention on sched_lock in SMP systems including the ability for multiple CPUs to contend on different locks simultaneously (not that this last detail is necessarily that much of a big win). Note that 1) means that this commit is a kernel ABI breaker, so don't mix old modules with a new kernel and vice versa. Tested on: i386 SMP, sparc64 SMP, alpha SMP Revision Changes Path 1.848 +1 -0 src/sys/conf/files 1.132 +39 -225 src/sys/kern/kern_mutex.c 1.162 +3 -0 src/sys/kern/kern_thread.c 1.132 +471 -758 src/sys/kern/subr_turnstile.c 1.162 +3 -3 src/sys/kern/subr_witness.c 1.10 +0 -2 src/sys/sys/_mutex.h 1.52 +2 -0 src/sys/sys/filedesc.h 1.357 +8 -4 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 14:15:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D47C816A4CE; Tue, 11 Nov 2003 14:15:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51F7643FB1; Tue, 11 Nov 2003 14:15:18 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABMFIXJ006614; Tue, 11 Nov 2003 14:15:18 -0800 (PST) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABMFIaY006613; Tue, 11 Nov 2003 14:15:18 -0800 (PST) (envelope-from kuriyama) Message-Id: <200311112215.hABMFIaY006613@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 11 Nov 2003 14:15:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/pcm ac97.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 22:15:19 -0000 kuriyama 2003/11/11 14:15:18 PST FreeBSD src repository Modified files: sys/dev/sound/pcm ac97.c Log: Add ID for ALC658 CODEC. Tested on: GIGABYTE GA-8S655FX-L Reviewed by: orion Revision Changes Path 1.49 +1 -0 src/sys/dev/sound/pcm/ac97.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 15:08:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6635116A4CE; Tue, 11 Nov 2003 15:08:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76FA443FE3; Tue, 11 Nov 2003 15:08:26 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hABN8QXJ009852; Tue, 11 Nov 2003 15:08:26 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hABN8QCg009851; Tue, 11 Nov 2003 15:08:26 -0800 (PST) (envelope-from jhb) Message-Id: <200311112308.hABN8QCg009851@repoman.freebsd.org> From: John Baldwin Date: Tue, 11 Nov 2003 15:08:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys turnstile.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 11 Nov 2003 23:08:27 -0000 jhb 2003/11/11 15:08:26 PST FreeBSD src repository Added files: sys/sys turnstile.h Log: Oh dear, forgot this file in the turnstile commit. This header defines the turnstile API and includes several comments. Reminded by: peter Revision Changes Path 1.1 +88 -0 src/sys/sys/turnstile.h (new) From owner-cvs-src@FreeBSD.ORG Tue Nov 11 16:19:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0C1F16A4CE; Tue, 11 Nov 2003 16:19:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F21A43FA3; Tue, 11 Nov 2003 16:19:51 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC0JoXJ013870; Tue, 11 Nov 2003 16:19:51 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC0JoEX013869; Tue, 11 Nov 2003 16:19:50 -0800 (PST) (envelope-from joe) Message-Id: <200311120019.hAC0JoEX013869@repoman.freebsd.org> From: Josef Karthauser Date: Tue, 11 Nov 2003 16:19:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/usb uvisor.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 00:19:52 -0000 joe 2003/11/11 16:19:50 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/usb uvisor.c Log: MFC: (rev 1.16) Sony Clie_40 devices don't need the PALM_4 initialisation hack. Revision Changes Path 1.7.2.7 +1 -1 src/sys/dev/usb/uvisor.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 17:26:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0BF716A4CE; Tue, 11 Nov 2003 17:26:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58C1743FF5; Tue, 11 Nov 2003 17:26:03 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC1Q3XJ023415; Tue, 11 Nov 2003 17:26:03 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC1Q3fG023414; Tue, 11 Nov 2003 17:26:03 -0800 (PST) (envelope-from marcel) Message-Id: <200311120126.hAC1Q3fG023414@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 11 Nov 2003 17:26:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 interrupt.c machdep.c trap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 01:26:04 -0000 marcel 2003/11/11 17:26:03 PST FreeBSD src repository Modified files: sys/ia64/ia64 interrupt.c machdep.c trap.c Log: Further work-out the handling of the high FP registers. The most important change is in cpu_switch() where we disable the high FP registers for the thread that we switch-out if the CPU currently has its high FP registers. This avoids that the high FP registers remain enabled for the thread even when the CPU has unloaded them or the thread migrated to another processor. Likewise, when we switch-in a thread of that has its high FP registers on the CPU, we enable them. This avoids an otherwise harmless, but unnecessary trap to have them enabled. The code that handles the disabled high FP trap (in trap()) has been turned into a critical section for the most part to avoid being preempted. If there's a race, we bail out and have the processor trap again if necessary. Avoid using the generic ia64_highfp_save() function when the context is predictable. The function adds unnecessary overhead. Don't use ia64_highfp_load() for the same reason. The function is now unused and can be removed. These changes make the lazy context switching of the high FP registers in an UP kernel functional. Revision Changes Path 1.42 +6 -2 src/sys/ia64/ia64/interrupt.c 1.169 +4 -0 src/sys/ia64/ia64/machdep.c 1.94 +38 -65 src/sys/ia64/ia64/trap.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 17:40:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC1DB16A4CE; Tue, 11 Nov 2003 17:40:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C04D43FDF; Tue, 11 Nov 2003 17:40:12 -0800 (PST) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC1eCXJ023905; Tue, 11 Nov 2003 17:40:12 -0800 (PST) (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC1eCw9023904; Tue, 11 Nov 2003 17:40:12 -0800 (PST) (envelope-from joe) Message-Id: <200311120140.hAC1eCw9023904@repoman.freebsd.org> From: Josef Karthauser Date: Tue, 11 Nov 2003 17:40:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb ohci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 01:40:13 -0000 joe 2003/11/11 17:40:11 PST FreeBSD src repository Modified files: sys/dev/usb ohci.c Log: Remove a gremlin so that this code compiles under -stable without a "syntax error before `struct'" error. Revision Changes Path 1.138 +1 -1 src/sys/dev/usb/ohci.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 17:49:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F0DA16A4CE; Tue, 11 Nov 2003 17:49:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FAA643FDF; Tue, 11 Nov 2003 17:49:50 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC1noXJ024305; Tue, 11 Nov 2003 17:49:50 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC1nnsO024304; Tue, 11 Nov 2003 17:49:49 -0800 (PST) (envelope-from peter) Message-Id: <200311120149.hAC1nnsO024304@repoman.freebsd.org> From: Peter Wemm Date: Tue, 11 Nov 2003 17:49:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 autoconf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 01:49:51 -0000 peter 2003/11/11 17:49:49 PST FreeBSD src repository Modified files: sys/amd64/amd64 autoconf.c Log: Cosmetic sync with i386 Revision Changes Path 1.175 +2 -0 src/sys/amd64/amd64/autoconf.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 18:26:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D80416A4CE; Tue, 11 Nov 2003 18:26:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE29B43FE9; Tue, 11 Nov 2003 18:26:47 -0800 (PST) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC2QlXJ026788; Tue, 11 Nov 2003 18:26:47 -0800 (PST) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC2QlLH026787; Tue, 11 Nov 2003 18:26:47 -0800 (PST) (envelope-from hmp) Message-Id: <200311120226.hAC2QlLH026787@repoman.freebsd.org> From: Hiten Pandya Date: Tue, 11 Nov 2003 18:26:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ips.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 02:26:48 -0000 hmp 2003/11/11 18:26:47 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 ips.4 Log: Mdoc Janitor: * Add missing `utility' word to sentence describing ips(4) card configuration. * Remove extraneous use of .Pp, and describe the tunable hw.ips.0.disable in a better way. * Replace wrongly used .Op mdoc macros with the .Bq macro. The .Op macro should only be used when describing a ``usage'' line of a utility/command. * Add .Er, for marking errno defines (ENOMEM etc etc) Revision Changes Path 1.2 +10 -9 src/share/man/man4/ips.4 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 18:35:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBFBC16A4CE; Tue, 11 Nov 2003 18:35:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3325643FDF; Tue, 11 Nov 2003 18:35:21 -0800 (PST) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC2ZLXJ027333; Tue, 11 Nov 2003 18:35:21 -0800 (PST) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC2ZKG5027332; Tue, 11 Nov 2003 18:35:20 -0800 (PST) (envelope-from hmp) Message-Id: <200311120235.hAC2ZKG5027332@repoman.freebsd.org> From: Hiten Pandya Date: Tue, 11 Nov 2003 18:35:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ddb.4 inet.4 intro.4 src/share/man/man4/man4.i386 lnc.4 svr4.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 02:35:21 -0000 hmp 2003/11/11 18:35:20 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 ddb.4 inet.4 intro.4 share/man/man4/man4.i386 lnc.4 svr4.4 Log: Mdoc Janitor: * cleanup hard sentence breaks. * sprinle some .Dq macros. Revision Changes Path 1.24 +8 -3 src/share/man/man4/ddb.4 1.26 +2 -1 src/share/man/man4/inet.4 1.28 +2 -2 src/share/man/man4/intro.4 1.21 +10 -5 src/share/man/man4/man4.i386/lnc.4 1.10 +10 -4 src/share/man/man4/man4.i386/svr4.4 From owner-cvs-src@FreeBSD.ORG Tue Nov 11 18:54:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E47816A4CE; Tue, 11 Nov 2003 18:54:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C2143FBD; Tue, 11 Nov 2003 18:54:48 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC2slXJ028244; Tue, 11 Nov 2003 18:54:47 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC2slF0028243; Tue, 11 Nov 2003 18:54:47 -0800 (PST) (envelope-from kan) Message-Id: <200311120254.hAC2slF0028243@repoman.freebsd.org> From: Alexander Kabaev Date: Tue, 11 Nov 2003 18:54:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mount.h src/sys/nfsclient nfs_vfsops.c src/sys/kern vfs_mount.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 02:54:48 -0000 kan 2003/11/11 18:54:47 PST FreeBSD src repository Modified files: sys/sys mount.h sys/nfsclient nfs_vfsops.c sys/kern vfs_mount.c Log: 1. Consolidate mount struct allocation/destruction into a common code in vfs_mount_alloc/vfs_mount_destroy functions and take care to completely destroy the mount point along with its locks. Mount struct has grown in coplexity recently and depending on each failure path to destroy it completely isn't working anymore. 2. Eliminate largely identical vfs_mount and vfs_unmount question by moving the code to handle both cases into a newly introduced vfs_domount function. 3. Simplify nfs_mount_diskless to always expect an allocated mount struct and never attempt an allocation/destruction itself. The vfs_allocroot allocation was there to support 'magic' swap space configuration for diskless clients that was already removed by PHK some time ago. 4. Include a vfs_buildopts cleanups by Peter Edwards to validate the sanity of nmount parameters passed from userland. Submitted by: (4) Peter Edwards Reviewed by: rwatson Revision Changes Path 1.113 +171 -429 src/sys/kern/vfs_mount.c 1.143 +3 -23 src/sys/nfsclient/nfs_vfsops.c 1.150 +1 -0 src/sys/sys/mount.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 19:14:33 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ED5816A4CE; Tue, 11 Nov 2003 19:14:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D8CC43FE9; Tue, 11 Nov 2003 19:14:32 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC3EWXJ030529; Tue, 11 Nov 2003 19:14:32 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC3EWf8030528; Tue, 11 Nov 2003 19:14:32 -0800 (PST) (envelope-from rwatson) Message-Id: <200311120314.hAC3EWf8030528@repoman.freebsd.org> From: Robert Watson Date: Tue, 11 Nov 2003 19:14:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/fs/devfs devfs.h src/sys/kern kern_exec.c kern_mac.c src/sys/net bpfdesc.h if_var.h src/sys/netinet ip_var.h src/sys/security/mac mac_internal.h mac_label.c mac_net.c mac_pipe.c mac_process.c mac_system.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 03:14:33 -0000 rwatson 2003/11/11 19:14:32 PST FreeBSD src repository Modified files: sys/conf files sys/fs/devfs devfs.h sys/kern kern_exec.c kern_mac.c sys/net bpfdesc.h if_var.h sys/netinet ip_var.h sys/security/mac mac_internal.h mac_net.c mac_pipe.c mac_process.c mac_system.c mac_vfs.c sys/security/mac_biba mac_biba.c sys/security/mac_lomac mac_lomac.c sys/security/mac_mls mac_mls.c sys/security/mac_partition mac_partition.c sys/security/mac_test mac_test.c sys/sys mac.h mount.h pipe.h proc.h socketvar.h ucred.h vnode.h Added files: sys/security/mac mac_label.c Log: Modify the MAC Framework so that instead of embedding a (struct label) in various kernel objects to represent security data, we embed a (struct label *) pointer, which now references labels allocated using a UMA zone (mac_label.c). This allows the size and shape of struct label to be varied without changing the size and shape of these kernel objects, which become part of the frozen ABI with 5-STABLE. This opens the door for boot-time selection of the number of label slots, and hence changes to the bound on the number of simultaneous labeled policies at boot-time instead of compile-time. This also makes it easier to embed label references in new objects as required for locking/caching with fine-grained network stack locking, such as inpcb structures. This change also moves us further in the direction of hiding the structure of kernel objects from MAC policy modules, not to mention dramatically reducing the number of '&' symbols appearing in both the MAC Framework and MAC policy modules, and improving readability. While this results in minimal performance change with MAC enabled, it will observably shrink the size of a number of critical kernel data structures for the !MAC case, and should have a small (but measurable) performance benefit (i.e., struct vnode, struct socket) do to memory conservation and reduced cost of zeroing memory. NOTE: Users of MAC must recompile their kernel and all MAC modules as a result of this change. Because this is an API change, third party MAC modules will also need to be updated to make less use of the '&' symbol. Suggestions from: bmilekic Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.849 +1 -0 src/sys/conf/files 1.18 +1 -1 src/sys/fs/devfs/devfs.h 1.232 +11 -13 src/sys/kern/kern_exec.c 1.105 +57 -62 src/sys/kern/kern_mac.c 1.24 +1 -2 src/sys/net/bpfdesc.h 1.62 +1 -2 src/sys/net/if_var.h 1.79 +1 -5 src/sys/netinet/ip_var.h 1.106 +9 -5 src/sys/security/mac/mac_internal.h 1.1 +97 -0 src/sys/security/mac/mac_label.c (new) 1.105 +155 -104 src/sys/security/mac/mac_net.c 1.104 +11 -14 src/sys/security/mac/mac_pipe.c 1.104 +43 -21 src/sys/security/mac/mac_process.c 1.102 +4 -4 src/sys/security/mac/mac_system.c 1.104 +139 -83 src/sys/security/mac/mac_vfs.c 1.66 +68 -68 src/sys/security/mac_biba/mac_biba.c 1.21 +56 -56 src/sys/security/mac_lomac/mac_lomac.c 1.53 +61 -61 src/sys/security/mac_mls/mac_mls.c 1.8 +9 -9 src/sys/security/mac_partition/mac_partition.c 1.32 +91 -91 src/sys/security/mac_test/mac_test.c 1.47 +7 -4 src/sys/sys/mac.h 1.151 +2 -3 src/sys/sys/mount.h 1.25 +0 -1 src/sys/sys/pipe.h 1.358 +1 -2 src/sys/sys/proc.h 1.107 +2 -3 src/sys/sys/socketvar.h 1.47 +1 -2 src/sys/sys/ucred.h 1.230 +1 -2 src/sys/sys/vnode.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 19:24:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B403116A4CE; Tue, 11 Nov 2003 19:24:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CD0743F3F; Tue, 11 Nov 2003 19:24:35 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC3OZXJ032011; Tue, 11 Nov 2003 19:24:35 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC3OYac032010; Tue, 11 Nov 2003 19:24:34 -0800 (PST) (envelope-from marcel) Message-Id: <200311120324.hAC3OYac032010@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 11 Nov 2003 19:24:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c src/sys/ia64/include md_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 03:24:35 -0000 marcel 2003/11/11 19:24:34 PST FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c sys/ia64/include md_var.h Log: Remove ia64_highfp_load() now that it's unused. Revision Changes Path 1.170 +0 -14 src/sys/ia64/ia64/machdep.c 1.15 +0 -1 src/sys/ia64/include/md_var.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 19:30:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 950F416A4CF; Tue, 11 Nov 2003 19:30:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFBF543FE5; Tue, 11 Nov 2003 19:29:57 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC3TvXJ032346; Tue, 11 Nov 2003 19:29:57 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC3TvvZ032345; Tue, 11 Nov 2003 19:29:57 -0800 (PST) (envelope-from simokawa) Message-Id: <200311120329.hAC3TvvZ032345@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 11 Nov 2003 19:29:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire sbp.c sbp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 03:30:00 -0000 simokawa 2003/11/11 19:29:57 PST FreeBSD src repository Modified files: sys/dev/firewire sbp.c sbp.h Log: Oops, fix typo in my name. Revision Changes Path 1.69 +2 -2 src/sys/dev/firewire/sbp.c 1.2 +2 -2 src/sys/dev/firewire/sbp.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 19:33:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43A0916A4CE; Tue, 11 Nov 2003 19:33:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DAE243F85; Tue, 11 Nov 2003 19:33:44 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC3XiXJ032683; Tue, 11 Nov 2003 19:33:44 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC3Xi7s032682; Tue, 11 Nov 2003 19:33:44 -0800 (PST) (envelope-from rwatson) Message-Id: <200311120333.hAC3Xi7s032682@repoman.freebsd.org> From: Robert Watson Date: Tue, 11 Nov 2003 19:33:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mac.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 03:33:45 -0000 rwatson 2003/11/11 19:33:44 PST FreeBSD src repository Modified files: sys/sys mac.h Log: GC prototype for mac_destroy_vnode_label(), missed in last commit. Revision Changes Path 1.48 +0 -1 src/sys/sys/mac.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 19:45:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7897C16A4CE; Tue, 11 Nov 2003 19:45:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9E2343F75; Tue, 11 Nov 2003 19:45:10 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC3jAXJ033775; Tue, 11 Nov 2003 19:45:10 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC3jAnr033774; Tue, 11 Nov 2003 19:45:10 -0800 (PST) (envelope-from simokawa) Message-Id: <200311120345.hAC3jAnr033774@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 11 Nov 2003 19:45:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire sbp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 03:45:11 -0000 simokawa 2003/11/11 19:45:10 PST FreeBSD src repository Modified files: sys/dev/firewire sbp.c Log: - Reserve a ocb for management ORB. - Requeue XPT_SCSI_IO if ocb is short. Revision Changes Path 1.70 +6 -2 src/sys/dev/firewire/sbp.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 20:06:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8474816A4CE; Tue, 11 Nov 2003 20:06:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F420943FB1; Tue, 11 Nov 2003 20:06:21 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC46LXJ035563; Tue, 11 Nov 2003 20:06:21 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC46LYw035562; Tue, 11 Nov 2003 20:06:21 -0800 (PST) (envelope-from simokawa) Message-Id: <200311120406.hAC46LYw035562@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 11 Nov 2003 20:06:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire sbp.c sbp_targ.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 04:06:22 -0000 simokawa 2003/11/11 20:06:21 PST FreeBSD src repository Modified files: sys/dev/firewire sbp.c sbp_targ.c Log: Improve debug message. Revision Changes Path 1.71 +3 -3 src/sys/dev/firewire/sbp.c 1.2 +6 -6 src/sys/dev/firewire/sbp_targ.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 20:22:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 158E516A4CE; Tue, 11 Nov 2003 20:22:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F9DD43FF3; Tue, 11 Nov 2003 20:22:37 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC4MbXJ036367; Tue, 11 Nov 2003 20:22:37 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC4MbXg036366; Tue, 11 Nov 2003 20:22:37 -0800 (PST) (envelope-from ume) Message-Id: <200311120422.hAC4MbXg036366@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 11 Nov 2003 20:22:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/crypto/rijndael rijndael-api.c rijndael.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 04:22:38 -0000 ume 2003/11/11 20:22:37 PST FreeBSD src repository Modified files: sys/conf files Added files: sys/crypto/rijndael rijndael-api.c Removed files: sys/crypto/rijndael rijndael.c Log: avoid module name conflict with opencrypto/rijndael.c. Reported by: tinderbox Revision Changes Path 1.850 +1 -1 src/sys/conf/files 1.1 +57 -0 src/sys/crypto/rijndael/rijndael-api.c (new) 1.2 +0 -57 src/sys/crypto/rijndael/rijndael.c (dead) From owner-cvs-src@FreeBSD.ORG Tue Nov 11 20:26:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 930C416A4CE; Tue, 11 Nov 2003 20:26:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1477243F93; Tue, 11 Nov 2003 20:26:27 -0800 (PST) (envelope-from mikeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC4QQXJ036553; Tue, 11 Nov 2003 20:26:26 -0800 (PST) (envelope-from mikeh@repoman.freebsd.org) Received: (from mikeh@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC4QQOU036552; Tue, 11 Nov 2003 20:26:26 -0800 (PST) (envelope-from mikeh) Message-Id: <200311120426.hAC4QQOU036552@repoman.freebsd.org> From: Mike Heffner Date: Tue, 11 Nov 2003 20:26:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 04:26:27 -0000 mikeh 2003/11/11 20:26:26 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/isa psm.c Log: MFC: 1.60 Reset device twice. Revision Changes Path 1.23.2.7 +9 -0 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 20:51:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E157216A4CE; Tue, 11 Nov 2003 20:51:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D8BB43FE0; Tue, 11 Nov 2003 20:51:25 -0800 (PST) (envelope-from mikeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC4pPXJ043261; Tue, 11 Nov 2003 20:51:25 -0800 (PST) (envelope-from mikeh@repoman.freebsd.org) Received: (from mikeh@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC4pOZd043260; Tue, 11 Nov 2003 20:51:24 -0800 (PST) (envelope-from mikeh) Message-Id: <200311120451.hAC4pOZd043260@repoman.freebsd.org> From: Mike Heffner Date: Tue, 11 Nov 2003 20:51:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/kbd atkbdcreg.h src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 04:51:26 -0000 mikeh 2003/11/11 20:51:24 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/kbd atkbdcreg.h sys/isa psm.c Log: MFC: Support A4 Tech RFSW-35 mouse. Revision Changes Path 1.4.2.3 +2 -1 src/sys/dev/kbd/atkbdcreg.h 1.23.2.8 +10 -3 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 21:21:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FFA516A4CE; Tue, 11 Nov 2003 21:21:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FB0144001; Tue, 11 Nov 2003 21:21:07 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC5L6XJ045313; Tue, 11 Nov 2003 21:21:06 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC5L65q045312; Tue, 11 Nov 2003 21:21:06 -0800 (PST) (envelope-from imp) Message-Id: <200311120521.hAC5L65q045312@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Nov 2003 21:21:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 05:21:07 -0000 imp 2003/11/11 21:21:06 PST FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Fix a harmless typo (use of res instead of rle: if rle is NULL, we'd still get a panic, just not a nice message) and update to new __FBSDID. Submitted by: charnier@ Revision Changes Path 1.99 +4 -3 src/sys/dev/pccbb/pccbb.c From owner-cvs-src@FreeBSD.ORG Tue Nov 11 21:44:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2170416A4CE; Tue, 11 Nov 2003 21:44:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9666F43FBF; Tue, 11 Nov 2003 21:44:44 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC5iiXJ046365; Tue, 11 Nov 2003 21:44:44 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC5iiun046364; Tue, 11 Nov 2003 21:44:44 -0800 (PST) (envelope-from imp) Message-Id: <200311120544.hAC5iiun046364@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Nov 2003 21:44:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha ahareg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 05:44:45 -0000 imp 2003/11/11 21:44:44 PST FreeBSD src repository Modified files: sys/dev/aha ahareg.h Log: Minor diff reduction with p4 Revision Changes Path 1.16 +1 -1 src/sys/dev/aha/ahareg.h From owner-cvs-src@FreeBSD.ORG Tue Nov 11 21:52:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1827116A4CE; Tue, 11 Nov 2003 21:52:00 -0800 (PST) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50A6D43F85; Tue, 11 Nov 2003 21:51:57 -0800 (PST) (envelope-from danfe@regency.nsu.ru) Received: from mail by mx.nsu.ru with drweb-scanned (Exim 3.35 #1 (Debian)) id 1AJoum-0000f5-00; Wed, 12 Nov 2003 12:55:44 +0600 Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 3.35 #1 (Debian)) id 1AJoul-0000ek-00; Wed, 12 Nov 2003 12:55:43 +0600 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.9p2/8.12.9) with ESMTP id hAC5qUg1041607; Wed, 12 Nov 2003 11:52:30 +0600 (NOVT) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.9p2/8.12.9/Submit) id hAC5qRYv041497; Wed, 12 Nov 2003 11:52:27 +0600 (NOVT) (envelope-from danfe) Date: Wed, 12 Nov 2003 11:52:27 +0600 From: Alexey Dokuchaev To: Kris Kennaway Message-ID: <20031112055227.GA35244@regency.nsu.ru> References: <20031111041440.31347.qmail@exxodus.fedaykin.here> <20031110221318.C35445@root.org> <20031111071451.GA20061@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031111071451.GA20061@xor.obsecurity.org> User-Agent: Mutt/1.4.1i X-Envelope-To: kris@obsecurity.org, nate@root.org, cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, jhb@freebsd.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: John Baldwin cc: cvs-all@freebsd.org cc: Nate Lawson Subject: Re: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 05:52:00 -0000 On Mon, Nov 10, 2003 at 11:14:51PM -0800, Kris Kennaway wrote: > On Mon, Nov 10, 2003 at 10:13:57PM -0800, Nate Lawson wrote: > > On Tue, 21 Oct 2003, John Baldwin wrote: > > > On 19-Oct-2003 Nate Lawson wrote: > > > > Modified files: > > > > sys/dev/acpica acpi.c > > > > Log: > > > > Disable irqs before entering the power-off state. This is not known > > > > to fix any problems but is similar to how Linux implements this > > > > function. > > > > > > By the way, any ideas on why my laptop gets an interrupt storm when it > > > resumes from S1 and any ideas on how to fix that? > > > > I assume this is an echo from a month ago? > > It looks like someone's feeding old mail back to the list. Seconded. :-( ./danfe From owner-cvs-src@FreeBSD.ORG Tue Nov 11 22:09:20 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EE7F16A4CE; Tue, 11 Nov 2003 22:09:20 -0800 (PST) Received: from VARK.homeunix.com (adsl-68-123-40-77.dsl.pltn13.pacbell.net [68.123.40.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48AC543FA3; Tue, 11 Nov 2003 22:09:19 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from VARK.homeunix.com (localhost [127.0.0.1]) by VARK.homeunix.com (8.12.9/8.12.9) with ESMTP id hAC67sen025606; Tue, 11 Nov 2003 22:07:54 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.homeunix.com (8.12.9/8.12.9/Submit) id hAC67rYO025605; Tue, 11 Nov 2003 22:07:53 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Tue, 11 Nov 2003 22:07:53 -0800 From: David Schultz To: John Baldwin Message-ID: <20031112060753.GA25471@VARK.homeunix.com> Mail-Followup-To: John Baldwin , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200311112207.hABM7UAu006144@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311112207.hABM7UAu006144@repoman.freebsd.org> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/conf files src/sys/kern kern_mutex.c kern_thread.c subr_turnstile.c subr_witness.c src/sys/sys _mutex.h filedesc.h proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 06:09:20 -0000 On Tue, Nov 11, 2003, John Baldwin wrote: > jhb 2003/11/11 14:07:30 PST > > FreeBSD src repository > > Modified files: > sys/conf files > sys/kern kern_mutex.c kern_thread.c > subr_turnstile.c subr_witness.c > sys/sys _mutex.h filedesc.h proc.h > Log: > Add an implementation of turnstiles and change the sleep mutex code to use > turnstiles to implement blocking isntead of implementing a thread queue > directly. These turnstiles are somewhat similar to those used in Solaris 7 > as described in Solaris Internals but are also different. Very nice! > + * Each time a thread is created, a turnstile is malloc'd and attached to > + * that thread. When a thread blocks on a lock, if it is the first thread > + * to block, it lends its turnstile to the lock. If the lock already has > + * a turnstile, then it gives its turnstile to the lock's turnstile's free > + * list. When a thread is woken up, it takes a thread from the free list ^^^^^^ turnstile? > + * if there are any other waiters. If it is the only thread blocked on the > + * lock, then it reclaims the turnstile associated with the lock and removes > + * it from the hash table. From owner-cvs-src@FreeBSD.ORG Tue Nov 11 23:50:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2360016A4CE; Tue, 11 Nov 2003 23:50:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F9043F93; Tue, 11 Nov 2003 23:50:37 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC7obXJ053352; Tue, 11 Nov 2003 23:50:37 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC7obW2053351; Tue, 11 Nov 2003 23:50:37 -0800 (PST) (envelope-from des) Message-Id: <200311120750.hAC7obW2053351@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 11 Nov 2003 23:50:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/tinderbox/etc releng_4.rc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 07:50:38 -0000 des 2003/11/11 23:50:37 PST FreeBSD src repository Modified files: tools/tools/tinderbox/etc releng_4.rc Log: Belatedly include RELENG_4_9 in the build, and rotate RELENG_4_7 out. Revision Changes Path 1.5 +1 -1 src/tools/tools/tinderbox/etc/releng_4.rc From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:01:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 729DC16A4CE; Wed, 12 Nov 2003 00:01:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E436443FBF; Wed, 12 Nov 2003 00:01:40 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC81eXJ053949; Wed, 12 Nov 2003 00:01:40 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC81ea1053948; Wed, 12 Nov 2003 00:01:40 -0800 (PST) (envelope-from mckusick) Message-Id: <200311120801.hAC81ea1053948@repoman.freebsd.org> From: Kirk McKusick Date: Wed, 12 Nov 2003 00:01:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/df df.c src/sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:01:41 -0000 mckusick 2003/11/12 00:01:40 PST FreeBSD src repository Modified files: bin/df df.c sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c sys/sys mount.h sys/ufs/ffs ffs_vfsops.c Log: Update the statfs structure with 64-bit fields to allow accurate reporting of multi-terabyte filesystem sizes. You should build and boot a new kernel BEFORE doing a `make world' as the new kernel will know about binaries using the old statfs structure, but an old kernel will not know about the new system calls that support the new statfs structure. Running an old kernel after a `make world' will cause programs such as `df' that do a statfs system call to fail with a bad system call. Reviewed by: Bruce Evans Reviewed by: Tim Robbins Reviewed by: Julian Elischer Reviewed by: the hoards of Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.52 +25 -23 src/bin/df/df.c 1.157 +10 -8 src/sys/kern/syscalls.master 1.422 +2 -2 src/sys/kern/vfs_bio.c 1.148 +2 -2 src/sys/kern/vfs_cluster.c 1.333 +296 -13 src/sys/kern/vfs_syscalls.c 1.152 +34 -7 src/sys/sys/mount.h 1.225 +11 -0 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:06:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02BCB16A4CE; Wed, 12 Nov 2003 00:06:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 705FE43FCB; Wed, 12 Nov 2003 00:06:36 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC86aXJ055049; Wed, 12 Nov 2003 00:06:36 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC86am0055048; Wed, 12 Nov 2003 00:06:36 -0800 (PST) (envelope-from brueffer) Message-Id: <200311120806.hAC86am0055048@repoman.freebsd.org> From: Christian Brueffer Date: Wed, 12 Nov 2003 00:06:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 ports.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:06:37 -0000 brueffer 2003/11/12 00:06:36 PST FreeBSD src repository (doc committer) Modified files: share/man/man7 ports.7 Log: Document the 'fetch-recursive-list' and 'deinstall-all' targets. No MFC reminder, I'll sync this page with the one in -stable in a couple of days. PR: docs/46181 Patch submitted by: Sergey Matveychuk Revision Changes Path 1.40 +7 -0 src/share/man/man7/ports.7 From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:08:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B048916A4CE; Wed, 12 Nov 2003 00:08:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CF0643FE5; Wed, 12 Nov 2003 00:08:17 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC88HXJ055109; Wed, 12 Nov 2003 00:08:17 -0800 (PST) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC88G42055108; Wed, 12 Nov 2003 00:08:16 -0800 (PST) (envelope-from kuriyama) Message-Id: <200311120808.hAC88G42055108@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 12 Nov 2003 00:08:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/i386 drivers.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:08:17 -0000 kuriyama 2003/11/12 00:08:16 PST FreeBSD src repository Modified files: release/i386 drivers.conf Log: Move cd9660 module from 3rd floppy to 2nd to unbreak release. Revision Changes Path 1.31 +1 -1 src/release/i386/drivers.conf From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:09:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6802116A4CE; Wed, 12 Nov 2003 00:09:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7539543FCB; Wed, 12 Nov 2003 00:09:20 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC89KXJ055183; Wed, 12 Nov 2003 00:09:20 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC89K07055182; Wed, 12 Nov 2003 00:09:20 -0800 (PST) (envelope-from mckusick) Message-Id: <200311120809.hAC89K07055182@repoman.freebsd.org> From: Kirk McKusick Date: Wed, 12 Nov 2003 00:09:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern init_sysent.c syscalls.c src/sys/sys syscall.h syscall.mk sysproto.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:09:21 -0000 mckusick 2003/11/12 00:09:20 PST FreeBSD src repository Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall.h syscall.mk sysproto.h Log: Update the five files derived from /sys/kern/syscalls.master after the additions made for the new statfs structure (version 1.157). These must be updated in a separate checkin after syscalls.master has been checked in so that they reflect its new CVS identity. As these are purely derived files, it is not clear to me why they are under CVS at all. I presume that it has something to do with having `make world' operate properly. Revision Changes Path 1.160 +9 -9 src/sys/kern/init_sysent.c 1.146 +9 -9 src/sys/kern/syscalls.c 1.144 +9 -5 src/sys/sys/syscall.h 1.99 +5 -5 src/sys/sys/syscall.mk 1.140 +43 -22 src/sys/sys/sysproto.h From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:16:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A75416A4CE; Wed, 12 Nov 2003 00:16:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C52443FE0; Wed, 12 Nov 2003 00:16:17 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC8GGXJ055561; Wed, 12 Nov 2003 00:16:16 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC8GGlM055560; Wed, 12 Nov 2003 00:16:16 -0800 (PST) (envelope-from des) Message-Id: <200311120816.hAC8GGlM055560@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Nov 2003 00:16:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/tinderbox/www index.cgi X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:16:18 -0000 des 2003/11/12 00:16:16 PST FreeBSD src repository Modified files: tools/tools/tinderbox/www index.cgi Log: Turn the table around: platforms across, branches down. Also fix some bogus tabification in here documents. Revision Changes Path 1.18 +20 -14 src/tools/tools/tinderbox/www/index.cgi From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:26:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BED0A16A4CE; Wed, 12 Nov 2003 00:26:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A31A43FBD; Wed, 12 Nov 2003 00:26:09 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC8Q9XJ055889; Wed, 12 Nov 2003 00:26:09 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC8Q8f3055888; Wed, 12 Nov 2003 00:26:08 -0800 (PST) (envelope-from brueffer) Message-Id: <200311120826.hAC8Q8f3055888@repoman.freebsd.org> From: Christian Brueffer Date: Wed, 12 Nov 2003 00:26:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 ports.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:26:09 -0000 brueffer 2003/11/12 00:26:08 PST FreeBSD src repository (doc committer) Modified files: share/man/man7 ports.7 Log: Correct the on-disc path to the porters-handbook Revision Changes Path 1.41 +1 -1 src/share/man/man7/ports.7 From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:30:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E53F016A4CE; Wed, 12 Nov 2003 00:30:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54E7D43FBD; Wed, 12 Nov 2003 00:30:52 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC8UqXJ056170; Wed, 12 Nov 2003 00:30:52 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC8Uq9n056165; Wed, 12 Nov 2003 00:30:52 -0800 (PST) (envelope-from des) Message-Id: <200311120830.hAC8Uq9n056165@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Nov 2003 00:30:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/tinderbox/www index.cgi tb.css X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:30:53 -0000 des 2003/11/12 00:30:52 PST FreeBSD src repository Modified files: tools/tools/tinderbox/www index.cgi tb.css Log: Use graded colors to more clearly indicate relative age. Revision Changes Path 1.19 +4 -2 src/tools/tools/tinderbox/www/index.cgi 1.5 +20 -18 src/tools/tools/tinderbox/www/tb.css From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:32:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DF1E16A4CE; Wed, 12 Nov 2003 00:32:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09B4743F85; Wed, 12 Nov 2003 00:32:35 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC8WYXJ056238; Wed, 12 Nov 2003 00:32:34 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC8WYV2056237; Wed, 12 Nov 2003 00:32:34 -0800 (PST) (envelope-from des) Message-Id: <200311120832.hAC8WYV2056237@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Nov 2003 00:32:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/tinderbox/www index.cgi X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:32:35 -0000 des 2003/11/12 00:32:34 PST FreeBSD src repository Modified files: tools/tools/tinderbox/www index.cgi Log: braino in age computation Revision Changes Path 1.20 +1 -1 src/tools/tools/tinderbox/www/index.cgi From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:33:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DA0416A4CE; Wed, 12 Nov 2003 00:33:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E311543FCB; Wed, 12 Nov 2003 00:33:18 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC8XIXJ056284; Wed, 12 Nov 2003 00:33:18 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC8XIVN056283; Wed, 12 Nov 2003 00:33:18 -0800 (PST) (envelope-from obrien) Message-Id: <200311120833.hAC8XIVN056283@repoman.freebsd.org> From: "David E. O'Brien" Date: Wed, 12 Nov 2003 00:33:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/binutils/gdb freebsd-uthread.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:33:19 -0000 obrien 2003/11/12 00:33:18 PST FreeBSD src repository Modified files: gnu/usr.bin/binutils/gdb freebsd-uthread.c Log: FBSDID style nit. Revision Changes Path 1.11 +2 -1 src/gnu/usr.bin/binutils/gdb/freebsd-uthread.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:35:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C5C616A4CF; Wed, 12 Nov 2003 00:35:34 -0800 (PST) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD0A743FAF; Wed, 12 Nov 2003 00:35:32 -0800 (PST) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) hAC8ZUeo075541; Wed, 12 Nov 2003 09:35:30 +0100 (CET) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.10/8.12.10/Submit) id hAC8ZUnj075540; Wed, 12 Nov 2003 09:35:30 +0100 (CET) (envelope-from k) Date: Wed, 12 Nov 2003 09:35:30 +0100 From: Johan Karlsson To: Kirk McKusick Message-ID: <20031112083530.GB61125@numeri.campus.luth.se> References: <200311120801.hAC81ea1053948@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311120801.hAC81ea1053948@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:35:34 -0000 Hi On Wed, Nov 12, 2003 at 00:01 (-0800) +0000, Kirk McKusick wrote: > mckusick 2003/11/12 00:01:40 PST > > FreeBSD src repository > > Modified files: > bin/df df.c > sys/kern syscalls.master vfs_bio.c vfs_cluster.c > vfs_syscalls.c > sys/sys mount.h > sys/ufs/ffs ffs_vfsops.c > Log: > Update the statfs structure with 64-bit fields to allow > accurate reporting of multi-terabyte filesystem sizes. > > You should build and boot a new kernel BEFORE doing a `make world' > as the new kernel will know about binaries using the old statfs > structure, but an old kernel will not know about the new system > calls that support the new statfs structure. Running an old kernel > after a `make world' will cause programs such as `df' that do a > statfs system call to fail with a bad system call. Can you also make a note in src/UPDATING as weel, please. /Johan K -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:37:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75E0516A4CE; Wed, 12 Nov 2003 00:37:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E62F343FAF; Wed, 12 Nov 2003 00:37:10 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC8bAXJ056493; Wed, 12 Nov 2003 00:37:10 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC8bAVE056492; Wed, 12 Nov 2003 00:37:10 -0800 (PST) (envelope-from des) Message-Id: <200311120837.hAC8bAVE056492@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Nov 2003 00:37:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/tinderbox/www index.cgi X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:37:11 -0000 des 2003/11/12 00:37:10 PST FreeBSD src repository Modified files: tools/tools/tinderbox/www index.cgi Log: Remove leftovers from old color determination scheme. Tune the speed at which colors change. Revision Changes Path 1.21 +1 -3 src/tools/tools/tinderbox/www/index.cgi From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:41:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA34216A4CE; Wed, 12 Nov 2003 00:41:55 -0800 (PST) Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FD0F43FAF; Wed, 12 Nov 2003 00:41:54 -0800 (PST) (envelope-from sheldonh@starjuice.net) Received: from sheldonh by axl.seasidesoftware.co.za with local (Exim 4.24; FreeBSD 5.1) id 1AJqZS-0008We-OY; Wed, 12 Nov 2003 10:41:50 +0200 Date: Wed, 12 Nov 2003 10:41:50 +0200 From: Sheldon Hearn To: John Baldwin Message-ID: <20031112084150.GU1127@starjuice.net> Mail-Followup-To: John Baldwin , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311111716.hABHGGMt060914@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311111716.hABHGGMt060914@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 mp_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:41:55 -0000 On (2003/11/11 09:16), John Baldwin wrote: > FreeBSD src repository > > Modified files: > sys/i386/i386 mp_machdep.c > Log: > Enable HTT CPUs by default instead of halting them by default. Users > should now only have HTT CPUs if they have explicitly asked for them > either by enabling HyperThreading in the BIOS or by using the > MPTABLE_FORCE_HTT kernel option. So now a GENERIC kernel will listen to the BIOS with respect to HTT support, without any intervention required from the administrator? That's great, thanks. Ciao, Sheldon. From owner-cvs-src@FreeBSD.ORG Wed Nov 12 00:49:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 282F216A4CE; Wed, 12 Nov 2003 00:49:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9885F43FE0; Wed, 12 Nov 2003 00:49:12 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC8nCXJ062466; Wed, 12 Nov 2003 00:49:12 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC8nCSr062465; Wed, 12 Nov 2003 00:49:12 -0800 (PST) (envelope-from tjr) Message-Id: <200311120849.hAC8nCSr062465@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 12 Nov 2003 00:49:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdio vfwprintf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 08:49:13 -0000 tjr 2003/11/12 00:49:12 PST FreeBSD src repository Modified files: lib/libc/stdio vfwprintf.c Log: Use __sfvwrite() instead of __sputc() via __fputwc() to write to fake string files (__SSTR flag set). This is necessary because __sputc() does not respect the __SALC flag, and crashes trying to flush the buffer instead of resizing it. PR: 59167 Revision Changes Path 1.14 +30 -1 src/lib/libc/stdio/vfwprintf.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 01:10:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA4C16A4CE; Wed, 12 Nov 2003 01:10:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1591E43FAF; Wed, 12 Nov 2003 01:10:12 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC9ABXJ064132; Wed, 12 Nov 2003 01:10:11 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC9AB3W064131; Wed, 12 Nov 2003 01:10:11 -0800 (PST) (envelope-from harti) Message-Id: <200311120910.hAC9AB3W064131@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 12 Nov 2003 01:10:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph netgraph.h ng_message.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 09:10:12 -0000 harti 2003/11/12 01:10:11 PST FreeBSD src repository Modified files: sys/netgraph netgraph.h ng_message.h Log: Double length of node names, hook names, command strings and types. Add defines for these constants that include the trailing NUL byte. These new constants have SIZ in their name instead of LEN. As soon as all consumers in the tree are converted to use the new defines the old defines will be put under BURN_BRIDGES. Reviewed by: archie, julian, ru Approved by: re (in principle) Revision Changes Path 1.37 +1 -1 src/sys/netgraph/netgraph.h 1.20 +15 -5 src/sys/netgraph/ng_message.h From owner-cvs-src@FreeBSD.ORG Wed Nov 12 01:11:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE9BF16A4CE; Wed, 12 Nov 2003 01:11:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B76643F85; Wed, 12 Nov 2003 01:11:19 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC9BJXJ064292; Wed, 12 Nov 2003 01:11:19 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC9BJMh064291; Wed, 12 Nov 2003 01:11:19 -0800 (PST) (envelope-from harti) Message-Id: <200311120911.hAC9BJMh064291@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 12 Nov 2003 01:11:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 09:11:20 -0000 harti 2003/11/12 01:11:19 PST FreeBSD src repository Modified files: . UPDATING Log: Add an entry about the changes in netgraph that require kernel and user land netgraph stuff to be in sync. Reviewed by: imp Revision Changes Path 1.277 +7 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Wed Nov 12 01:46:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BED3416A4CE; Wed, 12 Nov 2003 01:46:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D7A343FE1; Wed, 12 Nov 2003 01:46:55 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC9ktXJ065652; Wed, 12 Nov 2003 01:46:55 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC9ksU3065651; Wed, 12 Nov 2003 01:46:54 -0800 (PST) (envelope-from phk) Message-Id: <200311120946.hAC9ksU3065651@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 12 Nov 2003 01:46:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_ccd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 09:46:55 -0000 phk 2003/11/12 01:46:54 PST FreeBSD src repository Modified files: sys/geom geom_ccd.c Log: Make sure to return errors if we have any. Submitted by: Pawel Jakub Dawidek Revision Changes Path 1.148 +1 -1 src/sys/geom/geom_ccd.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 01:52:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C40A116A4CE; Wed, 12 Nov 2003 01:52:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 409B143F75; Wed, 12 Nov 2003 01:52:11 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC9qAXJ065911; Wed, 12 Nov 2003 01:52:11 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC9qA9o065910; Wed, 12 Nov 2003 01:52:10 -0800 (PST) (envelope-from phk) Message-Id: <200311120952.hAC9qA9o065910@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 12 Nov 2003 01:52:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/smbfs smbfs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 09:52:11 -0000 phk 2003/11/12 01:52:10 PST FreeBSD src repository Modified files: sys/fs/smbfs smbfs_vfsops.c Log: Don't mess about with spare fields in public structures. Revision Changes Path 1.22 +0 -1 src/sys/fs/smbfs/smbfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 01:54:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E234916A4CE; Wed, 12 Nov 2003 01:54:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E1C743FE9; Wed, 12 Nov 2003 01:54:08 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAC9s8XJ065996; Wed, 12 Nov 2003 01:54:08 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAC9s7Sx065995; Wed, 12 Nov 2003 01:54:07 -0800 (PST) (envelope-from phk) Message-Id: <200311120954.hAC9s7Sx065995@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 12 Nov 2003 01:54:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nwfs nwfs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 09:54:09 -0000 phk 2003/11/12 01:54:07 PST FreeBSD src repository Modified files: sys/fs/nwfs nwfs_vfsops.c Log: Don't mess around with spare fields of public structures. Revision Changes Path 1.31 +0 -1 src/sys/fs/nwfs/nwfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 02:19:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7EA616A4CE; Wed, 12 Nov 2003 02:19:41 -0800 (PST) Received: from ftp.bjpu.edu.cn (ftp.bjpu.edu.cn [202.112.78.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E4BC43FDD; Wed, 12 Nov 2003 02:19:40 -0800 (PST) (envelope-from delphij@frontfree.net) Received: by ftp.bjpu.edu.cn (Postfix, from userid 426) id BE56652D3; Wed, 12 Nov 2003 18:19:38 +0800 (CST) Received: from srv (unknown [202.112.73.151]) by ftp.bjpu.edu.cn (Postfix) with ESMTP id 6DE515299; Wed, 12 Nov 2003 18:19:38 +0800 (CST) From: "=?gb2312?B?WGluIExJL8Du9s4=?=" To: "'Johan Karlsson'" , "'Kirk McKusick'" Date: Wed, 12 Nov 2003 18:19:39 +0800 Organization: Frontfree Technology Network MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 In-Reply-To: <20031112083530.GB61125@numeri.campus.luth.se> Thread-Index: AcOo+BmEcOKiVOCISxWaKEObk2qBRQADfZYw X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 Message-Id: <20031112101938.6DE515299@ftp.bjpu.edu.cn> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/bin/df df.c src/sys/kern syscalls.mastervfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.hsrc/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 10:19:42 -0000 Is it possible to commit this patch? This will also convert several leading spaces to tabs, which makes the file more consistent. Xin LI, Frontfree Technology Network, School of Computer Science, Beijing University of Technology --- UPDATING.orig Wed Nov 12 18:09:36 2003 +++ UPDATING Wed Nov 12 18:11:07 2003 @@ -18,15 +18,25 @@ to maximize performance. 20031112: - Some netgraph string length constants have been changed. This - change requires the netgraph kernel modules and all netgraph - userland components to be in sync. Especially users who require - netgraph to boot need to make sure to have world and kernel in - sync before rebooting. + The statfs structure has been updated with 64-bit fields to allow + accurate reporting of multi-terabyte filesystem sizes. You should + build and boot a new kernel BEFORE doing a `make world' as the new + kernel will know about binaries using the old statfs structure, + but an old kernel will not know about the new system calls that + support the new statfs structure. Running an old kernel after a + `make world' will cause programs such as `df' that do a statfs + system call to fail with a bad system call. + +20031112: + Some netgraph string length constants have been changed. This + change requires the netgraph kernel modules and all netgraph + userland components to be in sync. Especially users who require + netgraph to boot need to make sure to have world and kernel in + sync before rebooting. 20031103: The i386 APIC_IO kernel option has been replaced by - 'device apic'. The ACPI module has also been temporarily + 'device apic'. The ACPI module has also been temporarily disabled, so ACPI must be statically compiled into your kernel using 'device acpi' if you wish to use the ACPI driver. -----Original Message----- From: owner-cvs-all@freebsd.org [mailto:owner-cvs-all@freebsd.org] On Behalf Of Johan Karlsson Sent: Wednesday, November 12, 2003 4:36 PM To: Kirk McKusick Cc: cvs-src@FreeBSD.org; src-committers@FreeBSD.org; cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.mastervfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.hsrc/sys/ufs/ffs ffs_vfsops.c Hi On Wed, Nov 12, 2003 at 00:01 (-0800) +0000, Kirk McKusick wrote: > mckusick 2003/11/12 00:01:40 PST > > FreeBSD src repository > > Modified files: > bin/df df.c > sys/kern syscalls.master vfs_bio.c vfs_cluster.c > vfs_syscalls.c > sys/sys mount.h > sys/ufs/ffs ffs_vfsops.c > Log: > Update the statfs structure with 64-bit fields to allow > accurate reporting of multi-terabyte filesystem sizes. > > You should build and boot a new kernel BEFORE doing a `make world' > as the new kernel will know about binaries using the old statfs > structure, but an old kernel will not know about the new system > calls that support the new statfs structure. Running an old kernel > after a `make world' will cause programs such as `df' that do a > statfs system call to fail with a bad system call. Can you also make a note in src/UPDATING as weel, please. /Johan K From owner-cvs-src@FreeBSD.ORG Wed Nov 12 02:27:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED93516A4CE; Wed, 12 Nov 2003 02:27:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6516A43FBF; Wed, 12 Nov 2003 02:27:07 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACAR7XJ068120; Wed, 12 Nov 2003 02:27:07 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACAR7d9068119; Wed, 12 Nov 2003 02:27:07 -0800 (PST) (envelope-from phk) Message-Id: <200311121027.hACAR7d9068119@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 12 Nov 2003 02:27:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_bio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 10:27:08 -0000 phk 2003/11/12 02:27:07 PST FreeBSD src repository Modified files: sys/kern vfs_bio.c Log: Replace B_PHYS conditional assignment to bio_offset with KASSERT check to see that the originating code already did it right. Revision Changes Path 1.423 +7 -2 src/sys/kern/vfs_bio.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 02:53:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 862B016A4CE; Wed, 12 Nov 2003 02:53:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0200243F3F; Wed, 12 Nov 2003 02:53:53 -0800 (PST) (envelope-from fanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACArqXJ069139; Wed, 12 Nov 2003 02:53:52 -0800 (PST) (envelope-from fanf@repoman.freebsd.org) Received: (from fanf@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACArqE1069138; Wed, 12 Nov 2003 02:53:52 -0800 (PST) (envelope-from fanf) Message-Id: <200311121053.hACArqE1069138@repoman.freebsd.org> From: Tony Finch Date: Wed, 12 Nov 2003 02:53:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 style.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 10:53:53 -0000 fanf 2003/11/12 02:53:52 PST FreeBSD src repository Modified files: share/man/man9 style.9 Log: Better English usage. Submitted by: wollman Revision Changes Path 1.105 +1 -1 src/share/man/man9/style.9 From owner-cvs-src@FreeBSD.ORG Wed Nov 12 04:58:20 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4038416A4CE; Wed, 12 Nov 2003 04:58:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B40C243FA3; Wed, 12 Nov 2003 04:58:19 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACCwJXJ081748; Wed, 12 Nov 2003 04:58:19 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACCwJaB081747; Wed, 12 Nov 2003 04:58:19 -0800 (PST) (envelope-from ru) Message-Id: <200311121258.hACCwJaB081747@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 12 Nov 2003 04:58:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_vlan.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 12:58:20 -0000 ru 2003/11/12 04:58:19 PST FreeBSD src repository Modified files: sys/net if_vlan.c Log: - vlan_start(): Increment the correct interface statistics member. Reviewed by: mdodd - vlan_input(): Macroize the VLAN tag extraction from mbuf. Revision Changes Path 1.55 +3 -3 src/sys/net/if_vlan.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 05:04:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6EDD16A4CE; Wed, 12 Nov 2003 05:04:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4102543F93; Wed, 12 Nov 2003 05:04:45 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACD4jXJ082892; Wed, 12 Nov 2003 05:04:45 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACD4iNv082890; Wed, 12 Nov 2003 05:04:44 -0800 (PST) (envelope-from harti) Message-Id: <200311121304.hACD4iNv082890@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 12 Nov 2003 05:04:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ngctl list.c main.c msg.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 13:04:46 -0000 X-List-Received-Date: Wed, 12 Nov 2003 13:04:46 -0000 harti 2003/11/12 05:04:44 PST FreeBSD src repository Modified files: usr.sbin/ngctl list.c main.c msg.c Log: Get rid of the old constants which did not include the trailing NUL and use the new constants which do. Revision Changes Path 1.3 +2 -2 src/usr.sbin/ngctl/list.c 1.12 +2 -2 src/usr.sbin/ngctl/main.c 1.4 +2 -2 src/usr.sbin/ngctl/msg.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 05:05:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A316716A4CF; Wed, 12 Nov 2003 05:05:13 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3E7E43FE5; Wed, 12 Nov 2003 05:05:09 -0800 (PST) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) hACD56sw086083 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 12 Nov 2003 15:05:07 +0200 (EET) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9p2/8.12.9/Submit) id hACD56oD086078; Wed, 12 Nov 2003 15:05:06 +0200 (EET) (envelope-from ru) Date: Wed, 12 Nov 2003 15:05:06 +0200 From: Ruslan Ermilov To: Hartmut Brandt , Julian Elischer , Archie Cobbs Message-ID: <20031112130506.GA84379@sunbay.com> References: <200311120910.hAC9AB3W064131@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline In-Reply-To: <200311120910.hAC9AB3W064131@repoman.freebsd.org> User-Agent: Mutt/1.5.5.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netgraph netgraph.h ng_message.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 13:05:13 -0000 --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Nov 12, 2003 at 01:10:11AM -0800, Hartmut Brandt wrote: > harti 2003/11/12 01:10:11 PST >=20 > FreeBSD src repository >=20 > Modified files: > sys/netgraph netgraph.h ng_message.h=20 > Log: > Double length of node names, hook names, command strings and types. Add > defines for these constants that include the trailing NUL byte. These > new constants have SIZ in their name instead of LEN. As soon as all > consumers in the tree are converted to use the new defines the old > defines will be put under BURN_BRIDGES. > =20 > Reviewed by: archie, julian, ru > Approved by: re (in principle) > =20 > Revision Changes Path > 1.37 +1 -1 src/sys/netgraph/netgraph.h > 1.20 +15 -5 src/sys/netgraph/ng_message.h >=20 The netgraph(4) manpage, while seriously out-of-date, has a mention of at least NG_CMDSTRLEN, still with the value of 15. Could you please increment it? Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --k+w/mQv8wyuph6w0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/sjACUkv4P6juNwoRAhygAJ9ly+3FhOlcgPzy+AaNljU50T0dQgCfTHVg oUhbjkYrm2q7AdWD0iJnVmg= =OxOz -----END PGP SIGNATURE----- --k+w/mQv8wyuph6w0-- From owner-cvs-src@FreeBSD.ORG Wed Nov 12 05:24:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30CF816A4CE; Wed, 12 Nov 2003 05:24:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A02FB43F3F; Wed, 12 Nov 2003 05:24:03 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACDO3XJ083595; Wed, 12 Nov 2003 05:24:03 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACDO3F0083594; Wed, 12 Nov 2003 05:24:03 -0800 (PST) (envelope-from harti) Message-Id: <200311121324.hACDO3F0083594@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 12 Nov 2003 05:24:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 netgraph.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 13:24:04 -0000 harti 2003/11/12 05:24:03 PST FreeBSD src repository Modified files: share/man/man4 netgraph.4 Log: Document that the length of a command string is now 32. Also change all occurences of the old *LEN definitions to the new *SIZ definitions. Correct the example how to compare a nodename. strncmp(name, "fred", NG_NODELEN) may step behind "fred" if the node name is really fred. Reminded by: ru Revision Changes Path 1.43 +6 -6 src/share/man/man4/netgraph.4 From owner-cvs-src@FreeBSD.ORG Wed Nov 12 05:27:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59A4B16A4CE; Wed, 12 Nov 2003 05:27:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBED343FBF; Wed, 12 Nov 2003 05:27:43 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACDRhXJ083726; Wed, 12 Nov 2003 05:27:43 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACDRhMU083725; Wed, 12 Nov 2003 05:27:43 -0800 (PST) (envelope-from ru) Message-Id: <200311121327.hACDRhMU083725@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 12 Nov 2003 05:27:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/netgraph ng_etf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 13:27:44 -0000 ru 2003/11/12 05:27:43 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/netgraph ng_etf.c Log: Properly shutdown the node (don't panic). Revision Changes Path 1.1.2.3 +3 -0 src/sys/netgraph/ng_etf.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 06:13:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E7C716A4CF; Wed, 12 Nov 2003 06:13:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B68243F3F; Wed, 12 Nov 2003 06:13:37 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACEDaXJ086559; Wed, 12 Nov 2003 06:13:36 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACEDa7f086558; Wed, 12 Nov 2003 06:13:36 -0800 (PST) (envelope-from simon) Message-Id: <200311121413.hACEDa7f086558@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Wed, 12 Nov 2003 06:13:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 dc.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 14:13:37 -0000 simon 2003/11/12 06:13:36 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 dc.4 Log: Sync the list of supported devices in the manual page with the hardware notes and the driver source. Revision Changes Path 1.23 +18 -3 src/share/man/man4/dc.4 From owner-cvs-src@FreeBSD.ORG Wed Nov 12 06:20:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B93D16A4CE; Wed, 12 Nov 2003 06:20:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7CAC43FDD; Wed, 12 Nov 2003 06:20:16 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACEKGXJ086765; Wed, 12 Nov 2003 06:20:16 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACEKGRj086764; Wed, 12 Nov 2003 06:20:16 -0800 (PST) (envelope-from ru) Message-Id: <200311121420.hACEKGRj086764@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 12 Nov 2003 06:20:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/syscons/keymaps ru.koi8-r.kbd ru.koi8-r.shift.kbd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 14:20:17 -0000 ru 2003/11/12 06:20:16 PST FreeBSD src repository Modified files: (Branch: RELENG_4) share/syscons/keymaps ru.koi8-r.kbd ru.koi8-r.shift.kbd Log: MFC: Shift+PrintScr - prev. screen. Revision Changes Path 1.12.2.2 +3 -3 src/share/syscons/keymaps/ru.koi8-r.kbd 1.11.2.2 +3 -3 src/share/syscons/keymaps/ru.koi8-r.shift.kbd From owner-cvs-src@FreeBSD.ORG Wed Nov 12 06:55:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE7C616A4CE; Wed, 12 Nov 2003 06:55:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CF8A43FD7; Wed, 12 Nov 2003 06:55:46 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACEtjXJ088292; Wed, 12 Nov 2003 06:55:45 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACEtj8r088291; Wed, 12 Nov 2003 06:55:45 -0800 (PST) (envelope-from jhb) Message-Id: <200311121455.hACEtj8r088291@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 06:55:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_turnstile.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 14:55:47 -0000 jhb 2003/11/12 06:55:45 PST FreeBSD src repository Modified files: sys/kern subr_turnstile.c Log: Fix a typo in a comment. Submitted by: das Revision Changes Path 1.133 +1 -1 src/sys/kern/subr_turnstile.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 07:07:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B951016A4CE; Wed, 12 Nov 2003 07:07:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AF6443F93; Wed, 12 Nov 2003 07:07:19 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACF7IXJ089783; Wed, 12 Nov 2003 07:07:18 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACF7I55089780; Wed, 12 Nov 2003 07:07:18 -0800 (PST) (envelope-from bde) Message-Id: <200311121507.hACF7I55089780@repoman.freebsd.org> From: Bruce Evans Date: Wed, 12 Nov 2003 07:07:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys ucred.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 15:07:19 -0000 bde 2003/11/12 07:07:18 PST FreeBSD src repository Modified files: sys/sys ucred.h Log: Fixed some style bugs (insertion sort error and extra blank line). Revision Changes Path 1.48 +3 -4 src/sys/sys/ucred.h From owner-cvs-src@FreeBSD.ORG Wed Nov 12 07:09:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF31216A4CE; Wed, 12 Nov 2003 07:09:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41D4E43FF5; Wed, 12 Nov 2003 07:09:40 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACF9dXJ089970; Wed, 12 Nov 2003 07:09:39 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACF9d2i089969; Wed, 12 Nov 2003 07:09:39 -0800 (PST) (envelope-from rwatson) Message-Id: <200311121509.hACF9d2i089969@repoman.freebsd.org> From: Robert Watson Date: Wed, 12 Nov 2003 07:09:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac_biba mac_biba.csrc/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 15:09:41 -0000 rwatson 2003/11/12 07:09:39 PST FreeBSD src repository Modified files: sys/security/mac_biba mac_biba.c sys/security/mac_mls mac_mls.c Log: Remove extraneous fullpath variable, which broke lint build. This extra argument to the devfs MAC policy entry points was accidentally merged from the MAC branch during my earlier commit to these policies, and is not scheduled to be merged just yet. Revision Changes Path 1.67 +1 -1 src/sys/security/mac_biba/mac_biba.c 1.54 +1 -1 src/sys/security/mac_mls/mac_mls.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 08:23:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C207016A4CE; Wed, 12 Nov 2003 08:23:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ED2543F75; Wed, 12 Nov 2003 08:23:22 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACGNMXJ094023; Wed, 12 Nov 2003 08:23:22 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACGNLWn094022; Wed, 12 Nov 2003 08:23:21 -0800 (PST) (envelope-from jhb) Message-Id: <200311121623.hACGNLWn094022@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 08:23:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdInterrupt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 16:23:22 -0000 jhb 2003/11/12 08:23:21 PST FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdInterrupt.c Log: Add an ACPI_FUNCTION_TRACE() invocation to acpi_OverrideInterruptLevel() to fix compile with ACPI_DEBUG. Reported by: tinderbox Revision Changes Path 1.14 +2 -0 src/sys/dev/acpica/Osd/OsdInterrupt.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 08:24:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F0B916A4CE; Wed, 12 Nov 2003 08:24:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D7D43F75; Wed, 12 Nov 2003 08:24:17 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACGOHXJ094073; Wed, 12 Nov 2003 08:24:17 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACGOGGp094072; Wed, 12 Nov 2003 08:24:16 -0800 (PST) (envelope-from jhb) Message-Id: <200311121624.hACGOGGp094072@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 08:24:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdInterrupt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 16:24:18 -0000 jhb 2003/11/12 08:24:16 PST FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdInterrupt.c Log: Reindent to non-style(9) compliant 4 space indent to match rest of file. Revision Changes Path 1.15 +4 -4 src/sys/dev/acpica/Osd/OsdInterrupt.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:00:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 251A016A4D2 for ; Wed, 12 Nov 2003 09:00:39 -0800 (PST) Received: from mail.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id E669E43FD7 for ; Wed, 12 Nov 2003 09:00:32 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 22697 invoked from network); 12 Nov 2003 17:00:31 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 12 Nov 2003 17:00:31 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hACH02ce026083; Wed, 12 Nov 2003 12:00:02 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20031112084150.GU1127@starjuice.net> Date: Wed, 12 Nov 2003 12:00:00 -0500 (EST) From: John Baldwin To: Sheldon Hearn X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 mp_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:00:39 -0000 On 12-Nov-2003 Sheldon Hearn wrote: > On (2003/11/11 09:16), John Baldwin wrote: > >> FreeBSD src repository >> >> Modified files: >> sys/i386/i386 mp_machdep.c >> Log: >> Enable HTT CPUs by default instead of halting them by default. Users >> should now only have HTT CPUs if they have explicitly asked for them >> either by enabling HyperThreading in the BIOS or by using the >> MPTABLE_FORCE_HTT kernel option. > > So now a GENERIC kernel will listen to the BIOS with respect to HTT > support, without any intervention required from the administrator? > > That's great, thanks. Yes. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:03:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D9D016A4CE; Wed, 12 Nov 2003 09:03:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CFEA43FAF; Wed, 12 Nov 2003 09:03:41 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACH3fXJ002099; Wed, 12 Nov 2003 09:03:41 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACH3e35002098; Wed, 12 Nov 2003 09:03:40 -0800 (PST) (envelope-from harti) Message-Id: <200311121703.hACH3e35002098@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 12 Nov 2003 09:03:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_message.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:03:52 -0000 harti 2003/11/12 09:03:40 PST FreeBSD src repository Modified files: sys/netgraph ng_message.h Log: Bump the netgraph header version to 6 for the change of the name length definitions. Reminded by: jdp Revision Changes Path 1.21 +1 -1 src/sys/netgraph/ng_message.h From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:09:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E95916A4CE; Wed, 12 Nov 2003 09:09:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CE4343FE5; Wed, 12 Nov 2003 09:09:13 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACH9CXJ002377; Wed, 12 Nov 2003 09:09:12 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACH9C8W002369; Wed, 12 Nov 2003 09:09:12 -0800 (PST) (envelope-from peter) Message-Id: <200311121709.hACH9C8W002369@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Nov 2003 09:09:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:09:15 -0000 peter 2003/11/12 09:09:12 PST FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: MNAMELEN is back to an int again after Kirk's statfs commit kern/vfs_mount.c:1305: warning: signed size_t format, different type arg (arg 4) *** Error code 1 Revision Changes Path 1.114 +1 -1 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:09:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CB3E16A4D0; Wed, 12 Nov 2003 09:09:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA83A43FF5; Wed, 12 Nov 2003 09:09:13 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACH9DXJ002402; Wed, 12 Nov 2003 09:09:13 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACH9DlJ002401; Wed, 12 Nov 2003 09:09:13 -0800 (PST) (envelope-from harti) Message-Id: <200311121709.hACH9DlJ002401@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 12 Nov 2003 09:09:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 src/lib Makefile src/lib/libbsnmp/modules/snmp_netgraph Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:09:15 -0000 harti 2003/11/12 09:09:13 PST FreeBSD src repository Modified files: . Makefile.inc1 lib Makefile lib/libbsnmp/modules/snmp_netgraph Makefile Log: The snmp_netgraph module depends on libnetgraph. So add a dependency and add libnetgraph to the list of prebuilt libraries in the main Makefile. Reviewed by: ru Revision Changes Path 1.396 +2 -2 src/Makefile.inc1 1.176 +4 -3 src/lib/Makefile 1.3 +3 -0 src/lib/libbsnmp/modules/snmp_netgraph/Makefile From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:22:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 754AA16A4CE; Wed, 12 Nov 2003 09:22:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7975843FF7; Wed, 12 Nov 2003 09:21:57 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACHLvXJ003173; Wed, 12 Nov 2003 09:21:57 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACHLv9b003172; Wed, 12 Nov 2003 09:21:57 -0800 (PST) (envelope-from jhb) Message-Id: <200311121721.hACHLv9b003172@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 09:21:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac_test mac_test.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:22:03 -0000 jhb 2003/11/12 09:21:57 PST FreeBSD src repository Modified files: sys/security/mac_test mac_test.c Log: Remove extraneous & to fix compile. Revision Changes Path 1.33 +1 -1 src/sys/security/mac_test/mac_test.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:27:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0EB016A4D0 for ; Wed, 12 Nov 2003 09:27:17 -0800 (PST) Received: from smtp.mho.com (smtp.mho.net [64.58.4.6]) by mx1.FreeBSD.org (Postfix) with SMTP id 00ADF43FDD for ; Wed, 12 Nov 2003 09:27:15 -0800 (PST) (envelope-from scottl@freebsd.org) Received: (qmail 4050 invoked by uid 1002); 12 Nov 2003 17:27:14 -0000 Received: from unknown (HELO ?10.4.1.5?) (64.58.1.252) by smtp.mho.net with SMTP; 12 Nov 2003 17:27:14 -0000 Date: Wed, 12 Nov 2003 10:28:59 -0700 (MST) From: Scott Long X-X-Sender: scottl@pooker.samsco.home To: Kirk McKusick In-Reply-To: <200311120801.hAC81ea1053948@repoman.freebsd.org> Message-ID: <20031112102742.E3170@pooker.samsco.home> References: <200311120801.hAC81ea1053948@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.mastervfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:27:18 -0000 On Wed, 12 Nov 2003, Kirk McKusick wrote:> mckusick 2003/11/12 00:01:40 PST > > FreeBSD src repository > > Modified files: > bin/df df.c > sys/kern syscalls.master vfs_bio.c vfs_cluster.c > vfs_syscalls.c > sys/sys mount.h > sys/ufs/ffs ffs_vfsops.c > Log: > Update the statfs structure with 64-bit fields to allow > accurate reporting of multi-terabyte filesystem sizes. > > You should build and boot a new kernel BEFORE doing a `make world' > as the new kernel will know about binaries using the old statfs > structure, but an old kernel will not know about the new system > calls that support the new statfs structure. Running an old kernel > after a `make world' will cause programs such as `df' that do a > statfs system call to fail with a bad system call. > Kirk, Thanks a lot for getting this in. Can you send a HEADS-UP email to the lists (freebsd-current especially) just to make sure people understand the implications? Thanks, Scott From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:31:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91E3C16A4CE; Wed, 12 Nov 2003 09:31:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 124D443FBD; Wed, 12 Nov 2003 09:31:23 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACHVMXJ003726; Wed, 12 Nov 2003 09:31:22 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACHVM7S003725; Wed, 12 Nov 2003 09:31:22 -0800 (PST) (envelope-from sam) Message-Id: <200311121731.hACHVM7S003725@repoman.freebsd.org> From: Sam Leffler Date: Wed, 12 Nov 2003 09:31:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:31:23 -0000 sam 2003/11/12 09:31:22 PST FreeBSD src repository Modified files: . access Log: Add Andre Oppermann as a new committer. He'll be working initially on getting his routing changes committed. Approved by: core Revision Changes Path 1.619 +1 -0 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:44:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5116116A4CE; Wed, 12 Nov 2003 09:44:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86D5343FF2; Wed, 12 Nov 2003 09:44:37 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACHibXJ004273; Wed, 12 Nov 2003 09:44:37 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACHibpr004272; Wed, 12 Nov 2003 09:44:37 -0800 (PST) (envelope-from marcel) Message-Id: <200311121744.hACHibpr004272@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 12 Nov 2003 09:44:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libdisk create_chunk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:44:38 -0000 marcel 2003/11/12 09:44:37 PST FreeBSD src repository Modified files: lib/libdisk create_chunk.c Log: The partition naming on ia64 (e.g. da0p1) cannot be selected based on whether the parent chunk is of type whole. This also applies to MBR slices for non-GPT disks. Since most of the GPT handling is conditionally compiled, do the same with the partition naming. This fixes a braino that caused slices to be named as GPT partitions and generally messing up an install. Pointy hat: marcel Revision Changes Path 1.83 +4 -0 src/lib/libdisk/create_chunk.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:47:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8985416A4CE; Wed, 12 Nov 2003 09:47:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F257343FE1; Wed, 12 Nov 2003 09:47:23 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACHlNXJ004409; Wed, 12 Nov 2003 09:47:23 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACHlN20004408; Wed, 12 Nov 2003 09:47:23 -0800 (PST) (envelope-from sobomax) Message-Id: <200311121747.hACHlN20004408@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 12 Nov 2003 09:47:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/modules/pam_radius pam_radius.8 pam_radius.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:47:24 -0000 sobomax 2003/11/12 09:47:23 PST FreeBSD src repository Modified files: lib/libpam/modules/pam_radius pam_radius.8 pam_radius.c Log: Add a new configuration variable - nas_ipaddr, which if set allows to set NAS-IP-Address attribute in requests generated by the pam_radius module. This attribute is mandatory for some Radius servers out there. Reviewed by: des MFC after: 2 weeks Revision Changes Path 1.14 +4 -0 src/lib/libpam/modules/pam_radius/pam_radius.8 1.18 +43 -8 src/lib/libpam/modules/pam_radius/pam_radius.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 09:50:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96F4516A4CE; Wed, 12 Nov 2003 09:50:02 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CE8F43FD7; Wed, 12 Nov 2003 09:50:01 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.9p2/8.12.9) with ESMTP id hACHmBMg091794; Wed, 12 Nov 2003 12:48:11 -0500 (EST) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)hACHmBcR091791; Wed, 12 Nov 2003 12:48:11 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 12 Nov 2003 12:48:11 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: John Baldwin In-Reply-To: <200311121721.hACHLv9b003172@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/security/mac_test mac_test.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 17:50:02 -0000 On Wed, 12 Nov 2003, John Baldwin wrote: > jhb 2003/11/12 09:21:57 PST > > FreeBSD src repository > > Modified files: > sys/security/mac_test mac_test.c > Log: > Remove extraneous & to fix compile. Sigh. A mismerge, it's correct in the MAC branch, and didn't turn up in my test compile because I built the modules, and assertions don't get compiled into modules. LINT currently doesn't build very far for me due to an ACPI problem. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories From owner-cvs-src@FreeBSD.ORG Wed Nov 12 10:13:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB2AC16A4CE; Wed, 12 Nov 2003 10:13:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3305943FE1; Wed, 12 Nov 2003 10:13:58 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACIDwXJ006464; Wed, 12 Nov 2003 10:13:58 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACIDviA006463; Wed, 12 Nov 2003 10:13:57 -0800 (PST) (envelope-from jhb) Message-Id: <200311121813.hACIDviA006463@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 10:13:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 apic_vector.s intr_machdep.c io_apic.c local_apic.c mp_machdep.c src/sys/i386/include apicvar.h clock.h src/sys/i386/isa atpic.c atpic_vector.s icu.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 18:13:58 -0000 jhb 2003/11/12 10:13:57 PST FreeBSD src repository Modified files: sys/i386/i386 apic_vector.s intr_machdep.c io_apic.c local_apic.c mp_machdep.c sys/i386/include apicvar.h clock.h sys/i386/isa atpic.c atpic_vector.s icu.h Log: - Move manipulation of td_intr_nesting_level out of assembly interrupt vector stubs and into the C functions they call. - Move disabling and EOIing of interrupt sources out of PIC driver entry points and into intr_execute_handlers(). Intr_execute_handlers() only disables a source for an interrupt if it is a stray interrupt or has threaded handlers. Sources with fast handlers no longer disable (mask) the source while executing the handlers. - Move the setting of clkintr_pending into intr_execute_handlers() and set the variable for any interrupt source with a vector of 0. (Should only be true for IRQ 0.) This fixes clkintr_pending in the NO_MIXED_MODE case. - Implement lapic_eoi() and use it to implement ioapic_eoi_source(). - Rename atpic_sched_ithd() to atpic_handle_intr() since it is used to handle all atpic interrupts and not just threaded ones. Inspired by: peter's changes to amd64 in p4 (1) Requested by: bde (2) Revision Changes Path 1.92 +0 -9 src/sys/i386/i386/apic_vector.s 1.2 +35 -13 src/sys/i386/i386/intr_machdep.c 1.6 +1 -2 src/sys/i386/i386/io_apic.c 1.2 +7 -2 src/sys/i386/i386/local_apic.c 1.224 +8 -0 src/sys/i386/i386/mp_machdep.c 1.2 +1 -0 src/sys/i386/include/apicvar.h 1.49 +1 -0 src/sys/i386/include/clock.h 1.3 +5 -1 src/sys/i386/isa/atpic.c 1.39 +18 -71 src/sys/i386/isa/atpic_vector.s 1.29 +1 -1 src/sys/i386/isa/icu.h From owner-cvs-src@FreeBSD.ORG Wed Nov 12 10:14:42 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6CFC16A4CF; Wed, 12 Nov 2003 10:14:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 121B744005; Wed, 12 Nov 2003 10:14:35 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACIEYXJ006508; Wed, 12 Nov 2003 10:14:34 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACIEYWA006507; Wed, 12 Nov 2003 10:14:34 -0800 (PST) (envelope-from jhb) Message-Id: <200311121814.hACIEYWA006507@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 10:14:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 genassym.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 18:14:42 -0000 jhb 2003/11/12 10:14:34 PST FreeBSD src repository Modified files: sys/i386/i386 genassym.c Log: Garbage collect unused values. Revision Changes Path 1.146 +0 -2 src/sys/i386/i386/genassym.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 10:57:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEB8F16A4CE; Wed, 12 Nov 2003 10:57:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25A7D43FA3; Wed, 12 Nov 2003 10:57:00 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACIuxXJ008511; Wed, 12 Nov 2003 10:56:59 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACIuxtr008510; Wed, 12 Nov 2003 10:56:59 -0800 (PST) (envelope-from ume) Message-Id: <200311121856.hACIuxtr008510@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 12 Nov 2003 10:56:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/traceroute6 traceroute6.8 traceroute6.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 18:57:00 -0000 ume 2003/11/12 10:56:59 PST FreeBSD src repository Modified files: usr.sbin/traceroute6 traceroute6.8 traceroute6.c Log: - setsockopt/sysctl takes int, not u_long. - be more picky about argument parsing - like ERANGE. - use u_long for args, not to lose accuracy/prevent overflow. - socklen_t audit. - Add -I (use icmp) option. - warn if multiple addresses are present for dest. - no need to pass tz. - type pedant. check -p range. - grab hlim from sysctl. - typo in port number setting. Obtained from: KAME Revision Changes Path 1.10 +12 -8 src/usr.sbin/traceroute6/traceroute6.8 1.15 +137 -82 src/usr.sbin/traceroute6/traceroute6.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 11:13:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E520216A4CE; Wed, 12 Nov 2003 11:13:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B8C43F75; Wed, 12 Nov 2003 11:13:03 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACJD3XJ010008; Wed, 12 Nov 2003 11:13:03 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACJD3Dn010007; Wed, 12 Nov 2003 11:13:03 -0800 (PST) (envelope-from mckusick) Message-Id: <200311121913.hACJD3Dn010007@repoman.freebsd.org> From: Kirk McKusick Date: Wed, 12 Nov 2003 11:13:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 19:13:04 -0000 mckusick 2003/11/12 11:13:03 PST FreeBSD src repository Modified files: . UPDATING Log: Add an entry about the changes in the statfs structure that require kernel and user land applications doing statfs to be in sync. Requested by: Johan Karlsson Revision Changes Path 1.278 +16 -6 src/UPDATING From owner-cvs-src@FreeBSD.ORG Wed Nov 12 11:16:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 96F5B16A4CE; Wed, 12 Nov 2003 11:16:08 -0800 (PST) Received: from green.bikeshed.org (localhost [127.0.0.1]) by green.bikeshed.org (8.12.10/8.12.9) with ESMTP id hACJG7cR002158; Wed, 12 Nov 2003 14:16:07 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost)hACJG7ok002154; Wed, 12 Nov 2003 14:16:07 -0500 (EST) Message-Id: <200311121916.hACJG7ok002154@green.bikeshed.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Scott Long In-Reply-To: Message from Scott Long <20031112102742.E3170@pooker.samsco.home> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 12 Nov 2003 14:16:07 -0500 Sender: green@green.bikeshed.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Kirk McKusick Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 19:16:09 -0000 Scott Long wrote: > On Wed, 12 Nov 2003, Kirk McKusick wrote:> mckusick 2003/11/12 00:01:40 PST > > > > FreeBSD src repository > > > > Modified files: > > bin/df df.c > > sys/kern syscalls.master vfs_bio.c vfs_cluster.c > > vfs_syscalls.c > > sys/sys mount.h > > sys/ufs/ffs ffs_vfsops.c > > Log: > > Update the statfs structure with 64-bit fields to allow > > accurate reporting of multi-terabyte filesystem sizes. > > > > You should build and boot a new kernel BEFORE doing a `make world' > > as the new kernel will know about binaries using the old statfs > > structure, but an old kernel will not know about the new system > > calls that support the new statfs structure. Running an old kernel > > after a `make world' will cause programs such as `df' that do a > > statfs system call to fail with a bad system call. > > > > Kirk, > > Thanks a lot for getting this in. Can you send a HEADS-UP email to the > lists (freebsd-current especially) just to make sure people understand the > implications? Does this mean someone may be free to write wrappers that block ENOSYS, execute statfs calls, and fall back to ostatfs calls (translating 64->32 bit values as best as possible, like the kernel does) returning the new statfs? Obviously, this would just be to add a safety window for the transition period and to be removed before a -RELEASE. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Wed Nov 12 11:38:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DA5416A4CE; Wed, 12 Nov 2003 11:38:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF40B43FE0; Wed, 12 Nov 2003 11:38:02 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACJc2XJ011085; Wed, 12 Nov 2003 11:38:02 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACJc2Mh011084; Wed, 12 Nov 2003 11:38:02 -0800 (PST) (envelope-from andre) Message-Id: <200311121938.hACJc2Mh011084@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 12 Nov 2003 11:38:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 19:38:03 -0000 andre 2003/11/12 11:38:02 PST FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: dropwithreset is not needed in this case as tcp_drop() is already notifying the other side. Before we were sending two RST packets. Revision Changes Path 1.214 +1 -1 src/sys/netinet/tcp_input.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 11:41:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76A8016A4CF for ; Wed, 12 Nov 2003 11:41:25 -0800 (PST) Received: from mailtoaster1.pipeline.ch (mailtoaster1.pipeline.ch [62.48.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id A039E43FAF for ; Wed, 12 Nov 2003 11:41:22 -0800 (PST) (envelope-from oppermann@pipeline.ch) Received: (qmail 19759 invoked from network); 12 Nov 2003 19:44:14 -0000 Received: from unknown (HELO pipeline.ch) ([62.48.0.53]) (envelope-sender ) by mailtoaster1.pipeline.ch (qmail-ldap-1.03) with SMTP for ; 12 Nov 2003 19:44:14 -0000 Message-ID: <3FB28CE1.41AB8B35@pipeline.ch> Date: Wed, 12 Nov 2003 20:41:21 +0100 From: Andre Oppermann X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org References: <200311121938.hACJc2Mh011084@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: 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.1 Precedence: 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, 12 Nov 2003 19:41:25 -0000 Andre Oppermann wrote: > > andre 2003/11/12 11:38:02 PST > > FreeBSD src repository > > Modified files: > sys/netinet tcp_input.c > Log: > dropwithreset is not needed in this case as tcp_drop() is already notifying > the other side. Before we were sending two RST packets. > > Revision Changes Path > 1.214 +1 -1 src/sys/netinet/tcp_input.c Uh-oh, first mistake, forgot: Approved by: sam (mentor) -- Andre From owner-cvs-src@FreeBSD.ORG Wed Nov 12 11:46:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7273D16A4CE; Wed, 12 Nov 2003 11:46:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3C0E43FBD; Wed, 12 Nov 2003 11:46:17 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACJkHXJ011520; Wed, 12 Nov 2003 11:46:17 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACJkH9U011519; Wed, 12 Nov 2003 11:46:17 -0800 (PST) (envelope-from jhb) Message-Id: <200311121946.hACJkH9U011519@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 11:46:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 19:46:18 -0000 jhb 2003/11/12 11:46:17 PST FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Fix some typos. Revision Changes Path 1.8 +3 -3 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 12:08:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 487E516A4CE; Wed, 12 Nov 2003 12:08:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B912E43FDF; Wed, 12 Nov 2003 12:08:48 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACK8mXJ013353; Wed, 12 Nov 2003 12:08:48 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACK8mWu013352; Wed, 12 Nov 2003 12:08:48 -0800 (PST) (envelope-from phk) Message-Id: <200311122008.hACK8mWu013352@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 12 Nov 2003 12:08:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/games/fortune/datfiles fortunes X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 20:08:49 -0000 phk 2003/11/12 12:08:48 PST FreeBSD src repository Modified files: games/fortune/datfiles fortunes Log: Add a card carryring member of the Pointless Comparison Collection. Revision Changes Path 1.120 +11 -0 src/games/fortune/datfiles/fortunes From owner-cvs-src@FreeBSD.ORG Wed Nov 12 12:17:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2A2716A4CE; Wed, 12 Nov 2003 12:17:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E58B43F85; Wed, 12 Nov 2003 12:17:12 -0800 (PST) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACKHCXJ013774; Wed, 12 Nov 2003 12:17:12 -0800 (PST) (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACKHCSE013773; Wed, 12 Nov 2003 12:17:12 -0800 (PST) (envelope-from bms) Message-Id: <200311122017.hACKHCSE013773@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 12 Nov 2003 12:17:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 20:17:12 -0000 bms 2003/11/12 12:17:12 PST FreeBSD src repository Modified files: sys/netinet udp_usrreq.c Log: Add a new sysctl knob, net.inet.udp.strict_mcast_mship, to the udp_input path. This switch toggles between strict multicast delivery, and traditional multicast delivery. The traditional (default) behaviour is to deliver multicast datagrams to all sockets which are members of that group, regardless of the network interface where the datagrams were received. The strict behaviour is to deliver multicast datagrams received on a particular interface only to sockets whose membership is bound to that interface. Note that as a matter of course, multicast consumers specifying INADDR_ANY for their interface get joined on the interface where the default route happens to be bound. This switch has no effect if the interface which the consumer specifies for IP_ADD_MEMBERSHIP is not UP and RUNNING. The original patch has been cleaned up somewhat from that submitted. It has been tested on a multihomed machine with multiple QuickTime RTP streams running over the local switch, which doesn't do IGMP snooping. PR: kern/58359 Submitted by: William A. Carrel Reviewed by: rwatson MFC after: 1 week Revision Changes Path 1.140 +28 -0 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 12:17:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E32916A4CE; Wed, 12 Nov 2003 12:17:50 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECEF743F3F; Wed, 12 Nov 2003 12:17:48 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.10/8.12.10) with ESMTP id hACKHltB038584; Wed, 12 Nov 2003 21:17:47 +0100 (CET) (envelope-from phk@phk.freebsd.dk) From: "Poul-Henning Kamp" In-Reply-To: Your message of "Wed, 12 Nov 2003 12:08:48 PST." <200311122008.hACK8mWu013352@repoman.freebsd.org> Date: Wed, 12 Nov 2003 21:17:47 +0100 Message-ID: <38583.1068668267@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 20:17:50 -0000 In message <200311122008.hACK8mWu013352@repoman.freebsd.org>, Poul-Henning Kamp writes: >phk 2003/11/12 12:08:48 PST > > FreeBSD src repository > > Modified files: > games/fortune/datfiles fortunes > Log: > Add a card carryring member of the Pointless Comparison Collection. Modern journalism seems to demand that any measurement or numeric quantity gets translated into "something people can relate to" before publication. Typical examples are that volumes are measured in "swiming pools" (sometimes qualified as "Olympic size"), area in football or baseball fields, heights in multiple of some randomly chosen tourist attraction, small angular sizes as how far away a randomly chosen small household item looks that size ("A golfball on the moon"). You get the idea. I generally think this is silly, but as long as the "real" numbers are given, I ignore it, but recently it seems that the actual numerical+unit quantity magnitude has been dispensed with entirely which I think is a great way to disenfranchise even more kids from science. Anyhow, every now and then somebody goes waaaaay too far, and this one triggered the creation of a new "section" in fortune(6): The Pointless Comparison Collection: To give you an idea of how sensitive these antennas are, if we were to "listen" to one spacecraft in the outer solar system by Jupiter or Saturn for 1 billion years and add up all the signal we collected, it would be enough power to set off the flash bulb on your camera once. (http://spaceflightnow.com/news/n0311/10dsn/) Feel free to add any similar rubbish you find. -- 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 Wed Nov 12 12:18:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13BD616A4CF; Wed, 12 Nov 2003 12:18:22 -0800 (PST) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C90143FA3; Wed, 12 Nov 2003 12:18:20 -0800 (PST) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) hACKIIeo085570; Wed, 12 Nov 2003 21:18:18 +0100 (CET) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.10/8.12.10/Submit) id hACKIIYk085569; Wed, 12 Nov 2003 21:18:18 +0100 (CET) (envelope-from k) Date: Wed, 12 Nov 2003 21:18:17 +0100 From: Johan Karlsson To: Kirk McKusick Message-ID: <20031112201817.GA80551@numeri.campus.luth.se> References: <200311121913.hACJD3Dn010007@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311121913.hACJD3Dn010007@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 20:18:22 -0000 Thanks On Wed, Nov 12, 2003 at 11:13 (-0800) +0000, Kirk McKusick wrote: > mckusick 2003/11/12 11:13:03 PST > > FreeBSD src repository > > Modified files: > . UPDATING > Log: > Add an entry about the changes in the statfs structure that require > kernel and user land applications doing statfs to be in sync. > > Requested by: Johan Karlsson > > Revision Changes Path > 1.278 +16 -6 src/UPDATING -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Nov 12 12:23:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 999A616A4CE; Wed, 12 Nov 2003 12:23:41 -0800 (PST) Received: from shaft.techsupport.co.uk (shaft.techsupport.co.uk [212.250.77.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8848043F85; Wed, 12 Nov 2003 12:23:40 -0800 (PST) (envelope-from setantae@submonkey.net) Received: from cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com ([81.103.67.204] helo=shrike.submonkey.net ident=mailnull) by shaft.techsupport.co.uk with esmtp (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1AK1Wd-000Mf7-05; Wed, 12 Nov 2003 20:23:39 +0000 Received: from setantae by shrike.submonkey.net with local (Exim 4.24; FreeBSD 4.9) id 1AK1Wa-000FoH-No; Wed, 12 Nov 2003 20:23:36 +0000 Date: Wed, 12 Nov 2003 20:23:36 +0000 From: Ceri Davies To: Poul-Henning Kamp Message-ID: <20031112202336.GL60410@submonkey.net> Mail-Followup-To: Ceri Davies , Poul-Henning Kamp , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311122008.hACK8mWu013352@repoman.freebsd.org> <38583.1068668267@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jho1yZJdad60DJr+" Content-Disposition: inline In-Reply-To: <38583.1068668267@critter.freebsd.dk> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.4i Sender: Ceri Davies cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/fortune/datfiles fortunes X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 20:23:41 -0000 --jho1yZJdad60DJr+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Nov 12, 2003 at 09:17:47PM +0100, Poul-Henning Kamp wrote: > In message <200311122008.hACK8mWu013352@repoman.freebsd.org>, Poul-Hennin= g Kamp > writes: > >phk 2003/11/12 12:08:48 PST > > > > FreeBSD src repository > > > > Modified files: > > games/fortune/datfiles fortunes=20 > > Log: > > Add a card carryring member of the Pointless Comparison Collection. >=20 > Modern journalism seems to demand that any measurement or numeric > quantity gets translated into "something people can relate to" > before publication. >=20 > Typical examples are that volumes are measured in "swiming pools" > (sometimes qualified as "Olympic size"), area in football or baseball > fields, heights in multiple of some randomly chosen tourist attraction, > small angular sizes as how far away a randomly chosen small household > item looks that size ("A golfball on the moon"). >=20 > You get the idea. http://abcnews.go.com/sections/wnt/SciTech/clouds_krulwich030902.html Ceri --=20 --jho1yZJdad60DJr+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/spbIocfcwTS3JF8RAq1TAJoDPJqMpaALYyiZNnw7VoJJf+JdZwCeOOKM cWMkwloRlJSDuOPensrFhKA= =rj2q -----END PGP SIGNATURE----- --jho1yZJdad60DJr+-- From owner-cvs-src@FreeBSD.ORG Wed Nov 12 12:56:33 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DF0516A4CF; Wed, 12 Nov 2003 12:56:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6046543FCB; Wed, 12 Nov 2003 12:56:32 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACKuWXJ020908; Wed, 12 Nov 2003 12:56:32 -0800 (PST) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACKuVQY020907; Wed, 12 Nov 2003 12:56:31 -0800 (PST) (envelope-from anholt) Message-Id: <200311122056.hACKuVQY020907@repoman.freebsd.org> From: Eric Anholt Date: Wed, 12 Nov 2003 12:56:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/drm drm.h drmP.h drm_bufs.h drm_drv.h drm_fops.h drm_ioctl.h drm_irq.h drm_os_freebsd.h mga_dma.c r128_cce.c radeon.h radeon_cp.c radeon_drm.h radeon_drv.h radeon_state.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 20:56:33 -0000 anholt 2003/11/12 12:56:31 PST FreeBSD src repository Modified files: sys/dev/drm drm.h drmP.h drm_bufs.h drm_drv.h drm_fops.h drm_ioctl.h drm_irq.h drm_os_freebsd.h mga_dma.c r128_cce.c radeon.h radeon_cp.c radeon_drm.h radeon_drv.h radeon_state.c Log: Update from DRI CVS. Includes locking fixes (including PR 59202), changes for Radeon IGP support (still lacking PCI IDs), and DRM interface 1.2 updates which include finally tying the DRM instances to specific devices rather than relying on the X Server. Revision Changes Path 1.6 +328 -137 src/sys/dev/drm/drm.h 1.8 +16 -4 src/sys/dev/drm/drmP.h 1.8 +10 -0 src/sys/dev/drm/drm_bufs.h 1.17 +22 -8 src/sys/dev/drm/drm_drv.h 1.10 +6 -2 src/sys/dev/drm/drm_fops.h 1.7 +31 -60 src/sys/dev/drm/drm_ioctl.h 1.2 +73 -46 src/sys/dev/drm/drm_irq.h 1.16 +6 -0 src/sys/dev/drm/drm_os_freebsd.h 1.9 +1 -1 src/sys/dev/drm/mga_dma.c 1.9 +1 -1 src/sys/dev/drm/r128_cce.c 1.7 +18 -3 src/sys/dev/drm/radeon.h 1.10 +21 -10 src/sys/dev/drm/radeon_cp.c 1.7 +15 -1 src/sys/dev/drm/radeon_drm.h 1.8 +5 -0 src/sys/dev/drm/radeon_drv.h 1.9 +281 -42 src/sys/dev/drm/radeon_state.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 13:07:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2788716A4CE; Wed, 12 Nov 2003 13:07:45 -0800 (PST) Received: from VARK.homeunix.com (adsl-68-123-40-77.dsl.pltn13.pacbell.net [68.123.40.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id B227543FCB; Wed, 12 Nov 2003 13:07:43 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from VARK.homeunix.com (localhost [127.0.0.1]) by VARK.homeunix.com (8.12.9/8.12.9) with ESMTP id hACL6Gen029708; Wed, 12 Nov 2003 13:06:16 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.homeunix.com (8.12.9/8.12.9/Submit) id hACL6F8t029707; Wed, 12 Nov 2003 13:06:15 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Wed, 12 Nov 2003 13:06:15 -0800 From: David Schultz To: Ceri Davies , Poul-Henning Kamp , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <20031112210615.GB29599@VARK.homeunix.com> Mail-Followup-To: Ceri Davies , Poul-Henning Kamp , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311122008.hACK8mWu013352@repoman.freebsd.org> <38583.1068668267@critter.freebsd.dk> <20031112202336.GL60410@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031112202336.GL60410@submonkey.net> Subject: Re: cvs commit: src/games/fortune/datfiles fortunes X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 21:07:45 -0000 On Wed, Nov 12, 2003, Ceri Davies wrote: > http://abcnews.go.com/sections/wnt/SciTech/clouds_krulwich030902.html Does this mean that the Disney movie ``Dumbo'' isn't so far-fetched after all? From owner-cvs-src@FreeBSD.ORG Wed Nov 12 13:39:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA70516A4CE; Wed, 12 Nov 2003 13:39:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 536C843FCB; Wed, 12 Nov 2003 13:39:13 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACLdDXJ023527; Wed, 12 Nov 2003 13:39:13 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACLdC8B023526; Wed, 12 Nov 2003 13:39:12 -0800 (PST) (envelope-from ume) Message-Id: <200311122139.hACLdC8B023526@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 12 Nov 2003 13:39:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 in6_src.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 21:39:14 -0000 ume 2003/11/12 13:39:12 PST FreeBSD src repository Modified files: sys/netinet6 in6_src.c Log: reflect ip6_pktopts and ip6_moptions into embeded scope of destination address. it makes `ping6 -I ' work again. since we don't merge scope cleanup yet, we need this for workaround. Revision Changes Path 1.23 +17 -3 src/sys/netinet6/in6_src.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 13:47:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F37C616A4CE; Wed, 12 Nov 2003 13:47:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7011943FA3; Wed, 12 Nov 2003 13:47:43 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACLlhXJ023925; Wed, 12 Nov 2003 13:47:43 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACLlhfZ023924; Wed, 12 Nov 2003 13:47:43 -0800 (PST) (envelope-from kris) Message-Id: <200311122147.hACLlhfZ023924@repoman.freebsd.org> From: Kris Kennaway Date: Wed, 12 Nov 2003 13:47:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/df df.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 21:47:44 -0000 kris 2003/11/12 13:47:43 PST FreeBSD src repository Modified files: bin/df df.c Log: Fix format strings (intmax_t is %jd, not %qd) Reviewed by: tjr Revision Changes Path 1.53 +2 -2 src/bin/df/df.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 13:56:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2421C16A4CE; Wed, 12 Nov 2003 13:56:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A1A944003; Wed, 12 Nov 2003 13:56:08 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACLu8XJ024316; Wed, 12 Nov 2003 13:56:08 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACLu7OR024315; Wed, 12 Nov 2003 13:56:07 -0800 (PST) (envelope-from rwatson) Message-Id: <200311122156.hACLu7OR024315@repoman.freebsd.org> From: Robert Watson Date: Wed, 12 Nov 2003 13:56:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libutil Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 21:56:09 -0000 rwatson 2003/11/12 13:56:07 PST FreeBSD src repository Modified files: lib/libutil Makefile Log: Bump the major version on libtuil. libutil now relies on the mac_* symbols exported by newer versions of libc, and so we want applications depending on the newer library code to be required to link against the newer libc. Discussed with: scottl, kris, imp Revision Changes Path 1.53 +1 -1 src/lib/libutil/Makefile From owner-cvs-src@FreeBSD.ORG Wed Nov 12 14:19:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D367A16A4E0; Wed, 12 Nov 2003 14:19:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AEAE43FCB; Wed, 12 Nov 2003 14:19:16 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACMJGXJ026602; Wed, 12 Nov 2003 14:19:16 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACMJG7t026601; Wed, 12 Nov 2003 14:19:16 -0800 (PST) (envelope-from rwatson) Message-Id: <200311122219.hACMJG7t026601@repoman.freebsd.org> From: Robert Watson Date: Wed, 12 Nov 2003 14:19:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_mac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 22:19:17 -0000 rwatson 2003/11/12 14:19:15 PST FreeBSD src repository Modified files: sys/kern kern_mac.c Log: Mark __mac_get_pid() as MPSAFE in the comment, as it runs without Giant and is also MPSAFE. Push Giant further down into __mac_get_fd() and __mac_set_fd(), grabbing it only for constrained regions dealing with VFS, and dropping it entirely for operations related to labeling of pipes. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.106 +15 -37 src/sys/kern/kern_mac.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 14:20:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41F1D16A4CE; Wed, 12 Nov 2003 14:20:02 -0800 (PST) Received: from beastie.mckusick.com (beastie.mckusick.com [209.31.233.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2626243FDF; Wed, 12 Nov 2003 14:19:59 -0800 (PST) (envelope-from mckusick@beastie.mckusick.com) Received: from beastie.mckusick.com (localhost [127.0.0.1]) by beastie.mckusick.com (8.12.8/8.12.3) with ESMTP id hACMJwaG007327; Wed, 12 Nov 2003 14:19:58 -0800 (PST) (envelope-from mckusick@beastie.mckusick.com) Message-Id: <200311122219.hACMJwaG007327@beastie.mckusick.com> To: "Brian F. Feldman" In-Reply-To: Your message of "Wed, 12 Nov 2003 14:16:07 EST." <200311121916.hACJG7ok002154@green.bikeshed.org> Date: Wed, 12 Nov 2003 14:19:58 -0800 From: Kirk McKusick cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 22:20:02 -0000 From: "Brian F. Feldman" Date: Wed, 12 Nov 2003 14:16:07 -0500 Sender: owner-src-committers@FreeBSD.org X-Loop: FreeBSD.ORG Does this mean someone may be free to write wrappers that block ENOSYS, execute statfs calls, and fall back to ostatfs calls (translating 64->32 bit values as best as possible, like the kernel does) returning the new statfs? Obviously, this would just be to add a safety window for the transition period and to be removed before a -RELEASE. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ The above would certainly be possible. If this were a more heavily used interface (like say stat), it would be a useful exercise. But I do not feel it is really necessary for statfs. However, I am not going to object if someone wants to go through the exercise of implementing your suggestion. Kirk McKusick From owner-cvs-src@FreeBSD.ORG Wed Nov 12 14:28:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28EAA16A4CE; Wed, 12 Nov 2003 14:28:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9431A43FCB; Wed, 12 Nov 2003 14:28:28 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACMSSXJ027026; Wed, 12 Nov 2003 14:28:28 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACMSSwZ027025; Wed, 12 Nov 2003 14:28:28 -0800 (PST) (envelope-from mckusick) Message-Id: <200311122228.hACMSSwZ027025@repoman.freebsd.org> From: Kirk McKusick Date: Wed, 12 Nov 2003 14:28:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_timeout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 22:28:29 -0000 mckusick 2003/11/12 14:28:28 PST FreeBSD src repository Modified files: sys/kern kern_timeout.c Log: At the request of several developers, restore the DIAGNOSIC code deleted in 1.81. Increase the initial timeout limit to 2ms to eliminate spurious messages of excessive timeouts in the NFS client code. Requested by: Poul-Henning Kamp Requested by: Mike Silbersack Requested by: Sam Leffler Revision Changes Path 1.82 +28 -0 src/sys/kern/kern_timeout.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 14:52:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30D3516A4CE; Wed, 12 Nov 2003 14:52:36 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6069F43FD7; Wed, 12 Nov 2003 14:52:32 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.10/8.12.10) with ESMTP id hACMqNNZ000689; Wed, 12 Nov 2003 23:52:24 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Kirk McKusick From: "Poul-Henning Kamp" In-Reply-To: Your message of "Wed, 12 Nov 2003 14:19:58 PST." <200311122219.hACMJwaG007327@beastie.mckusick.com> Date: Wed, 12 Nov 2003 23:52:23 +0100 Message-ID: <688.1068677543@critter.freebsd.dk> cc: "Brian F. Feldman" cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 22:52:36 -0000 In message <200311122219.hACMJwaG007327@beastie.mckusick.com>, Kirk McKusick wr ites: > From: "Brian F. Feldman" > Date: Wed, 12 Nov 2003 14:16:07 -0500 > Sender: owner-src-committers@FreeBSD.org > X-Loop: FreeBSD.ORG > > Does this mean someone may be free to write wrappers that block > ENOSYS, execute statfs calls, and fall back to ostatfs calls > (translating 64->32 bit values as best as possible, like the kernel > does) returning the new statfs? Obviously, this would just be to > add a safety window for the transition period and to be removed > before a -RELEASE. > > -- > Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ > <> green@FreeBSD.org \ The Power to Serve! \ > Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ > >The above would certainly be possible. If this were a more heavily >used interface (like say stat), it would be a useful exercise. But >I do not feel it is really necessary for statfs. However, I am not >going to object if someone wants to go through the exercise of >implementing your suggestion. Uhm, as far as I recall, calling an undefined system call gives you a signal you need to handle, before you will ever see the ENOSYS. -- 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 Wed Nov 12 14:56:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1178D16A4CE; Wed, 12 Nov 2003 14:56:15 -0800 (PST) Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B36B43FB1; Wed, 12 Nov 2003 14:56:13 -0800 (PST) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by white.imgsrc.co.jp (Postfix) with ESMTP id 337102840D7; Thu, 13 Nov 2003 07:56:12 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id 347CA2840D4; Thu, 13 Nov 2003 07:56:11 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by black.imgsrc.co.jp (Postfix) with ESMTP id 0373B1E4916; Thu, 13 Nov 2003 07:56:11 +0900 (JST) Date: Thu, 13 Nov 2003 07:56:11 +0900 Message-ID: <7mu159qjqs.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Robert Watson In-Reply-To: <200311122156.hACLu7OR024315@repoman.freebsd.org> References: <200311122156.hACLu7OR024315@repoman.freebsd.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020531 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libutil Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 22:56:15 -0000 At Wed, 12 Nov 2003 13:56:07 -0800 (PST), Robert Watson wrote: > Bump the major version on libtuil. libutil now relies on the mac_* > symbols exported by newer versions of libc, and so we want applications > depending on the newer library code to be required to link against the > newer libc. Thanks! Shouldn't we add libutil to ports/misc/compat4x? -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:01:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E41916A4CE; Wed, 12 Nov 2003 15:01:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00D1543FE3; Wed, 12 Nov 2003 15:01:16 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACN1FXJ028670; Wed, 12 Nov 2003 15:01:15 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACN1F3g028669; Wed, 12 Nov 2003 15:01:15 -0800 (PST) (envelope-from wilko) Message-Id: <200311122301.hACN1F3g028669@repoman.freebsd.org> From: Wilko Bulte Date: Wed, 12 Nov 2003 15:01:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_sk.c if_skreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:01:16 -0000 wilko 2003/11/12 15:01:15 PST FreeBSD src repository Modified files: sys/pci if_sk.c if_skreg.h Log: Add vendor ID to make Marvell chipset work. E.g. to be found on SMC9452TX it seems Submitted by: Jung-uk Kim Tested by: veedee@c7.campus.utcluj.ro MFC after: 2 weeks Revision Changes Path 1.68 +5 -0 src/sys/pci/if_sk.c 1.18 +5 -0 src/sys/pci/if_skreg.h From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:05:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D0BB16A4CE for ; Wed, 12 Nov 2003 15:05:17 -0800 (PST) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22D8643FE1 for ; Wed, 12 Nov 2003 15:05:13 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 1536 invoked from network); 12 Nov 2003 23:05:12 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 12 Nov 2003 23:05:12 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hACN4mce028166; Wed, 12 Nov 2003 18:04:48 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Wed, 12 Nov 2003 18:04:46 -0500 (EST) From: John Baldwin To: Robert Watson X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/security/mac_test mac_test.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:05:17 -0000 On 12-Nov-2003 Robert Watson wrote: > > On Wed, 12 Nov 2003, John Baldwin wrote: > >> jhb 2003/11/12 09:21:57 PST >> >> FreeBSD src repository >> >> Modified files: >> sys/security/mac_test mac_test.c >> Log: >> Remove extraneous & to fix compile. > > Sigh. A mismerge, it's correct in the MAC branch, and didn't turn up in > my test compile because I built the modules, and assertions don't get > compiled into modules. LINT currently doesn't build very far for me due > to an ACPI problem. I fixed the ACPI bogon in the commit prior to this one. :) -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:08:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9367B16A4CE; Wed, 12 Nov 2003 15:08:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B74D43FDD; Wed, 12 Nov 2003 15:08:51 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACN8nXJ029895; Wed, 12 Nov 2003 15:08:49 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACN8SP3029893; Wed, 12 Nov 2003 15:08:28 -0800 (PST) (envelope-from ceri) Message-Id: <200311122308.hACN8SP3029893@repoman.freebsd.org> From: Ceri Davies Date: Wed, 12 Nov 2003 15:08:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/send-pr send-pr.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:08:51 -0000 ceri 2003/11/12 15:08:24 PST FreeBSD src repository (doc committer) Modified files: gnu/usr.bin/send-pr send-pr.sh Log: Attempt to save the last dregs of emacs users' sanity by saving the contents of the PR when an interrupt is received during the editor session. This stops the use of ^G from deleting a filled PR from underneath the user. PR: bin/59201 Submitted by: Heikki Suonsivu MFC After: 2 weeks Revision Changes Path 1.35 +1 -1 src/gnu/usr.bin/send-pr/send-pr.sh From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:35:42 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C09616A4CE; Wed, 12 Nov 2003 15:35:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77EB343F85; Wed, 12 Nov 2003 15:35:41 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACNZfXJ030889; Wed, 12 Nov 2003 15:35:41 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACNZeHw030888; Wed, 12 Nov 2003 15:35:40 -0800 (PST) (envelope-from andre) Message-Id: <200311122335.hACNZeHw030888@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 12 Nov 2003 15:35:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:35:42 -0000 andre 2003/11/12 15:35:40 PST FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Do not fragment a packet with hardware assistance if it has the DF bit set. Reviewed by: sam (mentor) Revision Changes Path 1.199 +2 -1 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:36:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9208F16A56E; Wed, 12 Nov 2003 15:36:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C7B43FBD; Wed, 12 Nov 2003 15:36:18 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACNaHXJ030962; Wed, 12 Nov 2003 15:36:17 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACNaHTO030961; Wed, 12 Nov 2003 15:36:17 -0800 (PST) (envelope-from sobomax) Message-Id: <200311122336.hACNaHTO030961@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 12 Nov 2003 15:36:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/modules/pam_radius pam_radius.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:36:19 -0000 sobomax 2003/11/12 15:36:17 PST FreeBSD src repository Modified files: lib/libpam/modules/pam_radius pam_radius.c Log: Fix on sparc64. Reported by: rwatson/tinderbox MFC after: 2 weeks Revision Changes Path 1.19 +1 -1 src/lib/libpam/modules/pam_radius/pam_radius.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:45:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1567516A4EC; Wed, 12 Nov 2003 15:45:36 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF3D843FD7; Wed, 12 Nov 2003 15:45:34 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hACNjCeG070296; Wed, 12 Nov 2003 16:45:12 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 12 Nov 2003 16:42:21 -0700 (MST) Message-Id: <20031112.164221.126711068.imp@bsdimp.com> To: harti@FreeBSD.org, brandt@fokus.fraunhofer.de From: "M. Warner Losh" In-Reply-To: <20031110205931.U84670@beagle.fokus.fraunhofer.de> References: <20031110174537.U53715@beagle.fokus.fraunhofer.de> <20031110.102302.58436807.imp@bsdimp.com> <20031110205931.U84670@beagle.fokus.fraunhofer.de> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: developers@FreeBSD.org cc: kris@obsecurity.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:45:36 -0000 In message: <20031110205931.U84670@beagle.fokus.fraunhofer.de> Harti Brandt writes: : On Mon, 10 Nov 2003, M. Warner Losh wrote: : : MWL>In message: <20031110174537.U53715@beagle.fokus.fraunhofer.de> : MWL> Harti Brandt writes: : MWL>: mid-term (for 6.0) given this state. NgATM will soon support everything : MWL> : MWL>Sounds like an excellent 'BURN_BRIDGES' #ifdef opportunity to me :-) : : Well, yes. A way to put a warning on a kernel config option would also be : not bad or is there such a thing? Not presently. there's a warning meachanism, but the warnings aren't turned on. Maybe they should be. Warner From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:48:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C098716A4CE; Wed, 12 Nov 2003 15:48:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36D0E43F93; Wed, 12 Nov 2003 15:48:43 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hACNmhXJ032191; Wed, 12 Nov 2003 15:48:43 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hACNmgKZ032190; Wed, 12 Nov 2003 15:48:42 -0800 (PST) (envelope-from jhb) Message-Id: <200311122348.hACNmgKZ032190@repoman.freebsd.org> From: John Baldwin Date: Wed, 12 Nov 2003 15:48:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_turnstile.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:48:43 -0000 jhb 2003/11/12 15:48:42 PST FreeBSD src repository Modified files: sys/kern subr_turnstile.c Log: - Close a race where a thread on another CPU could release a contested lock and empty its turnstile while the blocking threads still pointed to the turnstile. If the thread on the first CPU blocked on a lock owned by one of the threads blocked on the turnstile just woken up, then the first CPU could try to manipulate a bogus thread queue in the turnstile during priority propagation. - Update locking notes for ts_owner and always clear ts_owner, not just under INVARIANTS. Tested by: sam (1) Revision Changes Path 1.134 +12 -4 src/sys/kern/subr_turnstile.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 15:52:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4B9D16A4CE for ; Wed, 12 Nov 2003 15:52:15 -0800 (PST) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DF4843FAF for ; Wed, 12 Nov 2003 15:52:10 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 22986 invoked from network); 12 Nov 2003 23:52:09 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 12 Nov 2003 23:52:09 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hACNpdce028532; Wed, 12 Nov 2003 18:51:42 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311122348.hACNmgKZ032190@repoman.freebsd.org> Date: Wed, 12 Nov 2003 18:51:34 -0500 (EST) From: John Baldwin To: John Baldwin X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/kern subr_turnstile.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 12 Nov 2003 23:52:15 -0000 On 12-Nov-2003 John Baldwin wrote: > jhb 2003/11/12 15:48:42 PST > > FreeBSD src repository > > Modified files: > sys/kern subr_turnstile.c > Log: > - Close a race where a thread on another CPU could release a contested lock > and empty its turnstile while the blocking threads still pointed to the > turnstile. If the thread on the first CPU blocked on a lock owned by > one of the threads blocked on the turnstile just woken up, then the > first CPU could try to manipulate a bogus thread queue in the turnstile > during priority propagation. > - Update locking notes for ts_owner and always clear ts_owner, not just > under INVARIANTS. > > Tested by: sam (1) This might fix the SMP problems on current. Please let me know if there are any other turnstile/mutex/priority_propagation related panics. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Wed Nov 12 16:02:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5922416A4CE; Wed, 12 Nov 2003 16:02:55 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51DB243FB1; Wed, 12 Nov 2003 16:02:54 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.9p2/8.12.9) with ESMTP id hAD013Mg096025; Wed, 12 Nov 2003 19:01:03 -0500 (EST) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)hAD012NL096022; Wed, 12 Nov 2003 19:01:03 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 12 Nov 2003 19:01:02 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Jun Kuriyama In-Reply-To: <7mu159qjqs.wl@black.imgsrc.co.jp> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libutil Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 00:02:55 -0000 On Thu, 13 Nov 2003, Jun Kuriyama wrote: > At Wed, 12 Nov 2003 13:56:07 -0800 (PST), > Robert Watson wrote: > > Bump the major version on libtuil. libutil now relies on the mac_* > > symbols exported by newer versions of libc, and so we want applications > > depending on the newer library code to be required to link against the > > newer libc. > > Thanks! Shouldn't we add libutil to ports/misc/compat4x? Yes. I figured I'd wait 48 hours for someone to e-mail me and tell me I did the wrong thing before doing that :-). My plan was to commit, or otherwise pursuade some other person to commit, the 4.9 libutil to compat4.x. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories From owner-cvs-src@FreeBSD.ORG Wed Nov 12 16:04:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD32416A4CE; Wed, 12 Nov 2003 16:04:58 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDB7443FAF; Wed, 12 Nov 2003 16:04:57 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.9p2/8.12.9) with ESMTP id hAD037Mg096042; Wed, 12 Nov 2003 19:03:07 -0500 (EST) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)hAD037nj096039; Wed, 12 Nov 2003 19:03:07 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 12 Nov 2003 19:03:07 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Kirk McKusick In-Reply-To: <200311122228.hACMSSwZ027025@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_timeout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 00:04:59 -0000 On Wed, 12 Nov 2003, Kirk McKusick wrote: > mckusick 2003/11/12 14:28:28 PST > > FreeBSD src repository > > Modified files: > sys/kern kern_timeout.c > Log: > At the request of several developers, restore the DIAGNOSIC code > deleted in 1.81. Increase the initial timeout limit to 2ms to > eliminate spurious messages of excessive timeouts in the NFS > client code. > > Requested by: Poul-Henning Kamp > Requested by: Mike Silbersack > Requested by: Sam Leffler Could this have been responsible for the apparent hangs some (few but unfortunate) users were seeing with NFS, frequently accompanied by notices that the NFS server was unreachable? Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories From owner-cvs-src@FreeBSD.ORG Wed Nov 12 16:10:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9CD516A4CE; Wed, 12 Nov 2003 16:10:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6913A43FA3; Wed, 12 Nov 2003 16:10:44 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD0AiXJ034089; Wed, 12 Nov 2003 16:10:44 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD0Ai15034088; Wed, 12 Nov 2003 16:10:44 -0800 (PST) (envelope-from imp) Message-Id: <200311130010.hAD0Ai15034088@repoman.freebsd.org> From: Warner Losh Date: Wed, 12 Nov 2003 16:10:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 00:10:45 -0000 imp 2003/11/12 16:10:44 PST FreeBSD src repository Modified files: . UPDATING Log: Warn that you won't be able to build a kernel if you do an installworld Revision Changes Path 1.279 +16 -8 src/UPDATING From owner-cvs-src@FreeBSD.ORG Wed Nov 12 16:30:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31C1316A578; Wed, 12 Nov 2003 16:30:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A931943FB1; Wed, 12 Nov 2003 16:30:27 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD0URXJ034956; Wed, 12 Nov 2003 16:30:27 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD0URYW034955; Wed, 12 Nov 2003 16:30:27 -0800 (PST) (envelope-from sam) Message-Id: <200311130030.hAD0URYW034955@repoman.freebsd.org> From: Sam Leffler Date: Wed, 12 Nov 2003 16:30:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools README src/tools/tools/kttcp Makefile README kttcp.c src/tools/tools/kttcp/sys Makefile kttcp.c kttcpio.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 00:30:28 -0000 sam 2003/11/12 16:30:27 PST FreeBSD src repository Modified files: tools/tools README Added files: tools/tools/kttcp Makefile README kttcp.c tools/tools/kttcp/sys Makefile kttcp.c kttcpio.h Log: add in-kernel ttcp performance tool Revision Changes Path 1.30 +1 -0 src/tools/tools/README 1.1 +23 -0 src/tools/tools/kttcp/Makefile (new) 1.1 +24 -0 src/tools/tools/kttcp/README (new) 1.1 +309 -0 src/tools/tools/kttcp/kttcp.c (new) 1.1 +8 -0 src/tools/tools/kttcp/sys/Makefile (new) 1.1 +772 -0 src/tools/tools/kttcp/sys/kttcp.c (new) 1.1 +59 -0 src/tools/tools/kttcp/sys/kttcpio.h (new) From owner-cvs-src@FreeBSD.ORG Wed Nov 12 16:32:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B02316A4CE; Wed, 12 Nov 2003 16:32:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7D2543FD7; Wed, 12 Nov 2003 16:32:13 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD0WDXJ035130; Wed, 12 Nov 2003 16:32:13 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD0WDKK035129; Wed, 12 Nov 2003 16:32:13 -0800 (PST) (envelope-from andre) Message-Id: <200311130032.hAD0WDKK035129@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 12 Nov 2003 16:32:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_icmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 00:32:14 -0000 andre 2003/11/12 16:32:13 PST FreeBSD src repository Modified files: sys/netinet ip_icmp.c Log: Move global variables for icmp_input() to its stack. With SMP or preemption two CPUs can be in the same function at the same time and clobber each others variables. Remove register declaration from local variables. Reviewed by: sam (mentor) Revision Changes Path 1.82 +18 -10 src/sys/netinet/ip_icmp.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 18:04:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F4FA16A4D8; Wed, 12 Nov 2003 18:04:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C26EB43F3F; Wed, 12 Nov 2003 18:04:34 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD24YXJ056717; Wed, 12 Nov 2003 18:04:34 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD24Yji056716; Wed, 12 Nov 2003 18:04:34 -0800 (PST) (envelope-from jeff) Message-Id: <200311130204.hAD24Yji056716@repoman.freebsd.org> From: Jeff Roberson Date: Wed, 12 Nov 2003 18:04:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 02:04:35 -0000 jeff 2003/11/12 18:04:34 PST FreeBSD src repository Modified files: sys/alpha/conf GENERIC Log: - Add the WITNESS_SKIPSPIN option to the GENERIC kernel so that users who enable WITNESS on alphas will not get the expensive spin lock checking by default. This mirrors the default config settings for i386. Revision Changes Path 1.164 +1 -0 src/sys/alpha/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Wed Nov 12 18:38:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C04516A4CF; Wed, 12 Nov 2003 18:38:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EB1143FDD; Wed, 12 Nov 2003 18:38:34 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD2cYXJ058072; Wed, 12 Nov 2003 18:38:34 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD2cXjf058071; Wed, 12 Nov 2003 18:38:33 -0800 (PST) (envelope-from peter) Message-Id: <200311130238.hAD2cXjf058071@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Nov 2003 18:38:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 exception.S src/sys/amd64/ia32 ia32_exception.S src/sys/amd64/isa icu_vector.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 02:38:35 -0000 peter 2003/11/12 18:38:33 PST FreeBSD src repository Modified files: sys/amd64/amd64 exception.S sys/amd64/ia32 ia32_exception.S sys/amd64/isa icu_vector.S Log: Stop pretending to support kernel profiling. The FAKE_MCOUNT() etc calls are just gradually getting more and more stale. At this point it would be better to start from scratch once prof_machdep.c is adapted. Revision Changes Path 1.114 +0 -7 src/sys/amd64/amd64/exception.S 1.2 +0 -2 src/sys/amd64/ia32/ia32_exception.S 1.40 +0 -4 src/sys/amd64/isa/icu_vector.S From owner-cvs-src@FreeBSD.ORG Wed Nov 12 19:56:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 455E416A4CE; Wed, 12 Nov 2003 19:56:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3854243FEA; Wed, 12 Nov 2003 19:56:33 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD3uXXJ062488; Wed, 12 Nov 2003 19:56:33 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD3uW0h062487; Wed, 12 Nov 2003 19:56:32 -0800 (PST) (envelope-from alc) Message-Id: <200311130356.hAD3uW0h062487@repoman.freebsd.org> From: Alan Cox Date: Wed, 12 Nov 2003 19:56:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ufs/ffs ffs_snapshot.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 03:56:34 -0000 alc 2003/11/12 19:56:32 PST FreeBSD src repository Modified files: sys/ufs/ffs ffs_snapshot.c Log: Call free(9) after the vnode interlock is released, avoiding a lock-order reversal. Revision Changes Path 1.76 +1 -1 src/sys/ufs/ffs/ffs_snapshot.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 20:14:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A31C416A4CE; Wed, 12 Nov 2003 20:14:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CBD043F75; Wed, 12 Nov 2003 20:14:54 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD4ErXJ064125; Wed, 12 Nov 2003 20:14:53 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD4ErdK064124; Wed, 12 Nov 2003 20:14:53 -0800 (PST) (envelope-from imp) Message-Id: <200311130414.hAD4ErdK064124@repoman.freebsd.org> From: Warner Losh Date: Wed, 12 Nov 2003 20:14:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aha aha.c aha_isa.c ahareg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 04:14:54 -0000 imp 2003/11/12 20:14:53 PST FreeBSD src repository Modified files: sys/dev/aha aha.c aha_isa.c ahareg.h Log: Save the device so we can do a device_printf. Use this in preference to aha_name. Remove aha_name function and #define it to device_get_unitname() Minor indentation tweaks resulting therefrom Revision Changes Path 1.55 +66 -75 src/sys/dev/aha/aha.c 1.28 +2 -0 src/sys/dev/aha/aha_isa.c 1.17 +1 -1 src/sys/dev/aha/ahareg.h From owner-cvs-src@FreeBSD.ORG Wed Nov 12 21:16:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20CB516A4CF; Wed, 12 Nov 2003 21:16:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F80343FD7; Wed, 12 Nov 2003 21:16:56 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD5GuXJ073277; Wed, 12 Nov 2003 21:16:56 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD5Gu8C073276; Wed, 12 Nov 2003 21:16:56 -0800 (PST) (envelope-from sam) Message-Id: <200311130516.hAD5Gu8C073276@repoman.freebsd.org> From: Sam Leffler Date: Wed, 12 Nov 2003 21:16:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_pcb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 05:16:57 -0000 sam 2003/11/12 21:16:56 PST FreeBSD src repository Modified files: sys/netinet in_pcb.c Log: o reorder some locking asserts to reflect the order of the locks o correct a read-lock assert in in_pcblookup_local that should be a write-lock assert (since time wait close cleanups may alter state) Supported by: FreeBSD Foundation Revision Changes Path 1.129 +4 -3 src/sys/netinet/in_pcb.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 21:18:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B459516A4CE; Wed, 12 Nov 2003 21:18:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3009E43FD7; Wed, 12 Nov 2003 21:18:24 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD5INXJ073332; Wed, 12 Nov 2003 21:18:23 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD5INbJ073331; Wed, 12 Nov 2003 21:18:23 -0800 (PST) (envelope-from sam) Message-Id: <200311130518.hAD5INbJ073331@repoman.freebsd.org> From: Sam Leffler Date: Wed, 12 Nov 2003 21:18:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_pcb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 05:18:24 -0000 sam 2003/11/12 21:18:23 PST FreeBSD src repository Modified files: sys/netinet in_pcb.c Log: add missing inpcb lock before call to tcp_twclose (which reclaims the inpcb) Supported by: FreeBSD Foundation Revision Changes Path 1.130 +1 -0 src/sys/netinet/in_pcb.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 21:23:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCF0816A4CE; Wed, 12 Nov 2003 21:23:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47C8B43F75; Wed, 12 Nov 2003 21:23:59 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD5NxXJ073631; Wed, 12 Nov 2003 21:23:59 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD5NwQY073630; Wed, 12 Nov 2003 21:23:59 -0800 (PST) (envelope-from sam) Message-Id: <200311130523.hAD5NwQY073630@repoman.freebsd.org> From: Sam Leffler Date: Wed, 12 Nov 2003 21:23:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net80211 ieee80211_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 05:23:59 -0000 sam 2003/11/12 21:23:58 PST FreeBSD src repository Modified files: sys/net80211 ieee80211_ioctl.c Log: o insure the current channel is in a good state before starting an AP scan o reject scan requests for a device that isn't marked up This fixes a problem where requesting a scan before marking the device up would cause a panic because the current channel was set to "any" (0xffff). Revision Changes Path 1.9 +44 -13 src/sys/net80211/ieee80211_ioctl.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 21:26:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4201E16A4CE; Wed, 12 Nov 2003 21:26:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B525F43FE9; Wed, 12 Nov 2003 21:26:55 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD5QtXJ073780; Wed, 12 Nov 2003 21:26:55 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD5QtoI073779; Wed, 12 Nov 2003 21:26:55 -0800 (PST) (envelope-from alc) Message-Id: <200311130526.hAD5QtoI073779@repoman.freebsd.org> From: Alan Cox Date: Wed, 12 Nov 2003 21:26:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/cp utils.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 05:26:56 -0000 alc 2003/11/12 21:26:55 PST FreeBSD src repository Modified files: bin/cp utils.c Log: Don't mmap(2) and munmap(2) zero-length files. Submitted by: Wiktor Niesiobedzki Revision Changes Path 1.42 +2 -1 src/bin/cp/utils.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 21:35:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C759B16A4CE; Wed, 12 Nov 2003 21:35:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E7843F85; Wed, 12 Nov 2003 21:35:08 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD5Z8XJ074164; Wed, 12 Nov 2003 21:35:08 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD5Z7bJ074163; Wed, 12 Nov 2003 21:35:07 -0800 (PST) (envelope-from sam) Message-Id: <200311130535.hAD5Z7bJ074163@repoman.freebsd.org> From: Sam Leffler Date: Wed, 12 Nov 2003 21:35:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath if_ath.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 05:35:08 -0000 sam 2003/11/12 21:35:07 PST FreeBSD src repository Modified files: sys/dev/ath if_ath.c Log: Don't count PHY errors as input errors. This is important for 5212-based devices because PHY errors are used to collect data on environmental noise that and doesn't truly reflect the state of the communications media. The result is confused users. Folks that want to watch PHY errors can still get the statistics through the device ioctl (used by athstats). Revision Changes Path 1.32 +9 -1 src/sys/dev/ath/if_ath.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 22:29:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1182C16A4CE; Wed, 12 Nov 2003 22:29:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F67843F85; Wed, 12 Nov 2003 22:29:40 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD6TeXJ077475; Wed, 12 Nov 2003 22:29:40 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD6TeoV077474; Wed, 12 Nov 2003 22:29:40 -0800 (PST) (envelope-from simokawa) Message-Id: <200311130629.hAD6TeoV077474@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Wed, 12 Nov 2003 22:29:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire if_fwe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 06:29:41 -0000 simokawa 2003/11/12 22:29:40 PST FreeBSD src repository Modified files: sys/dev/firewire if_fwe.c Log: Add tunables. Revision Changes Path 1.25 +10 -4 src/sys/dev/firewire/if_fwe.c From owner-cvs-src@FreeBSD.ORG Wed Nov 12 23:41:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FA6A16A4CF; Wed, 12 Nov 2003 23:41:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDDBD43FF5; Wed, 12 Nov 2003 23:41:55 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD7ftXJ081698; Wed, 12 Nov 2003 23:41:55 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD7ft3o081697; Wed, 12 Nov 2003 23:41:55 -0800 (PST) (envelope-from simokawa) Message-Id: <200311130741.hAD7ft3o081697@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Wed, 12 Nov 2003 23:41:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 07:41:56 -0000 simokawa 2003/11/12 23:41:55 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 machdep.c Log: Respect RB_KDB flag. Revision Changes Path 1.105 +5 -0 src/sys/sparc64/sparc64/machdep.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 00:26:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64E3C16A4CE; Thu, 13 Nov 2003 00:26:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3BBD43FA3; Thu, 13 Nov 2003 00:26:29 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD8QTXJ084188; Thu, 13 Nov 2003 00:26:29 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD8QTDh084187; Thu, 13 Nov 2003 00:26:29 -0800 (PST) (envelope-from des) Message-Id: <200311130826.hAD8QTDh084187@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Nov 2003 00:26:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 08:26:30 -0000 des 2003/11/13 00:26:29 PST FreeBSD src repository Modified files: usr.sbin/moused moused.c Log: Whitespace cleanup. Revision Changes Path 1.60 +377 -379 src/usr.sbin/moused/moused.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 01:04:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B08816A4F1; Thu, 13 Nov 2003 01:04:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4CAE43F3F; Thu, 13 Nov 2003 01:04:24 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD94OXJ092179; Thu, 13 Nov 2003 01:04:24 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD94Oms092178; Thu, 13 Nov 2003 01:04:24 -0800 (PST) (envelope-from marcel) Message-Id: <200311130904.hAD94Oms092178@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 13 Nov 2003 01:04:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/truss syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 09:04:25 -0000 marcel 2003/11/13 01:04:24 PST FreeBSD src repository Modified files: usr.bin/truss syscalls.c Log: Do not ignore any possible errors that fseeko() may have. The fact is that fseeko() fails in very predictable and frequent ways on ia64. This is because the offset is actually an address in the process' address space, which on ia64 can be larger than long (for lseek) or off_t (for fseeko). The crux is the signedness. The register stack and memory stack are in region 4 on ia64. This means that the sign bit is 1. The large positive virtual address is wrongly interpreted as a negative file offset. There's no quick fix. Even if you get around the API by using a SEEK_SET up to LONG_MAX and follow it up with a SEEK_CUR for the remainder, the kernel simply cannot deal with it. and the second seek will just fail. Therefore, this change does not actually fix the root cause. It just makes sure we're not spitting out all kinds of garbage or that the get_struct() function in particular does not cause truss(1) to exit. This, I might add, invariably happened way too soon for truss(1) to be of any use on ia64... Revision Changes Path 1.33 +24 -22 src/usr.bin/truss/syscalls.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 01:24:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41FCE16A4CE; Thu, 13 Nov 2003 01:24:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B00F743F75; Thu, 13 Nov 2003 01:24:21 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD9OLXJ092928; Thu, 13 Nov 2003 01:24:21 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD9OLO1092927; Thu, 13 Nov 2003 01:24:21 -0800 (PST) (envelope-from jeff) Message-Id: <200311130924.hAD9OLO1092927@repoman.freebsd.org> From: Jeff Roberson Date: Thu, 13 Nov 2003 01:24:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha clock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 09:24:22 -0000 jeff 2003/11/13 01:24:21 PST FreeBSD src repository Modified files: sys/alpha/alpha clock.c Log: - Unlock the clock lock before calling timeout in sysbeep(). This is almost the same code that i386/isa/clock.c uses. Revision Changes Path 1.35 +1 -1 src/sys/alpha/alpha/clock.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 01:39:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1247616A4CF; Thu, 13 Nov 2003 01:39:00 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id B35F043FCB; Thu, 13 Nov 2003 01:38:54 -0800 (PST) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) hAD9cFsw094711 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 13 Nov 2003 11:38:15 +0200 (EET) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9p2/8.12.9/Submit) id hAD9cAVn094706; Thu, 13 Nov 2003 11:38:10 +0200 (EET) (envelope-from ru) Date: Thu, 13 Nov 2003 11:38:10 +0200 From: Ruslan Ermilov To: Harti Brandt Message-ID: <20031113093810.GA91712@sunbay.com> References: <200311100917.hAA9HYsg097794@repoman.freebsd.org> <7mptg0tkpq.wl@black.imgsrc.co.jp> <20031110143627.T29745@beagle.fokus.fraunhofer.de> <20031111090724.Q7611@beagle.fokus.fraunhofer.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline In-Reply-To: <20031111090724.Q7611@beagle.fokus.fraunhofer.de> User-Agent: Mutt/1.5.5.1i cc: Dag-Erling Sm?rgrav cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/lib/libbsnmp Makefile Makefile.inc src/lib/libbsnmp/libbsnmp Makefile src/lib/libbsnmp/modules Makefile Makefile.inc src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 09:39:00 -0000 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Nov 11, 2003 at 09:13:06AM +0100, Harti Brandt wrote: > On Mon, 10 Nov 2003, Dag-Erling [iso-8859-1] Sm?rgrav wrote: >=20 > DS>Harti Brandt writes: > DS>> No, mine. Although the universe made it just fine, the tinderbox bre= aks. > DS>> I'm just testing a fix. > DS> > DS>See attached fix for 'make universe'. >=20 > Actually I always look at the output from the universe so I see when an > error happens. The problem was different: the original source does an > #include "foo.h" for a file that will end up in a subdirectory of > /usr/include. This is done so that a standalone build will find the > include file. The makefile for the standalone build has a -I directive > that points to the right package sub-directory. I was under the impression > that during stage 4.2 of buildworld (building libraries) the INCLUDEDIR > points to the temporary environment in /usr/obj/.... That is, however, not > the case. INCLUDEDIR points to /usr/include. Unfortunately on my build > system I already had the /usr/include subdirectory populated so the build > went through successfully, but failed obviously in the tinderbox. >=20 During the 4.2 stage, a special compiler toolchain is built, with the standard include path poiting to ${WORLDTMP}/usr/include instead of /usr/include. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --82I3+IH0IqGh5yIs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/s1ECUkv4P6juNwoRAktrAJwKKQ2N/QX/vsDLkq9hWL3RsvsWTACfXUKy MVWz+h+mvfFtRPkhXJgjds0= =9lEj -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- From owner-cvs-src@FreeBSD.ORG Thu Nov 13 01:58:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAB3116A4CE; Thu, 13 Nov 2003 01:58:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43C4543FAF; Thu, 13 Nov 2003 01:58:10 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAD9wAXJ094735; Thu, 13 Nov 2003 01:58:10 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAD9w9CE094731; Thu, 13 Nov 2003 01:58:09 -0800 (PST) (envelope-from phk) Message-Id: <200311130958.hAD9w9CE094731@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 13 Nov 2003 01:58:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/specfs spec_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 09:58:10 -0000 phk 2003/11/13 01:58:09 PST FreeBSD src repository Modified files: sys/fs/specfs spec_vnops.c Log: Initialize b_iooffset correctly. Revision Changes Path 1.214 +1 -0 src/sys/fs/specfs/spec_vnops.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 02:02:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 896F316A4CE; Thu, 13 Nov 2003 02:02:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 032F543FE0; Thu, 13 Nov 2003 02:02:13 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADA2CXJ095018; Thu, 13 Nov 2003 02:02:12 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADA2CfK095017; Thu, 13 Nov 2003 02:02:12 -0800 (PST) (envelope-from phk) Message-Id: <200311131002.hADA2CfK095017@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 13 Nov 2003 02:02:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa clock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 10:02:13 -0000 phk 2003/11/13 02:02:12 PST FreeBSD src repository Modified files: sys/i386/isa clock.c Log: Don't disable the TSC with statclock_disable. Revision Changes Path 1.207 +9 -9 src/sys/i386/isa/clock.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 02:03:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6607616A4CE; Thu, 13 Nov 2003 02:03:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4ABE43FA3; Thu, 13 Nov 2003 02:03:58 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADA3wXJ095937; Thu, 13 Nov 2003 02:03:58 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADA3woX095936; Thu, 13 Nov 2003 02:03:58 -0800 (PST) (envelope-from phk) Message-Id: <200311131003.hADA3woX095936@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 13 Nov 2003 02:03:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_tc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 10:03:59 -0000 phk 2003/11/13 02:03:58 PST FreeBSD src repository Modified files: sys/kern kern_tc.c Log: Various minor details: Give the HZ/overflow check a 10% margin. Eliminate bogus newline. If timecounters have equal quality, prefer higher frequency. Some inspiration from: bde Revision Changes Path 1.158 +17 -8 src/sys/kern/kern_tc.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 02:18:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4217816A4CE; Thu, 13 Nov 2003 02:18:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A8B143FA3; Thu, 13 Nov 2003 02:18:17 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADAIGXJ097334; Thu, 13 Nov 2003 02:18:16 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADAIGFu097333; Thu, 13 Nov 2003 02:18:16 -0800 (PST) (envelope-from harti) Message-Id: <200311131018.hADAIGFu097333@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 13 Nov 2003 02:18:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules/snmp_mibII Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 10:18:18 -0000 harti 2003/11/13 02:18:16 PST FreeBSD src repository Modified files: lib/libbsnmp/modules/snmp_mibII Makefile Log: Add an empty definition of the MIBS variable so that the makefile does not try to use a MIBS definition from the environment. Submitted by: Joe Marcus Clarke Revision Changes Path 1.3 +1 -0 src/lib/libbsnmp/modules/snmp_mibII/Makefile From owner-cvs-src@FreeBSD.ORG Thu Nov 13 03:02:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC69916A4CE; Thu, 13 Nov 2003 03:02:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5338643FBF; Thu, 13 Nov 2003 03:02:58 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADB2wXJ000351; Thu, 13 Nov 2003 03:02:58 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADB2wx5000350; Thu, 13 Nov 2003 03:02:58 -0800 (PST) (envelope-from phk) Message-Id: <200311131102.hADB2wx5000350@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 13 Nov 2003 03:02:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/mtree/test test04.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 11:02:59 -0000 phk 2003/11/13 03:02:57 PST FreeBSD src repository Added files: usr.sbin/mtree/test test04.sh Log: Fix a bug relating to the "files before directories" sort order when comparing two spec files. Revision Changes Path 1.1 +51 -0 src/usr.sbin/mtree/test/test04.sh (new) From owner-cvs-src@FreeBSD.ORG Thu Nov 13 04:26:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 513BF16A4CE; Thu, 13 Nov 2003 04:26:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C374343F3F; Thu, 13 Nov 2003 04:26:55 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADCQtXJ005774; Thu, 13 Nov 2003 04:26:55 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADCQtb9005773; Thu, 13 Nov 2003 04:26:55 -0800 (PST) (envelope-from ume) Message-Id: <200311131226.hADCQtb9005773@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 13 Nov 2003 04:26:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netkey key.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 12:26:56 -0000 ume 2003/11/13 04:26:55 PST FreeBSD src repository Modified files: sys/netkey key.c Log: add sysctl MIB net.key.esp_auth which was wrongly dropped during recent KAME merge. Revision Changes Path 1.59 +6 -0 src/sys/netkey/key.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 05:00:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A44B316A4CE; Thu, 13 Nov 2003 05:00:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ACC143FA3; Thu, 13 Nov 2003 05:00:58 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADD0vXJ013556; Thu, 13 Nov 2003 05:00:57 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADD0vbk013553; Thu, 13 Nov 2003 05:00:57 -0800 (PST) (envelope-from harti) Message-Id: <200311131300.hADD0vbk013553@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 13 Nov 2003 05:00:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph/atm ng_atm.h ng_sscop.h ngatmbase.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 13:00:58 -0000 harti 2003/11/13 05:00:57 PST FreeBSD src repository Modified files: sys/netgraph/atm ng_atm.h ng_sscop.h ngatmbase.h Log: Make the defines that prevent multiple includes look like the others in netgraph. Revision Changes Path 1.3 +2 -2 src/sys/netgraph/atm/ng_atm.h 1.2 +2 -2 src/sys/netgraph/atm/ng_sscop.h 1.2 +2 -2 src/sys/netgraph/atm/ngatmbase.h From owner-cvs-src@FreeBSD.ORG Thu Nov 13 05:12:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BE8416A4CE; Thu, 13 Nov 2003 05:12:53 -0800 (PST) Received: from perrin.nxad.com (internal.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6D2043FE9; Thu, 13 Nov 2003 05:12:47 -0800 (PST) (envelope-from hmp@nxad.com) Received: by perrin.nxad.com (Postfix, from userid 1072) id 7B64721062; Thu, 13 Nov 2003 05:12:25 -0800 (PST) Date: Thu, 13 Nov 2003 05:12:25 -0800 From: Hiten Pandya To: Sam Leffler Message-ID: <20031113131225.GB11561@perrin.nxad.com> References: <200311130030.hAD0URYW034955@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311130030.hAD0URYW034955@repoman.freebsd.org> X-Operating-System: FreeBSD FreeBSD 4.7-STABLE User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools README src/tools/tools/kttcp Makefile README kttcp.c src/tools/tools/kttcp/sys Makefile kttcp.c kttcpio.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 13:12:53 -0000 On Wed, Nov 12, 2003 at 04:30:27PM -0800, Sam Leffler wrote: : sam 2003/11/12 16:30:27 PST : : FreeBSD src repository : : Modified files: : tools/tools README : Added files: : tools/tools/kttcp Makefile README kttcp.c : tools/tools/kttcp/sys Makefile kttcp.c kttcpio.h : Log: : add in-kernel ttcp performance tool Hmm, is this one from NetBSD ? Regards, -- Hiten Pandya hmp@FreeBSD.ORG From owner-cvs-src@FreeBSD.ORG Thu Nov 13 05:45:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2490716A4CE; Thu, 13 Nov 2003 05:45:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94C7443FBF; Thu, 13 Nov 2003 05:45:50 -0800 (PST) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADDjoXJ016721; Thu, 13 Nov 2003 05:45:50 -0800 (PST) (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADDjoYR016720; Thu, 13 Nov 2003 05:45:50 -0800 (PST) (envelope-from schweikh) Message-Id: <200311131345.hADDjoYR016720@repoman.freebsd.org> From: Jens Schweikhardt Date: Thu, 13 Nov 2003 05:45:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 13:45:51 -0000 schweikh 2003/11/13 05:45:50 PST FreeBSD src repository Modified files: . access Log: Enable my commit mails as I am back from Down Under. Revision Changes Path 1.620 +1 -1 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Thu Nov 13 08:02:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08AAC16A4CE; Thu, 13 Nov 2003 08:02:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AAFA43F85; Thu, 13 Nov 2003 08:02:45 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADG2jXJ024966; Thu, 13 Nov 2003 08:02:45 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADG2iRf024965; Thu, 13 Nov 2003 08:02:44 -0800 (PST) (envelope-from ume) Message-Id: <200311131602.hADG2iRf024965@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 13 Nov 2003 08:02:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ndp ndp.8 ndp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 16:02:46 -0000 ume 2003/11/13 08:02:44 PST FreeBSD src repository Modified files: usr.sbin/ndp ndp.8 ndp.c Log: - make command line argument parsing POSIX compliant. comment from deraadt NOTE: -I needs to take an arg (there's no way we can take no arg/an arg with a single option) - sscanf overrun - no variable name on prototype. - u_int32_t may not be u_long. - skipped non-host route when printing neighbor cache entries. - valid and preferred lifetimes are unsigned. - wording. Obtained from: KAME Revision Changes Path 1.11 +109 -54 src/usr.sbin/ndp/ndp.8 1.13 +172 -128 src/usr.sbin/ndp/ndp.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 08:22:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB52916A4D0 for ; Thu, 13 Nov 2003 08:22:14 -0800 (PST) Received: from mail.speakeasy.net (mail7.speakeasy.net [216.254.0.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54AA743FE0 for ; Thu, 13 Nov 2003 08:22:11 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 20565 invoked from network); 13 Nov 2003 16:22:10 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 13 Nov 2003 16:22:10 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hADGM7EW000718; Thu, 13 Nov 2003 11:22:08 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Thu, 13 Nov 2003 11:22:05 -0500 (EST) From: John Baldwin To: John Baldwin X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/kern subr_turnstile.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 16:22:15 -0000 On 12-Nov-2003 John Baldwin wrote: > > On 12-Nov-2003 John Baldwin wrote: >> jhb 2003/11/12 15:48:42 PST >> >> FreeBSD src repository >> >> Modified files: >> sys/kern subr_turnstile.c >> Log: >> - Close a race where a thread on another CPU could release a contested lock >> and empty its turnstile while the blocking threads still pointed to the >> turnstile. If the thread on the first CPU blocked on a lock owned by >> one of the threads blocked on the turnstile just woken up, then the >> first CPU could try to manipulate a bogus thread queue in the turnstile >> during priority propagation. >> - Update locking notes for ts_owner and always clear ts_owner, not just >> under INVARIANTS. >> >> Tested by: sam (1) > > This might fix the SMP problems on current. Please let me know if > there are any other turnstile/mutex/priority_propagation related > panics. Also, as a side note, I believe that this race is the cause of the recently reported panics in propagate_priority() with td_blocked == NULL in the pre-turnstile mutex code. The race is only just now being triggered because we have enough code out from under Giant to trigger it. This is why debug.mpsafenet seemed to "fix" that panic. This is also why I did not see this race when I tested turnstiles earlier on my SMP machines. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Thu Nov 13 08:23:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5691116A4CE; Thu, 13 Nov 2003 08:23:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C847143FE0; Thu, 13 Nov 2003 08:23:00 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADGN0XJ026637; Thu, 13 Nov 2003 08:23:00 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADGN0qv026636; Thu, 13 Nov 2003 08:23:00 -0800 (PST) (envelope-from simon) Message-Id: <200311131623.hADGN0qv026636@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 13 Nov 2003 08:23:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 sk.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 16:23:01 -0000 simon 2003/11/13 08:23:00 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 sk.4 Log: - Add Linksys EG1032 and SMC 9452TX to the list of supported devices. - Sort the device list. Revision Changes Path 1.20 +5 -1 src/share/man/man4/sk.4 From owner-cvs-src@FreeBSD.ORG Thu Nov 13 08:41:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6011916A4CF; Thu, 13 Nov 2003 08:41:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C70AA43FDF; Thu, 13 Nov 2003 08:41:07 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADGf7XJ027413; Thu, 13 Nov 2003 08:41:07 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADGf7M3027412; Thu, 13 Nov 2003 08:41:07 -0800 (PST) (envelope-from jhb) Message-Id: <200311131641.hADGf7M3027412@repoman.freebsd.org> From: John Baldwin Date: Thu, 13 Nov 2003 08:41:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include apicvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 16:41:08 -0000 jhb 2003/11/13 08:41:07 PST FreeBSD src repository Modified files: sys/i386/include apicvar.h Log: Fix a typo. Revision Changes Path 1.3 +1 -1 src/sys/i386/include/apicvar.h From owner-cvs-src@FreeBSD.ORG Thu Nov 13 09:01:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 432CA16A4CE; Thu, 13 Nov 2003 09:01:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4E6243FD7; Thu, 13 Nov 2003 09:01:09 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADH19XJ033851; Thu, 13 Nov 2003 09:01:09 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADH18Rl033850; Thu, 13 Nov 2003 09:01:08 -0800 (PST) (envelope-from simon) Message-Id: <200311131701.hADH18Rl033850@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 13 Nov 2003 09:01:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 dc.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 17:01:10 -0000 simon 2003/11/13 09:01:08 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 dc.4 Log: Add a few more devices from the hardware notes. Revision Changes Path 1.24 +12 -0 src/share/man/man4/dc.4 From owner-cvs-src@FreeBSD.ORG Thu Nov 13 09:57:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6142D16A4CE; Thu, 13 Nov 2003 09:57:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0DAA43FA3; Thu, 13 Nov 2003 09:57:53 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADHvrXJ038041; Thu, 13 Nov 2003 09:57:53 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADHvrVr038040; Thu, 13 Nov 2003 09:57:53 -0800 (PST) (envelope-from obrien) Message-Id: <200311131757.hADHvrVr038040@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Nov 2003 09:57:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/cvs/man cvs.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 17:57:54 -0000 obrien 2003/11/13 09:57:53 PST FreeBSD src repository Modified files: contrib/cvs/man cvs.1 Log: Document CVS_CLIENT_PORT. Revision Changes Path 1.20 +7 -0 src/contrib/cvs/man/cvs.1 From owner-cvs-src@FreeBSD.ORG Thu Nov 13 10:16:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D56916A4CE; Thu, 13 Nov 2003 10:16:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9082D4401A; Thu, 13 Nov 2003 10:16:37 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADIGbXJ039739; Thu, 13 Nov 2003 10:16:37 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADIGbpd039738; Thu, 13 Nov 2003 10:16:37 -0800 (PST) (envelope-from jhb) Message-Id: <200311131816.hADIGbpd039738@repoman.freebsd.org> From: John Baldwin Date: Thu, 13 Nov 2003 10:16:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 apic_vector.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 18:16:38 -0000 jhb 2003/11/13 10:16:37 PST FreeBSD src repository Modified files: sys/i386/i386 apic_vector.s Log: Whitespace. Revision Changes Path 1.93 +5 -5 src/sys/i386/i386/apic_vector.s From owner-cvs-src@FreeBSD.ORG Thu Nov 13 10:39:19 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E22116A4CE; Thu, 13 Nov 2003 10:39:19 -0800 (PST) Received: from green.bikeshed.org (localhost [127.0.0.1]) by green.bikeshed.org (8.12.10/8.12.9) with ESMTP id hADIdIcR012656; Thu, 13 Nov 2003 13:39:18 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost)hADIdHZY012652; Thu, 13 Nov 2003 13:39:17 -0500 (EST) Message-Id: <200311131839.hADIdHZY012652@green.bikeshed.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: "Poul-Henning Kamp" In-Reply-To: Message from "Poul-Henning Kamp" of "Wed, 12 Nov 2003 23:52:23 +0100." <688.1068677543@critter.freebsd.dk> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Nov 2003 13:39:17 -0500 Sender: green@green.bikeshed.org cc: "Brian F. Feldman" cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org cc: Kirk McKusick Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 18:39:19 -0000 "Poul-Henning Kamp" wrote: > In message <200311122219.hACMJwaG007327@beastie.mckusick.com>, Kirk McKusick wr > ites: > > From: "Brian F. Feldman" > > Date: Wed, 12 Nov 2003 14:16:07 -0500 > > Sender: owner-src-committers@FreeBSD.org > > X-Loop: FreeBSD.ORG > > > > Does this mean someone may be free to write wrappers that block > > ENOSYS, execute statfs calls, and fall back to ostatfs calls > > (translating 64->32 bit values as best as possible, like the kernel > > does) returning the new statfs? Obviously, this would just be to > > add a safety window for the transition period and to be removed > > before a -RELEASE. > > > > -- > > Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ > > <> green@FreeBSD.org \ The Power to Serve! \ > > Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ > > > >The above would certainly be possible. If this were a more heavily > >used interface (like say stat), it would be a useful exercise. But > >I do not feel it is really necessary for statfs. However, I am not > >going to object if someone wants to go through the exercise of > >implementing your suggestion. > > Uhm, as far as I recall, calling an undefined system call gives you > a signal you need to handle, before you will ever see the ENOSYS. See, by "block ENOSYS", I sorta meant to say "block SIGSYS"... Still this seems like it would be a useful enough upgrade path for -current users if implemented soon. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Thu Nov 13 11:08:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A405E16A4CE; Thu, 13 Nov 2003 11:08:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2005743F3F; Thu, 13 Nov 2003 11:08:44 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADJ8hXJ042990; Thu, 13 Nov 2003 11:08:43 -0800 (PST) (envelope-from johan@repoman.freebsd.org) Received: (from johan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADJ8h6t042989; Thu, 13 Nov 2003 11:08:43 -0800 (PST) (envelope-from johan) Message-Id: <200311131908.hADJ8h6t042989@repoman.freebsd.org> From: Johan Karlsson Date: Thu, 13 Nov 2003 11:08:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/fsdb Makefile fsdb.c fsdbutil.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 19:08:44 -0000 johan 2003/11/13 11:08:43 PST FreeBSD src repository Modified files: sbin/fsdb Makefile fsdb.c fsdbutil.c Log: Make this WARNS=2 clean by - #include for _time_to_time32 et al - use (uintmax_t) and %j - remove unused variable 'j' (from PR 39866) PR: 39866 Submitted by: Dan Lukes Tested by: make universe Revision Changes Path 1.16 +0 -1 src/sbin/fsdb/Makefile 1.28 +1 -0 src/sbin/fsdb/fsdb.c 1.18 +9 -7 src/sbin/fsdb/fsdbutil.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 11:18:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9791916A4CE; Thu, 13 Nov 2003 11:18:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEF2243FA3; Thu, 13 Nov 2003 11:18:43 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADJIhXJ043429; Thu, 13 Nov 2003 11:18:43 -0800 (PST) (envelope-from johan@repoman.freebsd.org) Received: (from johan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADJIhb1043428; Thu, 13 Nov 2003 11:18:43 -0800 (PST) (envelope-from johan) Message-Id: <200311131918.hADJIhb1043428@repoman.freebsd.org> From: Johan Karlsson Date: Thu, 13 Nov 2003 11:18:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/mount_ext2fs Makefile mount_ext2fs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 19:18:44 -0000 johan 2003/11/13 11:18:43 PST FreeBSD src repository Modified files: sbin/mount_ext2fs Makefile mount_ext2fs.c Log: Make this WARNS=2 clean by - constifying copyright PR: 39867 Submitted by: Dan Lukes Tested by: make universe Revision Changes Path 1.7 +0 -1 src/sbin/mount_ext2fs/Makefile 1.16 +1 -1 src/sbin/mount_ext2fs/mount_ext2fs.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 11:23:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0200716A4CE; Thu, 13 Nov 2003 11:23:39 -0800 (PST) Received: from green.bikeshed.org (localhost [127.0.0.1]) by green.bikeshed.org (8.12.10/8.12.9) with ESMTP id hADJNccR013183; Thu, 13 Nov 2003 14:23:38 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost)hADJNbTN013180; Thu, 13 Nov 2003 14:23:38 -0500 (EST) Message-Id: <200311131923.hADJNbTN013180@green.bikeshed.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: "Brian F. Feldman" In-Reply-To: Message from "Brian F. Feldman" <200311131839.hADIdHZY012652@green.bikeshed.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 13 Nov 2003 14:23:37 -0500 Sender: green@green.bikeshed.org cc: Poul-Henning Kamp cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org cc: Kirk McKusick Subject: Re: cvs commit: src/bin/df df.c src/sys/kern syscalls.master vfs_bio.c vfs_cluster.c vfs_syscalls.c src/sys/sys mount.h src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 19:23:39 -0000 "Brian F. Feldman" wrote: > "Poul-Henning Kamp" wrote: > > In message <200311122219.hACMJwaG007327@beastie.mckusick.com>, Kirk McKusick wr > > ites: > > > From: "Brian F. Feldman" > > > Date: Wed, 12 Nov 2003 14:16:07 -0500 > > > Sender: owner-src-committers@FreeBSD.org > > > X-Loop: FreeBSD.ORG > > > > > > Does this mean someone may be free to write wrappers that block > > > ENOSYS, execute statfs calls, and fall back to ostatfs calls > > > (translating 64->32 bit values as best as possible, like the kernel > > > does) returning the new statfs? Obviously, this would just be to > > > add a safety window for the transition period and to be removed > > > before a -RELEASE. > > > > > > -- > > > Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ > > > <> green@FreeBSD.org \ The Power to Serve! \ > > > Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ > > > > > >The above would certainly be possible. If this were a more heavily > > >used interface (like say stat), it would be a useful exercise. But > > >I do not feel it is really necessary for statfs. However, I am not > > >going to object if someone wants to go through the exercise of > > >implementing your suggestion. > > > > Uhm, as far as I recall, calling an undefined system call gives you > > a signal you need to handle, before you will ever see the ENOSYS. > > See, by "block ENOSYS", I sorta meant to say "block SIGSYS"... Still this > seems like it would be a useful enough upgrade path for -current users if > implemented soon. Nevermind. The libc version wasn't bumped, so the old programs are all dead anyway. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Thu Nov 13 11:54:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AAF016A4CE; Thu, 13 Nov 2003 11:54:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAB9543F93; Thu, 13 Nov 2003 11:54:37 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADJsbXJ044769; Thu, 13 Nov 2003 11:54:37 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADJsbWA044768; Thu, 13 Nov 2003 11:54:37 -0800 (PST) (envelope-from obrien) Message-Id: <200311131954.hADJsbWA044768@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Nov 2003 11:54:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb if_rue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 19:54:38 -0000 obrien 2003/11/13 11:54:37 PST FreeBSD src repository Modified files: sys/dev/usb if_rue.c Log: It is obivous this started out as a copy of a Bill Paul driver so he has a copyright on this driver as well. Bill uses a 4-clause BSDL, so we need to add a complete copy of Bill's copyright. Revision Changes Path 1.6 +30 -0 src/sys/dev/usb/if_rue.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 12:24:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 723DE16A4CE; Thu, 13 Nov 2003 12:24:05 -0800 (PST) Received: from beastie.mckusick.com (beastie.mckusick.com [209.31.233.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A65343F3F; Thu, 13 Nov 2003 12:24:04 -0800 (PST) (envelope-from mckusick@beastie.mckusick.com) Received: from beastie.mckusick.com (localhost [127.0.0.1]) by beastie.mckusick.com (8.12.8/8.12.3) with ESMTP id hADKO3aG009382; Thu, 13 Nov 2003 12:24:03 -0800 (PST) (envelope-from mckusick@beastie.mckusick.com) Message-Id: <200311132024.hADKO3aG009382@beastie.mckusick.com> To: Robert Watson In-Reply-To: Your message of "Wed, 12 Nov 2003 19:03:07 EST." Date: Thu, 13 Nov 2003 12:24:03 -0800 From: Kirk McKusick cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_timeout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 20:24:05 -0000 > Date: Wed, 12 Nov 2003 19:03:07 -0500 (EST) > From: Robert Watson > X-Sender: robert@fledge.watson.org > To: Kirk McKusick > Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org > Subject: Re: cvs commit: src/sys/kern kern_timeout.c > In-Reply-To: <200311122228.hACMSSwZ027025@repoman.freebsd.org> > > On Wed, 12 Nov 2003, Kirk McKusick wrote: > > > mckusick 2003/11/12 14:28:28 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/kern kern_timeout.c > > Log: > > At the request of several developers, restore the DIAGNOSIC code > > deleted in 1.81. Increase the initial timeout limit to 2ms to > > eliminate spurious messages of excessive timeouts in the NFS > > client code. > > > > Requested by: Poul-Henning Kamp > > Requested by: Mike Silbersack > > Requested by: Sam Leffler > > Could this have been responsible for the apparent hangs some (few but > unfortunate) users were seeing with NFS, frequently accompanied by notices > that the NFS server was unreachable? > > Robert N M Watson FreeBSD Core Team, TrustedBSD Projects > robert@fledge.watson.org Network Associates Laboratories The above code is only included when DIAGNOSTIC is defined and is purely diagnostic (printing out a warning when an event called from the timeout queue takes longer than the threshhold: formerly 1ms now 2ms). So, at best it might have provided a warning. It certainly could not have caused/fixed the problem. Kirk McKusick From owner-cvs-src@FreeBSD.ORG Thu Nov 13 12:35:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67A9616A4CE; Thu, 13 Nov 2003 12:35:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D822643FBD; Thu, 13 Nov 2003 12:35:13 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADKZDXJ047550; Thu, 13 Nov 2003 12:35:13 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADKZDBU047549; Thu, 13 Nov 2003 12:35:13 -0800 (PST) (envelope-from simon) Message-Id: <200311132035.hADKZDBU047549@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 13 Nov 2003 12:35:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 gx.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 20:35:14 -0000 simon 2003/11/13 12:35:13 PST FreeBSD src repository (doc committer) Modified files: share/man/man4 gx.4 Log: Add cross reference to the em(4) driver, which also supports the NICs supported by the gx(4) driver. Revision Changes Path 1.4 +1 -0 src/share/man/man4/gx.4 From owner-cvs-src@FreeBSD.ORG Thu Nov 13 12:55:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DCAC16A4CE; Thu, 13 Nov 2003 12:55:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A083343FEC; Thu, 13 Nov 2003 12:55:54 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADKtsXJ054342; Thu, 13 Nov 2003 12:55:54 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADKtsse054341; Thu, 13 Nov 2003 12:55:54 -0800 (PST) (envelope-from obrien) Message-Id: <200311132055.hADKtsse054341@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Nov 2003 12:55:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c src/sys/dev/ed if_ed.c src/sys/dev/fe if_fe.c src/sys/dev/lge if_lge.c src/sys/dev/lnc if_lnc.c src/sys/dev/my if_my.c src/sys/dev/nge if_nge.c src/sys/dev/re if_re.c src/sys/dev/sn if_sn.c src/sys/dev/tx ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 20:55:56 -0000 obrien 2003/11/13 12:55:54 PST FreeBSD src repository Modified files: sys/dev/bge if_bge.c sys/dev/ed if_ed.c sys/dev/fe if_fe.c sys/dev/lge if_lge.c sys/dev/lnc if_lnc.c sys/dev/my if_my.c sys/dev/nge if_nge.c sys/dev/re if_re.c sys/dev/sn if_sn.c sys/dev/tx if_tx.c sys/dev/usb if_aue.c if_axe.c if_cue.c if_rue.c sys/dev/wl if_wl.c sys/dev/xe if_xe.c sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c Log: Try to create some sort of consistency in how the routings to find the multicast hash are written. There are still two distinct algorithms used, and there actually isn't any reason each driver should have its own copy of this function as they could all share one copy of it (if it grew an additional argument). Revision Changes Path 1.59 +6 -4 src/sys/dev/bge/if_bge.c 1.222 +11 -13 src/sys/dev/ed/if_ed.c 1.79 +14 -16 src/sys/dev/fe/if_fe.c 1.25 +10 -13 src/sys/dev/lge/if_lge.c 1.99 +14 -14 src/sys/dev/lnc/if_lnc.c 1.20 +9 -11 src/sys/dev/my/if_my.c 1.50 +10 -13 src/sys/dev/nge/if_nge.c 1.13 +11 -13 src/sys/dev/re/if_re.c 1.32 +16 -15 src/sys/dev/sn/if_sn.c 1.78 +9 -12 src/sys/dev/tx/if_tx.c 1.75 +7 -5 src/sys/dev/usb/if_aue.c 1.9 +9 -17 src/sys/dev/usb/if_axe.c 1.42 +8 -6 src/sys/dev/usb/if_cue.c 1.7 +10 -12 src/sys/dev/usb/if_rue.c 1.56 +4 -5 src/sys/dev/wl/if_wl.c 1.45 +28 -27 src/sys/dev/xe/if_xe.c 1.132 +23 -20 src/sys/pci/if_dc.c 1.50 +7 -5 src/sys/pci/if_pcn.c 1.123 +12 -14 src/sys/pci/if_rl.c 1.61 +10 -12 src/sys/pci/if_sf.c 1.88 +10 -11 src/sys/pci/if_sis.c 1.69 +8 -6 src/sys/pci/if_sk.c 1.57 +11 -13 src/sys/pci/if_ste.c 1.86 +6 -6 src/sys/pci/if_tl.c 1.75 +12 -13 src/sys/pci/if_vr.c 1.64 +12 -13 src/sys/pci/if_wb.c 1.159 +12 -13 src/sys/pci/if_xl.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 13:02:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2780116A4CF; Thu, 13 Nov 2003 13:02:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4536A43FE0; Thu, 13 Nov 2003 13:01:59 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADL1xXJ054689; Thu, 13 Nov 2003 13:01:59 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADL1wL8054688; Thu, 13 Nov 2003 13:01:58 -0800 (PST) (envelope-from obrien) Message-Id: <200311132101.hADL1wL8054688@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Nov 2003 13:01:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 rue.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 21:02:00 -0000 obrien 2003/11/13 13:01:58 PST FreeBSD src repository Modified files: share/man/man4 rue.4 Log: Document this driver works for the Billionton 10/100 FastEthernet USBKR2 "thumb" adaptor. Revision Changes Path 1.3 +2 -1 src/share/man/man4/rue.4 From owner-cvs-src@FreeBSD.ORG Thu Nov 13 13:13:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39FD716A4CE; Thu, 13 Nov 2003 13:13:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABE6D43FDF; Thu, 13 Nov 2003 13:13:43 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADLDhXJ056105; Thu, 13 Nov 2003 13:13:43 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADLDhlN056104; Thu, 13 Nov 2003 13:13:43 -0800 (PST) (envelope-from des) Message-Id: <200311132113.hADLDhlN056104@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Nov 2003 13:13:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/fdisk fdisk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 21:13:44 -0000 des 2003/11/13 13:13:43 PST FreeBSD src repository Modified files: sbin/fdisk fdisk.c Log: Warn about partitions that would overlap with the master boot record, and if the user agrees, move them out one track. MFC after: 7 days Revision Changes Path 1.72 +5 -0 src/sbin/fdisk/fdisk.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 13:24:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CF0916A4CE; Thu, 13 Nov 2003 13:24:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 084EB43FAF; Thu, 13 Nov 2003 13:24:10 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADLO9XJ056540; Thu, 13 Nov 2003 13:24:09 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADLO9v2056539; Thu, 13 Nov 2003 13:24:09 -0800 (PST) (envelope-from sam) Message-Id: <200311132124.hADLO9v2056539@repoman.freebsd.org> From: Sam Leffler Date: Thu, 13 Nov 2003 13:24:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/kttcp Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 21:24:10 -0000 sam 2003/11/13 13:24:09 PST FreeBSD src repository Modified files: tools/tools/kttcp Makefile Log: honor environment settings of SYSDIR and BINDIR Revision Changes Path 1.2 +2 -2 src/tools/tools/kttcp/Makefile From owner-cvs-src@FreeBSD.ORG Thu Nov 13 13:25:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1190816A4CE; Thu, 13 Nov 2003 13:25:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 785F743FCB; Thu, 13 Nov 2003 13:25:09 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADLP9XJ056634; Thu, 13 Nov 2003 13:25:09 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADLP9Rk056633; Thu, 13 Nov 2003 13:25:09 -0800 (PST) (envelope-from sam) Message-Id: <200311132125.hADLP9Rk056633@repoman.freebsd.org> From: Sam Leffler Date: Thu, 13 Nov 2003 13:25:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/kttcp kttcp.c src/tools/tools/kttcp/sys kttcp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 21:25:10 -0000 sam 2003/11/13 13:25:09 PST FreeBSD src repository Modified files: tools/tools/kttcp kttcp.c tools/tools/kttcp/sys kttcp.c Log: fixup include filenames; this stuff used to be in the kernel source tree Revision Changes Path 1.2 +1 -1 src/tools/tools/kttcp/kttcp.c 1.2 +1 -1 src/tools/tools/kttcp/sys/kttcp.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 13:25:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F134C16A4CF; Thu, 13 Nov 2003 13:25:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41C7443FE0; Thu, 13 Nov 2003 13:25:13 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADLPDXJ056662; Thu, 13 Nov 2003 13:25:13 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADLPCUC056661; Thu, 13 Nov 2003 13:25:12 -0800 (PST) (envelope-from des) Message-Id: <200311132125.hADLPCUC056661@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Nov 2003 13:25:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 21:25:14 -0000 des 2003/11/13 13:25:12 PST FreeBSD src repository Modified files: usr.sbin/moused moused.c Log: If the name of the mouse device starts with "/dev/ums", try to load the ums module, and allow for up to five attempts to open the device, with two-second pauses in between, to allow time for USB controllers and devices to probe and attach. My Gigabyte P4 Titan 848P motherboard has a total of 15 ports on four hubs hanging off four controllers, and needs at least half of that ten-second allowance to get ready. MFC after: 7 days Revision Changes Path 1.61 +15 -2 src/usr.sbin/moused/moused.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 13:29:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B223816A4CE; Thu, 13 Nov 2003 13:29:49 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5A0D43F85; Thu, 13 Nov 2003 13:29:48 -0800 (PST) (envelope-from sam@errno.com) Received: from 66.127.85.91 ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.9) with ESMTP id hADLTl0x034805 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 13 Nov 2003 13:29:48 -0800 (PST) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: Hiten Pandya , Sam Leffler Date: Thu, 13 Nov 2003 13:31:57 -0800 User-Agent: KMail/1.5.3 References: <200311130030.hAD0URYW034955@repoman.freebsd.org> <20031113131225.GB11561@perrin.nxad.com> In-Reply-To: <20031113131225.GB11561@perrin.nxad.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311131331.57876.sam@errno.com> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools README src/tools/tools/kttcp Makefile README kttcp.c src/tools/tools/kttcp/sys Makefile kttcp.c kttcpio.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 21:29:49 -0000 On Thursday 13 November 2003 05:12 am, Hiten Pandya wrote: > On Wed, Nov 12, 2003 at 04:30:27PM -0800, Sam Leffler wrote: > : sam 2003/11/12 16:30:27 PST > : > : FreeBSD src repository > : > : Modified files: > : tools/tools README > : Added files: > : tools/tools/kttcp Makefile README kttcp.c > : tools/tools/kttcp/sys Makefile kttcp.c kttcpio.h > : Log: > : add in-kernel ttcp performance tool > > Hmm, is this one from NetBSD ? The code I started with came from Jason Thorpe. Sam From owner-cvs-src@FreeBSD.ORG Thu Nov 13 14:39:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C25FC16A4CE; Thu, 13 Nov 2003 14:39:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A0B043F85; Thu, 13 Nov 2003 14:39:50 -0800 (PST) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADMdoXJ060533; Thu, 13 Nov 2003 14:39:50 -0800 (PST) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADMdnNY060532; Thu, 13 Nov 2003 14:39:49 -0800 (PST) (envelope-from simon) Message-Id: <200311132239.hADMdnNY060532@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 13 Nov 2003 14:39:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 22:39:50 -0000 simon 2003/11/13 14:39:49 PST FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Trim the dc(4) entries. Reviewed by: bmah Revision Changes Path 1.198 +3 -133 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Thu Nov 13 14:40:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E843D16A4CF; Thu, 13 Nov 2003 14:40:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C50943F75; Thu, 13 Nov 2003 14:40:06 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hADMe6XJ060570; Thu, 13 Nov 2003 14:40:06 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hADMe5av060569; Thu, 13 Nov 2003 14:40:05 -0800 (PST) (envelope-from kan) Message-Id: <200311132240.hADMe5av060569@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 13 Nov 2003 14:40:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/gcc gcc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 22:40:07 -0000 kan 2003/11/13 14:40:05 PST FreeBSD src repository Modified files: contrib/gcc gcc.c Log: Use correct priority parameter value in add_prefix from corresponding enum instead of passing literal 0. This fixes gcc invocations with GCC_EXEC_PREFIX environment set. Submitted By: Geoff Morrison PR: gnu/53476 Revision Changes Path 1.38 +2 -2 src/contrib/gcc/gcc.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 15:41:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7389716A4DF; Thu, 13 Nov 2003 15:41:50 -0800 (PST) Received: from carver.gumbysoft.com (carver.gumbysoft.com [66.220.23.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA554400B; Thu, 13 Nov 2003 15:41:31 -0800 (PST) (envelope-from dwhite@gumbysoft.com) Received: by carver.gumbysoft.com (Postfix, from userid 1000) id D3C2D72DC3; Thu, 13 Nov 2003 15:41:31 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by carver.gumbysoft.com (Postfix) with ESMTP id D157972DC1; Thu, 13 Nov 2003 15:41:31 -0800 (PST) Date: Thu, 13 Nov 2003 15:41:31 -0800 (PST) From: Doug White To: Dag-Erling Smorgrav In-Reply-To: <200311132125.hADLPCUC056661@repoman.freebsd.org> Message-ID: <20031113153949.O82404@carver.gumbysoft.com> References: <200311132125.hADLPCUC056661@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 23:41:51 -0000 On Thu, 13 Nov 2003, Dag-Erling Smorgrav wrote: > If the name of the mouse device starts with "/dev/ums", try to load the > ums module, and allow for up to five attempts to open the device, with > two-second pauses in between, to allow time for USB controllers and > devices to probe and attach. My Gigabyte P4 Titan 848P motherboard has > a total of 15 ports on four hubs hanging off four controllers, and needs > at least half of that ten-second allowance to get ready. This is only a problem if you don't have ums in your kernel or loaded as a module. On attach usbd launches moused in the default configuration. ums ships in GENERIC and usbd is enabled by default, so this seems to be introducing a kludge for your own broken configuration. -- Doug White | FreeBSD: The Power to Serve dwhite@gumbysoft.com | www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Thu Nov 13 15:46:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7653D16A4CE; Thu, 13 Nov 2003 15:46:02 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36DA643F93; Thu, 13 Nov 2003 15:46:01 -0800 (PST) (envelope-from mdodd@FreeBSD.ORG) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.9/8.12.9) with ESMTP id hADNjx8B083066; Thu, 13 Nov 2003 18:46:00 -0500 (EST) (envelope-from mdodd@FreeBSD.ORG) Date: Thu, 13 Nov 2003 18:45:59 -0500 (EST) From: "Matthew N. Dodd" X-X-Sender: winter@sasami.jurai.net To: Dag-Erling Smorgrav In-Reply-To: <200311132125.hADLPCUC056661@repoman.freebsd.org> Message-ID: <20031113184453.U14655@sasami.jurai.net> References: <200311132125.hADLPCUC056661@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 13 Nov 2003 23:46:02 -0000 On Thu, 13 Nov 2003, Dag-Erling Smorgrav wrote: > If the name of the mouse device starts with "/dev/ums", try to load the > ums module, and allow for up to five attempts to open the device, with > two-second pauses in between, to allow time for USB controllers and > devices to probe and attach. This is the wrong solution. You should use devd(8), which will start moused when a USB mouse shows up. usbd(8) will also do this. -- 10 40 80 C0 00 FF FF FF FF C0 00 00 00 00 10 AA AA 03 00 00 00 08 00 From owner-cvs-src@FreeBSD.ORG Thu Nov 13 19:21:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F29816A4CE; Thu, 13 Nov 2003 19:21:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D76B543F75; Thu, 13 Nov 2003 19:21:22 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE3LMXJ082062; Thu, 13 Nov 2003 19:21:22 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE3LMlo082061; Thu, 13 Nov 2003 19:21:22 -0800 (PST) (envelope-from jeff) Message-Id: <200311140321.hAE3LMlo082061@repoman.freebsd.org> From: Jeff Roberson Date: Thu, 13 Nov 2003 19:21:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/alpha/gen setjmp.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 03:21:23 -0000 jeff 2003/11/13 19:21:22 PST FreeBSD src repository Modified files: lib/libc/alpha/gen setjmp.S Log: - Use the magic for ___sigreturn in __sigset. - In __sigreturn call sigprocmask() to restore our signal state rather than returning through sigreturn(). jmp to ___sigreturn to restore our register state following this. Requested by: pete Revision Changes Path 1.17 +11 -3 src/lib/libc/alpha/gen/setjmp.S From owner-cvs-src@FreeBSD.ORG Thu Nov 13 19:29:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CCCE16A4CE; Thu, 13 Nov 2003 19:29:22 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [208.142.252.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7AAB43FBD; Thu, 13 Nov 2003 19:29:20 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id hAE3TKh44337; Thu, 13 Nov 2003 22:29:20 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Thu, 13 Nov 2003 22:29:20 -0500 (EST) From: Jeff Roberson To: Jeff Roberson In-Reply-To: <200311140321.hAE3LMlo082061@repoman.freebsd.org> Message-ID: <20031113222814.C10222-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/alpha/gen setjmp.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 03:29:22 -0000 On Thu, 13 Nov 2003, Jeff Roberson wrote: > jeff 2003/11/13 19:21:22 PST > > FreeBSD src repository > > Modified files: > lib/libc/alpha/gen setjmp.S > Log: > - Use the magic for ___sigreturn in __sigset. er, got confused, this should read 'magic for ___longjmp' > - In __sigreturn call sigprocmask() to restore our signal state rather than > returning through sigreturn(). jmp to ___sigreturn to restore our register > state following this. And this should read "In __longjmp" ... jmp to "___longjmp" doh. > > Requested by: pete > > Revision Changes Path > 1.17 +11 -3 src/lib/libc/alpha/gen/setjmp.S > From owner-cvs-src@FreeBSD.ORG Thu Nov 13 19:45:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18C1516A4CE; Thu, 13 Nov 2003 19:45:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F7E43FBD; Thu, 13 Nov 2003 19:45:30 -0800 (PST) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE3jUXJ083067; Thu, 13 Nov 2003 19:45:30 -0800 (PST) (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE3jUHh083066; Thu, 13 Nov 2003 19:45:30 -0800 (PST) (envelope-from emax) Message-Id: <200311140345.hAE3jUHh083066@repoman.freebsd.org> From: Maksim Yevmenkin Date: Thu, 13 Nov 2003 19:45:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph/bluetooth/drivers/h4 ng_h4_prse.hng_h4_var.h src/sys/netgraph/bluetooth/hci ng_hci_cmds.h ng_hci_evnt.h ng_hci_misc.h ng_hci_prse.h ng_hci_var.h... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 03:45:31 -0000 emax 2003/11/13 19:45:30 PST FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/h4 ng_h4_prse.h ng_h4_var.h sys/netgraph/bluetooth/hci ng_hci_cmds.h ng_hci_evnt.h ng_hci_misc.h ng_hci_prse.h ng_hci_var.h sys/netgraph/bluetooth/include ng_bluetooth.h ng_btsocket.h ng_btsocket_hci_raw.h ng_btsocket_l2cap.h ng_btsocket_rfcomm.h ng_h4.h ng_hci.h sys/netgraph/bluetooth/l2cap ng_l2cap_misc.h ng_l2cap_prse.h ng_l2cap_var.h Log: Change double include protection style in headers to match the rest of Netgraph code. Reviewed by: imp, ru Approved by: imp (mentor) Revision Changes Path 1.3 +1 -1 src/sys/netgraph/bluetooth/drivers/h4/ng_h4_prse.h 1.3 +1 -1 src/sys/netgraph/bluetooth/drivers/h4/ng_h4_var.h 1.3 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_cmds.h 1.3 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_evnt.h 1.4 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_misc.h 1.3 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_prse.h 1.3 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_var.h 1.3 +1 -1 src/sys/netgraph/bluetooth/include/ng_bluetooth.h 1.3 +1 -1 src/sys/netgraph/bluetooth/include/ng_btsocket.h 1.3 +1 -1 src/sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h 1.3 +1 -1 src/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h 1.2 +1 -1 src/sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h 1.3 +1 -1 src/sys/netgraph/bluetooth/include/ng_h4.h 1.3 +1 -1 src/sys/netgraph/bluetooth/include/ng_hci.h 1.4 +1 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h 1.3 +1 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_prse.h 1.3 +1 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h From owner-cvs-src@FreeBSD.ORG Thu Nov 13 19:48:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6F2216A4CE; Thu, 13 Nov 2003 19:48:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2192743FCB; Thu, 13 Nov 2003 19:48:38 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE3mbXJ083138; Thu, 13 Nov 2003 19:48:37 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE3mbRt083137; Thu, 13 Nov 2003 19:48:37 -0800 (PST) (envelope-from jeff) Message-Id: <200311140348.hAE3mbRt083137@repoman.freebsd.org> From: Jeff Roberson Date: Thu, 13 Nov 2003 19:48:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 03:48:38 -0000 jeff 2003/11/13 19:48:37 PST FreeBSD src repository Modified files: sys/kern syscalls.master Log: - Revision 1.156 marked ptrace() SMP safe. Unfortunately, alpha implements parts of ptrace using proc_rwmem(). proc_rwmem() requires giant, and giant must be acquired prior to the proc lock, so ptrace must require giant still. Revision Changes Path 1.158 +1 -1 src/sys/kern/syscalls.master From owner-cvs-src@FreeBSD.ORG Thu Nov 13 19:49:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAEBB16A4CE; Thu, 13 Nov 2003 19:49:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F9C543FAF; Thu, 13 Nov 2003 19:49:42 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE3ngXJ083207; Thu, 13 Nov 2003 19:49:42 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE3ng5H083206; Thu, 13 Nov 2003 19:49:42 -0800 (PST) (envelope-from jeff) Message-Id: <200311140349.hAE3ng5H083206@repoman.freebsd.org> From: Jeff Roberson Date: Thu, 13 Nov 2003 19:49:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys syscall.h syscall.mk sysproto.h src/sys/kern init_sysent.c syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 03:49:43 -0000 jeff 2003/11/13 19:49:42 PST FreeBSD src repository Modified files: sys/sys syscall.h syscall.mk sysproto.h sys/kern init_sysent.c syscalls.c Log: - regen. Revision Changes Path 1.161 +2 -2 src/sys/kern/init_sysent.c 1.147 +1 -1 src/sys/kern/syscalls.c 1.145 +1 -1 src/sys/sys/syscall.h 1.100 +1 -1 src/sys/sys/syscall.mk 1.141 +1 -1 src/sys/sys/sysproto.h From owner-cvs-src@FreeBSD.ORG Thu Nov 13 20:04:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91FEB16A4CE; Thu, 13 Nov 2003 20:04:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E53B43F85; Thu, 13 Nov 2003 20:04:15 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE44EXJ084915; Thu, 13 Nov 2003 20:04:14 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE44Ef9084914; Thu, 13 Nov 2003 20:04:14 -0800 (PST) (envelope-from jeff) Message-Id: <200311140404.hAE44Ef9084914@repoman.freebsd.org> From: Jeff Roberson Date: Thu, 13 Nov 2003 20:04:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 04:04:15 -0000 jeff 2003/11/13 20:04:14 PST FreeBSD src repository Modified files: sys/alpha/alpha machdep.c Log: - Drop the process lock before we call into ptrace_{read|write}_int or any functions that call them. Calling proc_rwmem() with the proc lock held is not safe. Currently, we're protected from any races by Giant. Eventually proc_rwmem() should require the proc lock and not Giant. Revision Changes Path 1.215 +7 -4 src/sys/alpha/alpha/machdep.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 20:06:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BF3F16A4CE; Thu, 13 Nov 2003 20:06:57 -0800 (PST) Received: from is2.mh.itc.u-tokyo.ac.jp (is2.mh.itc.u-tokyo.ac.jp [133.11.205.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6407E43FBF; Thu, 13 Nov 2003 20:06:53 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from is2.mh.itc.u-tokyo.ac.jp (is2.mh.itc.u-tokyo.ac.jp [127.0.0.1]) by is2.mh.itc.u-tokyo.ac.jp (Postfix) with ESMTP id 2FAA737857C; Fri, 14 Nov 2003 13:06:51 +0900 (JST) Received: from mailhosting.itc.u-tokyo.ac.jp (IDENT:mirapoint@mailhosting.itc.u-tokyo.ac.jp [133.11.205.3]) hAE46pxs025025; Fri, 14 Nov 2003 13:06:51 +0900 Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [133.11.135.3])3.3.5-GR) with ESMTP id ALP57232; Fri, 14 Nov 2003 13:06:50 +0900 (JST) Date: Fri, 14 Nov 2003 13:06:50 +0900 Message-ID: From: Hidetoshi Shimokawa To: Jake Burkholder In-Reply-To: <200311110740.hAB7ej1l009573@repoman.freebsd.org> References: <200311110740.hAB7ej1l009573@repoman.freebsd.org> User-Agent: Wanderlust/2.11.0 (Wonderwall) REMI/1.14.3 (Matsudai) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.4 (patch 8) (Honest Recruiter) (i386--freebsd) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7: #j7i14gu$jgR\S*&C3R/pJX List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Nov 2003 04:06:57 -0000 At Mon, 10 Nov 2003 23:40:45 -0800 (PST), Jake Burkholder wrote: > > jake 2003/11/10 23:40:45 PST > > FreeBSD src repository > > Modified files: > sys/sparc64/conf GENERIC > Log: > Remove references to atkbd, atkbdc, psm and vga. > > Revision Changes Path > 1.61 +1 -7 src/sys/sparc64/conf/GENERIC This change adds 'makeoptions NO_MODULES=yes'. Is this intentional? /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html From owner-cvs-src@FreeBSD.ORG Thu Nov 13 21:13:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9535916A4CE; Thu, 13 Nov 2003 21:13:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D4043FDF; Thu, 13 Nov 2003 21:13:01 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE5D0XJ093881; Thu, 13 Nov 2003 21:13:00 -0800 (PST) (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE5D0xX093880; Thu, 13 Nov 2003 21:13:00 -0800 (PST) (envelope-from mjacob) Message-Id: <200311140513.hAE5D0xX093880@repoman.freebsd.org> From: Matt Jacob Date: Thu, 13 Nov 2003 21:13:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/isp isp_ioctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 05:13:01 -0000 mjacob 2003/11/13 21:13:00 PST FreeBSD src repository Modified files: sys/dev/isp isp_ioctl.h Log: fix broken _IOR usage Revision Changes Path 1.9 +1 -1 src/sys/dev/isp/isp_ioctl.h From owner-cvs-src@FreeBSD.ORG Thu Nov 13 21:13:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A64316A4CF; Thu, 13 Nov 2003 21:13:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B20143FAF; Thu, 13 Nov 2003 21:13:43 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE5DhXJ093975; Thu, 13 Nov 2003 21:13:43 -0800 (PST) (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE5DhTE093974; Thu, 13 Nov 2003 21:13:43 -0800 (PST) (envelope-from mjacob) Message-Id: <200311140513.hAE5DhTE093974@repoman.freebsd.org> From: Matt Jacob Date: Thu, 13 Nov 2003 21:13:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/isp isp_ioctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 05:13:44 -0000 mjacob 2003/11/13 21:13:43 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/isp isp_ioctl.h Log: MFC: fix broken _IOR usage Revision Changes Path 1.1.2.5 +1 -1 src/sys/dev/isp/isp_ioctl.h From owner-cvs-src@FreeBSD.ORG Thu Nov 13 21:27:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B2516A4CE; Thu, 13 Nov 2003 21:27:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D3F43FF2; Thu, 13 Nov 2003 21:27:42 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE5RgXJ094532; Thu, 13 Nov 2003 21:27:42 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE5RgO3094531; Thu, 13 Nov 2003 21:27:42 -0800 (PST) (envelope-from kan) Message-Id: <200311140527.hAE5RgO3094531@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 13 Nov 2003 21:27:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 05:27:43 -0000 kan 2003/11/13 21:27:41 PST FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Fix a number of style(9) bugs introduced in r1.113 by me. Suggested by: bde Revision Changes Path 1.115 +46 -47 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 21:31:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5092616A4CE; Thu, 13 Nov 2003 21:31:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF45B43FBD; Thu, 13 Nov 2003 21:31:50 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE5VoXJ095303; Thu, 13 Nov 2003 21:31:50 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE5VofS095302; Thu, 13 Nov 2003 21:31:50 -0800 (PST) (envelope-from jake) Message-Id: <200311140531.hAE5VofS095302@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 13 Nov 2003 21:31:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 05:31:51 -0000 jake 2003/11/13 21:31:50 PST FreeBSD src repository Modified files: sys/sparc64/conf GENERIC Log: Rev 1.61 accidentily added makeoptions NO_MODULES=yes. Funny that I add this to all my kernel configs. Submitted by: Hidetoshi Shimokawa Revision Changes Path 1.64 +10 -11 src/sys/sparc64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Thu Nov 13 21:37:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09A4616A4CE; Thu, 13 Nov 2003 21:37:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CBEE43F75; Thu, 13 Nov 2003 21:37:37 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE5bbXJ095623; Thu, 13 Nov 2003 21:37:37 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE5baMj095622; Thu, 13 Nov 2003 21:37:36 -0800 (PST) (envelope-from imp) Message-Id: <200311140537.hAE5baMj095622@repoman.freebsd.org> From: Warner Losh Date: Thu, 13 Nov 2003 21:37:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sn if_sn.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 05:37:38 -0000 imp 2003/11/13 21:37:36 PST FreeBSD src repository Modified files: sys/dev/sn if_sn.c Log: Reconst-poison crc routine that was renamed to mchash. re-remove the _ in u_intXX_t Revision Changes Path 1.33 +5 -5 src/sys/dev/sn/if_sn.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 21:45:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD80016A4CE; Thu, 13 Nov 2003 21:45:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29A6843F93; Thu, 13 Nov 2003 21:45:40 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE5jdXJ096074; Thu, 13 Nov 2003 21:45:39 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE5jdLp096073; Thu, 13 Nov 2003 21:45:39 -0800 (PST) (envelope-from imp) Message-Id: <200311140545.hAE5jdLp096073@repoman.freebsd.org> From: Warner Losh Date: Thu, 13 Nov 2003 21:45:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_dc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 05:45:40 -0000 imp 2003/11/13 21:45:39 PST FreeBSD src repository Modified files: sys/pci if_dc.c Log: reconst poison re-de u_intXX_t Revision Changes Path 1.133 +10 -10 src/sys/pci/if_dc.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 22:02:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C99616A4CE; Thu, 13 Nov 2003 22:02:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B063B44001; Thu, 13 Nov 2003 22:02:52 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE62qXJ096825; Thu, 13 Nov 2003 22:02:52 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE62ql3096824; Thu, 13 Nov 2003 22:02:52 -0800 (PST) (envelope-from imp) Message-Id: <200311140602.hAE62ql3096824@repoman.freebsd.org> From: Warner Losh Date: Thu, 13 Nov 2003 22:02:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb if_cue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 06:02:53 -0000 imp 2003/11/13 22:02:52 PST FreeBSD src repository Modified files: sys/dev/usb if_cue.c Log: Despam the const poisoning Despam the u_->u change Revision Changes Path 1.43 +5 -5 src/sys/dev/usb/if_cue.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 22:24:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8F0916A4CE; Thu, 13 Nov 2003 22:24:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5662643FDD; Thu, 13 Nov 2003 22:24:21 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE6OLXJ098539; Thu, 13 Nov 2003 22:24:21 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE6OLgK098538; Thu, 13 Nov 2003 22:24:21 -0800 (PST) (envelope-from imp) Message-Id: <200311140624.hAE6OLgK098538@repoman.freebsd.org> From: Warner Losh Date: Thu, 13 Nov 2003 22:24:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 06:24:22 -0000 imp 2003/11/13 22:24:21 PST FreeBSD src repository Modified files: share/man/man7 build.7 Log: Add required reboot into single-user mode step. # mdoc janitors should make sure I did the markup right Inspired by: recent problems in this area Revision Changes Path 1.22 +1 -0 src/share/man/man7/build.7 From owner-cvs-src@FreeBSD.ORG Thu Nov 13 22:55:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E3C716A4CE; Thu, 13 Nov 2003 22:55:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEF8D43FA3; Thu, 13 Nov 2003 22:55:11 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE6tBXJ099693; Thu, 13 Nov 2003 22:55:11 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE6tBI0099692; Thu, 13 Nov 2003 22:55:11 -0800 (PST) (envelope-from alc) Message-Id: <200311140655.hAE6tBI0099692@repoman.freebsd.org> From: Alan Cox Date: Thu, 13 Nov 2003 22:55:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 06:55:12 -0000 alc 2003/11/13 22:55:11 PST FreeBSD src repository Modified files: sys/vm vm_map.c vm_mmap.c Log: Changes to msync(2) - Return EBUSY if the region was wired by mlock(2) and MS_INVALIDATE is specified to msync(2). This is required by the Open Group Base Specifications Issue 6. - vm_map_sync() doesn't return KERN_FAILURE. Thus, msync(2) can't possibly return EIO. - The second major loop in vm_map_sync() handles sub maps. Thus, failing on sub maps in the first major loop isn't necessary. Revision Changes Path 1.322 +2 -2 src/sys/vm/vm_map.c 1.172 +2 -2 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Thu Nov 13 23:18:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 676E216A4CE; Thu, 13 Nov 2003 23:18:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D923843FCB; Thu, 13 Nov 2003 23:18:12 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE7ICXJ001618; Thu, 13 Nov 2003 23:18:12 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE7ICjI001617; Thu, 13 Nov 2003 23:18:12 -0800 (PST) (envelope-from alc) Message-Id: <200311140718.hAE7ICjI001617@repoman.freebsd.org> From: Alan Cox Date: Thu, 13 Nov 2003 23:18:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys msync.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 07:18:13 -0000 alc 2003/11/13 23:18:12 PST FreeBSD src repository Modified files: lib/libc/sys msync.2 Log: - Add documentation for EBUSY. - Remove EIO. - Add a cross reference to mlock(2). Revision Changes Path 1.26 +4 -2 src/lib/libc/sys/msync.2 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 00:07:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0273616A4CF; Fri, 14 Nov 2003 00:07:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63B9443FA3; Fri, 14 Nov 2003 00:07:14 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE87EXJ004355; Fri, 14 Nov 2003 00:07:14 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE87E7h004354; Fri, 14 Nov 2003 00:07:14 -0800 (PST) (envelope-from mckusick) Message-Id: <200311140807.hAE87E7h004354@repoman.freebsd.org> From: Kirk McKusick Date: Fri, 14 Nov 2003 00:07:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 08:07:15 -0000 mckusick 2003/11/14 00:07:14 PST FreeBSD src repository Modified files: . UPDATING Log: Note to update cfsd (ports/security/cfs) after installing the statfs changes. Submitted by: Marco Wertejuk Revision Changes Path 1.280 +3 -1 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Nov 14 00:09:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93C2116A4CE; Fri, 14 Nov 2003 00:09:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B4D443FE5; Fri, 14 Nov 2003 00:09:02 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE891XJ004419; Fri, 14 Nov 2003 00:09:01 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE89104004418; Fri, 14 Nov 2003 00:09:01 -0800 (PST) (envelope-from harti) Message-Id: <200311140809.hAE89104004418@repoman.freebsd.org> From: Hartmut Brandt Date: Fri, 14 Nov 2003 00:09:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libnetgraph internal.h msg.c netgraph.3 sock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 08:09:02 -0000 harti 2003/11/14 00:09:01 PST FreeBSD src repository Modified files: lib/libnetgraph internal.h msg.c netgraph.3 sock.c Log: Use the new defines that include the trailing '\0' in the code. Replace occurences of the magic constant 2 with an offsetof macro call that computes the size of the leading members of the sockaddr. Use strlcpy instead of sprintf where appropriate. Document the new changes in the man page. Revision Changes Path 1.4 +6 -1 src/lib/libnetgraph/internal.h 1.7 +7 -6 src/lib/libnetgraph/msg.c 1.19 +2 -2 src/lib/libnetgraph/netgraph.3 1.5 +13 -13 src/lib/libnetgraph/sock.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 00:21:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3578116A4CE; Fri, 14 Nov 2003 00:21:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A99C243FA3; Fri, 14 Nov 2003 00:21:21 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE8LLXJ004923; Fri, 14 Nov 2003 00:21:21 -0800 (PST) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE8LLve004922; Fri, 14 Nov 2003 00:21:21 -0800 (PST) (envelope-from kuriyama) Message-Id: <200311140821.hAE8LLve004922@repoman.freebsd.org> From: Jun Kuriyama Date: Fri, 14 Nov 2003 00:21:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 08:21:22 -0000 kuriyama 2003/11/14 00:21:21 PST FreeBSD src repository Modified files: release Makefile Log: Fix ${LOCAL_PATCHES} (chdir was ignored). Revision Changes Path 1.823 +1 -2 src/release/Makefile From owner-cvs-src@FreeBSD.ORG Fri Nov 14 00:22:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 713B116A4CE; Fri, 14 Nov 2003 00:22:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E51C543FB1; Fri, 14 Nov 2003 00:22:38 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE8McXJ004977; Fri, 14 Nov 2003 00:22:38 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE8McnK004976; Fri, 14 Nov 2003 00:22:38 -0800 (PST) (envelope-from alc) Message-Id: <200311140822.hAE8McnK004976@repoman.freebsd.org> From: Alan Cox Date: Fri, 14 Nov 2003 00:22:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 08:22:39 -0000 alc 2003/11/14 00:22:38 PST FreeBSD src repository Modified files: sys/vm vm_mmap.c Log: - Remove long dead code. Revision Changes Path 1.173 +0 -15 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 00:23:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BE4D16A4CE; Fri, 14 Nov 2003 00:23:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B275143FBF; Fri, 14 Nov 2003 00:23:13 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE8NDXJ005017; Fri, 14 Nov 2003 00:23:13 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE8NDAb005015; Fri, 14 Nov 2003 00:23:13 -0800 (PST) (envelope-from das) Message-Id: <200311140823.hAE8NDAb005015@repoman.freebsd.org> From: David Schultz Date: Fri, 14 Nov 2003 00:23:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/unionfs union_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 08:23:14 -0000 das 2003/11/14 00:23:13 PST FreeBSD src repository Modified files: sys/fs/unionfs union_vnops.c Log: - A sanity check in unionfs verifies that lookups of '.' return the vnode of the parent. However, this check should not be performed if the lookup failed. This change should fix "union_lookup returning . not same as startdir" panics people were seeing. The bug was introduced by an incomplete import of a NetBSD delta in rev 1.38. - Move the aforementioned check out from DIAGNOSTIC. Performance is the least of our unionfs worries. - Minor reorganization. PR: 53004 MFC after: 1 week Revision Changes Path 1.103 +21 -27 src/sys/fs/unionfs/union_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 00:28:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D16A316A4CE; Fri, 14 Nov 2003 00:28:14 -0800 (PST) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BB2D43FD7; Fri, 14 Nov 2003 00:28:13 -0800 (PST) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 4F998530A; Fri, 14 Nov 2003 09:28:12 +0100 (CET) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id DA2285308; Fri, 14 Nov 2003 09:28:04 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id 7C78A33C65; Fri, 14 Nov 2003 09:28:04 +0100 (CET) To: "Matthew N. Dodd" References: <200311132125.hADLPCUC056661@repoman.freebsd.org> <20031113184453.U14655@sasami.jurai.net> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Fri, 14 Nov 2003 09:28:04 +0100 In-Reply-To: <20031113184453.U14655@sasami.jurai.net> (Matthew N. Dodd's message of "Thu, 13 Nov 2003 18:45:59 -0500 (EST)") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on flood.des.no X-Spam-Level: ss X-Spam-Status: No, hits=2.5 required=5.0 tests=RCVD_IN_DYNABLOCK autolearn=no version=2.60 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 08:28:15 -0000 "Matthew N. Dodd" writes: > This is the wrong solution. > > You should use devd(8), which will start moused when a USB mouse shows up. des@dwp ~% grep -rl ums /usr/src/sbin/devd des@dwp ~% grep -rl moused /usr/src/sbin/devd des@dwp ~% grep -c ums /etc/devd.conf 0 des@dwp ~% grep -c moused /etc/devd.conf 0 des@dwp ~% grep -rl ums /usr/src/etc /usr/src/etc/rc.d/network /usr/src/etc/usbd.conf des@dwp ~% grep -rl moused /usr/src/etc /usr/src/etc/defaults/rc.conf /usr/src/etc/rc.d/CVS/Entries /usr/src/etc/rc.d/Makefile /usr/src/etc/rc.d/moused /usr/src/etc/usbd.conf /usr/src/etc/apmd.conf > usbd(8) will also do this. Improperly; it ignores /etc/rc.conf. In any case, I understand that usbd(8) is slated for retirement. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Fri Nov 14 00:42:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E53EC16A4CE; Fri, 14 Nov 2003 00:42:59 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B98C43FBF; Fri, 14 Nov 2003 00:42:57 -0800 (PST) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) hAE8gssw015706 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Nov 2003 10:42:54 +0200 (EET) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9p2/8.12.9/Submit) id hAE8gshE015705; Fri, 14 Nov 2003 10:42:54 +0200 (EET) (envelope-from ru) Date: Fri, 14 Nov 2003 10:42:54 +0200 From: Ruslan Ermilov To: Jun Kuriyama Message-ID: <20031114084254.GD12701@sunbay.com> References: <200311140821.hAE8LLve004922@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: <200311140821.hAE8LLve004922@repoman.freebsd.org> User-Agent: Mutt/1.5.5.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 08:43:00 -0000 --GyRA7555PLgSTuth Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Nov 14, 2003 at 12:21:21AM -0800, Jun Kuriyama wrote: > kuriyama 2003/11/14 00:21:21 PST >=20 > FreeBSD src repository >=20 > Modified files: > release Makefile=20 > Log: > Fix ${LOCAL_PATCHES} (chdir was ignored). > =20 > Revision Changes Path > 1.823 +1 -2 src/release/Makefile >=20 You forgot to add, Reviewed by: ru Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --GyRA7555PLgSTuth Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/tJWOUkv4P6juNwoRAvXYAJwIK5IhUK46dcAeCdbcNuGIvTK6wwCfRsEm 0PcGvDusnEYBG38aTlVgg+0= =5Ghe -----END PGP SIGNATURE----- --GyRA7555PLgSTuth-- From owner-cvs-src@FreeBSD.ORG Fri Nov 14 01:51:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBC2316A4CE; Fri, 14 Nov 2003 01:51:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 616CF43FA3; Fri, 14 Nov 2003 01:51:48 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE9pmXJ014722; Fri, 14 Nov 2003 01:51:48 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE9plMr014721; Fri, 14 Nov 2003 01:51:47 -0800 (PST) (envelope-from simokawa) Message-Id: <200311140951.hAE9plMr014721@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 01:51:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern kern_physio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 09:51:49 -0000 simokawa 2003/11/14 01:51:47 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern kern_physio.c Log: Don't check block number overflow for D_MEM. /dev/fwmem needs 48bit offset. This change is needed only for 4-stable. Revision Changes Path 1.46.2.4 +8 -1 src/sys/kern/kern_physio.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 01:55:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF42616A4CE; Fri, 14 Nov 2003 01:55:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76F6143FD7; Fri, 14 Nov 2003 01:55:54 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAE9tsXJ014923; Fri, 14 Nov 2003 01:55:54 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAE9tsdC014922; Fri, 14 Nov 2003 01:55:54 -0800 (PST) (envelope-from simokawa) Message-Id: <200311140955.hAE9tsdC014922@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 01:55:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/examples/scsi_target scsi_cmds.cscsi_target.8 scsi_target.c scsi_target.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 09:55:55 -0000 simokawa 2003/11/14 01:55:54 PST FreeBSD src repository Modified files: (Branch: RELENG_4) share/examples/scsi_target scsi_cmds.c scsi_target.8 scsi_target.c scsi_target.h Log: Sync with -current: - Fixes for sbp_targ(4). - Enhance -s option. - 16 byte command support(not enabled for -stable). Revision Changes Path 1.2.2.2 +109 -15 src/share/examples/scsi_target/scsi_cmds.c 1.2.4.2 +11 -0 src/share/examples/scsi_target/scsi_target.8 1.5.2.6 +63 -3 src/share/examples/scsi_target/scsi_target.c 1.1.4.2 +5 -5 src/share/examples/scsi_target/scsi_target.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 02:22:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1B6F16A4CE; Fri, 14 Nov 2003 02:22:47 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83CB143F3F; Fri, 14 Nov 2003 02:22:45 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id VAA13912; Fri, 14 Nov 2003 21:22:30 +1100 Date: Fri, 14 Nov 2003 21:22:14 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Alexander Kabaev In-Reply-To: <200311140527.hAE5RgO3094531@repoman.freebsd.org> Message-ID: <20031114212146.S7289@gamplex.bde.org> References: <200311140527.hAE5RgO3094531@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 10:22:47 -0000 On Thu, 13 Nov 2003, Alexander Kabaev wrote: > kan 2003/11/13 21:27:41 PST > > FreeBSD src repository > > Modified files: > sys/kern vfs_mount.c > Log: > Fix a number of style(9) bugs introduced in r1.113 by me. > > Suggested by: bde Thanks. Bruce From owner-cvs-src@FreeBSD.ORG Fri Nov 14 03:09:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B7D916A4CE; Fri, 14 Nov 2003 03:09:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01E4B43F93; Fri, 14 Nov 2003 03:09:46 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEB9jXJ019758; Fri, 14 Nov 2003 03:09:45 -0800 (PST) (envelope-from johan@repoman.freebsd.org) Received: (from johan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEB9jHS019757; Fri, 14 Nov 2003 03:09:45 -0800 (PST) (envelope-from johan) Message-Id: <200311141109.hAEB9jHS019757@repoman.freebsd.org> From: Johan Karlsson Date: Fri, 14 Nov 2003 03:09:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb if_aue.c if_cue.c if_kue.c ubsa.c usb_ethersubr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 11:09:46 -0000 johan 2003/11/14 03:09:45 PST FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_cue.c if_kue.c ubsa.c usb_ethersubr.c Log: Remove duplicate #include __FBSDID(...); Leave the one matching the other files in this directory. Revision Changes Path 1.76 +0 -3 src/sys/dev/usb/if_aue.c 1.44 +0 -3 src/sys/dev/usb/if_cue.c 1.52 +0 -3 src/sys/dev/usb/if_kue.c 1.10 +0 -3 src/sys/dev/usb/ubsa.c 1.17 +0 -3 src/sys/dev/usb/usb_ethersubr.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 03:23:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C5F516A4CE; Fri, 14 Nov 2003 03:23:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA91E43F85; Fri, 14 Nov 2003 03:23:26 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEBNQXJ020325; Fri, 14 Nov 2003 03:23:26 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEBNQWC020324; Fri, 14 Nov 2003 03:23:26 -0800 (PST) (envelope-from bde) Message-Id: <200311141123.hAEBNQWC020324@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 03:23:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/config config.y X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 11:23:27 -0000 bde 2003/11/14 03:23:26 PST FreeBSD src repository Modified files: usr.sbin/config config.y Log: Fixed spurious syntax errors for including files that don't begin with a SEMICOLON token (a newline or semicolon, or one of these preceded by a comment and/or whitespace). The input stream was switched too early and the parser was expecting a SEMICOLON in the included file instead of after the filename in the include directive. Submitted by: Stefan Farfeleder Kept alive by: Adam C. Migus Revision Changes Path 1.62 +4 -3 src/usr.sbin/config/config.y From owner-cvs-src@FreeBSD.ORG Fri Nov 14 03:31:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DECC16A4CE; Fri, 14 Nov 2003 03:31:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AB2E43FDD; Fri, 14 Nov 2003 03:31:26 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEBVQXJ020673; Fri, 14 Nov 2003 03:31:26 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEBVPUU020672; Fri, 14 Nov 2003 03:31:25 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141131.hAEBVPUU020672@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 03:31:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/cam/scsi scsi_targ_bh.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 11:31:27 -0000 simokawa 2003/11/14 03:31:25 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_targ_bh.c Log: MFC: rev. 1.19 and 1.20 - Detach black hole device on AC_PATH_DEREGISTERED. - Pick up a correct path_id for the bus on AC_PATH_REGISTERED. - Call cam_periph_invalidate() only if the periph is found. Revision Changes Path 1.4.2.6 +35 -32 src/sys/cam/scsi/scsi_targ_bh.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 03:34:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A91E516A4CE; Fri, 14 Nov 2003 03:34:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 134CC43FE0; Fri, 14 Nov 2003 03:34:30 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEBYTXJ020806; Fri, 14 Nov 2003 03:34:29 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEBYTKu020805; Fri, 14 Nov 2003 03:34:29 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141134.hAEBYTKu020805@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 03:34:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/firewire firewire.c firewire.h firewirereg.h fwcrom.c fwdev.c fwdma.c fwmem.c fwmem.h fwohci.c fwohci_pci.c fwohcireg.h fwohcivar.h fwphyreg.h if_fwe.c sbp.c sbp.h sbp_targ.c src/sys/modules/firewire/sbp Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 11:34:30 -0000 simokawa 2003/11/14 03:34:29 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/firewire firewire.c firewire.h firewirereg.h fwcrom.c fwdev.c fwdma.c fwmem.c fwmem.h fwohci.c fwohci_pci.c fwohcireg.h fwohcivar.h if_fwe.c sbp.c sys/modules/firewire/sbp Makefile Added files: (Branch: RELENG_4) sys/dev/firewire fwphyreg.h sbp.h sbp_targ.c Log: Sync with -current: - Major restruction of asynchronous receive API. - Add sbp_targ(4) code. - Add fwphy register definitions. - Enable core dump on sbp-2 device. - Add some tunables/sysctls. - Minor bug fixes and stability improvement. Revision Changes Path 1.3.2.27 +272 -235 src/sys/dev/firewire/firewire.c 1.2.2.11 +28 -7 src/sys/dev/firewire/firewire.h 1.1.2.18 +38 -8 src/sys/dev/firewire/firewirereg.h 1.2.2.4 +9 -5 src/sys/dev/firewire/fwcrom.c 1.2.4.14 +85 -44 src/sys/dev/firewire/fwdev.c 1.1.2.3 +3 -1 src/sys/dev/firewire/fwdma.c 1.1.2.12 +152 -158 src/sys/dev/firewire/fwmem.c 1.1.2.5 +5 -4 src/sys/dev/firewire/fwmem.h 1.1.2.25 +66 -85 src/sys/dev/firewire/fwohci.c 1.3.2.17 +5 -2 src/sys/dev/firewire/fwohci_pci.c 1.2.2.10 +7 -7 src/sys/dev/firewire/fwohcireg.h 1.1.2.8 +1 -0 src/sys/dev/firewire/fwohcivar.h 1.1.2.1 +168 -0 src/sys/dev/firewire/fwphyreg.h (new) 1.1.2.16 +27 -19 src/sys/dev/firewire/if_fwe.c 1.5.2.25 +478 -374 src/sys/dev/firewire/sbp.c 1.2.2.1 +202 -0 src/sys/dev/firewire/sbp.h (new) 1.2.2.1 +1550 -0 src/sys/dev/firewire/sbp_targ.c (new) 1.2.2.3 +1 -1 src/sys/modules/firewire/sbp/Makefile From owner-cvs-src@FreeBSD.ORG Fri Nov 14 03:40:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2E5616A4CE; Fri, 14 Nov 2003 03:40:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B44943F93; Fri, 14 Nov 2003 03:40:21 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEBeLXJ021066; Fri, 14 Nov 2003 03:40:21 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEBeK5O021065; Fri, 14 Nov 2003 03:40:20 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141140.hAEBeK5O021065@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 03:40:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/fwcontrol fwcontrol.8 fwcontrol.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 11:40:21 -0000 simokawa 2003/11/14 03:40:20 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/fwcontrol fwcontrol.8 fwcontrol.c Log: Sync with -current: - Add -p option to dump phy registers. - Add '0x' in front of EUI64 to avoid confusion. Revision Changes Path 1.1.2.9 +3 -1 src/usr.sbin/fwcontrol/fwcontrol.8 1.1.2.11 +95 -3 src/usr.sbin/fwcontrol/fwcontrol.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 03:54:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9842D16A4CE; Fri, 14 Nov 2003 03:54:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10F7B43F75; Fri, 14 Nov 2003 03:54:50 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEBsnXJ021668; Fri, 14 Nov 2003 03:54:49 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEBsnTN021667; Fri, 14 Nov 2003 03:54:49 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141154.hAEBsnTN021667@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 03:54:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 11:54:50 -0000 simokawa 2003/11/14 03:54:49 PST FreeBSD src repository Modified files: sys/conf NOTES Log: Add sbp_targ(4). Revision Changes Path 1.1188 +1 -0 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:06:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF21616A4CF; Fri, 14 Nov 2003 04:06:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE92343F85; Fri, 14 Nov 2003 04:06:35 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEC6ZXJ023141; Fri, 14 Nov 2003 04:06:35 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEC6Zl4023140; Fri, 14 Nov 2003 04:06:35 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141206.hAEC6Zl4023140@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 04:06:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/conf files src/sys/i386/conf LINT src/sys/modules/firewire/sbp_targ Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:06:37 -0000 simokawa 2003/11/14 04:06:35 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/conf files sys/i386/conf LINT sys/modules/firewire Makefile Added files: (Branch: RELENG_4) sys/modules/firewire/sbp_targ Makefile Log: Build sbp_targ(4). Revision Changes Path 1.340.2.144 +1 -0 src/sys/conf/files 1.749.2.154 +1 -0 src/sys/i386/conf/LINT 1.2.2.2 +1 -0 src/sys/modules/firewire/Makefile 1.1.2.1 +16 -0 src/sys/modules/firewire/sbp_targ/Makefile (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:14:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B70FE16A4CE; Fri, 14 Nov 2003 04:14:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31CF543FD7; Fri, 14 Nov 2003 04:14:08 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAECE8XJ023491; Fri, 14 Nov 2003 04:14:08 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAECE7qE023490; Fri, 14 Nov 2003 04:14:07 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141214.hAECE7qE023490@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 04:14:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/i386/conf LINT X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:14:08 -0000 simokawa 2003/11/14 04:14:07 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/i386/conf LINT Log: s/Firewire/FireWire/. Revision Changes Path 1.749.2.155 +4 -4 src/sys/i386/conf/LINT From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:16:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A0CB16A4CE; Fri, 14 Nov 2003 04:16:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8267743FA3; Fri, 14 Nov 2003 04:16:47 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAECGlXJ023723; Fri, 14 Nov 2003 04:16:47 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAECGlFK023722; Fri, 14 Nov 2003 04:16:47 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141216.hAECGlFK023722@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 04:16:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/modules Makefile src/sys/i386/conf LINT src/sys/dev/dcons dcons.c dcons.h dcons_crom.c src/sys/modules/dcons Makefile src/sys/modules/dcons_crom Makefile src/sys/conf files options X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:16:48 -0000 simokawa 2003/11/14 04:16:47 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/modules Makefile sys/i386/conf LINT sys/conf files options Added files: (Branch: RELENG_4) sys/dev/dcons dcons.c dcons.h dcons_crom.c sys/modules/dcons Makefile sys/modules/dcons_crom Makefile Log: MFC: dcons(4) and dcons_crom(4). Revision Changes Path 1.340.2.145 +2 -0 src/sys/conf/files 1.191.2.59 +6 -0 src/sys/conf/options 1.1.2.1 +648 -0 src/sys/dev/dcons/dcons.c (new) 1.1.2.1 +97 -0 src/sys/dev/dcons/dcons.h (new) 1.2.2.1 +225 -0 src/sys/dev/dcons/dcons_crom.c (new) 1.749.2.156 +8 -0 src/sys/i386/conf/LINT 1.110.2.78 +2 -0 src/sys/modules/Makefile 1.1.2.1 +18 -0 src/sys/modules/dcons/Makefile (new) 1.1.2.1 +14 -0 src/sys/modules/dcons_crom/Makefile (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:21:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8824B16A4CE; Fri, 14 Nov 2003 04:21:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBAB643FCB; Fri, 14 Nov 2003 04:21:00 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAECL0XJ023939; Fri, 14 Nov 2003 04:21:00 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAECL0f7023938; Fri, 14 Nov 2003 04:21:00 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141221.hAECL0f7023938@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 04:21:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin Makefile src/usr.sbin/dconschat Makefile dconschat.8 dconschat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:21:01 -0000 simokawa 2003/11/14 04:21:00 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin Makefile Added files: (Branch: RELENG_4) usr.sbin/dconschat Makefile dconschat.8 dconschat.c Log: MFC: dconschat(8) Revision Changes Path 1.183.2.15 +1 -0 src/usr.sbin/Makefile 1.1.2.1 +12 -0 src/usr.sbin/dconschat/Makefile (new) 1.2.2.1 +237 -0 src/usr.sbin/dconschat/dconschat.8 (new) 1.4.2.1 +958 -0 src/usr.sbin/dconschat/dconschat.c (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:56:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFEF916A4CE; Fri, 14 Nov 2003 04:56:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A92143F3F; Fri, 14 Nov 2003 04:56:57 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAECuvXJ030915; Fri, 14 Nov 2003 04:56:57 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAECuuo4030914; Fri, 14 Nov 2003 04:56:56 -0800 (PST) (envelope-from tobez) Message-Id: <200311141256.hAECuuo4030914@repoman.freebsd.org> From: Anton Berezin Date: Fri, 14 Nov 2003 04:56:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf rtld.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:56:57 -0000 tobez 2003/11/14 04:56:56 PST FreeBSD src repository Modified files: libexec/rtld-elf rtld.c Log: Sync comment with code's reality. MFC after: 1 week Revision Changes Path 1.90 +1 -1 src/libexec/rtld-elf/rtld.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:57:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA01616A4CE; Fri, 14 Nov 2003 04:57:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDC243FF2; Fri, 14 Nov 2003 04:57:36 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAECvaXJ030967; Fri, 14 Nov 2003 04:57:36 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAECvZne030966; Fri, 14 Nov 2003 04:57:35 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141257.hAECvZne030966@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 04:57:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man4 Makefile dcons.4 dcons_crom.4 sbp_targ.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:57:37 -0000 simokawa 2003/11/14 04:57:35 PST FreeBSD src repository Modified files: (Branch: RELENG_4) share/man/man4 Makefile Added files: (Branch: RELENG_4) share/man/man4 dcons.4 dcons_crom.4 sbp_targ.4 Log: Add manpages for dcons(4), dcons_crom(4), and sbp_targ(4). Revision Changes Path 1.83.2.71 +3 -0 src/share/man/man4/Makefile 1.2.2.1 +96 -0 src/share/man/man4/dcons.4 (new) 1.2.2.1 +63 -0 src/share/man/man4/dcons_crom.4 (new) 1.1.2.1 +81 -0 src/share/man/man4/sbp_targ.4 (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:58:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39C3B16A4CE; Fri, 14 Nov 2003 04:58:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A43AC43FB1; Fri, 14 Nov 2003 04:58:12 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAECwCXJ031022; Fri, 14 Nov 2003 04:58:12 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAECwCmK031021; Fri, 14 Nov 2003 04:58:12 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141258.hAECwCmK031021@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 04:58:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man4 firewire.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:58:13 -0000 simokawa 2003/11/14 04:58:12 PST FreeBSD src repository Modified files: (Branch: RELENG_4) share/man/man4 firewire.4 Log: Sync with -current. Revision Changes Path 1.1.2.5 +2 -2 src/share/man/man4/firewire.4 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 04:59:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E660F16A4CE; Fri, 14 Nov 2003 04:59:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C8CC43FBF; Fri, 14 Nov 2003 04:59:52 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAECxqXJ031151; Fri, 14 Nov 2003 04:59:52 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAECxq9T031150; Fri, 14 Nov 2003 04:59:52 -0800 (PST) (envelope-from simokawa) Message-Id: <200311141259.hAECxq9T031150@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Nov 2003 04:59:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/etc/etc.alpha ttys src/etc/etc.i386 ttys X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 12:59:53 -0000 simokawa 2003/11/14 04:59:52 PST FreeBSD src repository Modified files: (Branch: RELENG_4) etc/etc.alpha ttys etc/etc.i386 ttys Log: MFC: add dcons. Revision Changes Path 1.7.2.3 +3 -1 src/etc/etc.alpha/ttys 1.8.2.1 +2 -0 src/etc/etc.i386/ttys From owner-cvs-src@FreeBSD.ORG Fri Nov 14 05:07:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 960E016A4DA; Fri, 14 Nov 2003 05:07:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BBB343FE9; Fri, 14 Nov 2003 05:07:39 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAED7cXJ032375; Fri, 14 Nov 2003 05:07:38 -0800 (PST) (envelope-from johan@repoman.freebsd.org) Received: (from johan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAED7ccj032374; Fri, 14 Nov 2003 05:07:38 -0800 (PST) (envelope-from johan) Message-Id: <200311141307.hAED7ccj032374@repoman.freebsd.org> From: Johan Karlsson Date: Fri, 14 Nov 2003 05:07:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/dump Makefile dumprmt.c main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 13:07:39 -0000 johan 2003/11/14 05:07:38 PST FreeBSD src repository Modified files: sbin/dump Makefile dumprmt.c main.c Log: Make this WARNS=2 clean by - using (intmax_t) and %j - giving a non-empty format string to msg() Include directly instead of depending on to do it. Tested by: make universe Revision Changes Path 1.24 +0 -1 src/sbin/dump/Makefile 1.20 +1 -1 src/sbin/dump/dumprmt.c 1.54 +4 -3 src/sbin/dump/main.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 05:13:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A834C16A4CE; Fri, 14 Nov 2003 05:13:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C170843FAF; Fri, 14 Nov 2003 05:13:23 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEDDNXJ032625; Fri, 14 Nov 2003 05:13:23 -0800 (PST) (envelope-from johan@repoman.freebsd.org) Received: (from johan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEDDNai032624; Fri, 14 Nov 2003 05:13:23 -0800 (PST) (envelope-from johan) Message-Id: <200311141313.hAEDDNai032624@repoman.freebsd.org> From: Johan Karlsson Date: Fri, 14 Nov 2003 05:13:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/dumpfs Makefile dumpfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 13:13:24 -0000 johan 2003/11/14 05:13:23 PST FreeBSD src repository Modified files: sbin/dumpfs Makefile dumpfs.c Log: Make this WARNS=2 clean by - using (intmax_t) and %j instead of %q Tested by: make universe Revision Changes Path 1.9 +0 -1 src/sbin/dumpfs/Makefile 1.38 +22 -19 src/sbin/dumpfs/dumpfs.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 07:04:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED86016A4CE; Fri, 14 Nov 2003 07:04:26 -0800 (PST) Received: from ganymede.hub.org (u46n208.hfx.eastlink.ca [24.222.46.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id DADD543F93; Fri, 14 Nov 2003 07:04:25 -0800 (PST) (envelope-from scrappy@hub.org) Received: by ganymede.hub.org (Postfix, from userid 1000) id BF15A373AE; Fri, 14 Nov 2003 11:02:25 -0400 (AST) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id B1FA9372F9; Fri, 14 Nov 2003 11:02:25 -0400 (AST) Date: Fri, 14 Nov 2003 11:02:25 -0400 (AST) From: "Marc G. Fournier" To: David Schultz In-Reply-To: <200311140823.hAE8NDAb005015@repoman.freebsd.org> Message-ID: <20031114105746.M497@ganymede.hub.org> References: <200311140823.hAE8NDAb005015@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/unionfs union_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 15:04:27 -0000 Thank you, this reduces my 'list of known crash triggers' down to avoiding the use of sockets on unionfs mounted file systems :) On Fri, 14 Nov 2003, David Schultz wrote: > das 2003/11/14 00:23:13 PST > > FreeBSD src repository > > Modified files: > sys/fs/unionfs union_vnops.c > Log: > - A sanity check in unionfs verifies that lookups of '.' return the > vnode of the parent. However, this check should not be performed if > the lookup failed. This change should fix "union_lookup returning > . not same as startdir" panics people were seeing. The bug was > introduced by an incomplete import of a NetBSD delta in rev 1.38. > - Move the aforementioned check out from DIAGNOSTIC. Performance > is the least of our unionfs worries. > - Minor reorganization. > > PR: 53004 > MFC after: 1 week > > Revision Changes Path > 1.103 +21 -27 src/sys/fs/unionfs/union_vnops.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 Fri Nov 14 07:27:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DE5616A4CE; Fri, 14 Nov 2003 07:27:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1682943FDF; Fri, 14 Nov 2003 07:27:09 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEFR8XJ039636; Fri, 14 Nov 2003 07:27:08 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEFR8Rg039635; Fri, 14 Nov 2003 07:27:08 -0800 (PST) (envelope-from tobez) Message-Id: <200311141527.hAEFR8Rg039635@repoman.freebsd.org> From: Anton Berezin Date: Fri, 14 Nov 2003 07:27:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/bin/chmod chmod.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 15:27:09 -0000 tobez 2003/11/14 07:27:08 PST FreeBSD src repository Modified files: (Branch: RELENG_4) bin/chmod chmod.c Log: MFC 1.30: Remove the code for parsing octal modes, since setmode(3) already handles them. Revision Changes Path 1.16.2.7 +4 -21 src/bin/chmod/chmod.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 07:43:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10DEF16A4E7; Fri, 14 Nov 2003 07:43:21 -0800 (PST) Received: from omoikane.mb.skyweb.ca (209-5-243-50.mb.skyweb.ca [209.5.243.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id E91D543FD7; Fri, 14 Nov 2003 07:43:19 -0800 (PST) (envelope-from mark@skyweb.ca) Received: by omoikane.mb.skyweb.ca (Postfix, from userid 1001) id 5D6EF63BB2; Fri, 14 Nov 2003 09:43:20 -0600 (CST) Date: Fri, 14 Nov 2003 09:43:20 -0600 From: Mark Johnston To: Kirk McKusick Message-ID: <20031114154320.GB1227@omoikane.mb.skyweb.ca> Mail-Followup-To: Kirk McKusick , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311140807.hAE87E7h004354@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311140807.hAE87E7h004354@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 15:43:21 -0000 Kirk McKusick wrote: > Modified files: > . UPDATING > Log: > Note to update cfsd (ports/security/cfs) after installing the > statfs changes. Postfix (ports/mail/postfix) also needs to be recompiled. The symptom of the breakage is: Nov 13 09:18:46 omoikane postfix/master[565]: warning: process \ /usr/local/libexec/postfix/smtpd pid 819 killed by signal 11 Mark From owner-cvs-src@FreeBSD.ORG Fri Nov 14 07:57:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E06E716A4CE; Fri, 14 Nov 2003 07:57:25 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF95543F75; Fri, 14 Nov 2003 07:57:24 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id hAEFvOfY062267; Fri, 14 Nov 2003 07:57:24 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.10/8.12.9/Submit) id hAEFvOOM062266; Fri, 14 Nov 2003 07:57:24 -0800 (PST) (envelope-from obrien) Date: Fri, 14 Nov 2003 07:57:23 -0800 From: "David O'Brien" To: Warner Losh Message-ID: <20031114155723.GA62224@dragon.nuxi.com> References: <200311140537.hAE5baMj095622@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311140537.hAE5baMj095622@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sn if_sn.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Nov 2003 15:57:26 -0000 On Thu, Nov 13, 2003 at 09:37:36PM -0800, Warner Losh wrote: > imp 2003/11/13 21:37:36 PST > > FreeBSD src repository > > Modified files: > sys/dev/sn if_sn.c > Log: > Reconst-poison crc routine that was renamed to mchash. > re-remove the _ in u_intXX_t 'cvs diff -r 1.30 -r 1.31 dev/sn/if_sn.c | grep const' shows no const. $ cvs ann -r 1.31 dev/sn/if_sn.c | grep const 1.4 (imp 22-Dec-99): static const char *chip_ids[15] = { 1.29 (imp 26-Oct-03): const uint32_t poly = 0xedb88320; $ cvs ann -r 1.32 dev/sn/if_sn.c | grep const 1.4 (imp 22-Dec-99): static const char *chip_ids[15] = { 1.29 (imp 26-Oct-03): const uint32_t poly = 0xedb88320; -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 07:58:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7920B16A4F8; Fri, 14 Nov 2003 07:57:59 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id EED3A43F93; Fri, 14 Nov 2003 07:57:57 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id hAEFvvfY062278; Fri, 14 Nov 2003 07:57:57 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.10/8.12.9/Submit) id hAEFvuBS062277; Fri, 14 Nov 2003 07:57:56 -0800 (PST) (envelope-from obrien) Date: Fri, 14 Nov 2003 07:57:56 -0800 From: "David O'Brien" To: Warner Losh Message-ID: <20031114155756.GA62163@dragon.nuxi.com> References: <200311140602.hAE62ql3096824@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311140602.hAE62ql3096824@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb if_cue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Nov 2003 15:58:00 -0000 On Thu, Nov 13, 2003 at 10:02:52PM -0800, Warner Losh wrote: > imp 2003/11/13 22:02:52 PST > > FreeBSD src repository > > Modified files: > sys/dev/usb if_cue.c > Log: > Despam the const poisoning > Despam the u_->u change Do you think you could do this for all the drivers that have this type of routine so things would remain consistent?? -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:04:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CA1216A4CE; Fri, 14 Nov 2003 08:04:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEAFB43FE3; Fri, 14 Nov 2003 08:04:11 -0800 (PST) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEG4BXJ041863; Fri, 14 Nov 2003 08:04:11 -0800 (PST) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEG4BCg041862; Fri, 14 Nov 2003 08:04:11 -0800 (PST) (envelope-from green) Message-Id: <200311141604.hAEG4BCg041862@repoman.freebsd.org> From: Brian Feldman Date: Fri, 14 Nov 2003 08:04:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:04:14 -0000 green 2003/11/14 08:04:11 PST FreeBSD src repository Modified files: sys/conf kern.post.mk kmod.mk Log: Include opt_global.h in the modules build, when building from a normal kernel build. This makes it possible for me not to get pissed off that random.ko crashes the system trying to rdtsc() when the i386/cpu.h support code decides it's okay to call that op when neither I386_CPU or I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines get picked up by the modules. Revision Changes Path 1.51 +1 -0 src/sys/conf/kern.post.mk 1.145 +3 -0 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:09:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C916516A4CE; Fri, 14 Nov 2003 08:09:27 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A165143F85; Fri, 14 Nov 2003 08:09:26 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAEG9PeG094075; Fri, 14 Nov 2003 09:09:25 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 14 Nov 2003 09:09:09 -0700 (MST) Message-Id: <20031114.090909.87718545.imp@bsdimp.com> To: obrien@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20031114155756.GA62163@dragon.nuxi.com> References: <200311140602.hAE62ql3096824@repoman.freebsd.org> <20031114155756.GA62163@dragon.nuxi.com> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb if_cue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:09:27 -0000 In message: <20031114155756.GA62163@dragon.nuxi.com> "David O'Brien" writes: : On Thu, Nov 13, 2003 at 10:02:52PM -0800, Warner Losh wrote: : > imp 2003/11/13 22:02:52 PST : > : > FreeBSD src repository : > : > Modified files: : > sys/dev/usb if_cue.c : > Log: : > Despam the const poisoning : > Despam the u_->u change : : Do you think you could do this for all the drivers that have this type of : routine so things would remain consistent?? Sure. I'd be happy to. Maybe put this routine into if_ether (or wherever we're hiding the ethernet code these days). Warner From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:12:41 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F83916A4CE; Fri, 14 Nov 2003 08:12:41 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7536A43F85; Fri, 14 Nov 2003 08:12:40 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAEGCdeG094123; Fri, 14 Nov 2003 09:12:39 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 14 Nov 2003 09:12:22 -0700 (MST) Message-Id: <20031114.091222.00738834.imp@bsdimp.com> To: green@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200311141604.hAEG4BCg041862@repoman.freebsd.org> References: <200311141604.hAEG4BCg041862@repoman.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:12:41 -0000 In message: <200311141604.hAEG4BCg041862@repoman.freebsd.org> Brian Feldman writes: : Include opt_global.h in the modules build, when building from a normal : kernel build. This makes it possible for me not to get pissed off that : random.ko crashes the system trying to rdtsc() when the i386/cpu.h : support code decides it's okay to call that op when neither I386_CPU or : I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines : get picked up by the modules. I've been polishing similar things that I'd hoped to get into this release. I'll try to finish them up today. You should really talk to people before doing these things. Warner From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:14:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BC8F16A4CE; Fri, 14 Nov 2003 08:14:53 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEE4943F75; Fri, 14 Nov 2003 08:14:51 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAEGEleG094175; Fri, 14 Nov 2003 09:14:47 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 14 Nov 2003 09:14:30 -0700 (MST) Message-Id: <20031114.091430.125294874.imp@bsdimp.com> To: des@des.no From: "M. Warner Losh" In-Reply-To: References: <200311132125.hADLPCUC056661@repoman.freebsd.org> <20031113184453.U14655@sasami.jurai.net> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: mdodd@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:14:53 -0000 In message: des@des.no (Dag-Erling Sm=F8rgrav) writes: : des@dwp ~% grep -rl ums /usr/src/sbin/devd man devd.conf winter is suggesting that you be nice and add it to the existing mechanism: attach 10 { device-name "ums"; action "/some/script"; }; is all you need to add. Warner From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:27:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 969AD16A4CE; Fri, 14 Nov 2003 08:27:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1174243F75; Fri, 14 Nov 2003 08:27:18 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEGRHXJ042849; Fri, 14 Nov 2003 08:27:17 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEGRHIm042848; Fri, 14 Nov 2003 08:27:17 -0800 (PST) (envelope-from jhb) Message-Id: <200311141627.hAEGRHIm042848@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 08:27:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:27:18 -0000 jhb 2003/11/14 08:27:17 PST FreeBSD src repository Modified files: sys/sys proc.h Log: Add a WITNESS_WARN() check to _STOPEVENT() since any _STOPEVENT() can potentially sleep. This should help find some bogus locking. Revision Changes Path 1.359 +2 -0 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:29:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1F2C16A4D0 for ; Fri, 14 Nov 2003 08:29:44 -0800 (PST) Received: from mail.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1855B43FE3 for ; Fri, 14 Nov 2003 08:29:41 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 3505 invoked from network); 14 Nov 2003 16:29:40 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 14 Nov 2003 16:29:40 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAEGTaEW006448; Fri, 14 Nov 2003 11:29:37 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311140348.hAE3mbRt083137@repoman.freebsd.org> Date: Fri, 14 Nov 2003 11:29:33 -0500 (EST) From: John Baldwin To: Jeff Roberson X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/kern syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:29:45 -0000 On 14-Nov-2003 Jeff Roberson wrote: > jeff 2003/11/13 19:48:37 PST > > FreeBSD src repository > > Modified files: > sys/kern syscalls.master > Log: > - Revision 1.156 marked ptrace() SMP safe. Unfortunately, alpha implements > parts of ptrace using proc_rwmem(). proc_rwmem() requires giant, and > giant must be acquired prior to the proc lock, so ptrace must require giant > still. case PT_READ_I: case PT_READ_D: PROC_UNLOCK(p); tmp = 0; /* write = 0 set above */ iov.iov_base = write ? (caddr_t)&data : (caddr_t)&tmp; iov.iov_len = sizeof(int); uio.uio_iov = &iov; uio.uio_iovcnt = 1; uio.uio_offset = (off_t)(uintptr_t)addr; uio.uio_resid = sizeof(int); uio.uio_segflg = UIO_SYSSPACE; /* i.e.: the uap */ uio.uio_rw = write ? UIO_WRITE : UIO_READ; uio.uio_td = td; mtx_lock(&Giant); error = proc_rwmem(p, &uio); mtx_unlock(&Giant); if (uio.uio_resid != 0) { /* * XXX proc_rwmem() doesn't currently return ENOSPC, * so I think write() can bogusly return 0. * XXX what happens for short writes? We don't want * to write partial data. * XXX proc_rwmem() returns EPERM for other invalid * addresses. Convert this to EINVAL. Does this * clobber returns of EPERM for other reasons? */ if (error == 0 || error == ENOSPC || error == EPERM) error = EINVAL; /* EOF */ } if (!write) td->td_retval[0] = tmp; return (error); Are there other parts on Alpha that use proc_rwmem()? Ah. It should be fine to drop the proc lock in some places then I think. For example, around ptrace_single_step(). Something like: Index: sys_process.c =================================================================== RCS file: /usr/cvs/src/sys/kern/sys_process.c,v retrieving revision 1.115 diff -u -r1.115 sys_process.c --- sys_process.c 9 Oct 2003 10:17:16 -0000 1.115 +++ sys_process.c 14 Nov 2003 15:47:46 -0000 @@ -522,11 +522,13 @@ switch (req) { case PT_STEP: + PROC_UNLOCK(p); error = ptrace_single_step(td2); if (error) { - _PRELE(p); - goto fail; + PRELE(p); + goto fail_noproc; } + PROC_LOCK(p); break; case PT_TO_SCE: p->p_stops |= S_PT_SCE; @@ -540,11 +542,13 @@ } if (addr != (void *)1) { + PROC_UNLOCK(p); error = ptrace_set_pc(td2, (u_long)(uintfptr_t)addr); if (error) { - _PRELE(p); - goto fail; + PRELE(p); + goto fail_noproc; } + PROC_LOCK(p); } _PRELE(p); @@ -703,9 +707,9 @@ #ifdef __HAVE_PTRACE_MACHDEP if (req >= PT_FIRSTMACH) { _PHOLD(p); - error = cpu_ptrace(td2, req, addr, data); - _PRELE(p); PROC_UNLOCK(p); + error = cpu_ptrace(td2, req, addr, data); + PRELE(p); return (error); } #endif @@ -717,6 +721,7 @@ fail: PROC_UNLOCK(p); +fail_noproc: if (proctree_locked) sx_xunlock(&proctree_lock); return (error); We can do the same around the read/write registers stuff as well given that they use PHOLD/PRELE if need be. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:30:32 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A90B216A4F7 for ; Fri, 14 Nov 2003 08:30:32 -0800 (PST) Received: from mail.speakeasy.net (mail8.speakeasy.net [216.254.0.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AD1743FBF for ; Fri, 14 Nov 2003 08:30:30 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 31945 invoked from network); 14 Nov 2003 16:30:23 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 14 Nov 2003 16:30:23 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAEGUKEW006481; Fri, 14 Nov 2003 11:30:21 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311141604.hAEG4BCg041862@repoman.freebsd.org> Date: Fri, 14 Nov 2003 11:30:17 -0500 (EST) From: John Baldwin To: Brian Feldman X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:30:32 -0000 On 14-Nov-2003 Brian Feldman wrote: > green 2003/11/14 08:04:11 PST > > FreeBSD src repository > > Modified files: > sys/conf kern.post.mk kmod.mk > Log: > Include opt_global.h in the modules build, when building from a normal > kernel build. This makes it possible for me not to get pissed off that > random.ko crashes the system trying to rdtsc() when the i386/cpu.h > support code decides it's okay to call that op when neither I386_CPU or > I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines > get picked up by the modules. WITNESS doesn't matter as all calls to it are done in the actual locking code itself which does not lives in modules. Modules always call the locking functions and don't inline locking operations. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:31:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65A5F16A4CE; Fri, 14 Nov 2003 08:31:10 -0800 (PST) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 619F943F93; Fri, 14 Nov 2003 08:31:09 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (verified OK)) by gw.celabo.org (Postfix) with ESMTP id E04775489C; Fri, 14 Nov 2003 10:31:08 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id 5130B6D48D; Fri, 14 Nov 2003 09:59:04 -0600 (CST) Date: Fri, 14 Nov 2003 09:59:04 -0600 From: "Jacques A. Vidrine" To: Hartmut Brandt Message-ID: <20031114155904.GB19690@madman.celabo.org> References: <200311100853.hAA8rchS095414@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311100853.hAA8rchS095414@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.4i-ja.1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bsnmp - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:31:10 -0000 On Mon, Nov 10, 2003 at 12:53:38AM -0800, Hartmut Brandt wrote: > harti 2003/11/10 00:53:38 PST > > FreeBSD src repository > > src/contrib/bsnmp - Imported sources > Update of /home/ncvs/src/contrib/bsnmp > In directory repoman.freebsd.org:/tmp/cvs-serv95395 > > Log Message: > Virgin import of bsnmp 1.4 Ugh. I guess this is really necessary or you wouldn't have imported it and endured flames. Has the OUSPG's test suite been run on this SNMP implementation? Cheers, -- Jacques Vidrine NTT/Verio SME FreeBSD UNIX Heimdal nectar@celabo.org jvidrine@verio.net nectar@freebsd.org nectar@kth.se From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:35:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF7EB16A4CE; Fri, 14 Nov 2003 08:35:53 -0800 (PST) Received: from green.bikeshed.org (localhost [127.0.0.1]) by green.bikeshed.org (8.12.10/8.12.9) with ESMTP id hAEGZrcR031468; Fri, 14 Nov 2003 11:35:53 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost)hAEGZqiT031464; Fri, 14 Nov 2003 11:35:52 -0500 (EST) Message-Id: <200311141635.hAEGZqiT031464@green.bikeshed.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: "M. Warner Losh" In-Reply-To: Message from "M. Warner Losh" <20031114.091222.00738834.imp@bsdimp.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 14 Nov 2003 11:35:52 -0500 Sender: green@green.bikeshed.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:35:54 -0000 "M. Warner Losh" wrote: > In message: <200311141604.hAEG4BCg041862@repoman.freebsd.org> > Brian Feldman writes: > : Include opt_global.h in the modules build, when building from a normal > : kernel build. This makes it possible for me not to get pissed off that > : random.ko crashes the system trying to rdtsc() when the i386/cpu.h > : support code decides it's okay to call that op when neither I386_CPU or > : I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines > : get picked up by the modules. > > I've been polishing similar things that I'd hoped to get into this > release. I'll try to finish them up today. You should really talk to > people before doing these things. I know that you have been working on that, and I'm very happy to see that. If this makes things difficult of course there's no reason not to remove it other than being an interim solution for crashes people might see now. If I didn't know you were working on the smarter module build, I would have just gone through all the headers and tried to remove all the "harmful" uses of constants defined by opt_global.h (which I feel is very much not a "solution", but either way... getting rid of the problem is important, and I don't think that the importance is particularly diminished just because the bugs have existed for a while, IMHO). -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:52:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6329E16A4CE; Fri, 14 Nov 2003 08:52:59 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A802A43FDF; Fri, 14 Nov 2003 08:52:57 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAEGqseG094882; Fri, 14 Nov 2003 09:52:54 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 14 Nov 2003 09:52:37 -0700 (MST) Message-Id: <20031114.095237.08074114.imp@bsdimp.com> To: des@des.no From: "M. Warner Losh" In-Reply-To: <20031114.091430.125294874.imp@bsdimp.com> References: <20031113184453.U14655@sasami.jurai.net> <20031114.091430.125294874.imp@bsdimp.com> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: mdodd@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/moused moused.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:52:59 -0000 In message: <20031114.091430.125294874.imp@bsdimp.com> "M. Warner Losh" writes: : In message: : des@des.no (Dag-Erling Sm=F8rgrav) writes: : : des@dwp ~% grep -rl ums /usr/src/sbin/devd : = : man devd.conf : = : winter is suggesting that you be nice and add it to the existing : mechanism: : = : attach 10 { : device-name "ums"; ^^ add "[0-9]+" after ms. : action "/some/script"; : }; : = : is all you need to add. From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:55:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2D9716A4CE; Fri, 14 Nov 2003 08:55:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1801643FF9; Fri, 14 Nov 2003 08:55:01 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEGt0XJ049840; Fri, 14 Nov 2003 08:55:00 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEGt0Xx049839; Fri, 14 Nov 2003 08:55:00 -0800 (PST) (envelope-from imp) Message-Id: <200311141655.hAEGt0Xx049839@repoman.freebsd.org> From: Warner Losh Date: Fri, 14 Nov 2003 08:55:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:55:02 -0000 imp 2003/11/14 08:55:00 PST FreeBSD src repository Modified files: share/man/man7 build.7 Log: Amplify the reboot requirement Revision Changes Path 1.23 +6 -5 src/share/man/man7/build.7 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:56:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E143A16A4CE; Fri, 14 Nov 2003 08:56:07 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0DD843F85; Fri, 14 Nov 2003 08:53:57 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAEGrveG094915; Fri, 14 Nov 2003 09:53:57 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 14 Nov 2003 09:53:39 -0700 (MST) Message-Id: <20031114.095339.121107822.imp@bsdimp.com> To: green@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200311141635.hAEGZqiT031464@green.bikeshed.org> References: <200311141635.hAEGZqiT031464@green.bikeshed.org> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:56:08 -0000 In message: <200311141635.hAEGZqiT031464@green.bikeshed.org> "Brian F. Feldman" writes: : "M. Warner Losh" wrote: : > In message: <200311141604.hAEG4BCg041862@repoman.freebsd.org> : > Brian Feldman writes: : > : Include opt_global.h in the modules build, when building from a normal : > : kernel build. This makes it possible for me not to get pissed off that : > : random.ko crashes the system trying to rdtsc() when the i386/cpu.h : > : support code decides it's okay to call that op when neither I386_CPU or : > : I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines : > : get picked up by the modules. : > : > I've been polishing similar things that I'd hoped to get into this : > release. I'll try to finish them up today. You should really talk to : > people before doing these things. : : I know that you have been working on that, and I'm very happy to see that. : If this makes things difficult of course there's no reason not to remove it : other than being an interim solution for crashes people might see now. If I : didn't know you were working on the smarter module build, I would have just : gone through all the headers and tried to remove all the "harmful" uses of : constants defined by opt_global.h (which I feel is very much not a : "solution", but either way... getting rid of the problem is important, and I : don't think that the importance is particularly diminished just because the : bugs have existed for a while, IMHO). This actually is a good part of the 'first step' that I've been wanting to get done. It just suprised me, that's all, to see it committed the day we're trying to freeze for 5.2. Warner From owner-cvs-src@FreeBSD.ORG Fri Nov 14 08:57:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7621916A4CE; Fri, 14 Nov 2003 08:57:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E40AA43FB1; Fri, 14 Nov 2003 08:57:04 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEGv4XJ049960; Fri, 14 Nov 2003 08:57:04 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEGv4C5049959; Fri, 14 Nov 2003 08:57:04 -0800 (PST) (envelope-from ume) Message-Id: <200311141657.hAEGv4C5049959@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 08:57:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/route6d/misc chkrt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 16:57:05 -0000 ume 2003/11/14 08:57:04 PST FreeBSD src repository Modified files: usr.sbin/route6d/misc chkrt Log: our netstat is installed in /usr/bin. Revision Changes Path 1.2 +1 -1 src/usr.sbin/route6d/misc/chkrt From owner-cvs-src@FreeBSD.ORG Fri Nov 14 09:16:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE8C916A4CF; Fri, 14 Nov 2003 09:16:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D48A643FCB; Fri, 14 Nov 2003 09:16:12 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEHGCXJ051723; Fri, 14 Nov 2003 09:16:12 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEHGCKM051722; Fri, 14 Nov 2003 09:16:12 -0800 (PST) (envelope-from ume) Message-Id: <200311141716.hAEHGCKM051722@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 09:16:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/route6d route6d.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 17:16:14 -0000 ume 2003/11/14 09:16:12 PST FreeBSD src repository Modified files: usr.sbin/route6d route6d.h Log: - interface minimum MTU = 1280 in IPv6. - simplify. Obtained from: KAME Revision Changes Path 1.5 +3 -8 src/usr.sbin/route6d/route6d.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 09:16:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A42816A4CE; Fri, 14 Nov 2003 09:16:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B534443FDD; Fri, 14 Nov 2003 09:16:50 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEHGoXJ051760; Fri, 14 Nov 2003 09:16:50 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEHGof2051759; Fri, 14 Nov 2003 09:16:50 -0800 (PST) (envelope-from ume) Message-Id: <200311141716.hAEHGof2051759@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 09:16:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/route6d route6d.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 17:16:51 -0000 ume 2003/11/14 09:16:50 PST FreeBSD src repository Modified files: usr.sbin/route6d route6d.c Log: - need_trigger/idx should be u_int, not ssize_t. - realloc pedant. - set sin6_scope_id before sending (link-local/multicast) packets - removed an incorrect comment - don't age non-gateway host routes. - not remove global addresses on loopback interface from routing table by route aging. Obtained from: KAME Revision Changes Path 1.34 +34 -30 src/usr.sbin/route6d/route6d.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 09:16:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9694B16A4CF; Fri, 14 Nov 2003 09:16:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00CA443FE3; Fri, 14 Nov 2003 09:16:59 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEHGwXJ051958; Fri, 14 Nov 2003 09:16:58 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEHGwv4051957; Fri, 14 Nov 2003 09:16:58 -0800 (PST) (envelope-from obrien) Message-Id: <200311141716.hAEHGwv4051957@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 14 Nov 2003 09:16:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c src/sys/dev/ed if_ed.c src/sys/dev/lge if_lge.c src/sys/dev/lnc if_lnc.c src/sys/dev/nge if_nge.c src/sys/dev/re if_re.c src/sys/dev/sn if_sn.c src/sys/dev/tx if_tx.c src/sys/pci if_dc.c if_pcn.c if_rl.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 17:16:59 -0000 obrien 2003/11/14 09:16:58 PST FreeBSD src repository Modified files: sys/dev/bge if_bge.c sys/dev/ed if_ed.c sys/dev/lge if_lge.c sys/dev/lnc if_lnc.c sys/dev/nge if_nge.c sys/dev/re if_re.c sys/dev/sn if_sn.c sys/dev/tx if_tx.c sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_tl.c if_vr.c if_wb.c if_xl.c Log: Remove duplicate FBSDID's, move others to their right place. Revision Changes Path 1.60 +0 -3 src/sys/dev/bge/if_bge.c 1.223 +3 -2 src/sys/dev/ed/if_ed.c 1.26 +0 -3 src/sys/dev/lge/if_lge.c 1.100 +0 -1 src/sys/dev/lnc/if_lnc.c 1.51 +0 -3 src/sys/dev/nge/if_nge.c 1.14 +3 -3 src/sys/dev/re/if_re.c 1.34 +0 -1 src/sys/dev/sn/if_sn.c 1.79 +0 -4 src/sys/dev/tx/if_tx.c 1.134 +3 -4 src/sys/pci/if_dc.c 1.51 +3 -3 src/sys/pci/if_pcn.c 1.124 +3 -4 src/sys/pci/if_rl.c 1.62 +3 -4 src/sys/pci/if_sf.c 1.89 +3 -4 src/sys/pci/if_sis.c 1.70 +3 -5 src/sys/pci/if_sk.c 1.87 +3 -5 src/sys/pci/if_tl.c 1.76 +3 -4 src/sys/pci/if_vr.c 1.65 +3 -4 src/sys/pci/if_wb.c 1.160 +3 -4 src/sys/pci/if_xl.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 09:25:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5C7716A4D6; Fri, 14 Nov 2003 09:25:52 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65B5D43FAF; Fri, 14 Nov 2003 09:25:50 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.9p2/8.12.9) with ESMTP id hAEHNtMg019660; Fri, 14 Nov 2003 12:23:55 -0500 (EST) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)hAEHNsCh019657; Fri, 14 Nov 2003 12:23:54 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Fri, 14 Nov 2003 12:23:54 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: John Baldwin In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Brian Feldman cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: RE: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 17:25:52 -0000 On Fri, 14 Nov 2003, John Baldwin wrote: > On 14-Nov-2003 Brian Feldman wrote: > > green 2003/11/14 08:04:11 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/conf kern.post.mk kmod.mk > > Log: > > Include opt_global.h in the modules build, when building from a normal > > kernel build. This makes it possible for me not to get pissed off that > > random.ko crashes the system trying to rdtsc() when the i386/cpu.h > > support code decides it's okay to call that op when neither I386_CPU or > > I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines > > get picked up by the modules. > > WITNESS doesn't matter as all calls to it are done in the actual locking > code itself which does not lives in modules. Modules always call the > locking functions and don't inline locking operations. I'd have picked up the syntax error in mac_test.c if this had been in place then :-). And it makes mac_test and other regression test modules far more functional... Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories From owner-cvs-src@FreeBSD.ORG Fri Nov 14 09:33:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0AFB16A4CE for ; Fri, 14 Nov 2003 09:33:51 -0800 (PST) Received: from smtp.mho.com (smtp.mho.net [64.58.4.6]) by mx1.FreeBSD.org (Postfix) with SMTP id 95F9843FF2 for ; Fri, 14 Nov 2003 09:33:47 -0800 (PST) (envelope-from scottl@freebsd.org) Received: (qmail 63035 invoked by uid 1002); 14 Nov 2003 17:33:46 -0000 Received: from unknown (HELO ?10.4.1.5?) (64.58.1.252) by smtp.mho.net with SMTP; 14 Nov 2003 17:33:46 -0000 Date: Fri, 14 Nov 2003 10:35:43 -0700 (MST) From: Scott Long X-X-Sender: scottl@pooker.samsco.home To: "M. Warner Losh" In-Reply-To: <20031114.095339.121107822.imp@bsdimp.com> Message-ID: <20031114103425.J11888@pooker.samsco.home> References: <200311141635.hAEGZqiT031464@green.bikeshed.org> <20031114.095339.121107822.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: green@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 17:33:52 -0000 On Fri, 14 Nov 2003, M. Warner Losh wrote: > In message: <200311141635.hAEGZqiT031464@green.bikeshed.org> > "Brian F. Feldman" writes: > : "M. Warner Losh" wrote: > : > In message: <200311141604.hAEG4BCg041862@repoman.freebsd.org> > : > Brian Feldman writes: > : > : Include opt_global.h in the modules build, when building from a normal > : > : kernel build. This makes it possible for me not to get pissed off that > : > : random.ko crashes the system trying to rdtsc() when the i386/cpu.h > : > : support code decides it's okay to call that op when neither I386_CPU or > : > : I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines > : > : get picked up by the modules. > : > > : > I've been polishing similar things that I'd hoped to get into this > : > release. I'll try to finish them up today. You should really talk to > : > people before doing these things. > : > : I know that you have been working on that, and I'm very happy to see that. > : If this makes things difficult of course there's no reason not to remove it > : other than being an interim solution for crashes people might see now. If I > : didn't know you were working on the smarter module build, I would have just > : gone through all the headers and tried to remove all the "harmful" uses of > : constants defined by opt_global.h (which I feel is very much not a > : "solution", but either way... getting rid of the problem is important, and I > : don't think that the importance is particularly diminished just because the > : bugs have existed for a while, IMHO). > > This actually is a good part of the 'first step' that I've been > wanting to get done. It just suprised me, that's all, to see it > committed the day we're trying to freeze for 5.2. > > Warner > > 5.2 code freeze does not happen until Monday. http://www.freebsd.org/releases/5.2R/schedule.html I've announced the schedule on a regular basis for the last 2+ weeks. Scott From owner-cvs-src@FreeBSD.ORG Fri Nov 14 09:49:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C417D16A4CE; Fri, 14 Nov 2003 09:49:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40EB843F93; Fri, 14 Nov 2003 09:49:08 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEHn8XJ053636; Fri, 14 Nov 2003 09:49:08 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEHn8u1053635; Fri, 14 Nov 2003 09:49:08 -0800 (PST) (envelope-from alc) Message-Id: <200311141749.hAEHn8u1053635@repoman.freebsd.org> From: Alan Cox Date: Fri, 14 Nov 2003 09:49:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm uma_core.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 17:49:08 -0000 alc 2003/11/14 09:49:07 PST FreeBSD src repository Modified files: sys/vm uma_core.c Log: - Remove use of Giant from uma_zone_set_obj(). Revision Changes Path 1.86 +1 -7 src/sys/vm/uma_core.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:02:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BE7616A4CF; Fri, 14 Nov 2003 10:02:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B25EE43FE9; Fri, 14 Nov 2003 10:02:25 -0800 (PST) (envelope-from pdeuskar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEI2PXJ054610; Fri, 14 Nov 2003 10:02:25 -0800 (PST) (envelope-from pdeuskar@repoman.freebsd.org) Received: (from pdeuskar@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEI2P2q054609; Fri, 14 Nov 2003 10:02:25 -0800 (PST) (envelope-from pdeuskar) Message-Id: <200311141802.hAEI2P2q054609@repoman.freebsd.org> From: Prafulla Deuskar Date: Fri, 14 Nov 2003 10:02:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/em if_em.c if_em.h if_em_hw.c if_em_hw.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:02:28 -0000 pdeuskar 2003/11/14 10:02:25 PST FreeBSD src repository Modified files: sys/dev/em if_em.c if_em.h if_em_hw.c if_em_hw.h Log: - Code cleanup - In the receive routine handle the case where last descriptor could have less than 4 bytes of data. - Handle race between detach/ioctl routine. MFC after: 3 days Revision Changes Path 1.34 +29 -7 src/sys/dev/em/if_em.c 1.24 +1 -0 src/sys/dev/em/if_em.h 1.12 +18 -88 src/sys/dev/em/if_em_hw.c 1.12 +0 -10 src/sys/dev/em/if_em_hw.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:02:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CFB116A4D0 for ; Fri, 14 Nov 2003 10:02:29 -0800 (PST) Received: from mail.speakeasy.net (mail7.speakeasy.net [216.254.0.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9961443FE3 for ; Fri, 14 Nov 2003 10:02:25 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 30951 invoked from network); 14 Nov 2003 18:02:25 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 14 Nov 2003 18:02:25 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAEI2MEW006925; Fri, 14 Nov 2003 13:02:22 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311141627.hAEGRHIm042848@repoman.freebsd.org> Date: Fri, 14 Nov 2003 13:02:19 -0500 (EST) From: John Baldwin To: John Baldwin X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:02:29 -0000 On 14-Nov-2003 John Baldwin wrote: > jhb 2003/11/14 08:27:17 PST > > FreeBSD src repository > > Modified files: > sys/sys proc.h > Log: > Add a WITNESS_WARN() check to _STOPEVENT() since any _STOPEVENT() can > potentially sleep. This should help find some bogus locking. There is at least one place where sigacts locking trips this assertion. I will try to work on cleaning up that and other problems that surface today from this check. I also need to add a KASSERT() to msleep/cv_wait* that we don't try to sleep if we are already on a sleep queue. It seems that using ptrace can trip that as well. :( -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:07:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E09F16A4CE; Fri, 14 Nov 2003 10:07:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACFCB43F93; Fri, 14 Nov 2003 10:07:50 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEI7oXJ055694; Fri, 14 Nov 2003 10:07:50 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEI7oru055693; Fri, 14 Nov 2003 10:07:50 -0800 (PST) (envelope-from ume) Message-Id: <200311141807.hAEI7oru055693@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 10:07:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/net ip6opt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:07:51 -0000 ume 2003/11/14 10:07:50 PST FreeBSD src repository Modified files: lib/libc/net ip6opt.c Log: u_int8_t cannot carry a number greater than 255. Reported by: nectar Revision Changes Path 1.7 +1 -3 src/lib/libc/net/ip6opt.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:17:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EF7616A4CE; Fri, 14 Nov 2003 10:17:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EB5B43F3F; Fri, 14 Nov 2003 10:17:07 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEIH7XJ056112; Fri, 14 Nov 2003 10:17:07 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEIH76A056111; Fri, 14 Nov 2003 10:17:07 -0800 (PST) (envelope-from ume) Message-Id: <200311141817.hAEIH76A056111@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 10:17:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net pfkeyv2.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:17:08 -0000 ume 2003/11/14 10:17:07 PST FreeBSD src repository Modified files: sys/net pfkeyv2.h Log: fix comments. Obtained from: KAME Revision Changes Path 1.12 +3 -5 src/sys/net/pfkeyv2.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:20:21 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54D6416A4CE; Fri, 14 Nov 2003 10:20:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1AE843FB1; Fri, 14 Nov 2003 10:20:20 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEIKKXJ056223; Fri, 14 Nov 2003 10:20:20 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEIKKKS056222; Fri, 14 Nov 2003 10:20:20 -0800 (PST) (envelope-from peter) Message-Id: <200311141820.hAEIKKKS056222@repoman.freebsd.org> From: Peter Wemm Date: Fri, 14 Nov 2003 10:20:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/isa intr_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:20:21 -0000 peter 2003/11/14 10:20:20 PST FreeBSD src repository Modified files: sys/amd64/isa intr_machdep.c Log: Fix up the control word 3 bits. jhb discovered how much I screwed this up. :-] Revision Changes Path 1.77 +4 -4 src/sys/amd64/isa/intr_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:48:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D86416A4CF; Fri, 14 Nov 2003 10:48:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D69E43FEC; Fri, 14 Nov 2003 10:48:16 -0800 (PST) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEImGXJ057472; Fri, 14 Nov 2003 10:48:16 -0800 (PST) (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEImGXP057471; Fri, 14 Nov 2003 10:48:16 -0800 (PST) (envelope-from bms) Message-Id: <200311141848.hAEImGXP057471@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 14 Nov 2003 10:48:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys socket.h src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:48:17 -0000 bms 2003/11/14 10:48:15 PST FreeBSD src repository Modified files: sys/sys socket.h sys/net rtsock.c Log: Add a sysctl MIB, NET_RT_IFMALIST, to retrieve multicast group memberships in a protocol-independent way. Submitted by: harti Revision Changes Path 1.95 +65 -0 src/sys/net/rtsock.c 1.73 +3 -1 src/sys/sys/socket.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:49:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6129816A4CF; Fri, 14 Nov 2003 10:49:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EF5743FCB; Fri, 14 Nov 2003 10:49:02 -0800 (PST) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEIn2XJ057514; Fri, 14 Nov 2003 10:49:02 -0800 (PST) (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEIn2c4057513; Fri, 14 Nov 2003 10:49:02 -0800 (PST) (envelope-from cognet) Message-Id: <200311141849.hAEIn2c4057513@repoman.freebsd.org> From: Olivier Houchard Date: Fri, 14 Nov 2003 10:49:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_event.c kern_exit.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:49:03 -0000 cognet 2003/11/14 10:49:02 PST FreeBSD src repository Modified files: sys/kern kern_event.c kern_exit.c Log: Better fix than my previous commit: in exit1(), make sure the p_klist is empty after sending NOTE_EXIT. The process won't report fork() or execve() and won't be able to handle NOTE_SIGNAL knotes anyway. This fixes some race conditions with do_tdsignal() calling knote() while the process is exiting. Reported by: Stefan Farfeleder MFC after: 1 week Revision Changes Path 1.65 +2 -8 src/sys/kern/kern_event.c 1.218 +7 -0 src/sys/kern/kern_exit.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 10:53:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A110816A4CE; Fri, 14 Nov 2003 10:53:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 138DE43FE1; Fri, 14 Nov 2003 10:53:23 -0800 (PST) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEIrMXJ057829; Fri, 14 Nov 2003 10:53:22 -0800 (PST) (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEIrMdW057828; Fri, 14 Nov 2003 10:53:22 -0800 (PST) (envelope-from bms) Message-Id: <200311141853.hAEIrMdW057828@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 14 Nov 2003 10:53:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include ifaddrs.h src/lib/libc/net Makefile.inc getifmaddrs.3 getifmaddrs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 18:53:23 -0000 bms 2003/11/14 10:53:22 PST FreeBSD src repository Modified files: include ifaddrs.h lib/libc/net Makefile.inc Added files: lib/libc/net getifmaddrs.3 getifmaddrs.c Log: Add the userland part of the NET_RT_IFMALIST sysctl MIB. A new function, getifmaddrs(), is added to retrieve current multicast group memberships. Reviewed by: harti Revision Changes Path 1.3 +9 -0 src/include/ifaddrs.h 1.50 +3 -2 src/lib/libc/net/Makefile.inc 1.1 +112 -0 src/lib/libc/net/getifmaddrs.3 (new) 1.1 +207 -0 src/lib/libc/net/getifmaddrs.c (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 11:00:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2112416A4CE; Fri, 14 Nov 2003 11:00:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FF6F43FBD; Fri, 14 Nov 2003 11:00:03 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEJ03XJ058233; Fri, 14 Nov 2003 11:00:03 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEJ027p058232; Fri, 14 Nov 2003 11:00:02 -0800 (PST) (envelope-from jhb) Message-Id: <200311141900.hAEJ027p058232@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 11:00:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 19:00:04 -0000 jhb 2003/11/14 11:00:02 PST FreeBSD src repository Modified files: sys/i386/i386 machdep.c Log: Fix a typo. We need opt_acpi.h not opt_apic.h for DEV_ACPI. Revision Changes Path 1.582 +1 -1 src/sys/i386/i386/machdep.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 11:00:35 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8F2C16A4D0; Fri, 14 Nov 2003 11:00:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9194B43F93; Fri, 14 Nov 2003 11:00:34 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEJ0YXJ058451; Fri, 14 Nov 2003 11:00:34 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEJ0XBn058450; Fri, 14 Nov 2003 11:00:33 -0800 (PST) (envelope-from sam) Message-Id: <200311141900.hAEJ0XBn058450@repoman.freebsd.org> From: Sam Leffler Date: Fri, 14 Nov 2003 11:00:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/an if_an.c if_anreg.h src/sys/dev/bfe if_bfe.c src/sys/dev/my if_my.c src/sys/dev/owi if_owi.c if_wivar.h src/sys/dev/re if_re.c src/sys/dev/wl if_wl.c src/sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h if_rl.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 19:00:36 -0000 sam 2003/11/14 11:00:33 PST FreeBSD src repository Modified files: sys/dev/an if_an.c if_anreg.h sys/dev/bfe if_bfe.c sys/dev/my if_my.c sys/dev/owi if_owi.c if_wivar.h sys/dev/re if_re.c sys/dev/wl if_wl.c sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h if_rl.c if_rlreg.h if_sf.c if_sfreg.h if_sis.c if_sisreg.h if_sk.c if_skreg.h if_ste.c if_stereg.h if_ti.c if_tireg.h if_tl.c if_tlreg.h if_vr.c if_vrreg.h if_wb.c if_wbreg.h if_xl.c if_xlreg.h Log: Drop the driver lock around calls to if_input to avoid a LOR when the packets are immediately returned for sending (e.g. when bridging or packet forwarding). There are more efficient ways to do this but for now use the least intrusive approach. Reviewed by: imp, rwatson Revision Changes Path 1.56 +4 -0 src/sys/dev/an/if_an.c 1.20 +1 -0 src/sys/dev/an/if_anreg.h 1.4 +2 -0 src/sys/dev/bfe/if_bfe.c 1.21 +2 -0 src/sys/dev/my/if_my.c 1.3 +4 -0 src/sys/dev/owi/if_owi.c 1.2 +2 -0 src/sys/dev/owi/if_wivar.h 1.15 +4 -0 src/sys/dev/re/if_re.c 1.57 +4 -0 src/sys/dev/wl/if_wl.c 1.135 +9 -1 src/sys/pci/if_dc.c 1.39 +1 -0 src/sys/pci/if_dcreg.h 1.52 +4 -0 src/sys/pci/if_pcn.c 1.8 +2 -1 src/sys/pci/if_pcnreg.h 1.125 +4 -0 src/sys/pci/if_rl.c 1.41 +1 -0 src/sys/pci/if_rlreg.h 1.63 +4 -0 src/sys/pci/if_sf.c 1.10 +2 -1 src/sys/pci/if_sfreg.h 1.90 +4 -0 src/sys/pci/if_sis.c 1.25 +1 -0 src/sys/pci/if_sisreg.h 1.71 +6 -0 src/sys/pci/if_sk.c 1.19 +1 -0 src/sys/pci/if_skreg.h 1.58 +4 -0 src/sys/pci/if_ste.c 1.12 +1 -0 src/sys/pci/if_stereg.h 1.85 +4 -0 src/sys/pci/if_ti.c 1.27 +1 -0 src/sys/pci/if_tireg.h 1.88 +4 -0 src/sys/pci/if_tl.c 1.19 +1 -0 src/sys/pci/if_tlreg.h 1.77 +4 -0 src/sys/pci/if_vr.c 1.18 +1 -0 src/sys/pci/if_vrreg.h 1.66 +4 -0 src/sys/pci/if_wb.c 1.10 +2 -1 src/sys/pci/if_wbreg.h 1.161 +4 -0 src/sys/pci/if_xl.c 1.48 +2 -0 src/sys/pci/if_xlreg.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 11:03:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 846CB16A4D0 for ; Fri, 14 Nov 2003 11:03:18 -0800 (PST) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B88343FD7 for ; Fri, 14 Nov 2003 11:03:15 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 23305 invoked from network); 14 Nov 2003 19:03:14 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 14 Nov 2003 19:03:14 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAEJ3BEW007234; Fri, 14 Nov 2003 14:03:11 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Fri, 14 Nov 2003 14:03:08 -0500 (EST) From: John Baldwin To: John Baldwin X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 19:03:18 -0000 On 14-Nov-2003 John Baldwin wrote: > > On 14-Nov-2003 John Baldwin wrote: >> jhb 2003/11/14 08:27:17 PST >> >> FreeBSD src repository >> >> Modified files: >> sys/sys proc.h >> Log: >> Add a WITNESS_WARN() check to _STOPEVENT() since any _STOPEVENT() can >> potentially sleep. This should help find some bogus locking. > > There is at least one place where sigacts locking trips this assertion. > I will try to work on cleaning up that and other problems that surface > today from this check. > > I also need to add a KASSERT() to msleep/cv_wait* that we don't try > to sleep if we are already on a sleep queue. It seems that using > ptrace can trip that as well. :( Also, this last is also a bug in 4.x, though I think perhaps it is a feature. Basically, in msleep() in both branches, we put a thread/proc on the sleep queue before checking for signals(). If during checking signals we are woken up, we don't sleep but return immediately. Thus, if during checking for signals we sleep because of a stop event, we just won't ever sleep on the original wait channel but will return to recheck the condition in a while loop. However, I am curious if the linkages of the sleep queues can be broken by taking a thread that is already on a sleep queue and sticking it on another sleep queue. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Fri Nov 14 11:10:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DDAC16A4CE; Fri, 14 Nov 2003 11:10:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C326543FD7; Fri, 14 Nov 2003 11:10:13 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEJADXJ059894; Fri, 14 Nov 2003 11:10:13 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEJADK2059892; Fri, 14 Nov 2003 11:10:13 -0800 (PST) (envelope-from jhb) Message-Id: <200311141910.hAEJADK2059892@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 11:10:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 apic_vector.s local_apic.c src/sys/i386/include apicvar.h intr_machdep.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 19:10:14 -0000 jhb 2003/11/14 11:10:13 PST FreeBSD src repository Modified files: sys/i386/i386 apic_vector.s local_apic.c sys/i386/include apicvar.h intr_machdep.h Log: Shuffle the APIC interrupt vectors around a bit: - Move the IPI and local APIC interrupt vectors up into the 0xf0 - 0xff range. The pmap lazyfix IPI was reordered down next to the TLB shootdowns to avoid conflicting with the spurious interrupt vector. - Move the base of APIC interrupts up 16 so that the first 16 APIC interrupts do not overlap the vectors used by the ATPIC. - Remove bogus interrupt vector reservations for LINT[01]. - Now that 0xc0 - 0xef are available, use them for device interrupts. This increases the number of APIC device interrupts to 191. - Increase the system-wide number of global interrupts to 191 to catch up to more APIC interrupts. Requested by: peter (2) Revision Changes Path 1.94 +2 -0 src/sys/i386/i386/apic_vector.s 1.3 +10 -6 src/sys/i386/i386/local_apic.c 1.4 +13 -11 src/sys/i386/include/apicvar.h 1.2 +2 -2 src/sys/i386/include/intr_machdep.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 11:12:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73C5316A4CE; Fri, 14 Nov 2003 11:12:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E22AC43F93; Fri, 14 Nov 2003 11:12:25 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEJCPXJ060117; Fri, 14 Nov 2003 11:12:25 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEJCPQX060116; Fri, 14 Nov 2003 11:12:25 -0800 (PST) (envelope-from jhb) Message-Id: <200311141912.hAEJCPQX060116@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 11:12:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa icu.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 19:12:26 -0000 jhb 2003/11/14 11:12:25 PST FreeBSD src repository Modified files: sys/i386/isa icu.h Log: - Bring in constants for 8259A registers from amd64 with some updated comments from NetBSD's dev/ic/i8259A.h. These bits really belong in a file of the same name as well, but this will do for now. - Axe unused HWI_MASK. Revision Changes Path 1.30 +57 -2 src/sys/i386/isa/icu.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 11:13:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84D7D16A4CE; Fri, 14 Nov 2003 11:13:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CC3F43FE0; Fri, 14 Nov 2003 11:13:06 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEJD6XJ060194; Fri, 14 Nov 2003 11:13:06 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEJD64t060189; Fri, 14 Nov 2003 11:13:06 -0800 (PST) (envelope-from jhb) Message-Id: <200311141913.hAEJD64t060189@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 11:13:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa atpic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 19:13:07 -0000 jhb 2003/11/14 11:13:06 PST FreeBSD src repository Modified files: sys/i386/isa atpic.c Log: Replace magic numbers with macros for i8259A register constants. Still need the ICW4 bits for PC98 though. Revision Changes Path 1.4 +10 -9 src/sys/i386/isa/atpic.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:06:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 414AE16A4CE; Fri, 14 Nov 2003 12:06:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE6584401E; Fri, 14 Nov 2003 12:06:24 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEK6OXJ064084; Fri, 14 Nov 2003 12:06:24 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEK6OD1064083; Fri, 14 Nov 2003 12:06:24 -0800 (PST) (envelope-from peter) Message-Id: <200311142006.hAEK6OD1064083@repoman.freebsd.org> From: Peter Wemm Date: Fri, 14 Nov 2003 12:06:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa atpic_vector.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:06:25 -0000 peter 2003/11/14 12:06:24 PST FreeBSD src repository Modified files: sys/i386/isa atpic_vector.s Log: "opt_auto_eoi.h" is not used here anymore. See atpic.c. Revision Changes Path 1.40 +0 -2 src/sys/i386/isa/atpic_vector.s From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:21:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9E9216A4CF for ; Fri, 14 Nov 2003 12:21:02 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 6D19843FD7 for ; Fri, 14 Nov 2003 12:21:00 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 48365 invoked by uid 1000); 14 Nov 2003 20:21:01 -0000 Date: Fri, 14 Nov 2003 12:21:01 -0800 (PST) From: Nate Lawson To: Sam Leffler In-Reply-To: <20031114190111.EDAC816A4E2@hub.freebsd.org> Message-ID: <20031114121752.V48322@root.org> References: <20031114190111.EDAC816A4E2@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/an if_an.c if_anreg.h src/sys/dev/bfe if_bfe.c src/sys/dev/my if_my.c src/sys/dev/owi if_owi.c if_wivar.h src/sys/dev/re if_re.c src/sys/dev/wl if_wl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:21:03 -0000 On Fri, 14 Nov 2003, Sam Leffler wrote: > Modified files: > sys/dev/an if_an.c if_anreg.h > sys/dev/bfe if_bfe.c > sys/dev/my if_my.c > sys/dev/owi if_owi.c if_wivar.h > sys/dev/re if_re.c > sys/dev/wl if_wl.c > sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h > if_rl.c if_rlreg.h if_sf.c if_sfreg.h > if_sis.c if_sisreg.h if_sk.c if_skreg.h > if_ste.c if_stereg.h if_ti.c if_tireg.h > if_tl.c if_tlreg.h if_vr.c if_vrreg.h > if_wb.c if_wbreg.h if_xl.c if_xlreg.h > Log: > Drop the driver lock around calls to if_input to avoid a LOR when > the packets are immediately returned for sending (e.g. when bridging > or packet forwarding). There are more efficient ways to do this > but for now use the least intrusive approach. > > Reviewed by: imp, rwatson FYI, I believe fxp(4) already has this fix. -Nate From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:22:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09A7C16A4D2 for ; Fri, 14 Nov 2003 12:22:34 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 18CD543FD7 for ; Fri, 14 Nov 2003 12:22:32 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 48378 invoked by uid 1000); 14 Nov 2003 20:22:33 -0000 Date: Fri, 14 Nov 2003 12:22:33 -0800 (PST) From: Nate Lawson To: Jake Burkholder In-Reply-To: <20031114053225.07C4916A54F@hub.freebsd.org> Message-ID: <20031114122118.S48322@root.org> References: <20031114053225.07C4916A54F@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sparc64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:22:34 -0000 On Thu, 13 Nov 2003, Jake Burkholder wrote: > Modified files: > sys/sparc64/conf GENERIC > Log: > Rev 1.61 accidentily added makeoptions NO_MODULES=yes. Funny that I add this > to all my kernel configs. > > Submitted by: Hidetoshi Shimokawa > > Revision Changes Path > 1.64 +10 -11 src/sys/sparc64/conf/GENERIC Ok, but did you intend to revert a lot of your previous commit? -Nate > --- src/sys/sparc64/conf/GENERIC:1.63 Mon Nov 10 23:49:13 2003 > +++ src/sys/sparc64/conf/GENERIC Thu Nov 13 21:31:50 2003 > @@ -28,7 +28,6 @@ > #hints "GENERIC.hints" #Default places to look for devices. > > makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols > -makeoptions NO_MODULES=yes > > # Platforms supported > # At this time all platforms are supported, as-is. > @@ -61,8 +60,8 @@ > options DDB #Enable the kernel debugger > options INVARIANTS #Enable calls of extra sanity checking > options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS > -options WITNESS #Enable checks to detect deadlocks and cycles > -options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed > +#options WITNESS #Enable checks to detect deadlocks and cycles > +#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed > > # To make an SMP kernel, the next line is needed > options SMP # Symmetric MultiProcessor Kernel > @@ -120,10 +119,10 @@ > > > # syscons is the default console driver, resembling an SCO console > -#device sc > -#device creator # Creator graphics cards > -#device splash # Splash screen and screen saver support > -#options KBD_INSTALL_CDEV > +device sc > +device creator # Creator graphics cards > +device splash # Splash screen and screen saver support > +options KBD_INSTALL_CDEV > > device ofw_console # OpenBoot firmware console device > > @@ -133,10 +132,10 @@ > device "mk48txx" # Mostek MK48T02, MK48T08, MK48T59 clock > > # Serial (COM) ports > -device sab # Siemens SAB82532 based serial ports > -device zs # Zilog 8530 based serial ports > -#device uart # Multi-uart driver > -#device puc # Multi-channel uarts > +#device sab # Siemens SAB82532 based serial ports > +#device zs # Zilog 8530 based serial ports > +device uart # Multi-uart driver > +device puc # Multi-channel uarts > > # Parallel port > #device ppc > From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:27:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA03916A4CE; Fri, 14 Nov 2003 12:27:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54EDE43FBF; Fri, 14 Nov 2003 12:27:14 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEKREXJ064992; Fri, 14 Nov 2003 12:27:14 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEKREsU064991; Fri, 14 Nov 2003 12:27:14 -0800 (PST) (envelope-from bde) Message-Id: <200311142027.hAEKREsU064991@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 12:27:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys reboot.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:27:15 -0000 bde 2003/11/14 12:27:14 PST FreeBSD src repository Modified files: sys/sys reboot.h Log: Fixed some style bugs (English errors and poor wording in comments, tab lossage, and missing comment on idempotency #endif). Revision Changes Path 1.22 +10 -11 src/sys/sys/reboot.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:29:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B3F216A4CE; Fri, 14 Nov 2003 12:29:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B930B43FCB; Fri, 14 Nov 2003 12:29:12 -0800 (PST) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEKTCXJ065117; Fri, 14 Nov 2003 12:29:12 -0800 (PST) (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEKTCjR065116; Fri, 14 Nov 2003 12:29:12 -0800 (PST) (envelope-from bms) Message-Id: <200311142029.hAEKTCjR065116@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 14 Nov 2003 12:29:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile idt.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:29:13 -0000 bms 2003/11/14 12:29:12 PST FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 idt.4 Log: Add a manual page for the IDT NICStAR driver, and hook it up to the build. Revision Changes Path 1.240 +2 -0 src/share/man/man4/Makefile 1.1 +59 -0 src/share/man/man4/idt.4 (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:31:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 674CD16A4CE; Fri, 14 Nov 2003 12:31:10 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DD8543F75; Fri, 14 Nov 2003 12:31:03 -0800 (PST) (envelope-from sam@errno.com) Received: from 66.127.85.91 ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.9) with ESMTP id hAEKV10x040517 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 14 Nov 2003 12:31:02 -0800 (PST) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: Nate Lawson , Sam Leffler Date: Fri, 14 Nov 2003 12:33:14 -0800 User-Agent: KMail/1.5.3 References: <20031114190111.EDAC816A4E2@hub.freebsd.org> <20031114121752.V48322@root.org> In-Reply-To: <20031114121752.V48322@root.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311141233.14513.sam@errno.com> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/an if_an.c if_anreg.h src/sys/dev/bfe if_bfe.c src/sys/dev/my if_my.c src/sys/dev/owi if_owi.c if_wivar.h src/sys/dev/re if_re.c src/sys/dev/wl if_wl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:31:10 -0000 On Friday 14 November 2003 12:21 pm, Nate Lawson wrote: > On Fri, 14 Nov 2003, Sam Leffler wrote: > > Modified files: > > sys/dev/an if_an.c if_anreg.h > > sys/dev/bfe if_bfe.c > > sys/dev/my if_my.c > > sys/dev/owi if_owi.c if_wivar.h > > sys/dev/re if_re.c > > sys/dev/wl if_wl.c > > sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h > > if_rl.c if_rlreg.h if_sf.c if_sfreg.h > > if_sis.c if_sisreg.h if_sk.c if_skreg.h > > if_ste.c if_stereg.h if_ti.c if_tireg.h > > if_tl.c if_tlreg.h if_vr.c if_vrreg.h > > if_wb.c if_wbreg.h if_xl.c if_xlreg.h > > Log: > > Drop the driver lock around calls to if_input to avoid a LOR when > > the packets are immediately returned for sending (e.g. when bridging > > or packet forwarding). There are more efficient ways to do this > > but for now use the least intrusive approach. > > > > Reviewed by: imp, rwatson > > FYI, I believe fxp(4) already has this fix. Yes, several drivers already do this; I just did a sweep through the remaining drivers that were locked to make them all do the same thing. Sam From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:37:32 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A97616A4CE; Fri, 14 Nov 2003 12:37:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94B0343FBF; Fri, 14 Nov 2003 12:36:27 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEKaCXJ065477; Fri, 14 Nov 2003 12:36:12 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEKaCo7065476; Fri, 14 Nov 2003 12:36:12 -0800 (PST) (envelope-from jake) Message-Id: <200311142036.hAEKaCo7065476@repoman.freebsd.org> From: Jake Burkholder Date: Fri, 14 Nov 2003 12:36:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:37:32 -0000 jake 2003/11/14 12:36:12 PST FreeBSD src repository Modified files: sys/sparc64/conf GENERIC Log: Fix more spammage with local changes. Didn't look at the diffs before committing. Pointy hat to: jake Revision Changes Path 1.65 +10 -10 src/sys/sparc64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:51:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E59F316A4CE; Fri, 14 Nov 2003 12:51:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E22743F85; Fri, 14 Nov 2003 12:51:09 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEKp9XJ071916; Fri, 14 Nov 2003 12:51:09 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEKp8Nu071915; Fri, 14 Nov 2003 12:51:08 -0800 (PST) (envelope-from peter) Message-Id: <200311142051.hAEKp8Nu071915@repoman.freebsd.org> From: Peter Wemm Date: Fri, 14 Nov 2003 12:51:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 mptable.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:51:10 -0000 peter 2003/11/14 12:51:08 PST FreeBSD src repository Modified files: sys/i386/i386 mptable.c Log: basemem is in K, not bytes. I think I tricked jhb into making the same mistake I did and then committing it to cvs. Revision Changes Path 1.226 +1 -1 src/sys/i386/i386/mptable.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:54:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFB9616A4CE; Fri, 14 Nov 2003 12:54:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED45043FE1; Fri, 14 Nov 2003 12:54:10 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEKsAXJ072204; Fri, 14 Nov 2003 12:54:10 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEKsAqZ072203; Fri, 14 Nov 2003 12:54:10 -0800 (PST) (envelope-from alfred) Message-Id: <200311142054.hAEKsAqZ072203@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 12:54:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfs nfsproto.h rpcv2.h src/sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c nfs4_idmap.h nfs4_socket.c nfs4_subs.c nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c nfs4m_subs.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:54:11 -0000 alfred 2003/11/14 12:54:10 PST FreeBSD src repository Modified files: sys/nfs nfsproto.h rpcv2.h sys/nfsclient bootp_subr.c krpc_subr.c nfs.h nfs_bio.c nfs_diskless.c nfs_lock.c nfs_nfsiod.c nfs_node.c nfs_socket.c nfs_subs.c nfs_vfsops.c nfs_vnops.c nfsargs.h nfsm_subs.h nfsmount.h nfsnode.h sys/conf files Added files: sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c nfs4_idmap.h nfs4_socket.c nfs4_subs.c nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c nfs4m_subs.h sys/rpc rpcclnt.c rpcclnt.h rpcm_subs.h rpcv2.h Log: University of Michigan's Citi NFSv4 kernel client code. Submitted by: Jim Rees Revision Changes Path 1.851 +9 -0 src/sys/conf/files 1.9 +286 -7 src/sys/nfs/nfsproto.h 1.12 +12 -2 src/sys/nfs/rpcv2.h 1.1 +260 -0 src/sys/nfs4client/nfs4.h (new) 1.1 +451 -0 src/sys/nfs4client/nfs4_dev.c (new) 1.1 +65 -0 src/sys/nfs4client/nfs4_dev.h (new) 1.1 +513 -0 src/sys/nfs4client/nfs4_idmap.c (new) 1.1 +64 -0 src/sys/nfs4client/nfs4_idmap.h (new) 1.1 +340 -0 src/sys/nfs4client/nfs4_socket.c (new) 1.1 +1352 -0 src/sys/nfs4client/nfs4_subs.c (new) 1.1 +34 -0 src/sys/nfs4client/nfs4_vfs.h (new) 1.1 +150 -0 src/sys/nfs4client/nfs4_vfs_subs.c (new) 1.1 +938 -0 src/sys/nfs4client/nfs4_vfsops.c (new) 1.1 +33 -0 src/sys/nfs4client/nfs4_vn.h (new) 1.1 +223 -0 src/sys/nfs4client/nfs4_vn_subs.c (new) 1.1 +3200 -0 src/sys/nfs4client/nfs4_vnops.c (new) 1.1 +498 -0 src/sys/nfs4client/nfs4m_subs.h (new) 1.56 +2 -0 src/sys/nfsclient/bootp_subr.c 1.25 +2 -0 src/sys/nfsclient/krpc_subr.c 1.74 +19 -0 src/sys/nfsclient/nfs.h 1.125 +43 -10 src/sys/nfsclient/nfs_bio.c 1.6 +1 -0 src/sys/nfsclient/nfs_diskless.c 1.39 +2 -0 src/sys/nfsclient/nfs_lock.c 1.79 +3 -0 src/sys/nfsclient/nfs_nfsiod.c 1.65 +8 -3 src/sys/nfsclient/nfs_node.c 1.101 +8 -0 src/sys/nfsclient/nfs_socket.c 1.121 +6 -0 src/sys/nfsclient/nfs_subs.c 1.144 +2 -0 src/sys/nfsclient/nfs_vfsops.c 1.215 +3 -0 src/sys/nfsclient/nfs_vnops.c 1.65 +2 -0 src/sys/nfsclient/nfsargs.h 1.33 +11 -0 src/sys/nfsclient/nfsm_subs.h 1.24 +8 -1 src/sys/nfsclient/nfsmount.h 1.40 +28 -1 src/sys/nfsclient/nfsnode.h 1.1 +2083 -0 src/sys/rpc/rpcclnt.c (new) 1.1 +358 -0 src/sys/rpc/rpcclnt.h (new) 1.1 +133 -0 src/sys/rpc/rpcm_subs.h (new) 1.1 +101 -0 src/sys/rpc/rpcv2.h (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 12:58:01 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA05416A4CE; Fri, 14 Nov 2003 12:58:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7684D43FD7; Fri, 14 Nov 2003 12:58:01 -0800 (PST) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEKw1XJ072514; Fri, 14 Nov 2003 12:58:01 -0800 (PST) (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEKw0Kv072511; Fri, 14 Nov 2003 12:58:00 -0800 (PST) (envelope-from bms) Message-Id: <200311142058.hAEKw0Kv072511@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 14 Nov 2003 12:58:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/if_gre Makefile src/sys/net if_gre.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 20:58:02 -0000 bms 2003/11/14 12:58:00 PST FreeBSD src repository Modified files: sys/modules/if_gre Makefile sys/net if_gre.c Log: Fix a bug whereby the physical endpoints of a gre(4) tunnel would not be printed, if the module were loaded into a kernel which had INET6 enabled. The gre(4) driver does not use INET6, nor is it specified for IPv6. The tunnel_status() function in ifconfig(8) is somewhat overzealous and assumes that all tunnel interfaces speak KAME ifioctls. This fix follows the path of least resistance, by teaching gre(4) about the two KAME ifioctls concerned. PR: bin/56341 Revision Changes Path 1.5 +5 -2 src/sys/modules/if_gre/Makefile 1.14 +7 -0 src/sys/net/if_gre.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:00:33 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C96C316A4CE; Fri, 14 Nov 2003 13:00:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43FA143FAF; Fri, 14 Nov 2003 13:00:33 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEL0XXJ072751; Fri, 14 Nov 2003 13:00:33 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEL0WMm072746; Fri, 14 Nov 2003 13:00:32 -0800 (PST) (envelope-from jhb) Message-Id: <200311142100.hAEL0WMm072746@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 13:00:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 intr_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:00:33 -0000 jhb 2003/11/14 13:00:32 PST FreeBSD src repository Modified files: sys/i386/i386 intr_machdep.c Log: If an interrupt source doesn't have an ithread, treat it as a stray interrupt. This can only happen if an unregistered interrupt source triggers an interrupt. Revision Changes Path 1.3 +4 -1 src/sys/i386/i386/intr_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:02:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E618116A4CE; Fri, 14 Nov 2003 13:02:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14C7643FE1; Fri, 14 Nov 2003 13:02:11 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEL2AXJ073071; Fri, 14 Nov 2003 13:02:10 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEL2AnA073070; Fri, 14 Nov 2003 13:02:10 -0800 (PST) (envelope-from bde) Message-Id: <200311142102.hAEL2AnA073070@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 13:02:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netatm/ipatm ipatm_vcm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:02:12 -0000 bde 2003/11/14 13:02:10 PST FreeBSD src repository Modified files: sys/netatm/ipatm ipatm_vcm.c Log: Include for the declaration of malloc(), etc. instead of depending on namespace pollution 2 layers deep in . Fixed most nearby include messes (another like this, several the opposite of this, and some formatting). Revision Changes Path 1.17 +5 -3 src/sys/netatm/ipatm/ipatm_vcm.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:02:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2232316A4CF; Fri, 14 Nov 2003 13:02:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8410D43FB1; Fri, 14 Nov 2003 13:02:23 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEL2NXJ073187; Fri, 14 Nov 2003 13:02:23 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEL2Nen073186; Fri, 14 Nov 2003 13:02:23 -0800 (PST) (envelope-from andre) Message-Id: <200311142102.hAEL2Nen073186@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 14 Nov 2003 13:02:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_var.h ip_fastfwd.c ip_flow.c ip_flow.h ip_input.c ip_output.c src/sys/sys mbuf.h src/sys/conf files src/sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:02:24 -0000 andre 2003/11/14 13:02:23 PST FreeBSD src repository Modified files: sys/netinet in_var.h ip_input.c ip_output.c sys/sys mbuf.h sys/conf files sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c Added files: sys/netinet ip_fastfwd.c Removed files: sys/netinet ip_flow.c ip_flow.h Log: Introduce ip_fastforward and remove ip_flow. Short description of ip_fastforward: o adds full direct process-to-completion IPv4 forwarding code o handles ip fragmentation incl. hw support (ip_flow did not) o sends icmp needfrag to source if DF is set (ip_flow did not) o supports ipfw and ipfilter (ip_flow did not) o supports divert, ipfw fwd and ipfilter nat (ip_flow did not) o returns anything it can't handle back to normal ip_input Enable with sysctl -w net.inet.ip.fastforwarding=1 Reviewed by: sam (mentor) Revision Changes Path 1.852 +1 -1 src/sys/conf/files 1.15 +2 -2 src/sys/net/if_arcsubr.c 1.27 +1 -1 src/sys/net/if_ef.c 1.155 +1 -1 src/sys/net/if_ethersubr.c 1.87 +1 -1 src/sys/net/if_fddisubr.c 1.58 +1 -1 src/sys/net/if_iso88025subr.c 1.94 +1 -1 src/sys/net/if_ppp.c 1.48 +1 -3 src/sys/netinet/in_var.h 1.1 +806 -0 src/sys/netinet/ip_fastfwd.c (new) 1.17 +0 -377 src/sys/netinet/ip_flow.c (dead) 1.6 +0 -64 src/sys/netinet/ip_flow.h (dead) 1.253 +29 -8 src/sys/netinet/ip_input.c 1.200 +1 -0 src/sys/netinet/ip_output.c 1.126 +1 -0 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:02:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A245A16A4D0; Fri, 14 Nov 2003 13:02:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAFFF43FF2; Fri, 14 Nov 2003 13:02:49 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEL2nXJ073214; Fri, 14 Nov 2003 13:02:49 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEL2n3F073213; Fri, 14 Nov 2003 13:02:49 -0800 (PST) (envelope-from jhb) Message-Id: <200311142102.hAEL2n3F073213@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 13:02:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa atpic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:02:50 -0000 jhb 2003/11/14 13:02:49 PST FreeBSD src repository Modified files: sys/i386/isa atpic.c Log: Always install IDT entries for ATPIC interrupt sources. The APIC no longer uses these interrupt vectors for its ISA interrupt pins, so these entries will not be overwritten. If we get a spurious interrupt from the ATPIC when using the APIC, it will be treated as a stray interrupt instead of causing a panic. Revision Changes Path 1.5 +3 -10 src/sys/i386/isa/atpic.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:04:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7F8616A4CE; Fri, 14 Nov 2003 13:04:05 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CA3E43FCB; Fri, 14 Nov 2003 13:04:04 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 6575E65434; Fri, 14 Nov 2003 21:04:03 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 98153-04-7; Fri, 14 Nov 2003 21:04:03 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id AB2BC65493; Fri, 14 Nov 2003 21:04:02 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 4EFB826; Fri, 14 Nov 2003 21:04:00 +0000 (GMT) Date: Fri, 14 Nov 2003 21:04:00 +0000 From: Bruce M Simpson To: cvs-src@FreeBSD.org Message-ID: <20031114210400.GF64140@saboteur.dek.spc.org> Mail-Followup-To: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200311142058.hAEKw0Kv072511@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311142058.hAEKw0Kv072511@repoman.freebsd.org> cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules/if_gre Makefile src/sys/net if_gre.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:04:05 -0000 On Fri, Nov 14, 2003 at 12:58:00PM -0800, Bruce M Simpson wrote: > Log: > Fix a bug whereby the physical endpoints of a gre(4) tunnel would not > be printed, if the module were loaded into a kernel which had INET6 enabled. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ I really mean 'if one attempts to use an ifconfig built for an INET6 and INET world' here. BMS From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:04:34 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 640A116A4CF; Fri, 14 Nov 2003 13:04:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB44843FE1; Fri, 14 Nov 2003 13:04:33 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEL4XXJ074193; Fri, 14 Nov 2003 13:04:33 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEL4XxK074192; Fri, 14 Nov 2003 13:04:33 -0800 (PST) (envelope-from alfred) Message-Id: <200311142104.hAEL4XxK074192@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 13:04:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/mount_nfs4 Makefile mount_nfs4.8 mount_nfs4.c src/sbin/idmapd Makefile idmapd.8 idmapd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:04:34 -0000 alfred 2003/11/14 13:04:33 PST FreeBSD src repository Added files: sbin/mount_nfs4 Makefile mount_nfs4.8 mount_nfs4.c sbin/idmapd Makefile idmapd.8 idmapd.c Log: University of Michigan's Citi NFSv4 userland client code. Submitted by: Jim Rees Revision Changes Path 1.1 +14 -0 src/sbin/idmapd/Makefile (new) 1.1 +2 -0 src/sbin/idmapd/idmapd.8 (new) 1.1 +431 -0 src/sbin/idmapd/idmapd.c (new) 1.1 +16 -0 src/sbin/mount_nfs4/Makefile (new) 1.1 +351 -0 src/sbin/mount_nfs4/mount_nfs4.8 (new) 1.1 +873 -0 src/sbin/mount_nfs4/mount_nfs4.c (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:05:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03EB316A4E1; Fri, 14 Nov 2003 13:05:59 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0101143FBD; Fri, 14 Nov 2003 13:05:57 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id B12AA654B1; Fri, 14 Nov 2003 21:05:55 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 98153-04-12; Fri, 14 Nov 2003 21:05:54 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id D17A46548D; Fri, 14 Nov 2003 21:05:53 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 6A44A26; Fri, 14 Nov 2003 21:05:51 +0000 (GMT) Date: Fri, 14 Nov 2003 21:05:51 +0000 From: Bruce M Simpson To: Andre Oppermann Message-ID: <20031114210551.GG64140@saboteur.dek.spc.org> Mail-Followup-To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311142102.hAEL2Nen073186@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311142102.hAEL2Nen073186@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_fastfwd.c ip_flow.c ip_flow.h ip_input.c ip_output.c src/sys/sys mbuf.h src/sys/conf files src/sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:05:59 -0000 On Fri, Nov 14, 2003 at 01:02:23PM -0800, Andre Oppermann wrote: > Log: > Introduce ip_fastforward and remove ip_flow. Good, ip_flow sucks. :) BMS From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:18:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E220616A4CF; Fri, 14 Nov 2003 13:18:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A16C43FBD; Fri, 14 Nov 2003 13:18:05 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAELI5XJ074917; Fri, 14 Nov 2003 13:18:05 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAELI5Rw074916; Fri, 14 Nov 2003 13:18:05 -0800 (PST) (envelope-from bde) Message-Id: <200311142118.hAELI5Rw074916@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 13:18:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac mac_internal.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:18:06 -0000 bde 2003/11/14 13:18:05 PST FreeBSD src repository Modified files: sys/security/mac mac_internal.h Log: Reduced prequisites by only using MALLOC_DECLARE() if it is defined. This fixes a dependency of mac_label.c on namespace pollution in . Similarly for SYSCTL_DECL() although I had no problems with it. This probably makes some includes of bogus. Revision Changes Path 1.107 +4 -0 src/sys/security/mac/mac_internal.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:21:33 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C096516A500 for ; Fri, 14 Nov 2003 13:21:33 -0800 (PST) Received: from mail.speakeasy.net (mail7.speakeasy.net [216.254.0.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC3B543FD7 for ; Fri, 14 Nov 2003 13:21:28 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 17122 invoked from network); 14 Nov 2003 21:21:28 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 14 Nov 2003 21:21:28 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAELLPEW008136; Fri, 14 Nov 2003 16:21:25 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311142054.hAEKsAqZ072203@repoman.freebsd.org> Date: Fri, 14 Nov 2003 16:21:22 -0500 (EST) From: John Baldwin To: Alfred Perlstein X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/nfs nfsproto.h rpcv2.h src/sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c nfs4_idmap.h nfs4_socket.c nfs4_subs.c nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c nfs4m_subs.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:21:34 -0000 On 14-Nov-2003 Alfred Perlstein wrote: > alfred 2003/11/14 12:54:10 PST > > FreeBSD src repository > > Modified files: > sys/nfs nfsproto.h rpcv2.h > sys/nfsclient bootp_subr.c krpc_subr.c nfs.h nfs_bio.c > nfs_diskless.c nfs_lock.c nfs_nfsiod.c > nfs_node.c nfs_socket.c nfs_subs.c > nfs_vfsops.c nfs_vnops.c nfsargs.h > nfsm_subs.h nfsmount.h nfsnode.h > sys/conf files > Added files: > sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c > nfs4_idmap.h nfs4_socket.c nfs4_subs.c > nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c > nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c > nfs4m_subs.h > sys/rpc rpcclnt.c rpcclnt.h rpcm_subs.h rpcv2.h > Log: > University of Michigan's Citi NFSv4 kernel client code. > > Submitted by: Jim Rees Was this mentioned on arch@ or net@ or somewhere similar? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:21:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23AF716A4CF for ; Fri, 14 Nov 2003 13:21:56 -0800 (PST) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6305043FE0 for ; Fri, 14 Nov 2003 13:21:52 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 30933 invoked from network); 14 Nov 2003 21:21:50 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 14 Nov 2003 21:21:50 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAELLlEW008146; Fri, 14 Nov 2003 16:21:47 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200311142102.hAEL2n3F073213@repoman.freebsd.org> Date: Fri, 14 Nov 2003 16:21:44 -0500 (EST) From: John Baldwin To: John Baldwin X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/i386/isa atpic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:21:56 -0000 On 14-Nov-2003 John Baldwin wrote: > jhb 2003/11/14 13:02:49 PST > > FreeBSD src repository > > Modified files: > sys/i386/isa atpic.c > Log: > Always install IDT entries for ATPIC interrupt sources. The APIC no > longer uses these interrupt vectors for its ISA interrupt pins, so these > entries will not be overwritten. If we get a spurious interrupt from the > ATPIC when using the APIC, it will be treated as a stray interrupt instead > of causing a panic. This should fix all of the "panic: Couldn't get vector from ISR" and trap 30 (reserved) panics. If you were using older versions of either spurious.patch or atpic.patch, please try reverting them and using plain CVS to see if that fixes your problem. If not, please let me know. If you get several stray IRQ 7 messages and would like to shut them up, you can try http://www.FreeBSD.org/~jhb/patches/spurious.patch -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:27:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C04C116A4CE; Fri, 14 Nov 2003 13:27:17 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 894B843FB1; Fri, 14 Nov 2003 13:27:16 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAELRFFw018187; Fri, 14 Nov 2003 13:27:15 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAELRFIx018186; Fri, 14 Nov 2003 13:27:15 -0800 (PST) (envelope-from rizzo) Date: Fri, 14 Nov 2003 13:27:14 -0800 From: Luigi Rizzo To: Sam Leffler Message-ID: <20031114132714.A88606@xorpc.icir.org> References: <200311141900.hAEJ0XBn058450@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200311141900.hAEJ0XBn058450@repoman.freebsd.org>; from sam@FreeBSD.org on Fri, Nov 14, 2003 at 11:00:33AM -0800 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/an if_an.c if_anreg.h src/sys/dev/bfe if_bfe.c src/sys/dev/my if_my.c src/sys/dev/owi if_owi.c if_wivar.h src/sys/dev/re if_re.c src/sys/dev/wl if_wl.c src/sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h if_rl.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:27:18 -0000 On Fri, Nov 14, 2003 at 11:00:33AM -0800, Sam Leffler wrote: > sam 2003/11/14 11:00:33 PST ... > Log: > Drop the driver lock around calls to if_input to avoid a LOR when > the packets are immediately returned for sending (e.g. when bridging > or packet forwarding). There are more efficient ways to do this > but for now use the least intrusive approach. the number of places that this commit had to touch makes me wonder whether it wouldn't be better to include somehow these calls into the if_input routine somehow... cheers luigi From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:35:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E757116A4CE; Fri, 14 Nov 2003 13:35:15 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A068343F85; Fri, 14 Nov 2003 13:35:14 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.9p2/8.12.9) with ESMTP id hAELXIMg023962; Fri, 14 Nov 2003 16:33:18 -0500 (EST) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)hAELXIdP023959; Fri, 14 Nov 2003 16:33:18 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Fri, 14 Nov 2003 16:33:18 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Luigi Rizzo In-Reply-To: <20031114132714.A88606@xorpc.icir.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Sam Leffler cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/an if_an.c if_anreg.h src/sys/dev/bfe if_bfe.c src/sys/dev/my if_my.c src/sys/dev/owi if_owi.c if_wivar.h src/sys/dev/re if_re.c src/sys/dev/wl if_wl.c src/sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h if_rl.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:35:16 -0000 On Fri, 14 Nov 2003, Luigi Rizzo wrote: > On Fri, Nov 14, 2003 at 11:00:33AM -0800, Sam Leffler wrote: > > sam 2003/11/14 11:00:33 PST > ... > > Log: > > Drop the driver lock around calls to if_input to avoid a LOR when > > the packets are immediately returned for sending (e.g. when bridging > > or packet forwarding). There are more efficient ways to do this > > but for now use the least intrusive approach. > > the number of places that this commit had to touch makes me wonder > whether it wouldn't be better to include somehow these calls into the > if_input routine somehow... I can think of two concerns with that: first, that interface locks may be handled differently for different interfaces, and second, that in the future we may want to avoid an unlock/lock pair for each packet input. I've been running with local patches intended to reduce the number of unlock/lock pairs for coalesced interrupt handling by only unlocking to deliver chains of mbufs to if_input rather than individual mbufs. I.e., an approximation of the attached (can't remember if this is the exact patch since those boxes are at home). It could also be argued that the number of places that had to be touched in Sam's recent commit was a property of the locking strategy evolving from "ad hoc" to something more like a strategy. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories Index: if_fxp.c =================================================================== RCS file: /data/ncvs/src/sys/dev/fxp/if_fxp.c,v retrieving revision 1.194 diff -u -r1.194 if_fxp.c --- if_fxp.c 5 Sep 2003 22:37:31 -0000 1.194 +++ if_fxp.c 3 Oct 2003 16:43:11 -0000 @@ -1623,6 +1623,7 @@ fxp_intr_body(struct fxp_softc *sc, struct ifnet *ifp, u_int8_t statack, int count) { + struct mbuf *mqueue, *mqueue_tail; struct mbuf *m; struct fxp_rx *rxp; struct fxp_rfa *rfa; @@ -1685,6 +1686,7 @@ * record the pending RNR in the FXP_FLAG_DEFERRED_RNR flag so * that the info will be used in the subsequent polling cycle. */ + mqueue = mqueue_tail = NULL; for (;;) { rxp = sc->fxp_desc.rx_head; m = rxp->rx_mbuf; @@ -1766,10 +1768,21 @@ * packets received, dropping the lock, and then * calling if_input() on each one. */ - FXP_UNLOCK(sc); + if (mqueue != NULL) { + mqueue_tail->m_nextpkt = m; + mqueue_tail = m; + } else + mqueue = mqueue_tail = m; + } + } + if (mqueue != NULL) { + FXP_UNLOCK(sc); + while (mqueue != NULL) { + m = mqueue; + mqueue = mqueue->m_nextpkt; (*ifp->if_input)(ifp, m); - FXP_LOCK(sc); } + FXP_LOCK(sc); } if (rnr) { fxp_scb_wait(sc); From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:36:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6390516A4CE; Fri, 14 Nov 2003 13:36:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E235343FDF; Fri, 14 Nov 2003 13:36:09 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAELa9XJ075695; Fri, 14 Nov 2003 13:36:09 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAELa9Dr075694; Fri, 14 Nov 2003 13:36:09 -0800 (PST) (envelope-from jhb) Message-Id: <200311142136.hAELa9Dr075694@repoman.freebsd.org> From: John Baldwin Date: Fri, 14 Nov 2003 13:36:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:36:10 -0000 jhb 2003/11/14 13:36:09 PST FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c acpi_pcib.c Log: Improve support for extended IRQ resources: - For acpi_pci_link_entry_dump(), add a few helper functions to display the trigger mode, polarity, and sharemode of an individual IRQ resource. These functions are then called for both regular and extended IRQ resources. - In acpi_pci_link_set_irq(), use the same type of IRQ resource (regular vs. extended) for the new current resource as the type of the resources from _PRS. - When routing an interrupt don't ignore extended IRQ resources. Also, use the same type of IRQ resource (regular vs. extended) for the new current resource when as the type of the resource from _PRS. Tested by: peter Revision Changes Path 1.9 +80 -57 src/sys/dev/acpica/acpi_pci_link.c 1.33 +47 -20 src/sys/dev/acpica/acpi_pcib.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:37:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D5A816A4CE; Fri, 14 Nov 2003 13:37:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D29F243F93; Fri, 14 Nov 2003 13:37:35 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAELbZXJ075745; Fri, 14 Nov 2003 13:37:35 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAELbZSt075744; Fri, 14 Nov 2003 13:37:35 -0800 (PST) (envelope-from trhodes) Message-Id: <200311142137.hAELbZSt075744@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Nov 2003 13:37:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys sysctl.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:37:36 -0000 trhodes 2003/11/14 13:37:35 PST FreeBSD src repository Modified files: sys/sys sysctl.h Log: Fix a typo in a comment: sysctl(1) should be sysctl(8). Revision Changes Path 1.122 +1 -1 src/sys/sys/sysctl.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 13:48:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A19516A4CE; Fri, 14 Nov 2003 13:48:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B512543FE1; Fri, 14 Nov 2003 13:48:57 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAELmvXJ076290; Fri, 14 Nov 2003 13:48:57 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAELmvPV076289; Fri, 14 Nov 2003 13:48:57 -0800 (PST) (envelope-from andre) Message-Id: <200311142148.hAELmvPV076289@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 14 Nov 2003 13:48:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_rmx.c ip_fw2.c ip_icmp.c ip_input.c ip_output.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 21:48:58 -0000 andre 2003/11/14 13:48:57 PST FreeBSD src repository Modified files: sys/netinet in_rmx.c ip_fw2.c ip_icmp.c ip_input.c ip_output.c ip_var.h Log: Remove the global one-level rtcache variable and associated complex locking and rework ip_rtaddr() to do its own rtlookup. Adopt all its callers to this and make ip_output() callable with NULL rt pointer. Reviewed by: sam (mentor) Revision Changes Path 1.49 +0 -7 src/sys/netinet/in_rmx.c 1.44 +1 -6 src/sys/netinet/ip_fw2.c 1.83 +5 -11 src/sys/netinet/ip_icmp.c 1.254 +88 -199 src/sys/netinet/ip_input.c 1.201 +8 -17 src/sys/netinet/ip_output.c 1.80 +1 -2 src/sys/netinet/ip_var.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:11:45 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F59F16A4CE; Fri, 14 Nov 2003 14:11:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CDB843FAF; Fri, 14 Nov 2003 14:11:45 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEMBiXJ078325; Fri, 14 Nov 2003 14:11:44 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEMBi81078324; Fri, 14 Nov 2003 14:11:44 -0800 (PST) (envelope-from marcel) Message-Id: <200311142211.hAEMBi81078324@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 14 Nov 2003 14:11:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:11:45 -0000 marcel 2003/11/14 14:11:44 PST FreeBSD src repository Modified files: . UPDATING Log: Add the most vital piece of information WRT upgrading past the statfs changes: you must have COMPAT_FREEBSD4 in your kernel config file. Everything else is documented procedure and will not save your ass if you don't have the option. Revision Changes Path 1.281 +11 -5 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:21:32 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C978016A4CE; Fri, 14 Nov 2003 14:21:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 437ED43FAF; Fri, 14 Nov 2003 14:21:31 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEMLVXJ079753; Fri, 14 Nov 2003 14:21:31 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEMLUBQ079752; Fri, 14 Nov 2003 14:21:30 -0800 (PST) (envelope-from peter) Message-Id: <200311142221.hAEMLUBQ079752@repoman.freebsd.org> From: Peter Wemm Date: Fri, 14 Nov 2003 14:21:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include apicvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:21:33 -0000 peter 2003/11/14 14:21:30 PST FreeBSD src repository Modified files: sys/i386/include apicvar.h Log: Whitespace nit (sorry, couldn't help it) Revision Changes Path 1.5 +1 -1 src/sys/i386/include/apicvar.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:23:32 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F58A16A4CE; Fri, 14 Nov 2003 14:23:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29F7843F3F; Fri, 14 Nov 2003 14:23:31 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEMNVXJ079820; Fri, 14 Nov 2003 14:23:31 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEMNUEs079819; Fri, 14 Nov 2003 14:23:30 -0800 (PST) (envelope-from peter) Message-Id: <200311142223.hAEMNUEs079819@repoman.freebsd.org> From: Peter Wemm Date: Fri, 14 Nov 2003 14:23:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include mptable.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:23:32 -0000 peter 2003/11/14 14:23:30 PST FreeBSD src repository Modified files: sys/i386/include mptable.h Log: Convert a couple of pointers to integers for source compatability with amd64. Revision Changes Path 1.221 +4 -4 src/sys/i386/include/mptable.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:26:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A86316A4CE; Fri, 14 Nov 2003 14:26:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C86543FCB; Fri, 14 Nov 2003 14:26:30 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEMQTXJ079962; Fri, 14 Nov 2003 14:26:29 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEMQTJu079961; Fri, 14 Nov 2003 14:26:29 -0800 (PST) (envelope-from peter) Message-Id: <200311142226.hAEMQTJu079961@repoman.freebsd.org> From: Peter Wemm Date: Fri, 14 Nov 2003 14:26:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica madt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:26:31 -0000 peter 2003/11/14 14:26:29 PST FreeBSD src repository Modified files: sys/i386/acpica madt.c Log: Minor source sync with amd64. For %.*s printf formats, pass in an int rather than a size_t. cast the ioapicaddress variable via uintptr_t before going to void *. Revision Changes Path 1.7 +5 -3 src/sys/i386/acpica/madt.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:29:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A08A16A4CE; Fri, 14 Nov 2003 14:29:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D906D43F93; Fri, 14 Nov 2003 14:29:22 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEMTMXJ080107; Fri, 14 Nov 2003 14:29:22 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEMTMEq080106; Fri, 14 Nov 2003 14:29:22 -0800 (PST) (envelope-from peter) Message-Id: <200311142229.hAEMTMEq080106@repoman.freebsd.org> From: Peter Wemm Date: Fri, 14 Nov 2003 14:29:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 mptable.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:29:23 -0000 peter 2003/11/14 14:29:22 PST FreeBSD src repository Modified files: sys/i386/i386 mptable.c Log: Minor source sync with amd64. Use int as the type for the width field of %.*s rather than size_t. Revision Changes Path 1.227 +2 -2 src/sys/i386/i386/mptable.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:49:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C41B16A4CE; Fri, 14 Nov 2003 14:49:06 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1FD843F93; Fri, 14 Nov 2003 14:49:03 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id B842C2A8EB; Fri, 14 Nov 2003 14:49:03 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Alfred Perlstein In-Reply-To: <200311142054.hAEKsAqZ072203@repoman.freebsd.org> Date: Fri, 14 Nov 2003 14:49:03 -0800 From: Peter Wemm Message-Id: <20031114224903.B842C2A8EB@canning.wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs nfsproto.h rpcv2.h src/sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c nfs4_idmap.h nfs4_socket.c nfs4_subs.c nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c nfs4m_subs.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:49:06 -0000 Alfred Perlstein wrote: > Modified files: > sys/nfs nfsproto.h rpcv2.h > sys/nfsclient bootp_subr.c krpc_subr.c nfs.h nfs_bio.c > nfs_diskless.c nfs_lock.c nfs_nfsiod.c > nfs_node.c nfs_socket.c nfs_subs.c > nfs_vfsops.c nfs_vnops.c nfsargs.h > nfsm_subs.h nfsmount.h nfsnode.h > sys/conf files > Added files: > sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c > nfs4_idmap.h nfs4_socket.c nfs4_subs.c > nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c > nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c > nfs4m_subs.h > sys/rpc rpcclnt.c rpcclnt.h rpcm_subs.h rpcv2.h > Log: > University of Michigan's Citi NFSv4 kernel client code. > > Submitted by: Jim Rees You might want to check that the kernel still compiles: ../../../nfsclient/krpc_subr.c:101: error: redefinition of `struct rpc_reply' *** Error code 1 Thats a netboot kernel with BOOTP etc in it. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:52:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76F7516A4CE; Fri, 14 Nov 2003 14:52:39 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86AA843FBF; Fri, 14 Nov 2003 14:52:38 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 70E8A2A8EB; Fri, 14 Nov 2003 14:52:38 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Alfred Perlstein , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20031114224903.B842C2A8EB@canning.wemm.org> Date: Fri, 14 Nov 2003 14:52:38 -0800 From: Peter Wemm Message-Id: <20031114225238.70E8A2A8EB@canning.wemm.org> Subject: Re: cvs commit: src/sys/nfs nfsproto.h rpcv2.h src/sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c nfs4_idmap.h nfs4_socket.c nfs4_subs.c nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c nfs4m_subs.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:52:39 -0000 Peter Wemm wrote: > Alfred Perlstein wrote: > > Modified files: > > sys/nfs nfsproto.h rpcv2.h > > sys/nfsclient bootp_subr.c krpc_subr.c nfs.h nfs_bio.c > > nfs_diskless.c nfs_lock.c nfs_nfsiod.c > > nfs_node.c nfs_socket.c nfs_subs.c > > nfs_vfsops.c nfs_vnops.c nfsargs.h > > nfsm_subs.h nfsmount.h nfsnode.h > > sys/conf files > > Added files: > > sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c > > nfs4_idmap.h nfs4_socket.c nfs4_subs.c > > nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c > > nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c > > nfs4m_subs.h > > sys/rpc rpcclnt.c rpcclnt.h rpcm_subs.h rpcv2.h > > Log: > > University of Michigan's Citi NFSv4 kernel client code. > > > > Submitted by: Jim Rees > > You might want to check that the kernel still compiles: > ../../../nfsclient/krpc_subr.c:101: error: redefinition of `struct rpc_reply' > *** Error code 1 > > Thats a netboot kernel with BOOTP etc in it. But wait! there's more! :-] ../../../nfs4client/nfs4_subs.c: In function `nfsm_v4build_attrs_xx': ../../../nfs4client/nfs4_subs.c:746: warning: passing arg 3 of `idmap_uid_to_name' from incompatible pointer type ../../../nfs4client/nfs4_subs.c:767: warning: passing arg 3 of `idmap_gid_to_name' from incompatible pointer type *** Error code 1 and ../../../rpc/rpcclnt.c: In function `rpcclnt_receive': ../../../rpc/rpcclnt.c:842: warning: int format, different type arg (arg 3) ../../../rpc/rpcclnt.c:842: warning: int format, different type arg (arg 4) *** Error code 1 Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 14:54:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B100416A4CE; Fri, 14 Nov 2003 14:54:38 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8D7E43FAF; Fri, 14 Nov 2003 14:54:35 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id JAA12934; Sat, 15 Nov 2003 09:54:32 +1100 Date: Sat, 15 Nov 2003 09:54:31 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Robert Watson In-Reply-To: Message-ID: <20031115094529.H10567@gamplex.bde.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Brian Feldman cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Baldwin cc: cvs-src@FreeBSD.org Subject: RE: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 22:54:38 -0000 On Fri, 14 Nov 2003, Robert Watson wrote: > On Fri, 14 Nov 2003, John Baldwin wrote: > > > On 14-Nov-2003 Brian Feldman wrote: > > > green 2003/11/14 08:04:11 PST > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/conf kern.post.mk kmod.mk > > > Log: > > > Include opt_global.h in the modules build, when building from a normal > > > kernel build. This makes it possible for me not to get pissed off that > > > random.ko crashes the system trying to rdtsc() when the i386/cpu.h > > > support code decides it's okay to call that op when neither I386_CPU or > > > I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines > > > get picked up by the modules. Ugh. > > WITNESS doesn't matter as all calls to it are done in the actual locking > > code itself which does not lives in modules. Modules always call the > > locking functions and don't inline locking operations. WITNESS actually has non-broken support for modules. Modules cannot depend on options, since they must work for all kernels. Here is a fix to unbreak the rdtsc() call similarly. %%% Index: cpu.h =================================================================== RCS file: /home/ncvs/src/sys/i386/include/cpu.h,v retrieving revision 1.68 diff -u -2 -r1.68 cpu.h --- cpu.h 16 Aug 2003 16:57:56 -0000 1.68 +++ cpu.h 14 Nov 2003 18:06:08 -0000 @@ -103,5 +104,5 @@ get_cyclecount(void) { -#if defined(I386_CPU) || defined(I486_CPU) +#if defined(I386_CPU) || defined(I486_CPU) || defined(KLD_MODULE) struct bintime bt; %%% All header files except the one with this bug seem to have had all the necessary ifdefs on Ix86_CPU. > I'd have picked up the syntax error in mac_test.c if this had been in > place then :-). And it makes mac_test and other regression test modules > far more functional... Is mac_test another broken module that depends on options? :-) Bruce From owner-cvs-src@FreeBSD.ORG Fri Nov 14 15:09:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9CD316A4CE; Fri, 14 Nov 2003 15:09:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2664943F93; Fri, 14 Nov 2003 15:09:39 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEN9cXJ083260; Fri, 14 Nov 2003 15:09:39 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEN9cTC083259; Fri, 14 Nov 2003 15:09:38 -0800 (PST) (envelope-from bde) Message-Id: <200311142309.hAEN9cTC083259@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 15:09:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kern.post.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 23:09:39 -0000 bde 2003/11/14 15:09:38 PST FreeBSD src repository Modified files: sys/conf kern.post.mk Log: Moved $FreeBSD$ to the beginning of the file. Improved wording in a nearby comment. Revision Changes Path 1.52 +5 -6 src/sys/conf/kern.post.mk From owner-cvs-src@FreeBSD.ORG Fri Nov 14 15:22:13 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 937B416A4CE; Fri, 14 Nov 2003 15:22:13 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5ED443FD7; Fri, 14 Nov 2003 15:22:10 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 96EDD2ED43D; Fri, 14 Nov 2003 15:22:10 -0800 (PST) Date: Fri, 14 Nov 2003 15:22:10 -0800 From: Alfred Perlstein To: Peter Wemm Message-ID: <20031114232210.GA35957@elvis.mu.org> References: <20031114224903.B842C2A8EB@canning.wemm.org> <20031114225238.70E8A2A8EB@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031114225238.70E8A2A8EB@canning.wemm.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs nfsproto.h rpcv2.h src/sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c nfs4_idmap.h nfs4_socket.c nfs4_subs.c nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c nfs4m_subs.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 23:22:13 -0000 I'm on it. * Peter Wemm [031114 14:53] wrote: > Peter Wemm wrote: > > Alfred Perlstein wrote: > > > Modified files: > > > sys/nfs nfsproto.h rpcv2.h > > > sys/nfsclient bootp_subr.c krpc_subr.c nfs.h nfs_bio.c > > > nfs_diskless.c nfs_lock.c nfs_nfsiod.c > > > nfs_node.c nfs_socket.c nfs_subs.c > > > nfs_vfsops.c nfs_vnops.c nfsargs.h > > > nfsm_subs.h nfsmount.h nfsnode.h > > > sys/conf files > > > Added files: > > > sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c > > > nfs4_idmap.h nfs4_socket.c nfs4_subs.c > > > nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c > > > nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c > > > nfs4m_subs.h > > > sys/rpc rpcclnt.c rpcclnt.h rpcm_subs.h rpcv2.h > > > Log: > > > University of Michigan's Citi NFSv4 kernel client code. > > > > > > Submitted by: Jim Rees > > > > You might want to check that the kernel still compiles: > > > ../../../nfsclient/krpc_subr.c:101: error: redefinition of `struct rpc_reply' > > *** Error code 1 > > > > Thats a netboot kernel with BOOTP etc in it. > > But wait! there's more! :-] > > ../../../nfs4client/nfs4_subs.c: In function `nfsm_v4build_attrs_xx': > ../../../nfs4client/nfs4_subs.c:746: warning: passing arg 3 of `idmap_uid_to_name' from incompatible pointer type > ../../../nfs4client/nfs4_subs.c:767: warning: passing arg 3 of `idmap_gid_to_name' from incompatible pointer type > *** Error code 1 > > and > > ../../../rpc/rpcclnt.c: In function `rpcclnt_receive': > ../../../rpc/rpcclnt.c:842: warning: int format, different type arg (arg 3) > ../../../rpc/rpcclnt.c:842: warning: int format, different type arg (arg 4) > *** Error code 1 > > Cheers, > -Peter > -- > Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com > "All of this is for nothing if we don't go to the stars" - JMS/B5 -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 15:23:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 591EC16A4CE; Fri, 14 Nov 2003 15:23:49 -0800 (PST) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5088643FB1; Fri, 14 Nov 2003 15:23:48 -0800 (PST) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 747DA5485; Sat, 15 Nov 2003 00:23:47 +0100 (CET) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 99C8F5484; Sat, 15 Nov 2003 00:23:40 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id 79DB833C7F; Sat, 15 Nov 2003 00:23:40 +0100 (CET) To: Sam Leffler References: <200311111754.hABHslNG062585@repoman.freebsd.org> From: des@des.no (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Sat, 15 Nov 2003 00:23:40 +0100 In-Reply-To: <200311111754.hABHslNG062585@repoman.freebsd.org> (Sam Leffler's message of "Tue, 11 Nov 2003 09:54:47 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090024 (Oort Gnus v0.24) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on flood.des.no X-Spam-Level: ss X-Spam-Status: No, hits=2.5 required=5.0 tests=RCVD_IN_DYNABLOCK autolearn=no version=2.60 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 23:23:49 -0000 Sam Leffler writes: > Modified files: > sys/netinet tcp_syncache.c=20 > Log: > o add missing inpcb locking in tcp_respond > o replace spl's with lock assertions > [...] > Revision Changes Path > 1.47 +46 -37 src/sys/netinet/tcp_syncache.c This commit seems to break dummynet. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Fri Nov 14 15:23:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D561516A4CF; Fri, 14 Nov 2003 15:23:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD85D43FEC; Fri, 14 Nov 2003 15:23:58 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAENNwXJ083978; Fri, 14 Nov 2003 15:23:58 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAENNwh0083977; Fri, 14 Nov 2003 15:23:58 -0800 (PST) (envelope-from brueffer) Message-Id: <200311142323.hAENNwh0083977@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 14 Nov 2003 15:23:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man7 ports.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 23:24:00 -0000 brueffer 2003/11/14 15:23:58 PST FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man7 ports.7 Log: MFC: Sync this manual page with the one in -current Revision Changes Path 1.17.2.10 +19 -9 src/share/man/man7/ports.7 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 15:31:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9FA116A4CE; Fri, 14 Nov 2003 15:31:48 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26AFA43FDF; Fri, 14 Nov 2003 15:31:46 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAENVjFw055712; Fri, 14 Nov 2003 15:31:45 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAENVjgP055711; Fri, 14 Nov 2003 15:31:45 -0800 (PST) (envelope-from rizzo) Date: Fri, 14 Nov 2003 15:31:45 -0800 From: Luigi Rizzo To: Andre Oppermann Message-ID: <20031114153145.A54064@xorpc.icir.org> References: <200311142102.hAEL2Nen073186@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200311142102.hAEL2Nen073186@repoman.freebsd.org>; from andre@FreeBSD.org on Fri, Nov 14, 2003 at 01:02:23PM -0800 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_fastfwd.c ip_flow.c ip_flow.h ip_input.c ip_output.c src/sys/sys mbuf.h src/sys/conf files src/sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 23:31:49 -0000 On Fri, Nov 14, 2003 at 01:02:23PM -0800, Andre Oppermann wrote: ... > Introduce ip_fastforward and remove ip_flow. > > Short description of ip_fastforward: > > o adds full direct process-to-completion IPv4 forwarding code > o handles ip fragmentation incl. hw support (ip_flow did not) > o sends icmp needfrag to source if DF is set (ip_flow did not) > o supports ipfw and ipfilter (ip_flow did not) > o supports divert, ipfw fwd and ipfilter nat (ip_flow did not) > o returns anything it can't handle back to normal ip_input Sorry if i missed part of the discussion leading to this commit... Let me state first that I do not mean to criticise your work, but having spent quite a bit of time trying to optimize the forwarding path myself, and having found a number of surprises on what really consumes most of the time, i tend to be a bit skeptical when it comes to optimizations. Obviously I see it as a very good thing the creation of a fully featured fast forwarding path. However I would like to understand if it is really worthwhile doing it, and whether this new code isn't a replica of already existing optimizations. In particular, did you measure any significant performance difference by replacing calls to ip_fastforward() with calls to ip_input() ? (say in a kernel without "options IPSEC" which used to be highly inefficient even for non-ipsec packets). The reason I am asking is that I see some expensive ops (such as doing route lookups, scanning through lists of local addresses, input and output firewall processing, fragmentation) in both pieces of code. Fragmentation may not be the common case, but all the rest definitely is, and with large routing tables, multiple interfaces and even modestly complex firewall rulesets, most of the processing time goes there. Also, in the initial comments you claim: * ip_fastforward gets its speed from processing the forwarded packet to * completion (if_output on the other side) without any queues or netisr's. now, netisr_dispatch() (which is invoked if ip_fastforward() fails) does an inline call to ip_input() if netisr_enable=1 (ip_input is NETISR_MPSAFE). So this seems to fall into the same category of optimizations. So to summarize, could you identify what are the differences that make ip_fastforward() so much faster than ip_input()/ip_forward()/ip_output() ? Given that there are large segments of common code between ip_fastforward() and ip_input()/ip_output() (i am thinking of the entire ipfw handling code, for one, and also some basic integrity checks, the fragmentation code, etc.) I also wonder if it wouldn't be beneficial to put the optimizations into the standard path rather than create a new (partial) replica of the same code, with the potential of introducing bugs, and with some substantial I-cache pollution which might well destroy the benefits of minor optimizations. ----------- Minor comments on the code: + one of the initial comments in the new code states ... The only part of the packet we touch with the CPU is the IP header. ... this is not true if you use ipfw because that code touches many places in the packet (and can also do some expensive computation like trying to locate the uid/gid of a packet; the fact that we only deal with packets not for us does not prevent the existence of such firewall rules). + The code at line 344: if (fw_enable && IPFW_LOADED) { bzero(&args, sizeof(args)); args.m = m; ipfw = 0; ipfw = ip_fw_chk_ptr(&args); m = args.m; the bzero is probably more expensive than individually zeroing the fields of args as done in ip_input() (I think once i measured the two solutions). The first "ipfw = 0;" is redundant. + could you clarify the divert logic ? I am a bit rusty with that part of the code, but i am under the impression that in ip_fastforward() you are passing along args.divert_rule and losing track of divert_info which is instead what you need too. ------------- cheers luigi From owner-cvs-src@FreeBSD.ORG Fri Nov 14 15:58:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C140816A4CE; Fri, 14 Nov 2003 15:58:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D81443FBF; Fri, 14 Nov 2003 15:58:02 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAENw2XJ085327; Fri, 14 Nov 2003 15:58:02 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAENw16l085326; Fri, 14 Nov 2003 15:58:01 -0800 (PST) (envelope-from bde) Message-Id: <200311142358.hAENw16l085326@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 15:58:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mbuf.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 14 Nov 2003 23:58:02 -0000 bde 2003/11/14 15:58:01 PST FreeBSD src repository Modified files: sys/sys mbuf.h Log: Fixed some English errors in comments. Revision Changes Path 1.127 +10 -10 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 16:26:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCA1D16A4CE; Fri, 14 Nov 2003 16:26:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44CE843FCB; Fri, 14 Nov 2003 16:26:03 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF0Q3XJ087489; Fri, 14 Nov 2003 16:26:03 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF0Q2cN087488; Fri, 14 Nov 2003 16:26:02 -0800 (PST) (envelope-from rwatson) Message-Id: <200311150026.hAF0Q2cN087488@repoman.freebsd.org> From: Robert Watson Date: Fri, 14 Nov 2003 16:26:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac_test mac_test.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 00:26:03 -0000 rwatson 2003/11/14 16:26:02 PST FreeBSD src repository Modified files: sys/security/mac_test mac_test.c Log: mac_relabel_cred() accepts two cred labels, not a cred label and a vnode label; update assertion. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.34 +1 -1 src/sys/security/mac_test/mac_test.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 16:26:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 434FC16A4CE; Fri, 14 Nov 2003 16:26:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE52143FBD; Fri, 14 Nov 2003 16:26:42 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF0QgXJ087541; Fri, 14 Nov 2003 16:26:42 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF0QgZP087540; Fri, 14 Nov 2003 16:26:42 -0800 (PST) (envelope-from alfred) Message-Id: <200311150026.hAF0QgZP087540@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 16:26:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfs4client nfs4_vfsops.c src/sys/nfsclient krpc_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 00:26:43 -0000 alfred 2003/11/14 16:26:42 PST FreeBSD src repository Modified files: sys/nfs4client nfs4_vfsops.c sys/nfsclient krpc_subr.c Log: unbreak LINT. Revision Changes Path 1.2 +0 -4 src/sys/nfs4client/nfs4_vfsops.c 1.26 +7 -7 src/sys/nfsclient/krpc_subr.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 16:27:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16C9E16A4CE; Fri, 14 Nov 2003 16:27:52 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B5743FDF; Fri, 14 Nov 2003 16:27:51 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 426582ED453; Fri, 14 Nov 2003 16:27:51 -0800 (PST) Date: Fri, 14 Nov 2003 16:27:51 -0800 From: Alfred Perlstein To: Peter Wemm Message-ID: <20031115002751.GB35957@elvis.mu.org> References: <20031114224903.B842C2A8EB@canning.wemm.org> <20031114225238.70E8A2A8EB@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031114225238.70E8A2A8EB@canning.wemm.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs nfsproto.h rpcv2.h src/sys/nfs4client nfs4.h nfs4_dev.c nfs4_dev.h nfs4_idmap.c nfs4_idmap.h nfs4_socket.c nfs4_subs.c nfs4_vfs.h nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn.h nfs4_vn_subs.c nfs4_vnops.c nfs4m_subs.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 00:27:52 -0000 * Peter Wemm [031114 14:53] wrote: > > > > You might want to check that the kernel still compiles: > > > ../../../nfsclient/krpc_subr.c:101: error: redefinition of `struct rpc_reply' > > *** Error code 1 > > > > Thats a netboot kernel with BOOTP etc in it. er, ok that one is fixed. > But wait! there's more! :-] > > ../../../nfs4client/nfs4_subs.c: In function `nfsm_v4build_attrs_xx': > ../../../nfs4client/nfs4_subs.c:746: warning: passing arg 3 of `idmap_uid_to_name' from incompatible pointer type > ../../../nfs4client/nfs4_subs.c:767: warning: passing arg 3 of `idmap_gid_to_name' from incompatible pointer type > *** Error code 1 > > and > > ../../../rpc/rpcclnt.c: In function `rpcclnt_receive': > ../../../rpc/rpcclnt.c:842: warning: int format, different type arg (arg 3) > ../../../rpc/rpcclnt.c:842: warning: int format, different type arg (arg 4) > *** Error code 1 Um, yeah what arch is this? -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:02:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EEC816A4CE; Fri, 14 Nov 2003 17:02:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCC2643F3F; Fri, 14 Nov 2003 17:02:00 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF120XJ094665; Fri, 14 Nov 2003 17:02:00 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF120Dt094664; Fri, 14 Nov 2003 17:02:00 -0800 (PST) (envelope-from alfred) Message-Id: <200311150102.hAF120Dt094664@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 17:02:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/nfs4client Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:02:02 -0000 alfred 2003/11/14 17:02:00 PST FreeBSD src repository Added files: sys/modules/nfs4client Makefile Log: nfs4 client module. Not hooked up to the build yet. Revision Changes Path 1.1 +36 -0 src/sys/modules/nfs4client/Makefile (new) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:24:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CC4516A4CF; Fri, 14 Nov 2003 17:24:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C331243FEC; Fri, 14 Nov 2003 17:24:46 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF1OkXJ096374; Fri, 14 Nov 2003 17:24:46 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF1OkhO096373; Fri, 14 Nov 2003 17:24:46 -0800 (PST) (envelope-from alfred) Message-Id: <200311150124.hAF1OkhO096373@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 17:24:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/rpc rpcclnt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:24:47 -0000 alfred 2003/11/14 17:24:46 PST FreeBSD src repository Modified files: sys/rpc rpcclnt.c Log: Fix compilation warnings on sparc. Cast sizeof to int for printing with %d. Revision Changes Path 1.2 +2 -2 src/sys/rpc/rpcclnt.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:25:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C0CB16A4CE; Fri, 14 Nov 2003 17:25:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0557D43FA3; Fri, 14 Nov 2003 17:25:27 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF1PQXJ096439; Fri, 14 Nov 2003 17:25:26 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF1PQ91096438; Fri, 14 Nov 2003 17:25:26 -0800 (PST) (envelope-from alfred) Message-Id: <200311150125.hAF1PQ91096438@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 17:25:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfs4client nfs4_subs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:25:27 -0000 alfred 2003/11/14 17:25:26 PST FreeBSD src repository Modified files: sys/nfs4client nfs4_subs.c Log: Fix compliation on sparc64. Change arg from uint32_t to size_t to match prototypes. Revision Changes Path 1.2 +2 -1 src/sys/nfs4client/nfs4_subs.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:28:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13CA316A4CE; Fri, 14 Nov 2003 17:28:08 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72A2443FA3; Fri, 14 Nov 2003 17:28:07 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 657002ED45D; Fri, 14 Nov 2003 17:28:07 -0800 (PST) Date: Fri, 14 Nov 2003 17:28:07 -0800 From: Alfred Perlstein To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20031115012807.GD35957@elvis.mu.org> References: <200311150125.hAF1PQ91096438@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311150125.hAF1PQ91096438@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/sys/nfs4client nfs4_subs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:28:08 -0000 * Alfred Perlstein [031114 17:25] wrote: > alfred 2003/11/14 17:25:26 PST > > FreeBSD src repository > > Modified files: > sys/nfs4client nfs4_subs.c > Log: > Fix compliation on sparc64. > Change arg from uint32_t to size_t to match prototypes. > > Revision Changes Path > 1.2 +2 -1 src/sys/nfs4client/nfs4_subs.c This should fix the remainder of the compilation breakage. Let me know if there's other issues and I'll try to address them. You can also email Jim Rees , with questions, try to keep the flames to the minimum I'd like him to actually want to work with us as we still have a ways to go in terms of client functionality. thank you, -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:43:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id E430516A4CF; Fri, 14 Nov 2003 17:43:48 -0800 (PST) Date: Fri, 14 Nov 2003 19:43:48 -0600 From: Juli Mallett To: Alfred Perlstein Message-ID: <20031114194348.A24875@FreeBSD.org> References: <200311150124.hAF1OkhO096373@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200311150124.hAF1OkhO096373@repoman.freebsd.org>; from alfred@FreeBSD.org on Fri, Nov 14, 2003 at 05:24:46PM -0800 X-Title: Code Maven X-Towel: Yes X-Negacore: Yes X-Authentication-Warning: localhost: juli pwned teh intarweb cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/rpc rpcclnt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:43:49 -0000 * Alfred Perlstein [ Date: 2003-11-14 ] [ w.r.t. cvs commit: src/sys/rpc rpcclnt.c ] > alfred 2003/11/14 17:24:46 PST > > FreeBSD src repository > > Modified files: > sys/rpc rpcclnt.c > Log: > Fix compilation warnings on sparc. > Cast sizeof to int for printing with %d. Why not print it as a size_t (%zd)? -- juli mallett. email: jmallett@freebsd.org; efnet: juli; aim: bsdflata; the finer things keep shining through the way my soul gets lost in you From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:45:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74C3F16A4CE; Fri, 14 Nov 2003 17:45:22 -0800 (PST) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C06043F3F; Fri, 14 Nov 2003 17:45:20 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost.nic.fr [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id hAF1jJDa057110 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Fri, 14 Nov 2003 20:45:19 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id hAF1jIo8057107; Fri, 14 Nov 2003 20:45:18 -0500 (EST) (envelope-from wollman) Date: Fri, 14 Nov 2003 20:45:18 -0500 (EST) From: Garrett Wollman Message-Id: <200311150145.hAF1jIo8057107@khavrinen.lcs.mit.edu> To: Juli Mallett In-Reply-To: <20031114194348.A24875@FreeBSD.org> References: <200311150124.hAF1OkhO096373@repoman.freebsd.org> <20031114194348.A24875@FreeBSD.org> X-Spam-Score: -9.9 () IN_REP_TO,REFERENCES X-Scanned-By: MIMEDefang 2.37 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/rpc rpcclnt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:45:22 -0000 < said: > Why not print it as a size_t (%zd)? Actually, that's a mutant ssize_t. The correct format for printing a size_t value in decimal is %zu. -GAWollman From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:45:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30B3616A4CE; Fri, 14 Nov 2003 17:45:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E25B43FCB; Fri, 14 Nov 2003 17:45:56 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF1juXJ097379; Fri, 14 Nov 2003 17:45:56 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF1juuM097378; Fri, 14 Nov 2003 17:45:56 -0800 (PST) (envelope-from andre) Message-Id: <200311150145.hAF1juuM097378@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 14 Nov 2003 17:45:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_input.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:45:57 -0000 andre 2003/11/14 17:45:56 PST FreeBSD src repository Modified files: sys/netinet ip_input.c ip_var.h Log: Make ipstealth global as we need it in ip_fastforward too. Revision Changes Path 1.255 +1 -1 src/sys/netinet/ip_input.c 1.81 +3 -0 src/sys/netinet/ip_var.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:48:52 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 862BE16A4D0 for ; Fri, 14 Nov 2003 17:48:52 -0800 (PST) Received: from mailtoaster1.pipeline.ch (mailtoaster1.pipeline.ch [62.48.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE8A243FE9 for ; Fri, 14 Nov 2003 17:48:49 -0800 (PST) (envelope-from oppermann@pipeline.ch) Received: (qmail 58130 invoked from network); 15 Nov 2003 01:51:44 -0000 Received: from unknown (HELO pipeline.ch) ([62.48.0.54]) (envelope-sender ) by mailtoaster1.pipeline.ch (qmail-ldap-1.03) with SMTP for ; 15 Nov 2003 01:51:44 -0000 Message-ID: <3FB58600.8F28DD4A@pipeline.ch> Date: Sat, 15 Nov 2003 02:48:48 +0100 From: Andre Oppermann X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Andre Oppermann References: <200311150145.hAF1juuM097378@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_input.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:48:52 -0000 Andre Oppermann wrote: > > andre 2003/11/14 17:45:56 PST > > FreeBSD src repository > > Modified files: > sys/netinet ip_input.c ip_var.h > Log: > Make ipstealth global as we need it in ip_fastforward too. > > Revision Changes Path > 1.255 +1 -1 src/sys/netinet/ip_input.c > 1.81 +3 -0 src/sys/netinet/ip_var.h This fixes compile breakage when IPSTEALTH option is defined. Thanks for rwatson for noticing this. Pointy hat to: me. -- Andre From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:54:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E1CF16A4CE; Fri, 14 Nov 2003 17:54:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC30C43FE1; Fri, 14 Nov 2003 17:54:46 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF1skXJ097799; Fri, 14 Nov 2003 17:54:46 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF1skub097798; Fri, 14 Nov 2003 17:54:46 -0800 (PST) (envelope-from tjr) Message-Id: <200311150154.hAF1skub097798@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Nov 2003 17:54:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/locale euc.5 utf2.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:54:47 -0000 tjr 2003/11/14 17:54:46 PST FreeBSD src repository Modified files: lib/libc/locale euc.5 utf2.5 Log: Update the EUC and UTF2 manual pages for their new home in section 5. These have been repo-copied from euc.4 and utf2.4. Revision Changes Path 1.11 +1 -1 src/lib/libc/locale/euc.5 1.12 +1 -1 src/lib/libc/locale/utf2.5 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 17:58:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E400316A4CE; Fri, 14 Nov 2003 17:58:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 175EE43FA3; Fri, 14 Nov 2003 17:58:48 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF1wlXJ098044; Fri, 14 Nov 2003 17:58:47 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF1wlb4098043; Fri, 14 Nov 2003 17:58:47 -0800 (PST) (envelope-from alfred) Message-Id: <200311150158.hAF1wlb4098043@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 17:58:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/rpc rpcclnt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 01:58:50 -0000 alfred 2003/11/14 17:58:47 PST FreeBSD src repository Modified files: sys/rpc rpcclnt.c Log: Use %zu to printf a size_t instead of an int cast. Requested by: jmallett, wollman Revision Changes Path 1.3 +3 -3 src/sys/rpc/rpcclnt.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:01:53 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F10D116A4CE; Fri, 14 Nov 2003 18:01:53 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7BB343F93; Fri, 14 Nov 2003 18:01:52 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAF21qeG002308; Fri, 14 Nov 2003 19:01:52 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 14 Nov 2003 19:01:29 -0700 (MST) Message-Id: <20031114.190129.61829458.imp@bsdimp.com> To: rizzo@icir.org From: "M. Warner Losh" In-Reply-To: <20031114132714.A88606@xorpc.icir.org> References: <200311141900.hAEJ0XBn058450@repoman.freebsd.org> <20031114132714.A88606@xorpc.icir.org> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: sam@FreeBSD.org cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/an if_an.c if_anreg.h src/sys/dev/bfe if_bfe.c src/sys/dev/my if_my.c src/sys/dev/owi if_owi.c if_wivar.h src/sys/dev/re if_re.c src/sys/dev/wl if_wl.c src/sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h if_rl.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 02:01:54 -0000 In message: <20031114132714.A88606@xorpc.icir.org> Luigi Rizzo writes: : On Fri, Nov 14, 2003 at 11:00:33AM -0800, Sam Leffler wrote: : > sam 2003/11/14 11:00:33 PST : ... : > Log: : > Drop the driver lock around calls to if_input to avoid a LOR when : > the packets are immediately returned for sending (e.g. when bridging : > or packet forwarding). There are more efficient ways to do this : > but for now use the least intrusive approach. : : the number of places that this commit had to touch makes me : wonder whether it wouldn't be better to include somehow : these calls into the if_input routine somehow... That would be hard w/o passing the lock into the if_input routine, or putting the lock in ifnet. Warner From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:08:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFF4B16A4CE; Fri, 14 Nov 2003 18:08:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EBC643F75; Fri, 14 Nov 2003 18:08:02 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF282XJ099350; Fri, 14 Nov 2003 18:08:02 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF281qs099349; Fri, 14 Nov 2003 18:08:01 -0800 (PST) (envelope-from rwatson) Message-Id: <200311150208.hAF281qs099349@repoman.freebsd.org> From: Robert Watson Date: Fri, 14 Nov 2003 18:08:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc mac.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 02:08:03 -0000 rwatson 2003/11/14 18:08:01 PST FreeBSD src repository Modified files: etc mac.conf Log: Add "socket" type to the list of default object types, and by default attempt to list Biba, LOMAC, and MLS label information for the socket if they are present. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.5 +1 -0 src/etc/mac.conf From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:13:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BB5116A4CF; Fri, 14 Nov 2003 18:13:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AE4343FD7; Fri, 14 Nov 2003 18:13:09 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF2D9XJ099600; Fri, 14 Nov 2003 18:13:09 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF2D9SU099599; Fri, 14 Nov 2003 18:13:09 -0800 (PST) (envelope-from tjr) Message-Id: <200311150213.hAF2D9SU099599@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Nov 2003 18:13:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/locale Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 02:13:10 -0000 tjr 2003/11/14 18:13:09 PST FreeBSD src repository Modified files: lib/libc/locale Makefile.inc Log: Install the section 5 versions of EUC and UTF2 manual pages instead of the section 4 versions. Revision Changes Path 1.51 +1 -2 src/lib/libc/locale/Makefile.inc From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:15:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD5B616A4CE; Fri, 14 Nov 2003 18:15:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C750243FDF; Fri, 14 Nov 2003 18:15:25 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF2FPXJ099754; Fri, 14 Nov 2003 18:15:25 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF2FPsd099753; Fri, 14 Nov 2003 18:15:25 -0800 (PST) (envelope-from tjr) Message-Id: <200311150215.hAF2FPsd099753@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Nov 2003 18:15:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/locale euc.4 utf2.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 02:15:27 -0000 tjr 2003/11/14 18:15:25 PST FreeBSD src repository Removed files: lib/libc/locale euc.4 utf2.4 Log: Remove section 4 versions of these manual pages, they have been moved into section 5. Revision Changes Path 1.11 +0 -137 src/lib/libc/locale/euc.4 (dead) 1.12 +0 -95 src/lib/libc/locale/utf2.4 (dead) From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:19:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1040116A4CF; Fri, 14 Nov 2003 18:19:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDED43FE3; Fri, 14 Nov 2003 18:19:47 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF2JlXJ099929; Fri, 14 Nov 2003 18:19:47 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF2JkfS099928; Fri, 14 Nov 2003 18:19:46 -0800 (PST) (envelope-from bmah) Message-Id: <200311150219.hAF2JkfS099928@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 14 Nov 2003 18:19:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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.1 Precedence: 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, 15 Nov 2003 02:19:48 -0000 bmah 2003/11/14 18:19:46 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: statfs(2), KAME updates. Updated release note: DRM kernel modules import. Revision Changes Path 1.651 +34 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:26:05 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C332D16A4CE; Fri, 14 Nov 2003 18:26:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 456E543F75; Fri, 14 Nov 2003 18:26:05 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF2Q5XJ000517; Fri, 14 Nov 2003 18:26:05 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF2Q4ET000516; Fri, 14 Nov 2003 18:26:04 -0800 (PST) (envelope-from tjr) Message-Id: <200311150226.hAF2Q4ET000516@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Nov 2003 18:26:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/locale big5.5 gb18030.5 gb2312.5 gbk.5 mbrune.3 mskanji.5 multibyte.3 rune.3 setlocale.3 utf8.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 02:26:05 -0000 tjr 2003/11/14 18:26:04 PST FreeBSD src repository Modified files: lib/libc/locale big5.5 gb18030.5 gb2312.5 gbk.5 mbrune.3 mskanji.5 multibyte.3 rune.3 setlocale.3 utf8.5 Log: Update cross references after utf2/euc move. Revision Changes Path 1.2 +1 -1 src/lib/libc/locale/big5.5 1.5 +1 -1 src/lib/libc/locale/gb18030.5 1.2 +1 -1 src/lib/libc/locale/gb2312.5 1.3 +1 -1 src/lib/libc/locale/gbk.5 1.16 +2 -2 src/lib/libc/locale/mbrune.3 1.3 +1 -1 src/lib/libc/locale/mskanji.5 1.23 +2 -2 src/lib/libc/locale/multibyte.3 1.24 +2 -2 src/lib/libc/locale/rune.3 1.28 +2 -2 src/lib/libc/locale/setlocale.3 1.4 +5 -5 src/lib/libc/locale/utf8.5 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:48:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4976716A4CF for ; Fri, 14 Nov 2003 18:48:26 -0800 (PST) Received: from mailtoaster1.pipeline.ch (mailtoaster1.pipeline.ch [62.48.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id D59CA43FA3 for ; Fri, 14 Nov 2003 18:48:22 -0800 (PST) (envelope-from oppermann@pipeline.ch) Received: (qmail 60937 invoked from network); 15 Nov 2003 02:51:17 -0000 Received: from unknown (HELO pipeline.ch) ([62.48.0.54]) (envelope-sender ) by mailtoaster1.pipeline.ch (qmail-ldap-1.03) with SMTP for ; 15 Nov 2003 02:51:17 -0000 Message-ID: <3FB593F5.1053E7E2@pipeline.ch> Date: Sat, 15 Nov 2003 03:48:21 +0100 From: Andre Oppermann X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Luigi Rizzo References: <200311142102.hAEL2Nen073186@repoman.freebsd.org> <20031114153145.A54064@xorpc.icir.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_fastfwd.c ip_flow.c ip_flow.h ip_input.c ip_output.c src/sys/sys mbuf.h src/sys/conf files src/sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 02:48:26 -0000 Luigi Rizzo wrote: > > On Fri, Nov 14, 2003 at 01:02:23PM -0800, Andre Oppermann wrote: > ... > > Introduce ip_fastforward and remove ip_flow. > > > > Short description of ip_fastforward: > > > > o adds full direct process-to-completion IPv4 forwarding code > > o handles ip fragmentation incl. hw support (ip_flow did not) > > o sends icmp needfrag to source if DF is set (ip_flow did not) > > o supports ipfw and ipfilter (ip_flow did not) > > o supports divert, ipfw fwd and ipfilter nat (ip_flow did not) > > o returns anything it can't handle back to normal ip_input > > Sorry if i missed part of the discussion leading to this commit... Was discussed on -current and -net for the past week. > Let me state first that I do not mean to criticise your work, but > having spent quite a bit of time trying to optimize the forwarding > path myself, and having found a number of surprises on what really > consumes most of the time, i tend to be a bit skeptical when it > comes to optimizations. > > Obviously I see it as a very good thing the creation of a fully > featured fast forwarding path. However I would like to understand > if it is really worthwhile doing it, and whether this new code > isn't a replica of already existing optimizations. It isn't a replica of the existing code. Of course it replicates some code and checks. > In particular, did you measure any significant performance difference > by replacing calls to ip_fastforward() with calls to ip_input() ? > (say in a kernel without "options IPSEC" which used to be highly > inefficient even for non-ipsec packets). Yes, the forwarding delay (hop delay) is a little bit less than the ip_input way but the jitter is much less. I don't have measurements down to the cpu instruction cycle yet and it's not yet totally optimized. The goal of this first version is to be fast and a robust foundation for more optimizations. See more comments further down. > The reason I am asking is that I see some expensive ops (such as > doing route lookups, scanning through lists of local addresses, > input and output firewall processing, fragmentation) in both pieces > of code. Fragmentation may not be the common case, but all the rest > definitely is, and with large routing tables, multiple interfaces > and even modestly complex firewall rulesets, most of the processing > time goes there. Doing route lookups is the core function of every router, so I don't see any way how to get rid of that. ;-) The fastforward code can serve as basis to implement better routing tables like highly compact and pre-computed LCtries. It is almost impossible to do anything like that in the normal ip_input and so on forwarding path due to its very loomy relationship with the BSD routing table. The interface stuff is not as bad as it looks on the first glance. Normally a interface has only one ip address on it and that makes the foreach loop very small. I have one optimization idea for that already. Since we require that check only to determine whether we have to fallback to ip_input, the local ip address list can be either locally cached or built into a perfect hash structure which is being regenerated on every change in interface addresses (which is once every n-million packets). We don't need any pointers so even having a stale or not-yet entry for a second or so ain't a real problem. Against complex firewall rules I can't do anything. The user is free to shoot himself into the foot. Anyway, with ipfw2 it's much less of a problem than it used to be. > Also, in the initial comments you claim: > > * ip_fastforward gets its speed from processing the forwarded packet to > * completion (if_output on the other side) without any queues or netisr's. > > now, netisr_dispatch() (which is invoked if ip_fastforward() fails) > does an inline call to ip_input() if netisr_enable=1 (ip_input > is NETISR_MPSAFE). So this seems to fall into the same category > of optimizations. As it looks at the moment this can't be enabled because there are many locking implications later on in the tcp and udp code. Also the stack gets very large due to so many functions which get called after each other. > So to summarize, could you identify what are the differences > that make ip_fastforward() so much faster than > ip_input()/ip_forward()/ip_output() ? At the moment it's two things. One is process to completion with a small stack. Second is far less branches and checks (multicast, etc) than in the ip_input(), ip_forward() and ip_output() chain. In the future it can be optimized further as I've outlined before. And these optimizations can be made for the forwarding path only, without having to mangle it into the big giant mess of ip_input and friends. > Given that there are large segments of common code between > ip_fastforward() and ip_input()/ip_output() (i am thinking of the > entire ipfw handling code, for one, and also some basic integrity > checks, the fragmentation code, etc.) I also wonder if it wouldn't > be beneficial to put the optimizations into the standard path rather > than create a new (partial) replica of the same code, with the > potential of introducing bugs, and with some substantial I-cache > pollution which might well destroy the benefits of minor optimizations. I don't see much cache pollution here. Normally you use ip_fastforward for fast packet forwarding where you want the cpu to touch as little as possible to handle as many packets (different) as possible. The cache pollution with ip_input and friends is far higher due to its large stack usage. If we actually have something like a packet flow the second and so on packet would probably get all lookups out of the cpu cache. The only case with some possible cache pollution is the dropback case in situations where you are doing forwarding but most packets are destined for an interface on the local machine. For potential bugs. Sure all new code can have more bugs. I've chosen to comment the code very well and write down the what is otherwise happening in ip_input and friends in the dark. If there is actually a bug it should be very easy to spot. On a side note; the ipfw api is kinda difficult to understand and work with. It took me some time to get it. > ----------- > > Minor comments on the code: > > + one of the initial comments in the new code states > > ... The only part of the packet we touch with the CPU is the > IP header. ... > > this is not true if you use ipfw because that code touches many > places in the packet (and can also do some expensive computation > like trying to locate the uid/gid of a packet; the fact that we > only deal with packets not for us does not prevent the existence > of such firewall rules). Well, as I said, everybody is free to shoot himself with such highly complex firewall rules. I'd say the ipfw code could be optimized with some of the ideas I've specified earlier. I don't think the ipfw code would do a uid/gid lookup if neither the destination nor source is local (there is simply no socket to check against). But that is pure speculation as I haven't researched or looked at that code yet. > + The code at line 344: > > if (fw_enable && IPFW_LOADED) { > bzero(&args, sizeof(args)); > args.m = m; > ipfw = 0; > > ipfw = ip_fw_chk_ptr(&args); > m = args.m; > the bzero is probably more expensive than individually zeroing the > fields of args as done in ip_input() (I think once i measured the > two solutions). The first "ipfw = 0;" is redundant. I chose a safe programming style with the bzero. So I am sure that every bit in the structure is zero, also when it changes some day. The ipfw = 0 is redundant indeed. Will remove it the next time I'm touching that file. > + could you clarify the divert logic ? I am a bit rusty with that > part of the code, but i am under the impression that in > ip_fastforward() you are passing along args.divert_rule and > losing track of divert_info which is instead what you need too. It's not you being rusty, the code is indeed hard to follow. :-/ divert_info is used for ip packet reassembly. ip_divert() is then just using it to determine whether the packet was catched on the way into the machine or out of it. It seems to have it's largest significance for the ip reassembly. I've tested that too with an earlier version of my code. However I will redo those tests to be sure it is working as expected. Diverting and natd'ing works very well with ip_fastforward, so it can't be completely wrong what I did. ;-) Thanks for your input. -- Andre From owner-cvs-src@FreeBSD.ORG Fri Nov 14 18:49:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 275BD16A4CE; Fri, 14 Nov 2003 18:49:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 985C643FAF; Fri, 14 Nov 2003 18:49:53 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF2nrXJ001500; Fri, 14 Nov 2003 18:49:53 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF2nrb0001499; Fri, 14 Nov 2003 18:49:53 -0800 (PST) (envelope-from tjr) Message-Id: <200311150249.hAF2nrb0001499@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Nov 2003 18:49:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/mklocale mklocale.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 02:49:54 -0000 tjr 2003/11/14 18:49:53 PST FreeBSD src repository Modified files: usr.bin/mklocale mklocale.1 Log: Update cross references after utf2/euc move. Revision Changes Path 1.19 +2 -2 src/usr.bin/mklocale/mklocale.1 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 19:47:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E0F416A4CE; Fri, 14 Nov 2003 19:47:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED24043FE1; Fri, 14 Nov 2003 19:47:50 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF3loXJ004869; Fri, 14 Nov 2003 19:47:50 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF3loH8004868; Fri, 14 Nov 2003 19:47:50 -0800 (PST) (envelope-from bde) Message-Id: <200311150347.hAF3loH8004868@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 19:47:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 03:47:51 -0000 bde 2003/11/14 19:47:50 PST FreeBSD src repository Modified files: sys/sys proc.h Log: Fixed some bugs in macros: - missing parenthesization of some macro args - point of do-while(0) hack defeated by putting a semicolon after while(0) Fixed some style bugs in macros: - not splitting the line when the macro value cannot be lined up in much the same macros that didn't parenthesize their args - braces around a 1-line statement - do-while(0) hack not indented in the usual way in the same macros that defeated its point. Revision Changes Path 1.360 +14 -18 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 19:58:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AC2816A4CE; Fri, 14 Nov 2003 19:58:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CB3443FB1; Fri, 14 Nov 2003 19:58:13 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF3wCXJ005327; Fri, 14 Nov 2003 19:58:12 -0800 (PST) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF3wCtC005326; Fri, 14 Nov 2003 19:58:12 -0800 (PST) (envelope-from kuriyama) Message-Id: <200311150358.hAF3wCtC005326@repoman.freebsd.org> From: Jun Kuriyama Date: Fri, 14 Nov 2003 19:58:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 03:58:14 -0000 kuriyama 2003/11/14 19:58:12 PST FreeBSD src repository Modified files: release Makefile Log: Generate minimal /etc/group file for mfsroot tree. This fixes newfs failures at installation. Reviewed by: re (scottl) Revision Changes Path 1.824 +3 -0 src/release/Makefile From owner-cvs-src@FreeBSD.ORG Fri Nov 14 20:05:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 646B316A4CE; Fri, 14 Nov 2003 20:05:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D189F43FE0; Fri, 14 Nov 2003 20:05:49 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF45nXJ006542; Fri, 14 Nov 2003 20:05:49 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF45nro006541; Fri, 14 Nov 2003 20:05:49 -0800 (PST) (envelope-from rwatson) Message-Id: <200311150405.hAF45nro006541@repoman.freebsd.org> From: Robert Watson Date: Fri, 14 Nov 2003 20:05:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/posix1e mac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 04:05:50 -0000 rwatson 2003/11/14 20:05:49 PST FreeBSD src repository Modified files: lib/libc/posix1e mac.c Log: Remove debugging printf that crept into the last commit. Revision Changes Path 1.10 +0 -1 src/lib/libc/posix1e/mac.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 21:03:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 725BF16A4CE; Fri, 14 Nov 2003 21:03:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA1E43FCB; Fri, 14 Nov 2003 21:03:15 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF53FXJ015365; Fri, 14 Nov 2003 21:03:15 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF53F0B015364; Fri, 14 Nov 2003 21:03:15 -0800 (PST) (envelope-from alfred) Message-Id: <200311150503.hAF53F0B015364@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Nov 2003 21:03:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 05:03:16 -0000 alfred 2003/11/14 21:03:15 PST FreeBSD src repository Modified files: sys/nfsclient nfs.h Log: Move the declaration for "struct nfs4_fctx" out from under #ifdef KERNEL for fstat(1). Revision Changes Path 1.75 +14 -14 src/sys/nfsclient/nfs.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 21:24:11 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAE6E16A4CE; Fri, 14 Nov 2003 21:24:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2182643FE9; Fri, 14 Nov 2003 21:24:11 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF5OAXJ016327; Fri, 14 Nov 2003 21:24:10 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF5OAHZ016326; Fri, 14 Nov 2003 21:24:10 -0800 (PST) (envelope-from bmah) Message-Id: <200311150524.hAF5OAHZ016326@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 14 Nov 2003 21:24:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 05:24:11 -0000 bmah 2003/11/14 21:24:10 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Use idt(4) manpage entity, trim devices. Revision Changes Path 1.199 +1 -4 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Fri Nov 14 21:37:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4826216A4CE; Fri, 14 Nov 2003 21:37:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9D4C43F3F; Fri, 14 Nov 2003 21:37:13 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF5bDXJ016896; Fri, 14 Nov 2003 21:37:13 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF5bD90016895; Fri, 14 Nov 2003 21:37:13 -0800 (PST) (envelope-from ume) Message-Id: <200311150537.hAF5bD90016895@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 21:37:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 esp_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 05:37:14 -0000 ume 2003/11/14 21:37:13 PST FreeBSD src repository Modified files: sys/netinet6 esp_output.c Log: fixed a bug comparing sav->key_auth and SADB_AALG_NONE. Obtained from: KAME Revision Changes Path 1.11 +1 -1 src/sys/netinet6/esp_output.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 21:41:42 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A87616A4CE; Fri, 14 Nov 2003 21:41:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AEB343FB1; Fri, 14 Nov 2003 21:41:41 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF5ffXJ017164; Fri, 14 Nov 2003 21:41:41 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF5ffOD017163; Fri, 14 Nov 2003 21:41:41 -0800 (PST) (envelope-from ume) Message-Id: <200311150541.hAF5ffOD017163@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 21:41:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 esp_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 05:41:42 -0000 ume 2003/11/14 21:41:41 PST FreeBSD src repository Modified files: sys/netinet6 esp_output.c Log: preparation for 64bit sequence number. Obtained from: KAME Revision Changes Path 1.12 +1 -1 src/sys/netinet6/esp_output.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 22:02:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 710FF16A4CE; Fri, 14 Nov 2003 22:02:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E02F243FDF; Fri, 14 Nov 2003 22:02:09 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF629XJ018088; Fri, 14 Nov 2003 22:02:09 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF629jc018087; Fri, 14 Nov 2003 22:02:09 -0800 (PST) (envelope-from ume) Message-Id: <200311150602.hAF629jc018087@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 22:02:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 ah.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 06:02:10 -0000 ume 2003/11/14 22:02:09 PST FreeBSD src repository Modified files: sys/netinet6 ah.h Log: increase AH_MAXSUMSIZE for hmac-sha2-512 Obtained from: KAME Revision Changes Path 1.10 +2 -1 src/sys/netinet6/ah.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 22:09:02 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F20E216A4CE; Fri, 14 Nov 2003 22:09:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9824543FE3; Fri, 14 Nov 2003 22:08:58 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF68wXJ019218; Fri, 14 Nov 2003 22:08:58 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF68wku019217; Fri, 14 Nov 2003 22:08:58 -0800 (PST) (envelope-from trhodes) Message-Id: <200311150608.hAF68wku019217@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Nov 2003 22:08:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 pcm.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 06:09:02 -0000 trhodes 2003/11/14 22:08:58 PST FreeBSD src repository Modified files: share/man/man4 pcm.4 Log: Bring in a 90% rewrite of the pcm.4 manual page. This adds tunables, loader options, information on VCHANs, and more. Based on content submitted by: Mathew Kanner && Cameron Grant Update requested by: ru, and I think hmp Revision Changes Path 1.32 +208 -48 src/share/man/man4/pcm.4 From owner-cvs-src@FreeBSD.ORG Fri Nov 14 22:16:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F29916A4CE; Fri, 14 Nov 2003 22:16:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D7CA43FEA; Fri, 14 Nov 2003 22:16:36 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF6GaXJ019619; Fri, 14 Nov 2003 22:16:36 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF6GaOP019618; Fri, 14 Nov 2003 22:16:36 -0800 (PST) (envelope-from ume) Message-Id: <200311150616.hAF6GaOP019618@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 22:16:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 ah.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 06:16:38 -0000 ume 2003/11/14 22:16:36 PST FreeBSD src repository Modified files: sys/netinet6 ah.h Log: oops, correct wrong change in previous commit. Revision Changes Path 1.11 +0 -1 src/sys/netinet6/ah.h From owner-cvs-src@FreeBSD.ORG Fri Nov 14 22:18:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5612C16A4CE; Fri, 14 Nov 2003 22:18:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF56743FBD; Fri, 14 Nov 2003 22:18:09 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF6I9XJ019675; Fri, 14 Nov 2003 22:18:09 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF6I9Uv019674; Fri, 14 Nov 2003 22:18:09 -0800 (PST) (envelope-from ume) Message-Id: <200311150618.hAF6I9Uv019674@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 14 Nov 2003 22:18:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 ah_core.c ah_input.c esp_core.c esp_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 06:18:10 -0000 ume 2003/11/14 22:18:09 PST FreeBSD src repository Modified files: sys/netinet6 ah_core.c ah_input.c esp_core.c esp_input.c Log: - m_cat() may free the mbuf on 2nd arg, so m_pkthdr manipulation has to happen before the call to m_cat(). - correct signedness mixups. - remove variable that is only assigned too but not referenced. Obtained from: KAME Revision Changes Path 1.22 +1 -1 src/sys/netinet6/ah_core.c 1.18 +2 -6 src/sys/netinet6/ah_input.c 1.21 +5 -5 src/sys/netinet6/esp_core.c 1.24 +6 -8 src/sys/netinet6/esp_input.c From owner-cvs-src@FreeBSD.ORG Fri Nov 14 23:32:09 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF0BE16A4CE; Fri, 14 Nov 2003 23:32:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 674C943FD7; Fri, 14 Nov 2003 23:32:08 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF7W8XJ023535; Fri, 14 Nov 2003 23:32:08 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF7W8nw023534; Fri, 14 Nov 2003 23:32:08 -0800 (PST) (envelope-from jeff) Message-Id: <200311150732.hAF7W8nw023534@repoman.freebsd.org> From: Jeff Roberson Date: Fri, 14 Nov 2003 23:32:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 07:32:10 -0000 jeff 2003/11/14 23:32:08 PST FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Introduce kseq_runq_{add,rem}() which are used to insert and remove kses from the run queues. Also, on SMP, we track the transferable count here. Threads are transferable only as long as they are on the run queue. - Previously, we adjusted our load balancing based on the transferable count minus the number of actual cpus. This was done to account for the threads which were likely to be running. All of this logic is simpler now that transferable accounts for only those threads which can actually be taken. Updated various places in sched_add() and kseq_balance() to account for this. - Rename kseq_{add,rem} to kseq_load_{add,rem} to reflect what they're really doing. The load is accounted for seperately from the runq because the load is accounted for even as the thread is running. - Fix a bug in sched_class() where we weren't properly using the PRI_BASE() version of the kg_pri_class. - Add a large comment that describes the impact of a seemingly simple conditional in sched_add(). - Also in sched_add() check the transferable count and KSE_CAN_MIGRATE() prior to checking kseq_idle. This reduces the frequency of access for kseq_idle which is a shared resource. Revision Changes Path 1.81 +83 -61 src/sys/kern/sched_ule.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 00:29:22 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC4D516A4CE; Sat, 15 Nov 2003 00:29:22 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1F5643FA3; Sat, 15 Nov 2003 00:29:21 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAF8TLFw073787; Sat, 15 Nov 2003 00:29:21 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAF8TL9f073786; Sat, 15 Nov 2003 00:29:21 -0800 (PST) (envelope-from rizzo) Date: Sat, 15 Nov 2003 00:29:21 -0800 From: Luigi Rizzo To: Andre Oppermann Message-ID: <20031115002921.B68056@xorpc.icir.org> References: <200311142102.hAEL2Nen073186@repoman.freebsd.org> <20031114153145.A54064@xorpc.icir.org> <3FB593F5.1053E7E2@pipeline.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <3FB593F5.1053E7E2@pipeline.ch>; from oppermann@pipeline.ch on Sat, Nov 15, 2003 at 03:48:21AM +0100 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_fastfwd.c ip_flow.c ip_flow.h ip_input.c ip_output.c src/sys/sys mbuf.h src/sys/conf files src/sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 08:29:23 -0000 [mu On Sat, Nov 15, 2003 at 03:48:21AM +0100, Andre Oppermann wrote: > Luigi Rizzo wrote: ... > > Given that there are large segments of common code between > > ip_fastforward() and ip_input()/ip_output() (i am thinking of the > > entire ipfw handling code, for one, and also some basic integrity > > checks, the fragmentation code, etc.) I also wonder if it wouldn't > > be beneficial to put the optimizations into the standard path rather > > than create a new (partial) replica of the same code, with the > > potential of introducing bugs, and with some substantial I-cache > > pollution which might well destroy the benefits of minor optimizations. > > I don't see much cache pollution here. Normally you use ip_fastforward i said I-cache, not data cache. Even a routed does some substantial amount of local communication (bgp and routing processes etc.) so i am pretty sure that in any non-trivial case you will end up having both the slow path and the fast path conflicting for the instruction cache. Merging them might help -- i have seen many cases where inlining code as opposed to explicit function calls makes things slower for this precise reason. > > Minor comments on the code: > > > > + one of the initial comments in the new code states > > > > ... The only part of the packet we touch with the CPU is the > > IP header. ... > > > > this is not true if you use ipfw because that code touches many > > places in the packet (and can also do some expensive computation > > like trying to locate the uid/gid of a packet; the fact that we > > only deal with packets not for us does not prevent the existence > > of such firewall rules). > > Well, as I said, everybody is free to shoot himself with such highly > complex firewall rules. I'd say the ipfw code could be optimized with > some of the ideas I've specified earlier. I don't think the ipfw code > would do a uid/gid lookup if neither the destination nor source is i was just saying that the comment is untrue. > > + could you clarify the divert logic ? I am a bit rusty with that > > part of the code, but i am under the impression that in > > ip_fastforward() you are passing along args.divert_rule and > > losing track of divert_info which is instead what you need too. > > It's not you being rusty, the code is indeed hard to follow. :-/ > divert_info is used for ip packet reassembly. ip_divert() is then > just using it to determine whether the packet was catched on the > way into the machine or out of it. It seems to have it's largest > significance for the ip reassembly. I've tested that too with an > earlier version of my code. However I will redo those tests to be > sure it is working as expected. ok, the specific case where i think it fails is when you divert a fragmented packet -- your code seems to store the divert_info (the port you divert to) into divert_rule, and lose track of the former. cheers luigi From owner-cvs-src@FreeBSD.ORG Sat Nov 15 00:39:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87DFF16A4CE; Sat, 15 Nov 2003 00:39:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0882243FCB; Sat, 15 Nov 2003 00:39:12 -0800 (PST) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF8dBXJ026979; Sat, 15 Nov 2003 00:39:11 -0800 (PST) (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF8dB6x026978; Sat, 15 Nov 2003 00:39:11 -0800 (PST) (envelope-from bms) Message-Id: <200311150839.hAF8dB6x026978@repoman.freebsd.org> From: Bruce M Simpson Date: Sat, 15 Nov 2003 00:39:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/etc services X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 08:39:12 -0000 bms 2003/11/15 00:39:11 PST FreeBSD src repository Modified files: (Branch: RELENG_4) etc services Log: MFC: Add the svn service to /etc/services. PR: conf/54371 Submitted by: Roman Neuhauser Revision Changes Path 1.62.2.16 +2 -0 src/etc/services From owner-cvs-src@FreeBSD.ORG Sat Nov 15 00:45:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B63C16A4CE; Sat, 15 Nov 2003 00:45:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A05943F93; Sat, 15 Nov 2003 00:45:37 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF8jaXJ027350; Sat, 15 Nov 2003 00:45:36 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF8jawU027349; Sat, 15 Nov 2003 00:45:36 -0800 (PST) (envelope-from alc) Message-Id: <200311150845.hAF8jawU027349@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Nov 2003 00:45:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_bio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 08:45:37 -0000 alc 2003/11/15 00:45:36 PST FreeBSD src repository Modified files: sys/kern vfs_bio.c Log: - Remove the remaining now unnecessary checks for the buf's b_object being NULL. See revision 1.421 for more detail. - Remove GIANT_REQUIRED from vfs_unbusy_pages(). Discussed with: jeff Revision Changes Path 1.424 +4 -10 src/sys/kern/vfs_bio.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 01:28:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A0AC16A4CE; Sat, 15 Nov 2003 01:28:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0697043FFD; Sat, 15 Nov 2003 01:28:10 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF9S9XJ035604; Sat, 15 Nov 2003 01:28:09 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF9S96D035603; Sat, 15 Nov 2003 01:28:09 -0800 (PST) (envelope-from phk) Message-Id: <200311150928.hAF9S96D035603@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 15 Nov 2003 01:28:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_physio.c vfs_aio.c vfs_bio.c src/sys/sys buf.h src/sys/ufs/ffs ffs_rawread.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 09:28:10 -0000 phk 2003/11/15 01:28:09 PST FreeBSD src repository Modified files: sys/kern kern_physio.c vfs_aio.c vfs_bio.c sys/sys buf.h sys/ufs/ffs ffs_rawread.c Log: Send B_PHYS out to pasture, it no longer serves any function. Revision Changes Path 1.62 +1 -1 src/sys/kern/kern_physio.c 1.168 +0 -1 src/sys/kern/vfs_aio.c 1.425 +0 -9 src/sys/kern/vfs_bio.c 1.162 +1 -1 src/sys/sys/buf.h 1.12 +1 -1 src/sys/ufs/ffs/ffs_rawread.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 01:54:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB1B616A4CE; Sat, 15 Nov 2003 01:54:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 277B243F85; Sat, 15 Nov 2003 01:54:12 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAF9sBXJ037003; Sat, 15 Nov 2003 01:54:11 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAF9sBMo037002; Sat, 15 Nov 2003 01:54:11 -0800 (PST) (envelope-from tjr) Message-Id: <200311150954.hAF9sBMo037002@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Nov 2003 01:54:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vnode_pager.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 09:54:12 -0000 tjr 2003/11/15 01:54:11 PST FreeBSD src repository Modified files: sys/vm vnode_pager.c Log: In vnode_pager_input_smlfs(), call VOP_STRATEGY instead of VOP_SPECSTRATEGY on non-VCHR vnodes. This fixes a panic when reading data from files on a filesystem with a small (less than a page) block size. PR: 59271 Reviewed by: alc Revision Changes Path 1.192 +4 -1 src/sys/vm/vnode_pager.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 02:04:06 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE45116A4CE; Sat, 15 Nov 2003 02:04:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 675C343FF7; Sat, 15 Nov 2003 02:04:06 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFA46XJ038371; Sat, 15 Nov 2003 02:04:06 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFA46Ip038370; Sat, 15 Nov 2003 02:04:06 -0800 (PST) (envelope-from bde) Message-Id: <200311151004.hAFA46Ip038370@repoman.freebsd.org> From: Bruce Evans Date: Sat, 15 Nov 2003 02:04:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys reboot.h src/sys/boot/i386/boot2 boot2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 10:04:07 -0000 bde 2003/11/15 02:04:06 PST FreeBSD src repository Modified files: sys/sys reboot.h sys/boot/i386/boot2 boot2.c Log: Changed the RB_PAUSE flag from 0x40000 to 0x100000 and marked the old value as reserved for internal use in boot blocks, because RB_PAUSE broke binary compatibility by usurping the RB_DUAL flag. Probably no one except me has boot blocks for which this matters, since most boot blocks based on biosboot including pc98's boot2 can't boot elf kernels, and /boot/loader doesn't properly pass flags set by the previous stage. reboot.h: Also mark the historical RB_PROBEKBD flag (0x80000) as reserved for internal use in boot blocks. boot2.c: Added comments to inhibit usurping of other flags. Approved by: guido, imp MFC after: 1 week Revision Changes Path 1.67 +13 -2 src/sys/boot/i386/boot2/boot2.c 1.23 +4 -2 src/sys/sys/reboot.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 02:17:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EBF716A4CE; Sat, 15 Nov 2003 02:17:26 -0800 (PST) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9574C43F93; Sat, 15 Nov 2003 02:17:25 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.3) with ESMTP id hAFAHNFw008940; Sat, 15 Nov 2003 02:17:23 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id hAFAHMkr008939; Sat, 15 Nov 2003 02:17:22 -0800 (PST) (envelope-from rizzo) Date: Sat, 15 Nov 2003 02:17:22 -0800 From: Luigi Rizzo To: Robert Watson Message-ID: <20031115021722.A7670@xorpc.icir.org> References: <20031114132714.A88606@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from rwatson@FreeBSD.org on Fri, Nov 14, 2003 at 04:33:18PM -0500 cc: cvs-src@FreeBSD.org cc: Sam Leffler cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/an if_an.c if_anreg.h src/sys/dev/bfe if_bfe.c src/sys/dev/my if_my.c src/sys/dev/owi if_owi.c if_wivar.h src/sys/dev/re if_re.c src/sys/dev/wl if_wl.c src/sys/pci if_dc.c if_dcreg.h if_pcn.c if_pcnreg.h if_rl.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 10:17:26 -0000 On Fri, Nov 14, 2003 at 04:33:18PM -0500, Robert Watson wrote: ... > I can think of two concerns with that: first, that interface locks may be > handled differently for different interfaces, and second, that in the > future we may want to avoid an unlock/lock pair for each packet input. > I've been running with local patches intended to reduce the number of > unlock/lock pairs for coalesced interrupt handling by only unlocking to > deliver chains of mbufs to if_input rather than individual mbufs. I.e., as i was telling Sam, i doubt you'll see any coalescing except in cases od DoS attacks on GigE interfaces, or with very slow boxes. As a matter of fact, in the latter case the risk is looping in the driver up to mbuf exhaustion, and then passing up a zillion buffer to if_input() in a single call. Which basically has the same problem of deferred dispatch through netisr. (easy fix there, limit the burst size to some small value such as 5-10 buffers). cheers luigi From owner-cvs-src@FreeBSD.ORG Sat Nov 15 02:35:51 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D822F16A4CF for ; Sat, 15 Nov 2003 02:35:50 -0800 (PST) Received: from mailtoaster1.pipeline.ch (mailtoaster1.pipeline.ch [62.48.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0F9843FEC for ; Sat, 15 Nov 2003 02:35:47 -0800 (PST) (envelope-from oppermann@pipeline.ch) Received: (qmail 85281 invoked from network); 15 Nov 2003 10:38:42 -0000 Received: from unknown (HELO pipeline.ch) ([62.48.0.54]) (envelope-sender ) by mailtoaster1.pipeline.ch (qmail-ldap-1.03) with SMTP for ; 15 Nov 2003 10:38:42 -0000 Message-ID: <3FB60181.4256A519@pipeline.ch> Date: Sat, 15 Nov 2003 11:35:45 +0100 From: Andre Oppermann X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Luigi Rizzo References: <200311142102.hAEL2Nen073186@repoman.freebsd.org> <20031114153145.A54064@xorpc.icir.org> <3FB593F5.1053E7E2@pipeline.ch> <20031115002921.B68056@xorpc.icir.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_fastfwd.c ip_flow.c ip_flow.h ip_input.c ip_output.c src/sys/sys mbuf.h src/sys/conf files src/sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 10:35:51 -0000 Luigi Rizzo wrote: > > [mu > On Sat, Nov 15, 2003 at 03:48:21AM +0100, Andre Oppermann wrote: > > Luigi Rizzo wrote: > ... > > > Given that there are large segments of common code between > > > ip_fastforward() and ip_input()/ip_output() (i am thinking of the > > > entire ipfw handling code, for one, and also some basic integrity > > > checks, the fragmentation code, etc.) I also wonder if it wouldn't > > > be beneficial to put the optimizations into the standard path rather > > > than create a new (partial) replica of the same code, with the > > > potential of introducing bugs, and with some substantial I-cache > > > pollution which might well destroy the benefits of minor optimizations. > > > > I don't see much cache pollution here. Normally you use ip_fastforward > > i said I-cache, not data cache. Even a routed does some substantial > amount of local communication (bgp and routing processes etc.) so Here on my CORE2 router (4.8-REL) with two full and 130 peering BGP4 feeds I see about three to four route changes per second which make it to the kernel (route -nv monitor). Out of 303'394'603 packets 44'721'091 were for itself. But that is probably bogus since the counters are only 32-bit (and the machine has a uptime of 63 days). So the overall packet count has wrapped at least once (if not more) and is more likely to be 4'303'394'603. So about 1 percent of all packets (as I said it's probably even less because it has wrapped more than that) are for machine. All other packets use the fast path. To put this more into perspective wrt counter wrapping, on my interfaces I have a byte counter wrap every 40 minutes or so. So the true ratio is probably even far less than one percent and more in the region of one per mille. The wrapping looks really ugly on MRTG and RRtool graphs. Interface counters should be 64bit or they become useless with todays traffic levels... > i am pretty sure that in any non-trivial case you will end up having > both the slow path and the fast path conflicting for the instruction > cache. Merging them might help -- i have seen many cases where > inlining code as opposed to explicit function calls makes things > slower for this precise reason. I will try to measure that with more precision. You did have code which was able to record and timestamp events several thousand times per second. Do still have that code somewhere? > > > Minor comments on the code: > > > > > > + one of the initial comments in the new code states > > > > > > ... The only part of the packet we touch with the CPU is the > > > IP header. ... > > > > > > this is not true if you use ipfw because that code touches many > > > places in the packet (and can also do some expensive computation > > > like trying to locate the uid/gid of a packet; the fact that we > > > only deal with packets not for us does not prevent the existence > > > of such firewall rules). > > > > Well, as I said, everybody is free to shoot himself with such highly > > complex firewall rules. I'd say the ipfw code could be optimized with > > some of the ideas I've specified earlier. I don't think the ipfw code > > would do a uid/gid lookup if neither the destination nor source is > > i was just saying that the comment is untrue. Ok, I will modify it say something like "as long firewalling is not going through the whole packet" or so. > > > + could you clarify the divert logic ? I am a bit rusty with that > > > part of the code, but i am under the impression that in > > > ip_fastforward() you are passing along args.divert_rule and > > > losing track of divert_info which is instead what you need too. > > > > It's not you being rusty, the code is indeed hard to follow. :-/ > > divert_info is used for ip packet reassembly. ip_divert() is then > > just using it to determine whether the packet was catched on the > > way into the machine or out of it. It seems to have it's largest > > significance for the ip reassembly. I've tested that too with an > > earlier version of my code. However I will redo those tests to be > > sure it is working as expected. > > ok, the specific case where i think it fails is when you divert a > fragmented packet -- your code seems to store the divert_info > (the port you divert to) into divert_rule, and lose track of > the former. It looks like I need both of them... -- Andre From owner-cvs-src@FreeBSD.ORG Sat Nov 15 02:49:00 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 497CE16A4CE; Sat, 15 Nov 2003 02:49:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7EFD43FB1; Sat, 15 Nov 2003 02:48:59 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFAmxXJ041575; Sat, 15 Nov 2003 02:48:59 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFAmxKY041574; Sat, 15 Nov 2003 02:48:59 -0800 (PST) (envelope-from brueffer) Message-Id: <200311151048.hAFAmxKY041574@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 15 Nov 2003 02:48:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sbin/route route.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 10:49:00 -0000 brueffer 2003/11/15 02:48:59 PST FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) sbin/route route.8 Log: MFC: 1.35 Add a describtion for the '-d' flag and fill in a missing comma Revision Changes Path 1.17.2.10 +3 -1 src/sbin/route/route.8 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 03:08:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7061916A4CE; Sat, 15 Nov 2003 03:08:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE88943F3F; Sat, 15 Nov 2003 03:08:26 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFB8QXJ043593; Sat, 15 Nov 2003 03:08:26 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFB8Q8j043592; Sat, 15 Nov 2003 03:08:26 -0800 (PST) (envelope-from yar) Message-Id: <200311151108.hAFB8Q8j043592@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 15 Nov 2003 03:08:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/ftpd ftpd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 11:08:27 -0000 yar 2003/11/15 03:08:26 PST FreeBSD src repository Modified files: libexec/ftpd ftpd.c Log: If a file to send in ASCII mode already has CRLF as end-of-line, don't add excessive CR on the wire. PR: bin/59285 Submitted by: Andrey Beresovsky MFC after: 1 week Revision Changes Path 1.147 +4 -2 src/libexec/ftpd/ftpd.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 03:56:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32AB916A4CE; Sat, 15 Nov 2003 03:56:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E0E043FB1; Sat, 15 Nov 2003 03:56:53 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFBurXJ045709; Sat, 15 Nov 2003 03:56:53 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFBurYg045708; Sat, 15 Nov 2003 03:56:53 -0800 (PST) (envelope-from tjr) Message-Id: <200311151156.hAFBurYg045708@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Nov 2003 03:56:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sysv_sem.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 11:56:54 -0000 tjr 2003/11/15 03:56:53 PST FreeBSD src repository Modified files: sys/kern sysv_sem.c Log: Initialize sequence numbers to 0 in seminit() instead of using whatever garbage happens to be in memory. This did not seem to cause any problems except making semaphore ID's unpredictable (and ugly in ipcs(1) output). Revision Changes Path 1.67 +1 -0 src/sys/kern/sysv_sem.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 04:25:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2FEA16A4CE; Sat, 15 Nov 2003 04:25:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49E1A43F3F; Sat, 15 Nov 2003 04:25:48 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFCPmXJ050406; Sat, 15 Nov 2003 04:25:48 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFCPlCD050405; Sat, 15 Nov 2003 04:25:47 -0800 (PST) (envelope-from nyan) Message-Id: <200311151225.hAFCPlCD050405@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 15 Nov 2003 04:25:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/pc98/btx/btxldr btxldr.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 12:25:49 -0000 nyan 2003/11/15 04:25:47 PST FreeBSD src repository Modified files: sys/boot/pc98/btx/btxldr btxldr.s Log: MFi386: revision 1.13. Revision Changes Path 1.6 +2 -2 src/sys/boot/pc98/btx/btxldr/btxldr.s From owner-cvs-src@FreeBSD.ORG Sat Nov 15 04:31:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4D0916A4CE; Sat, 15 Nov 2003 04:31:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EBB943FB1; Sat, 15 Nov 2003 04:31:03 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFCV3XJ050825; Sat, 15 Nov 2003 04:31:03 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFCV26E050824; Sat, 15 Nov 2003 04:31:02 -0800 (PST) (envelope-from nyan) Message-Id: <200311151231.hAFCV26E050824@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 15 Nov 2003 04:31:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf options.pc98 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 12:31:04 -0000 nyan 2003/11/15 04:31:02 PST FreeBSD src repository Modified files: sys/conf options.pc98 Log: MFi386: revision 1.201. Revision Changes Path 1.171 +8 -6 src/sys/conf/options.pc98 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 04:33:40 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5279316A4CE; Sat, 15 Nov 2003 04:33:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C07E843FE1; Sat, 15 Nov 2003 04:33:39 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFCXdXJ050950; Sat, 15 Nov 2003 04:33:39 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFCXdkf050949; Sat, 15 Nov 2003 04:33:39 -0800 (PST) (envelope-from nyan) Message-Id: <200311151233.hAFCXdkf050949@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 15 Nov 2003 04:33:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 12:33:40 -0000 nyan 2003/11/15 04:33:39 PST FreeBSD src repository Modified files: sys/pc98/conf NOTES Log: MFi386: revisions from 1.1102 to 1.1105. Revision Changes Path 1.17 +13 -16 src/sys/pc98/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sat Nov 15 04:37:16 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAFD716A4CE; Sat, 15 Nov 2003 04:37:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6585F43FB1; Sat, 15 Nov 2003 04:37:16 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFCbGXJ051165; Sat, 15 Nov 2003 04:37:16 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFCbFxO051164; Sat, 15 Nov 2003 04:37:15 -0800 (PST) (envelope-from nyan) Message-Id: <200311151237.hAFCbFxO051164@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 15 Nov 2003 04:37:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/i386 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 12:37:17 -0000 nyan 2003/11/15 04:37:15 PST FreeBSD src repository Modified files: sys/pc98/i386 machdep.c Log: opt_apic.h is not needed. Revision Changes Path 1.331 +0 -1 src/sys/pc98/i386/machdep.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 06:23:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CCBD16A4CE; Sat, 15 Nov 2003 06:23:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AD0143FE0; Sat, 15 Nov 2003 06:23:48 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFENmXJ062866; Sat, 15 Nov 2003 06:23:48 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFENmxq062865; Sat, 15 Nov 2003 06:23:48 -0800 (PST) (envelope-from trhodes) Message-Id: <200311151423.hAFENmxq062865@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Nov 2003 06:23:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 mbuf.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 14:23:49 -0000 trhodes 2003/11/15 06:23:48 PST FreeBSD src repository Modified files: share/man/man9 mbuf.9 Log: Remove an extra 'for' in the HISTORY section. Revision Changes Path 1.33 +1 -1 src/share/man/man9/mbuf.9 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 07:26:36 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3A9C16A4CE; Sat, 15 Nov 2003 07:26:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C74E43F3F; Sat, 15 Nov 2003 07:26:36 -0800 (PST) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFFQZXJ066561; Sat, 15 Nov 2003 07:26:36 -0800 (PST) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFFQZwV066560; Sat, 15 Nov 2003 07:26:35 -0800 (PST) (envelope-from harti) Message-Id: <200311151526.hAFFQZwV066560@repoman.freebsd.org> From: Hartmut Brandt Date: Sat, 15 Nov 2003 07:26:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules/snmp_netgraph BEGEMOT-NETGRAPH.txt snmp_netgraph.3 snmp_netgraph.c src/libexec/pppoed pppoed.c src/share/examples/netgraph ngctl src/share/man/man4 ng_atm.4 ng_bpf.4 ng_etf.4 ng_pppoe.4 src/usr.sbin/bluetooth/bt3cfw ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 15:26:36 -0000 harti 2003/11/15 07:26:35 PST FreeBSD src repository Modified files: lib/libbsnmp/modules/snmp_netgraph BEGEMOT-NETGRAPH.txt snmp_netgraph.3 snmp_netgraph.c libexec/pppoed pppoed.c share/examples/netgraph ngctl share/man/man4 ng_atm.4 ng_bpf.4 ng_etf.4 ng_pppoe.4 usr.sbin/bluetooth/bt3cfw bt3cfw.c usr.sbin/bluetooth/hcseriald hcseriald.c usr.sbin/ppp netgraph.c tty.c Log: Replace all uses of the old netgraph constants NG_*LEN by the new constants NG_*SIZ that include the trailing NUL byte. This change is mostly mechanical except for the replacement of a couple of snprintf() and sprintf() calls with strlcpy. Revision Changes Path 1.2 +9 -9 src/lib/libbsnmp/modules/snmp_netgraph/BEGEMOT-NETGRAPH.txt 1.2 +7 -7 src/lib/libbsnmp/modules/snmp_netgraph/snmp_netgraph.3 1.2 +39 -39 src/lib/libbsnmp/modules/snmp_netgraph/snmp_netgraph.c 1.23 +1 -1 src/libexec/pppoed/pppoed.c 1.3 +2 -2 src/share/examples/netgraph/ngctl 1.3 +2 -2 src/share/man/man4/ng_atm.4 1.18 +4 -4 src/share/man/man4/ng_bpf.4 1.5 +1 -1 src/share/man/man4/ng_etf.4 1.21 +3 -3 src/share/man/man4/ng_pppoe.4 1.4 +1 -1 src/usr.sbin/bluetooth/bt3cfw/bt3cfw.c 1.4 +1 -1 src/usr.sbin/bluetooth/hcseriald/hcseriald.c 1.5 +9 -9 src/usr.sbin/ppp/netgraph.c 1.30 +2 -2 src/usr.sbin/ppp/tty.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 09:03:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 971D816A4D3; Sat, 15 Nov 2003 09:03:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D06EE43FAF; Sat, 15 Nov 2003 09:03:37 -0800 (PST) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFH3bXJ078028; Sat, 15 Nov 2003 09:03:37 -0800 (PST) (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFH3baS078027; Sat, 15 Nov 2003 09:03:37 -0800 (PST) (envelope-from andre) Message-Id: <200311151703.hAFH3baS078027@repoman.freebsd.org> From: Andre Oppermann Date: Sat, 15 Nov 2003 09:03:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 17:03:38 -0000 andre 2003/11/15 09:03:37 PST FreeBSD src repository Modified files: sys/netinet ip_fastfwd.c Log: Correct a cast to make it compile on 64bit platforms (noticed by tinderbox) and remove two unneccessary variable initializations. Make the introduction comment more clear with regard which parts of the packet are touched. Requested by: luigi Revision Changes Path 1.2 +6 -6 src/sys/netinet/ip_fastfwd.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 09:10:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC59316A4CF; Sat, 15 Nov 2003 09:10:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FA5D43FBF; Sat, 15 Nov 2003 09:10:57 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFHAvXJ078777; Sat, 15 Nov 2003 09:10:57 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFHAvWP078776; Sat, 15 Nov 2003 09:10:57 -0800 (PST) (envelope-from trhodes) Message-Id: <200311151710.hAFHAvWP078776@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Nov 2003 09:10:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/IPXrouted IPXrouted.8 Makefile af.c if.c input.c main.c output.c sap_tables.c startup.c tables.c timer.c trace.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 17:10:58 -0000 trhodes 2003/11/15 09:10:57 PST FreeBSD src repository Modified files: usr.sbin/IPXrouted IPXrouted.8 Makefile af.c if.c input.c main.c output.c sap_tables.c startup.c tables.c timer.c trace.c Log: Make this WARNS 2 clean, and fix up the manual page: Avoid implicit function calls by adding the proper include files. Use const char copyright. Fix some fprint formatting. In the manual page: Use the .Pa macro for filenames and locations. Kill hard setence breaks. Make use of the .Tn and .Dq macros. Add some to text to the otherwise blank HISTORY section (taken from CVS). Revision Changes Path 1.16 +42 -18 src/usr.sbin/IPXrouted/IPXrouted.8 1.8 +3 -1 src/usr.sbin/IPXrouted/Makefile 1.7 +1 -1 src/usr.sbin/IPXrouted/af.c 1.6 +1 -1 src/usr.sbin/IPXrouted/if.c 1.9 +1 -1 src/usr.sbin/IPXrouted/input.c 1.11 +2 -2 src/usr.sbin/IPXrouted/main.c 1.9 +1 -1 src/usr.sbin/IPXrouted/output.c 1.9 +2 -3 src/usr.sbin/IPXrouted/sap_tables.c 1.10 +4 -3 src/usr.sbin/IPXrouted/startup.c 1.8 +2 -1 src/usr.sbin/IPXrouted/tables.c 1.6 +1 -1 src/usr.sbin/IPXrouted/timer.c 1.10 +1 -1 src/usr.sbin/IPXrouted/trace.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 09:11:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A616616A4D0; Sat, 15 Nov 2003 09:11:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE1E43FE3; Sat, 15 Nov 2003 09:11:18 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFHBHXJ078822; Sat, 15 Nov 2003 09:11:17 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFHBHLs078821; Sat, 15 Nov 2003 09:11:17 -0800 (PST) (envelope-from des) Message-Id: <200311151711.hAFHBHLs078821@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Nov 2003 09:11:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access.doc_src X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 17:11:18 -0000 des 2003/11/15 09:11:17 PST FreeBSD src repository Modified files: . access.doc_src Log: Forced commit to note that hmp is no longer under mentorship as regards doc commits. Revision Changes Path 1.31 +0 -0 CVSROOT/access.doc_src From owner-cvs-src@FreeBSD.ORG Sat Nov 15 10:33:58 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A7C116A4CE; Sat, 15 Nov 2003 10:33:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F39243FE9; Sat, 15 Nov 2003 10:33:55 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFIXtXJ083754; Sat, 15 Nov 2003 10:33:55 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFIXs93083753; Sat, 15 Nov 2003 10:33:54 -0800 (PST) (envelope-from phk) Message-Id: <200311151833.hAFIXs93083753@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 15 Nov 2003 10:33:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_timeout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 18:33:58 -0000 phk 2003/11/15 10:33:54 PST FreeBSD src repository Modified files: sys/kern kern_timeout.c Log: Rename the debugging mutex "callout_no_sleep" to "dont_sleep_in_callout". Revision Changes Path 1.83 +4 -4 src/sys/kern/kern_timeout.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 10:44:44 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45C6C16A4CE; Sat, 15 Nov 2003 10:44:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1B0643FAF; Sat, 15 Nov 2003 10:44:43 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFIihXJ084295; Sat, 15 Nov 2003 10:44:43 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFIihFM084294; Sat, 15 Nov 2003 10:44:43 -0800 (PST) (envelope-from phk) Message-Id: <200311151844.hAFIihFM084294@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 15 Nov 2003 10:44:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 18:44:44 -0000 phk 2003/11/15 10:44:43 PST FreeBSD src repository Modified files: sys/geom geom_subr.c Log: This is a crude bandaid for 5.2 to protect against providers which disappear while being tasted. I can moderately easy trigger this with atapi-cd, but I do not fully understand the circumstances. Revision Changes Path 1.62 +38 -0 src/sys/geom/geom_subr.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 10:58:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E643F16A4CE; Sat, 15 Nov 2003 10:58:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EEDC43FBF; Sat, 15 Nov 2003 10:58:30 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFIwUXJ085047; Sat, 15 Nov 2003 10:58:30 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFIwUsN085046; Sat, 15 Nov 2003 10:58:30 -0800 (PST) (envelope-from njl) Message-Id: <200311151858.hAFIwUsN085046@repoman.freebsd.org> From: Nate Lawson Date: Sat, 15 Nov 2003 10:58:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include pcpu.h src/sys/amd64/amd64 machdep.c src/sys/ia64/include pcpu.h src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 18:58:31 -0000 njl 2003/11/15 10:58:29 PST FreeBSD src repository Modified files: sys/amd64/include pcpu.h sys/amd64/amd64 machdep.c sys/ia64/include pcpu.h sys/ia64/ia64 machdep.c Log: Add the pc_acpi_id PCPU member. The new acpi_cpu driver uses this to dereference the softc. Revision Changes Path 1.598 +2 -0 src/sys/amd64/amd64/machdep.c 1.37 +2 -1 src/sys/amd64/include/pcpu.h 1.171 +1 -0 src/sys/ia64/ia64/machdep.c 1.16 +2 -1 src/sys/ia64/include/pcpu.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 11:16:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C85E516A4CE for ; Sat, 15 Nov 2003 11:16:50 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id BD57443FE3 for ; Sat, 15 Nov 2003 11:16:48 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 54430 invoked by uid 1000); 15 Nov 2003 19:16:49 -0000 Date: Sat, 15 Nov 2003 11:16:49 -0800 (PST) From: Nate Lawson To: cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, src-committers@FreeBSD.org In-Reply-To: <20031115185905.470C916A4F6@hub.freebsd.org> Message-ID: <20031115111512.Y54428@root.org> References: <20031115185905.470C916A4F6@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: cvs commit: src/sys/amd64/include pcpu.h src/sys/amd64/amd64 machdep.c src/sys/ia64/include pcpu.h src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 19:16:50 -0000 On Sat, 15 Nov 2003, Nate Lawson wrote: > Modified files: > sys/amd64/include pcpu.h > sys/amd64/amd64 machdep.c > sys/ia64/include pcpu.h > sys/ia64/ia64 machdep.c > Log: > Add the pc_acpi_id PCPU member. The new acpi_cpu driver uses this to > dereference the softc. > > Revision Changes Path > 1.598 +2 -0 src/sys/amd64/amd64/machdep.c > 1.37 +2 -1 src/sys/amd64/include/pcpu.h > 1.171 +1 -0 src/sys/ia64/ia64/machdep.c > 1.16 +2 -1 src/sys/ia64/include/pcpu.h This adds a place to store the ACPI id for each cpu. Platform maintainers should fill this out from the MADT for the SMP case. The i386 mp_machdep.c and i386/acpica/madt.c show how to do this. -Nate From owner-cvs-src@FreeBSD.ORG Sat Nov 15 11:18:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A72D16A4CE; Sat, 15 Nov 2003 11:18:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4E6043FCB; Sat, 15 Nov 2003 11:18:29 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFJITXJ086781; Sat, 15 Nov 2003 11:18:29 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFJITkA086780; Sat, 15 Nov 2003 11:18:29 -0800 (PST) (envelope-from njl) Message-Id: <200311151918.hAFJITkA086780@repoman.freebsd.org> From: Nate Lawson Date: Sat, 15 Nov 2003 11:18:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 19:18:30 -0000 njl 2003/11/15 11:18:29 PST FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Add acpi_bus_alloc_gas() for allocating a memory or IO resource from its Generic Address Structure. Revision Changes Path 1.107 +28 -1 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 11:20:49 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B254916A4CE; Sat, 15 Nov 2003 11:20:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FBB443FDD; Sat, 15 Nov 2003 11:20:47 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFJKlXJ086996; Sat, 15 Nov 2003 11:20:47 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFJKkLS086995; Sat, 15 Nov 2003 11:20:46 -0800 (PST) (envelope-from njl) Message-Id: <200311151920.hAFJKkLS086995@repoman.freebsd.org> From: Nate Lawson Date: Sat, 15 Nov 2003 11:20:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_package.c acpivar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 19:20:50 -0000 njl 2003/11/15 11:20:46 PST FreeBSD src repository Modified files: sys/dev/acpica acpivar.h Added files: sys/dev/acpica acpi_package.c Log: Add acpi_package.c with routines for validating packages and pulling various data types from them. This is loosely based on the acpi_cmbat macros (by Mike Smith) and will eventually replace them. Revision Changes Path 1.1 +141 -0 src/sys/dev/acpica/acpi_package.c (new) 1.48 +15 -0 src/sys/dev/acpica/acpivar.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 11:26:07 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A929A16A4CE; Sat, 15 Nov 2003 11:26:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C26B143FBD; Sat, 15 Nov 2003 11:26:06 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFJQ6XJ087361; Sat, 15 Nov 2003 11:26:06 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFJQ6pr087360; Sat, 15 Nov 2003 11:26:06 -0800 (PST) (envelope-from njl) Message-Id: <200311151926.hAFJQ6pr087360@repoman.freebsd.org> From: Nate Lawson Date: Sat, 15 Nov 2003 11:26:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_cpu.c src/share/man/man4 acpi.4 src/sys/conf files src/sys/modules/acpi Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 19:26:07 -0000 njl 2003/11/15 11:26:06 PST FreeBSD src repository Modified files: sys/dev/acpica acpi_cpu.c share/man/man4 acpi.4 sys/conf files sys/modules/acpi Makefile Log: Implement Cx CPU idle states and updated throttling support. * Use the cpu_idle_hook() to do idling for C1-C3. * Use both _CST and the FADT to detect Cx states. * Use both _PTC and P_CNT for controlling throttling. * Add a notify handler to detect changes in _CST and _PSS * Call the _INI function for each processor if present. This will be done by ACPI-CA in the future. * Fix a bug on SMP systems where CPUs will attach multiple times if the bus is rescan. * Document new sysctls for controlling idling. Revision Changes Path 1.17 +25 -7 src/share/man/man4/acpi.4 1.853 +1 -0 src/sys/conf/files 1.19 +784 -162 src/sys/dev/acpica/acpi_cpu.c 1.32 +2 -1 src/sys/modules/acpi/Makefile From owner-cvs-src@FreeBSD.ORG Sat Nov 15 11:53:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE70216A4CE; Sat, 15 Nov 2003 11:53:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54EDD43F3F; Sat, 15 Nov 2003 11:53:23 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFJrNXJ088540; Sat, 15 Nov 2003 11:53:23 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFJrM6G088539; Sat, 15 Nov 2003 11:53:22 -0800 (PST) (envelope-from trhodes) Message-Id: <200311151953.hAFJrM6G088539@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Nov 2003 11:53:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 pcm.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 19:53:24 -0000 trhodes 2003/11/15 11:53:22 PST FreeBSD src repository Modified files: share/man/man4 pcm.4 Log: Minor word tweaks. Submitted by: Mathew Kanner Revision Changes Path 1.33 +16 -7 src/share/man/man4/pcm.4 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 12:11:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 837BB16A4CF for ; Sat, 15 Nov 2003 12:11:46 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 969EB43FBF for ; Sat, 15 Nov 2003 12:11:44 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 54515 invoked by uid 1000); 15 Nov 2003 20:11:45 -0000 Date: Sat, 15 Nov 2003 12:11:45 -0800 (PST) From: Nate Lawson To: Andre Oppermann In-Reply-To: <20031115170411.6330416A4E9@hub.freebsd.org> Message-ID: <20031115121034.K54473@root.org> References: <20031115170411.6330416A4E9@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 20:11:46 -0000 On Sat, 15 Nov 2003, Andre Oppermann wrote: > Modified files: > sys/netinet ip_fastfwd.c > Log: > Correct a cast to make it compile on 64bit platforms (noticed by tinderbox) > and remove two unneccessary variable initializations. > Make the introduction comment more clear with regard which parts of > the packet are touched. > > Requested by: luigi > > Revision Changes Path > 1.2 +6 -6 src/sys/netinet/ip_fastfwd.c > > --- src/sys/netinet/ip_fastfwd.c:1.1 Fri Nov 14 13:02:21 2003 > +++ src/sys/netinet/ip_fastfwd.c Sat Nov 15 09:03:37 2003 > @@ -567,7 +567,7 @@ > goto drop; > } > tag->m_flags = PACKET_TAG_DIVERT; > - tag->m_data = (caddr_t)(u_int32_t)args.divert_rule; > + tag->m_data = (caddr_t)(u_long)args.divert_rule; > tag->m_next = m; > /* XXX: really bloody hack, see ip_input */ > tag->m_nextpkt = (struct mbuf *)1; I believe this cast is still bogus. You want uintptr_t. -Nate From owner-cvs-src@FreeBSD.ORG Sat Nov 15 12:35:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A99616A4CE; Sat, 15 Nov 2003 12:35:54 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7536043F93; Sat, 15 Nov 2003 12:35:53 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 60E192A8EB; Sat, 15 Nov 2003 12:35:53 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Nate Lawson In-Reply-To: <20031115111512.Y54428@root.org> Date: Sat, 15 Nov 2003 12:35:53 -0800 From: Peter Wemm Message-Id: <20031115203553.60E192A8EB@canning.wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/include pcpu.h src/sys/amd64/amd64 machdep.c src/sys/ia64/include pcpu.h src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 20:35:54 -0000 Nate Lawson wrote: > On Sat, 15 Nov 2003, Nate Lawson wrote: > > Modified files: > > sys/amd64/include pcpu.h > > sys/amd64/amd64 machdep.c > > sys/ia64/include pcpu.h > > sys/ia64/ia64 machdep.c > > Log: > > Add the pc_acpi_id PCPU member. The new acpi_cpu driver uses this to > > dereference the softc. > > > > Revision Changes Path > > 1.598 +2 -0 src/sys/amd64/amd64/machdep.c > > 1.37 +2 -1 src/sys/amd64/include/pcpu.h > > 1.171 +1 -0 src/sys/ia64/ia64/machdep.c > > 1.16 +2 -1 src/sys/ia64/include/pcpu.h > > This adds a place to store the ACPI id for each cpu. Platform maintainers > should fill this out from the MADT for the SMP case. The i386 > mp_machdep.c and i386/acpica/madt.c show how to do this. Heh, I'd already done this on the hammer branch for apic support. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 15:10:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC4F116A4CF for ; Sat, 15 Nov 2003 15:10:48 -0800 (PST) Received: from mailtoaster1.pipeline.ch (mailtoaster1.pipeline.ch [62.48.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD44843FBF for ; Sat, 15 Nov 2003 15:10:45 -0800 (PST) (envelope-from oppermann@pipeline.ch) Received: (qmail 24107 invoked from network); 15 Nov 2003 23:13:41 -0000 Received: from unknown (HELO pipeline.ch) ([195.134.148.7]) (envelope-sender ) by mailtoaster1.pipeline.ch (qmail-ldap-1.03) with SMTP for ; 15 Nov 2003 23:13:41 -0000 Message-ID: <3FB6B273.50EB48BC@pipeline.ch> Date: Sun, 16 Nov 2003 00:10:43 +0100 From: Andre Oppermann X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Nate Lawson References: <20031115170411.6330416A4E9@hub.freebsd.org> <20031115121034.K54473@root.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 23:10:48 -0000 Nate Lawson wrote: > > On Sat, 15 Nov 2003, Andre Oppermann wrote: > > Modified files: > > sys/netinet ip_fastfwd.c > > Log: > > Correct a cast to make it compile on 64bit platforms (noticed by tinderbox) > > and remove two unneccessary variable initializations. > > Make the introduction comment more clear with regard which parts of > > the packet are touched. > > > > Requested by: luigi > > > > Revision Changes Path > > 1.2 +6 -6 src/sys/netinet/ip_fastfwd.c > > > > --- src/sys/netinet/ip_fastfwd.c:1.1 Fri Nov 14 13:02:21 2003 > > +++ src/sys/netinet/ip_fastfwd.c Sat Nov 15 09:03:37 2003 > > @@ -567,7 +567,7 @@ > > goto drop; > > } > > tag->m_flags = PACKET_TAG_DIVERT; > > - tag->m_data = (caddr_t)(u_int32_t)args.divert_rule; > > + tag->m_data = (caddr_t)(u_long)args.divert_rule; > > tag->m_next = m; > > /* XXX: really bloody hack, see ip_input */ > > tag->m_nextpkt = (struct mbuf *)1; > > I believe this cast is still bogus. You want uintptr_t. Ok, I admit I'm no not yet fully used to all the types we have available in the kernel. And I try to avoid casting if ever possible in my code. I'll change it to that and test on my machine plus compile it on sledge (amd64). -- Andre From owner-cvs-src@FreeBSD.ORG Sat Nov 15 15:54:50 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C674B16A4CE; Sat, 15 Nov 2003 15:54:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4136043F3F; Sat, 15 Nov 2003 15:54:50 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFNsoXJ009219; Sat, 15 Nov 2003 15:54:50 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFNsoOu009218; Sat, 15 Nov 2003 15:54:50 -0800 (PST) (envelope-from jeff) Message-Id: <200311152354.hAFNsoOu009218@repoman.freebsd.org> From: Jeff Roberson Date: Sat, 15 Nov 2003 15:54:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys sched.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 23:54:50 -0000 jeff 2003/11/15 15:54:49 PST FreeBSD src repository Modified files: sys/sys sched.h Log: - Only allow pinning and unpinning of curthread. Revision Changes Path 1.9 +6 -6 src/sys/sys/sched.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 15:57:20 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D153416A4D4; Sat, 15 Nov 2003 15:57:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4810B43F93; Sat, 15 Nov 2003 15:57:20 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFNvKXJ009380; Sat, 15 Nov 2003 15:57:20 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFNvJWr009379; Sat, 15 Nov 2003 15:57:20 -0800 (PST) (envelope-from imp) Message-Id: <200311152357.hAFNvJWr009379@repoman.freebsd.org> From: Warner Losh Date: Sat, 15 Nov 2003 15:57:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 15 Nov 2003 23:57:21 -0000 imp 2003/11/15 15:57:19 PST FreeBSD src repository Modified files: sys/sys proc.h Log: Remove the WITNESS debug code from _STOPEVENT. It has pointed out a problem, but the spamage of consoles is really bad. Until we can get this to be less chatty, disable it so people can boot. The badness of the spamage is worse than the badness that it reports :-(. Once the underlying problems have been fixed, it can be reenabled. Approved by: kken, markm, rwatson, grog, murray Revision Changes Path 1.361 +0 -2 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 16:00:08 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBE1716A4CE; Sat, 15 Nov 2003 16:00:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A889E43F85; Sat, 15 Nov 2003 16:00:07 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG007XJ009516; Sat, 15 Nov 2003 16:00:07 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG007LD009515; Sat, 15 Nov 2003 16:00:07 -0800 (PST) (envelope-from imp) Message-Id: <200311160000.hAG007LD009515@repoman.freebsd.org> From: Warner Losh Date: Sat, 15 Nov 2003 16:00:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/nfsclient Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 00:00:09 -0000 imp 2003/11/15 16:00:07 PST FreeBSD src repository Modified files: sys/modules/nfsclient Makefile Log: Quick hack to make the nfsclient.ko loadable again. This brings in the nfsv4 files. It is intended to be a short-term bridge while alfred deals with the problem in a better way (eg, don't hesitate to back this out when the real fix comes along). I've not heard back from alfred in a few hours and other people are hitting this problem. Approved by: markm, rwatson, grog, murray Revision Changes Path 1.27 +12 -1 src/sys/modules/nfsclient/Makefile From owner-cvs-src@FreeBSD.ORG Sat Nov 15 16:55:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8737716A4CE; Sat, 15 Nov 2003 16:55:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5DB243FBF; Sat, 15 Nov 2003 16:55:54 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG0tsXJ018692; Sat, 15 Nov 2003 16:55:54 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG0tsXL018691; Sat, 15 Nov 2003 16:55:54 -0800 (PST) (envelope-from bde) Message-Id: <200311160055.hAG0tsXL018691@repoman.freebsd.org> From: Bruce Evans Date: Sat, 15 Nov 2003 16:55:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 mp_machdep.c src/sys/i386/include smptests.h src/sys/i386/isa cy.c src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 00:55:55 -0000 bde 2003/11/15 16:55:54 PST FreeBSD src repository Modified files: sys/i386/i386 mp_machdep.c sys/i386/include smptests.h sys/i386/isa cy.c sys/kern subr_witness.c Log: Localized the cy driver's locking. Revision Changes Path 1.225 +1 -9 src/sys/i386/i386/mp_machdep.c 1.46 +0 -12 src/sys/i386/include/smptests.h 1.135 +20 -23 src/sys/i386/isa/cy.c 1.163 +0 -3 src/sys/kern/subr_witness.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 17:11:12 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E561016A4CE; Sat, 15 Nov 2003 17:11:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09DCF43FBF; Sat, 15 Nov 2003 17:11:12 -0800 (PST) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG1BBXJ020341; Sat, 15 Nov 2003 17:11:11 -0800 (PST) (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG1BB64020340; Sat, 15 Nov 2003 17:11:11 -0800 (PST) (envelope-from truckman) Message-Id: <200311160111.hAG1BB64020340@repoman.freebsd.org> From: Don Lewis Date: Sat, 15 Nov 2003 17:11:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/fifofs fifo_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 01:11:13 -0000 truckman 2003/11/15 17:11:11 PST FreeBSD src repository Modified files: sys/fs/fifofs fifo_vnops.c Log: Use "fip->fi_readers == 0 && fip->fi_writers == 0" as the condition for disposing fifo resources in fifo_cleanup() instead using of "vp->v_usecount == 1". There may be other references to the vnode, for instance by nullfs, at the time fifo_open() or fifo_close() is called, which could cause a resource leak. Don't bother grabbing the vnode interlock in fifo_cleanup() since it no longer accesses v_usecount. Revision Changes Path 1.91 +3 -6 src/sys/fs/fifofs/fifo_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 17:41:39 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C512A16A4CE; Sat, 15 Nov 2003 17:41:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A06243FBD; Sat, 15 Nov 2003 17:41:39 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG1fdXJ021600; Sat, 15 Nov 2003 17:41:39 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG1fcXL021599; Sat, 15 Nov 2003 17:41:38 -0800 (PST) (envelope-from imp) Message-Id: <200311160141.hAG1fcXL021599@repoman.freebsd.org> From: Warner Losh Date: Sat, 15 Nov 2003 17:41:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 01:41:39 -0000 imp 2003/11/15 17:41:38 PST FreeBSD src repository Modified files: sys/conf kmod.mk Log: Fix the building of null module. In the DIAGNOSTICS case, we include opt_ddb.h. These changes expand green's work of including opt_global.h to prefer opt files in the kernel directory. Further refinement might be needed, but I think this is good. Note: While this is a step on the path to moving the meta information about modules into the config files, it doesn't actually do that. It just pulls in the opt files in a way that allows one to build 'generic' modules outside the tree. Revision Changes Path 1.146 +12 -0 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Sat Nov 15 17:48:30 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3135B16A4CE; Sat, 15 Nov 2003 17:48:30 -0800 (PST) Received: from server.vk2pj.dyndns.org (c211-30-75-229.belrs2.nsw.optusnet.com.au [211.30.75.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 977E343FCB; Sat, 15 Nov 2003 17:48:27 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1])hAG1mGJD002453; Sun, 16 Nov 2003 12:48:16 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.12.9p1/8.12.9/Submit) id hAG1mEpM002312; Sun, 16 Nov 2003 12:48:14 +1100 (EST) (envelope-from peter) Date: Sun, 16 Nov 2003 12:48:14 +1100 From: Peter Jeremy To: Andre Oppermann Message-ID: <20031116014814.GB74756@server.vk2pj.dyndns.org> References: <200311142102.hAEL2Nen073186@repoman.freebsd.org> <20031114153145.A54064@xorpc.icir.org> <3FB593F5.1053E7E2@pipeline.ch> <20031115002921.B68056@xorpc.icir.org> <3FB60181.4256A519@pipeline.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3FB60181.4256A519@pipeline.ch> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_fastfwd.c ip_flow.c ip_flow.h ip_input.c ip_output.c src/sys/sys mbuf.h src/sys/conf files src/sys/net if_arcsubr.c if_ef.c if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 01:48:30 -0000 On Sat, Nov 15, 2003 at 11:35:45AM +0100, Andre Oppermann wrote: > To put this more into perspective wrt counter wrapping, on >my interfaces I have a byte counter wrap every 40 minutes or so. >So the true ratio is probably even far less than one percent and >more in the region of one per mille. The wrapping looks really ugly >on MRTG and RRtool graphs. Interface counters should be 64bit or >they become useless with todays traffic levels... A perennial favourite. Atomically incremented 64-bit counters are _very_ expensive on i386 and the concensus is that the cost is unjustified in the general case. Feel free to supply patches to optionally (at build-time) allow selection of 32-bit or 64-bit counters. A work-around would be to simulate the top 32-bits by counting rollovers in the bottom 32 bits (though this requires co-operation by all consumers that want to see 64-bit values as well as a background process). I notice that even DEC/Compaq/HP Tru64 uses 32-bit counters for network stats. >> i am pretty sure that in any non-trivial case you will end up having >> both the slow path and the fast path conflicting for the instruction >> cache. Merging them might help -- i have seen many cases where >> inlining code as opposed to explicit function calls makes things >> slower for this precise reason. > >I will try to measure that with more precision. You did have >code which was able to record and timestamp events several >thousand times per second. Do still have that code somewhere? I've done similar things a couple of times using circular buffers along the following lines: #define RING_SIZE (1 << some_suitable_value) int next_entry; struct entry { some_time_t now; foo_t event; } ring[RING_SIZE]; void __inline insert_event(foo_t event) { int ix; /* following two lines need to be atomic to make this re-entrant */ ix = next_entry; next_entry = (ix + 1) & (RING_SIZE - 1); ring[ix].now = read_time(); ring[ix].event = event; } In userland, mmap(2) next_entry and ring to unload the events. Pick RING_SIZE and the time types to suit requirements. The TSC has the lowest overhead but worst jitter. Peter From owner-cvs-src@FreeBSD.ORG Sat Nov 15 18:07:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEEFF16A4CE; Sat, 15 Nov 2003 18:07:56 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAC3243F3F; Sat, 15 Nov 2003 18:07:54 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id NAA16888; Sun, 16 Nov 2003 13:07:49 +1100 Date: Sun, 16 Nov 2003 13:07:48 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Nate Lawson In-Reply-To: <20031115121034.K54473@root.org> Message-ID: <20031116125743.O3188@gamplex.bde.org> References: <20031115170411.6330416A4E9@hub.freebsd.org> <20031115121034.K54473@root.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Andre Oppermann cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 02:07:56 -0000 On Sat, 15 Nov 2003, Nate Lawson wrote: > On Sat, 15 Nov 2003, Andre Oppermann wrote: > > --- src/sys/netinet/ip_fastfwd.c:1.1 Fri Nov 14 13:02:21 2003 > > +++ src/sys/netinet/ip_fastfwd.c Sat Nov 15 09:03:37 2003 > > @@ -567,7 +567,7 @@ > > goto drop; > > } > > tag->m_flags = PACKET_TAG_DIVERT; > > - tag->m_data = (caddr_t)(u_int32_t)args.divert_rule; > > + tag->m_data = (caddr_t)(u_long)args.divert_rule; > > tag->m_next = m; > > /* XXX: really bloody hack, see ip_input */ > > tag->m_nextpkt = (struct mbuf *)1; > > I believe this cast is still bogus. You want uintptr_t. Actually intptr_t. The code that converts the value back to an int uses intptr_t, and mixing uintptr_t with intptr_t gives an implementation-defined total conversion which is not necessarily the identity. After fixing this, the other half of the cast would be still be bogus. intptr_t and uintptr_t only have defined behaviour for conversions to and from void *, but caddr_t is supposed to be an opaque type. caddr_t happens to be char *, so it is equivalent to void * in most contexts including probably this one, but but it takes much more familiarity with C to know this than to know what [u]intptr_t does. Using caddr_t is bogus for other reasons; it should never be used, but it is still used for the type of m_data, so the above code has to be aware of it. Bruce From owner-cvs-src@FreeBSD.ORG Sat Nov 15 19:17:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A795F16A4CE; Sat, 15 Nov 2003 19:17:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B7D643F85; Sat, 15 Nov 2003 19:17:31 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG3HUXJ027754; Sat, 15 Nov 2003 19:17:30 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG3HUHf027753; Sat, 15 Nov 2003 19:17:30 -0800 (PST) (envelope-from rwatson) Message-Id: <200311160317.hAG3HUHf027753@repoman.freebsd.org> From: Robert Watson Date: Sat, 15 Nov 2003 19:17:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac mac_net.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 03:17:31 -0000 rwatson 2003/11/15 19:17:30 PST FreeBSD src repository Modified files: sys/security/mac mac_net.c Log: Whitespace fix. Revision Changes Path 1.106 +2 -2 src/sys/security/mac/mac_net.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 19:53:38 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 030EE16A4CE; Sat, 15 Nov 2003 19:53:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69E1A43F75; Sat, 15 Nov 2003 19:53:37 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG3rbXJ029306; Sat, 15 Nov 2003 19:53:37 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG3raZA029305; Sat, 15 Nov 2003 19:53:36 -0800 (PST) (envelope-from rwatson) Message-Id: <200311160353.hAG3raZA029305@repoman.freebsd.org> From: Robert Watson Date: Sat, 15 Nov 2003 19:53:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 03:53:38 -0000 rwatson 2003/11/15 19:53:36 PST FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: When implementing getsockopt() for SO_LABEL and SO_PEERLABEL, make sure to sooptcopyin() the (struct mac) so that the MAC Framework knows which label types are being requested. This fixes process queries of socket labels. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.158 +8 -0 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 20:08:17 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DAB316A4CE; Sat, 15 Nov 2003 20:08:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A836543FA3; Sat, 15 Nov 2003 20:08:16 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG48GXJ030792; Sat, 15 Nov 2003 20:08:16 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG48Gg4030791; Sat, 15 Nov 2003 20:08:16 -0800 (PST) (envelope-from tjr) Message-Id: <200311160408.hAG48Gg4030791@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Nov 2003 20:08:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys statfs.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 04:08:17 -0000 tjr 2003/11/15 20:08:16 PST FreeBSD src repository Modified files: lib/libc/sys statfs.2 Log: Resync. struct statfs and flag definitions with sys/mount.h. Revision Changes Path 1.22 +57 -22 src/lib/libc/sys/statfs.2 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 20:29:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8F1316A4CE; Sat, 15 Nov 2003 20:29:56 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 277C843F85; Sat, 15 Nov 2003 20:29:56 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 1F24D2ED44D; Sat, 15 Nov 2003 20:29:56 -0800 (PST) Date: Sat, 15 Nov 2003 20:29:56 -0800 From: Alfred Perlstein To: Warner Losh Message-ID: <20031116042956.GT35957@elvis.mu.org> References: <200311160000.hAG007LD009515@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311160000.hAG007LD009515@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules/nfsclient Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 04:29:57 -0000 * Warner Losh [031115 16:00] wrote: > imp 2003/11/15 16:00:07 PST > > FreeBSD src repository > > Modified files: > sys/modules/nfsclient Makefile > Log: > Quick hack to make the nfsclient.ko loadable again. This brings in > the nfsv4 files. It is intended to be a short-term bridge while > alfred deals with the problem in a better way (eg, don't hesitate to > back this out when the real fix comes along). I've not heard back > from alfred in a few hours and other people are hitting this problem. > > Approved by: markm, rwatson, grog, murray Thanks, I was looking at splitting this up, but got side tracked by sleep requirements. I'll see what I can do to seperate them but I'm not sure it's going to happen before the release. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 20:32:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 226C616A4CE; Sat, 15 Nov 2003 20:32:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AFE843F85; Sat, 15 Nov 2003 20:32:46 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG4WkXJ031847; Sat, 15 Nov 2003 20:32:46 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG4WkOl031846; Sat, 15 Nov 2003 20:32:46 -0800 (PST) (envelope-from rwatson) Message-Id: <200311160432.hAG4WkOl031846@repoman.freebsd.org> From: Robert Watson Date: Sat, 15 Nov 2003 20:32:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/posix1e mac_text.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 04:32:47 -0000 rwatson 2003/11/15 20:32:46 PST FreeBSD src repository Modified files: lib/libc/posix1e mac_text.3 Log: Memory allocated by mac_to_text() must be freed using free(3) not mac_free(3), which is used only for variables of type mac_t in the FreeBSD implementation. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.10 +15 -2 src/lib/libc/posix1e/mac_text.3 From owner-cvs-src@FreeBSD.ORG Sat Nov 15 20:57:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28A3E16A4CE; Sat, 15 Nov 2003 20:57:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F1A643FBD; Sat, 15 Nov 2003 20:57:28 -0800 (PST) (envelope-from gordon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG4vSXJ038398; Sat, 15 Nov 2003 20:57:28 -0800 (PST) (envelope-from gordon@repoman.freebsd.org) Received: (from gordon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG4vSH1038397; Sat, 15 Nov 2003 20:57:28 -0800 (PST) (envelope-from gordon) Message-Id: <200311160457.hAG4vSH1038397@repoman.freebsd.org> From: Gordon Tetlow Date: Sat, 15 Nov 2003 20:57:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin Makefile.inc src/sbin Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 04:57:29 -0000 gordon 2003/11/15 20:57:28 PST FreeBSD src repository Modified files: bin Makefile.inc sbin Makefile.inc Log: Change the default for binaries in /bin and /sbin from statically to dynamically linked. This has been a long time coming with the move of critical libraries from /usr/lib to /lib. If you don't feel comfortable with dynamically linked binaries in your root partition, now is the time to define NO_DYNAMICROOT in your make.conf. Approved by: re Revision Changes Path 1.19 +1 -1 src/bin/Makefile.inc 1.11 +1 -1 src/sbin/Makefile.inc From owner-cvs-src@FreeBSD.ORG Sat Nov 15 21:03:46 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 856C016A4CE; Sat, 15 Nov 2003 21:03:46 -0800 (PST) Received: from green.bikeshed.org (localhost [127.0.0.1]) by green.bikeshed.org (8.12.10/8.12.9) with ESMTP id hAG53jcR058861; Sun, 16 Nov 2003 00:03:45 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost)hAG53j2t058858; Sun, 16 Nov 2003 00:03:45 -0500 (EST) Message-Id: <200311160503.hAG53j2t058858@green.bikeshed.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Bruce Evans In-Reply-To: Message from Bruce Evans <20031115094529.H10567@gamplex.bde.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 16 Nov 2003 00:03:45 -0500 Sender: green@green.bikeshed.org cc: Brian Feldman cc: src-committers@FreeBSD.org cc: Robert Watson cc: John Baldwin cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 05:03:46 -0000 Bruce Evans wrote: > On Fri, 14 Nov 2003, Robert Watson wrote: > > > On Fri, 14 Nov 2003, John Baldwin wrote: > > > > > On 14-Nov-2003 Brian Feldman wrote: > > > > green 2003/11/14 08:04:11 PST > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/conf kern.post.mk kmod.mk > > > > Log: > > > > Include opt_global.h in the modules build, when building from a normal > > > > kernel build. This makes it possible for me not to get pissed off that > > > > random.ko crashes the system trying to rdtsc() when the i386/cpu.h > > > > support code decides it's okay to call that op when neither I386_CPU or > > > > I486_CPU is defined. I guess it also makes WITNESS/INVARIANTS defines > > > > get picked up by the modules. > > Ugh. > > > > WITNESS doesn't matter as all calls to it are done in the actual locking > > > code itself which does not lives in modules. Modules always call the > > > locking functions and don't inline locking operations. > > WITNESS actually has non-broken support for modules. Modules cannot depend > on options, since they must work for all kernels. > > Here is a fix to unbreak the rdtsc() call similarly. I dunno, Bruce; I don't really agree with you there. Modules are installed, as they are built in the src/sys/arch/compile/KERNEL directories, into the same directories as the kernel. This implies they're matched with the kernel. I think depending on options in those modules is totally, perfectly fine. I think it's also fine for modules built outside of a kernel build to make sure to work with kernels compiled with any options whatsoever. The modules built by ports should be the same way. There shouldn't be any options in the kernel build that can break "generic" modules, but the modules built along side the kernel you're building aren't "generic" modules. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Sat Nov 15 21:13:03 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C02B016A4CF; Sat, 15 Nov 2003 21:13:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37D0C43F3F; Sat, 15 Nov 2003 21:13:03 -0800 (PST) (envelope-from gordon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG5D3XJ039922; Sat, 15 Nov 2003 21:13:03 -0800 (PST) (envelope-from gordon@repoman.freebsd.org) Received: (from gordon@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG5D2rW039921; Sat, 15 Nov 2003 21:13:02 -0800 (PST) (envelope-from gordon) Message-Id: <200311160513.hAG5D2rW039921@repoman.freebsd.org> From: Gordon Tetlow Date: Sat, 15 Nov 2003 21:13:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 05:13:03 -0000 gordon 2003/11/15 21:13:02 PST FreeBSD src repository Modified files: sys/sys param.h Log: Bump version to indicate dynamically linked /bin and /sbin is the default. Revision Changes Path 1.174 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 21:15:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6E4416A4CE; Sat, 15 Nov 2003 21:15:04 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64DD243FDD; Sat, 15 Nov 2003 21:15:03 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAG5EveG021237; Sat, 15 Nov 2003 22:14:57 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sat, 15 Nov 2003 22:14:29 -0700 (MST) Message-Id: <20031115.221429.103565413.imp@bsdimp.com> To: bright@mu.org From: "M. Warner Losh" In-Reply-To: <20031116042956.GT35957@elvis.mu.org> References: <200311160000.hAG007LD009515@repoman.freebsd.org> <20031116042956.GT35957@elvis.mu.org> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules/nfsclient Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 05:15:04 -0000 In message: <20031116042956.GT35957@elvis.mu.org> Alfred Perlstein writes: : * Warner Losh [031115 16:00] wrote: : > imp 2003/11/15 16:00:07 PST : > : > FreeBSD src repository : > : > Modified files: : > sys/modules/nfsclient Makefile : > Log: : > Quick hack to make the nfsclient.ko loadable again. This brings in : > the nfsv4 files. It is intended to be a short-term bridge while : > alfred deals with the problem in a better way (eg, don't hesitate to : > back this out when the real fix comes along). I've not heard back : > from alfred in a few hours and other people are hitting this problem. : > : > Approved by: markm, rwatson, grog, murray : : Thanks, I was looking at splitting this up, but got side tracked by : sleep requirements. I'll see what I can do to seperate them but : I'm not sure it's going to happen before the release. No rush on my account. I just wanted a nfsclient.ko that loaded. When you can properly subset things, feel free to commit it (subject to whatever code freeze we're under). I don't think it is a critical things to do for 5.2. Warner From owner-cvs-src@FreeBSD.ORG Sat Nov 15 22:11:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFF0C16A4CE; Sat, 15 Nov 2003 22:11:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 195EB43FDF; Sat, 15 Nov 2003 22:11:27 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG6BQXJ043522; Sat, 15 Nov 2003 22:11:26 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG6BQSk043521; Sat, 15 Nov 2003 22:11:26 -0800 (PST) (envelope-from alc) Message-Id: <200311160611.hAG6BQSk043521@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Nov 2003 22:11:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha vm_machdep.c src/sys/alpha/include sf_buf.h src/sys/amd64/amd64 vm_machdep.c src/sys/amd64/include sf_buf.h src/sys/i386/i386 vm_machdep.c src/sys/i386/include sf_buf.h src/sys/ia64/ia64 vm_machdep.c src/sys/ia64/include ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 06:11:28 -0000 alc 2003/11/15 22:11:26 PST FreeBSD src repository Modified files: sys/alpha/alpha vm_machdep.c sys/amd64/amd64 vm_machdep.c sys/i386/i386 vm_machdep.c sys/ia64/ia64 vm_machdep.c sys/kern uipc_cow.c uipc_syscalls.c sys/powerpc/powerpc vm_machdep.c sys/sparc64/sparc64 vm_machdep.c sys/sys socketvar.h Added files: sys/alpha/include sf_buf.h sys/amd64/include sf_buf.h sys/i386/include sf_buf.h sys/ia64/include sf_buf.h sys/powerpc/include sf_buf.h sys/sparc64/include sf_buf.h sys/sys sf_buf.h Log: - Modify alpha's sf_buf implementation to use the direct virtual-to- physical mapping. - Move the sf_buf API to its own header file; make struct sf_buf's definition machine dependent. In this commit, we remove an unnecessary field from struct sf_buf on the alpha, amd64, and ia64. Ultimately, we may eliminate struct sf_buf on those architecures except as an opaque pointer that references a vm page. Revision Changes Path 1.95 +2 -8 src/sys/alpha/alpha/vm_machdep.c 1.1 +57 -0 src/sys/alpha/include/sf_buf.h (new) 1.221 +1 -2 src/sys/amd64/amd64/vm_machdep.c 1.1 +57 -0 src/sys/amd64/include/sf_buf.h (new) 1.217 +1 -1 src/sys/i386/i386/vm_machdep.c 1.1 +56 -0 src/sys/i386/include/sf_buf.h (new) 1.75 +1 -2 src/sys/ia64/ia64/vm_machdep.c 1.1 +57 -0 src/sys/ia64/include/sf_buf.h (new) 1.16 +5 -3 src/sys/kern/uipc_cow.c 1.158 +4 -3 src/sys/kern/uipc_syscalls.c 1.1 +56 -0 src/sys/powerpc/include/sf_buf.h (new) 1.92 +1 -1 src/sys/powerpc/powerpc/vm_machdep.c 1.1 +56 -0 src/sys/sparc64/include/sf_buf.h (new) 1.54 +1 -1 src/sys/sparc64/sparc64/vm_machdep.c 1.1 +40 -0 src/sys/sys/sf_buf.h (new) 1.108 +0 -9 src/sys/sys/socketvar.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 22:43:26 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E615516A4CF; Sat, 15 Nov 2003 22:43:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CFB943FBF; Sat, 15 Nov 2003 22:43:26 -0800 (PST) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG6hQXJ045128; Sat, 15 Nov 2003 22:43:26 -0800 (PST) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG6hPMZ045125; Sat, 15 Nov 2003 22:43:25 -0800 (PST) (envelope-from kensmith) Message-Id: <200311160643.hAG6hPMZ045125@repoman.freebsd.org> From: Ken Smith Date: Sat, 15 Nov 2003 22:43:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/gpt migrate.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 06:43:27 -0000 kensmith 2003/11/15 22:43:25 PST FreeBSD src repository (doc committer) Modified files: sbin/gpt migrate.c Log: - Provide default values for LABELOFFSET and LABELSECTOR so it compiles on all architectures. Approved by: marcel Revision Changes Path 1.6 +11 -0 src/sbin/gpt/migrate.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 22:45:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D940F16A4CE; Sat, 15 Nov 2003 22:45:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F20443F93; Sat, 15 Nov 2003 22:45:27 -0800 (PST) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG6jRXJ045294; Sat, 15 Nov 2003 22:45:27 -0800 (PST) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG6jQ9Z045293; Sat, 15 Nov 2003 22:45:26 -0800 (PST) (envelope-from kensmith) Message-Id: <200311160645.hAG6jQ9Z045293@repoman.freebsd.org> From: Ken Smith Date: Sat, 15 Nov 2003 22:45:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/gpt add.c recover.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 06:45:28 -0000 kensmith 2003/11/15 22:45:26 PST FreeBSD src repository (doc committer) Modified files: sbin/gpt add.c recover.c Log: - Add GPT header/table recovery command - Minor related cleanup in add command Approved by: marcel Revision Changes Path 1.5 +3 -2 src/sbin/gpt/add.c 1.4 +89 -2 src/sbin/gpt/recover.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 23:08:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5A1F16A4CE; Sat, 15 Nov 2003 23:08:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CDD043FBF; Sat, 15 Nov 2003 23:08:28 -0800 (PST) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG78SXJ047101; Sat, 15 Nov 2003 23:08:28 -0800 (PST) (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG78Rh4047100; Sat, 15 Nov 2003 23:08:28 -0800 (PST) (envelope-from wes) Message-Id: <200311160708.hAG78Rh4047100@repoman.freebsd.org> From: Wes Peters Date: Sat, 15 Nov 2003 23:08:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ufs/ffs fs.h src/sbin/newfs mkfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 07:08:29 -0000 wes 2003/11/15 23:08:27 PST FreeBSD src repository Modified files: sys/ufs/ffs fs.h sbin/newfs mkfs.c Log: Write the UFS2 superblock with a 'BAD' magic number at the beginning of newfs, to signify the newfs operation has not yet completed. Re- write the superblock with the correct magic number once all of the cylinder groups have been created to show the operation has finished. Sponsored by: St. Bernard Software Revision Changes Path 1.80 +4 -1 src/sbin/newfs/mkfs.c 1.40 +1 -0 src/sys/ufs/ffs/fs.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 23:10:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBC3B16A4CE; Sat, 15 Nov 2003 23:10:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCB043FAF; Sat, 15 Nov 2003 23:10:56 -0800 (PST) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG7AuXJ047312; Sat, 15 Nov 2003 23:10:56 -0800 (PST) (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG7AtRR047311; Sat, 15 Nov 2003 23:10:55 -0800 (PST) (envelope-from wes) Message-Id: <200311160710.hAG7AtRR047311@repoman.freebsd.org> From: Wes Peters Date: Sat, 15 Nov 2003 23:10:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/fsck_ffs setup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 07:10:57 -0000 wes 2003/11/15 23:10:55 PST FreeBSD src repository Modified files: sbin/fsck_ffs setup.c Log: Catch and report on filesystems that were interrupted during newfs, sporting the new 'BAD' magic number. Exit with a unique error code (11) so callers who care about this can respond appropriately. Revision Changes Path 1.45 +12 -0 src/sbin/fsck_ffs/setup.c From owner-cvs-src@FreeBSD.ORG Sat Nov 15 23:17:31 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D6C116A4CE; Sat, 15 Nov 2003 23:17:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7898C43FBD; Sat, 15 Nov 2003 23:17:30 -0800 (PST) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG7HUXJ047611; Sat, 15 Nov 2003 23:17:30 -0800 (PST) (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG7HUxD047610; Sat, 15 Nov 2003 23:17:30 -0800 (PST) (envelope-from wes) Message-Id: <200311160717.hAG7HUxD047610@repoman.freebsd.org> From: Wes Peters Date: Sat, 15 Nov 2003 23:17:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 07:17:31 -0000 wes 2003/11/15 23:17:30 PST FreeBSD src repository Modified files: sbin/newfs mkfs.c newfs.c newfs.h Log: Add the -E command line option to force error conditions for testing. Sponsord by: St. Bernard Software Revision Changes Path 1.81 +12 -1 src/sbin/newfs/mkfs.c 1.74 +5 -1 src/sbin/newfs/newfs.c 1.14 +1 -0 src/sbin/newfs/newfs.h From owner-cvs-src@FreeBSD.ORG Sat Nov 15 23:22:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FAD116A4CE; Sat, 15 Nov 2003 23:22:47 -0800 (PST) Received: from smtp.omnis.com (smtp.omnis.com [216.239.128.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5ACB443FB1; Sat, 15 Nov 2003 23:22:46 -0800 (PST) (envelope-from wes@softweyr.com) Received: from softweyr.homeunix.net (66-91-236-204.san.rr.com [66.91.236.204]) by smtp-relay.omnis.com (Postfix) with ESMTP id 1965A9BE81; Sat, 15 Nov 2003 23:22:32 -0800 (PST) From: Wes Peters Organization: Softweyr To: Wes Peters , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Date: Sat, 15 Nov 2003 23:22:45 -0800 User-Agent: KMail/1.5.4 References: <200311160710.hAG7AtRR047311@repoman.freebsd.org> In-Reply-To: <200311160710.hAG7AtRR047311@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311152322.45260.wes@softweyr.com> Subject: Re: cvs commit: src/sbin/fsck_ffs setup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 07:22:47 -0000 On Saturday 15 November 2003 11:10 pm, Wes Peters wrote: > wes 2003/11/15 23:10:55 PST > > FreeBSD src repository > > Modified files: > sbin/fsck_ffs setup.c > Log: > Catch and report on filesystems that were interrupted during newfs, > sporting the new 'BAD' magic number. Exit with a unique error code > (11) so callers who care about this can respond appropriately. I expect someone will soon follow up with (perhaps several) better ways to code the BAD_MAGIC_MSG when the code is indented that far to the right. Thanks in advance for the help. ;^) -- Where am I, and what am I doing in this handbasket? Wes Peters wes@softweyr.com From owner-cvs-src@FreeBSD.ORG Sat Nov 15 23:50:15 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C6FD16A4CE; Sat, 15 Nov 2003 23:50:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1293643FA3; Sat, 15 Nov 2003 23:50:15 -0800 (PST) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAG7oEXJ048836; Sat, 15 Nov 2003 23:50:14 -0800 (PST) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAG7oEMB048835; Sat, 15 Nov 2003 23:50:14 -0800 (PST) (envelope-from green) Message-Id: <200311160750.hAG7oEMB048835@repoman.freebsd.org> From: Brian Feldman Date: Sat, 15 Nov 2003 23:50:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 07:50:15 -0000 green 2003/11/15 23:50:14 PST FreeBSD src repository Modified files: sys/conf kmod.mk Log: It appears opt_global.h may cause opt_ddb.h to be needed. Adding it with the full path on the command line like with -include opt_global.h currently unbreaks tinderbox. Revision Changes Path 1.147 +3 -1 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Sat Nov 15 23:56:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32DF816A4CE; Sat, 15 Nov 2003 23:56:48 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EE5B43FCB; Sat, 15 Nov 2003 23:56:47 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAG7ukeG022455; Sun, 16 Nov 2003 00:56:46 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sun, 16 Nov 2003 00:56:18 -0700 (MST) Message-Id: <20031116.005618.126204603.imp@bsdimp.com> To: green@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200311160750.hAG7oEMB048835@repoman.freebsd.org> References: <200311160750.hAG7oEMB048835@repoman.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 16 Nov 2003 07:56:48 -0000 In message: <200311160750.hAG7oEMB048835@repoman.freebsd.org> Brian Feldman writes: : green 2003/11/15 23:50:14 PST : : FreeBSD src repository : : Modified files: : sys/conf kmod.mk : Log: : It appears opt_global.h may cause opt_ddb.h to be needed. Adding it : with the full path on the command line like with -include opt_global.h : currently unbreaks tinderbox. This change has already been fixed in 1.146. Please back it out since it is superfluous. Warner