From owner-cvs-src@FreeBSD.ORG Sun Aug 28 00:37:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B5DB16A467; Sun, 28 Aug 2005 00:37:31 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1377043DA5; Sun, 28 Aug 2005 00:14:22 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S0ELlp097906; Sun, 28 Aug 2005 00:14:21 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S0ELcD097905; Sun, 28 Aug 2005 00:14:21 GMT (envelope-from pjd) Message-Id: <200508280014.j7S0ELcD097905@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 28 Aug 2005 00:14:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/label g_label_ntfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 00:37:32 -0000 pjd 2005-08-28 00:14:21 UTC FreeBSD src repository Modified files: sys/geom/label g_label_ntfs.c Log: Verify length of the data to read as well. Revision Changes Path 1.2 +2 -0 src/sys/geom/label/g_label_ntfs.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 00:37:32 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E27A16A446; Sun, 28 Aug 2005 00:37:32 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 991FC43DED; Sun, 28 Aug 2005 00:19:54 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S0JsFP098132; Sun, 28 Aug 2005 00:19:54 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S0JsmK098131; Sun, 28 Aug 2005 00:19:54 GMT (envelope-from alc) Message-Id: <200508280019.j7S0JsmK098131@repoman.freebsd.org> From: Alan Cox Date: Sun, 28 Aug 2005 00:19:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern link_elf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 00:37:32 -0000 alc 2005-08-28 00:19:54 UTC FreeBSD src repository Modified files: sys/kern link_elf.c Log: Revert the previous change for two reasons: (1) If vm_map_find() succeeds but vm_map_wire() fails, then a vm object, vm map entries, and kernel_map free space is leaked and (2) unwiring is handled automatically by vm_map_remove(). Suggested by: tegge Revision Changes Path 1.82 +10 -17 src/sys/kern/link_elf.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 00:54:12 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67C9516A424; Sun, 28 Aug 2005 00:54:12 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 377E843E47; Sun, 28 Aug 2005 00:24:59 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S0OxVE098376; Sun, 28 Aug 2005 00:24:59 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S0OxfA098375; Sun, 28 Aug 2005 00:24:59 GMT (envelope-from alc) Message-Id: <200508280024.j7S0OxfA098375@repoman.freebsd.org> From: Alan Cox Date: Sun, 28 Aug 2005 00:24:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern link_elf.c link_elf_obj.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 00:54:13 -0000 alc 2005-08-28 00:24:59 UTC FreeBSD src repository Modified files: sys/kern link_elf.c link_elf_obj.c Log: Eliminate an unneeded reference on a vm object. If, in fact, the nearby vm_map_find() fails, then the excess reference causes the vm object to be leaked. Reviewed by: tegge Revision Changes Path 1.83 +0 -2 src/sys/kern/link_elf.c 1.88 +0 -2 src/sys/kern/link_elf_obj.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 02:30:51 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AE2916A41F; Sun, 28 Aug 2005 02:30:51 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE48D43D45; Sun, 28 Aug 2005 02:30:50 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S2UoTG011068; Sun, 28 Aug 2005 02:30:50 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S2Uo7g011067; Sun, 28 Aug 2005 02:30:50 GMT (envelope-from murray) Message-Id: <200508280230.j7S2Uo7g011067@repoman.freebsd.org> From: Murray Stokely Date: Sun, 28 Aug 2005 02:30:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/sysinstall dist.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 02:30:51 -0000 murray 2005-08-28 02:30:50 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall dist.c Log: Update number and size of Ports Collection. MFC after: 1 day Revision Changes Path 1.240 +2 -2 src/usr.sbin/sysinstall/dist.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 04:31:41 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34BB316A420; Sun, 28 Aug 2005 04:31:41 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E710443D46; Sun, 28 Aug 2005 04:31:40 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S4Ve0p015666; Sun, 28 Aug 2005 04:31:40 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S4VewF015665; Sun, 28 Aug 2005 04:31:40 GMT (envelope-from rwatson) Message-Id: <200508280431.j7S4VewF015665@repoman.freebsd.org> From: Robert Watson Date: Sun, 28 Aug 2005 04:31:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 04:31:41 -0000 rwatson 2005-08-28 04:31:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net rtsock.c Log: Merge rtsock.c:1.127 from HEAD to RELENG_6: De-spl parts of the routing socket code now generally protected through locking; leave some spl references around code where there are open questions about global variable references. Also, add an XXX regarding locking in sysctl. Approved by: re (scottl) Revision Changes Path 1.123.2.3 +20 -40 src/sys/net/rtsock.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 04:43:49 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 975E416A420; Sun, 28 Aug 2005 04:43:49 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54C5743D45; Sun, 28 Aug 2005 04:43:49 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S4hnLb016165; Sun, 28 Aug 2005 04:43:49 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S4hnun016164; Sun, 28 Aug 2005 04:43:49 GMT (envelope-from gshapiro) Message-Id: <200508280443.j7S4hnun016164@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 28 Aug 2005 04:43:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 04:43:49 -0000 gshapiro 2005-08-28 04:43:49 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: I must have missed the release note for the sendmail 8.13.4 import. Revision Changes Path 1.887 +3 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Sun Aug 28 04:50:12 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63FBB16A41F; Sun, 28 Aug 2005 04:50:12 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23C9C43D45; Sun, 28 Aug 2005 04:50:12 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S4oCTe023355; Sun, 28 Aug 2005 04:50:12 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S4oBdQ023354; Sun, 28 Aug 2005 04:50:11 GMT (envelope-from alc) Message-Id: <200508280450.j7S4oBdQ023354@repoman.freebsd.org> From: Alan Cox Date: Sun, 28 Aug 2005 04:50:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern link_elf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 04:50:12 -0000 alc 2005-08-28 04:50:11 UTC FreeBSD src repository Modified files: sys/kern link_elf.c Log: Correctly handle vm_map_wire()'s failure. (See also revisions 1.81 and 1.82.) Reviewed by: tegge Revision Changes Path 1.84 +5 -1 src/sys/kern/link_elf.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 04:58:26 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ACBF16A41F; Sun, 28 Aug 2005 04:58:26 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02EFF43D45; Sun, 28 Aug 2005 04:58:26 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S4wPK7024031; Sun, 28 Aug 2005 04:58:25 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S4wPSH024030; Sun, 28 Aug 2005 04:58:25 GMT (envelope-from gshapiro) Message-Id: <200508280458.j7S4wPSH024030@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 28 Aug 2005 04:58:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/contrib/sendmail FREEBSD-upgrade RELEASE_NOTES src/contrib/sendmail/cf README src/contrib/sendmail/cf/cf submit.cf src/contrib/sendmail/cf/m4 version.m4 src/contrib/sendmail/cf/ostype freebsd6.m4 src/contrib/sendmail/doc/op ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 04:58:26 -0000 gshapiro 2005-08-28 04:58:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) contrib/sendmail FREEBSD-upgrade RELEASE_NOTES contrib/sendmail/cf README contrib/sendmail/cf/cf submit.cf contrib/sendmail/cf/m4 version.m4 contrib/sendmail/doc/op op.me contrib/sendmail/include/sm conf.h shm.h contrib/sendmail/libsm Makefile.m4 ldap.c shm.c t-shm.c contrib/sendmail/src README TRACEFLAGS collect.c conf.c daemon.c deliver.c domain.c envelope.c map.c mci.c milter.c parseaddr.c queue.c sendmail.h srvrsmtp.c tls.c usersmtp.c version.c lib/libsm Makefile release/doc/en_US.ISO8859-1/relnotes/common new.sgml usr.sbin/sendmail Makefile Added files: (Branch: RELENG_5) contrib/sendmail/cf/ostype freebsd6.m4 contrib/sendmail/include/sm sem.h contrib/sendmail/libsm sem.c t-sem.c Log: MFC: sendmail 8.13.4 and hoststat(8)/purgestat(8) man page linking Reminder by: Terry Kennedy Revision Changes Path 1.26.2.2 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.22.2.2 +55 -1 src/contrib/sendmail/RELEASE_NOTES 1.1.1.22.2.1 +7 -11 src/contrib/sendmail/cf/README 1.1.1.12.2.2 +3 -3 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.22.2.2 +2 -2 src/contrib/sendmail/cf/m4/version.m4 1.1.1.1.4.1 +20 -0 src/contrib/sendmail/cf/ostype/freebsd6.m4 (new) 1.1.1.22.2.1 +15 -8 src/contrib/sendmail/doc/op/op.me 1.1.1.11.2.2 +15 -7 src/contrib/sendmail/include/sm/conf.h 1.1.1.1.4.1 +59 -0 src/contrib/sendmail/include/sm/sem.h (new) 1.1.1.5.2.1 +3 -2 src/contrib/sendmail/include/sm/shm.h 1.1.1.3.2.2 +4 -4 src/contrib/sendmail/libsm/Makefile.m4 1.1.1.8.2.2 +16 -14 src/contrib/sendmail/libsm/ldap.c 1.1.1.1.4.1 +201 -0 src/contrib/sendmail/libsm/sem.c (new) 1.1.1.5.2.1 +36 -2 src/contrib/sendmail/libsm/shm.c 1.1.1.1.4.1 +344 -0 src/contrib/sendmail/libsm/t-sem.c (new) 1.1.1.5.2.2 +8 -2 src/contrib/sendmail/libsm/t-shm.c 1.1.1.21.2.2 +5 -2 src/contrib/sendmail/src/README 1.1.1.11.2.1 +2 -1 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.19.2.2 +3 -2 src/contrib/sendmail/src/collect.c 1.26.2.2 +36 -10 src/contrib/sendmail/src/conf.c 1.1.1.19.2.2 +78 -14 src/contrib/sendmail/src/daemon.c 1.1.1.21.2.2 +15 -1 src/contrib/sendmail/src/deliver.c 1.1.1.14.2.2 +5 -4 src/contrib/sendmail/src/domain.c 1.1.1.13.2.1 +2 -2 src/contrib/sendmail/src/envelope.c 1.1.1.19.2.2 +29 -13 src/contrib/sendmail/src/map.c 1.17.2.2 +3 -3 src/contrib/sendmail/src/mci.c 1.1.1.19.2.2 +25 -3 src/contrib/sendmail/src/milter.c 1.1.1.20.2.2 +16 -3 src/contrib/sendmail/src/parseaddr.c 1.1.1.21.2.2 +199 -108 src/contrib/sendmail/src/queue.c 1.1.1.23.2.2 +6 -5 src/contrib/sendmail/src/sendmail.h 1.1.1.20.2.2 +21 -21 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.9.2.2 +4 -3 src/contrib/sendmail/src/tls.c 1.1.1.18.2.2 +1 -3 src/contrib/sendmail/src/usersmtp.c 1.1.1.22.2.2 +2 -2 src/contrib/sendmail/src/version.c 1.5.2.3 +1 -1 src/lib/libsm/Makefile 1.761.2.51 +2 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml 1.46.2.3 +2 -0 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Sun Aug 28 05:11:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAE7216A41F; Sun, 28 Aug 2005 05:11:56 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81F3943D45; Sun, 28 Aug 2005 05:11:56 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S5BuYD024917; Sun, 28 Aug 2005 05:11:56 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S5Bu8g024916; Sun, 28 Aug 2005 05:11:56 GMT (envelope-from gshapiro) Message-Id: <200508280511.j7S5Bu8g024916@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Sun, 28 Aug 2005 05:11:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/contrib/sendmail FREEBSD-upgrade RELEASE_NOTES src/contrib/sendmail/cf README src/contrib/sendmail/cf/cf submit.cf src/contrib/sendmail/cf/m4 version.m4 src/contrib/sendmail/cf/ostype freebsd6.m4 src/contrib/sendmail/doc/op ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 05:11:57 -0000 gshapiro 2005-08-28 05:11:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/sendmail FREEBSD-upgrade RELEASE_NOTES contrib/sendmail/cf README contrib/sendmail/cf/cf submit.cf contrib/sendmail/cf/m4 version.m4 contrib/sendmail/doc/op op.me contrib/sendmail/include/sm conf.h shm.h contrib/sendmail/libsm Makefile.m4 ldap.c shm.c t-shm.c contrib/sendmail/src README TRACEFLAGS collect.c conf.c daemon.c deliver.c domain.c envelope.c map.c mci.c milter.c parseaddr.c queue.c sendmail.h srvrsmtp.c tls.c usersmtp.c version.c lib/libsm Makefile release/doc/en_US.ISO8859-1/relnotes/common new.sgml usr.sbin/sendmail Makefile Added files: (Branch: RELENG_4) contrib/sendmail/cf/ostype freebsd6.m4 contrib/sendmail/include/sm sem.h contrib/sendmail/libsm sem.c t-sem.c Log: MFC: sendmail 8.13.4 and hoststat(8)/purgestat(8) man page linking Reminder by: Terry Kennedy Revision Changes Path 1.1.2.24 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.3.2.20 +55 -1 src/contrib/sendmail/RELEASE_NOTES 1.1.1.3.2.19 +7 -11 src/contrib/sendmail/cf/README 1.1.1.1.2.13 +3 -3 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.3.2.20 +2 -2 src/contrib/sendmail/cf/m4/version.m4 1.1.1.1.6.1 +20 -0 src/contrib/sendmail/cf/ostype/freebsd6.m4 (new) 1.1.1.3.2.19 +15 -8 src/contrib/sendmail/doc/op/op.me 1.1.1.1.2.12 +15 -7 src/contrib/sendmail/include/sm/conf.h 1.1.1.1.6.1 +59 -0 src/contrib/sendmail/include/sm/sem.h (new) 1.1.1.1.2.5 +3 -2 src/contrib/sendmail/include/sm/shm.h 1.1.1.1.2.5 +4 -4 src/contrib/sendmail/libsm/Makefile.m4 1.1.1.1.2.8 +16 -14 src/contrib/sendmail/libsm/ldap.c 1.1.1.1.6.1 +201 -0 src/contrib/sendmail/libsm/sem.c (new) 1.1.1.1.2.4 +36 -2 src/contrib/sendmail/libsm/shm.c 1.1.1.1.6.1 +344 -0 src/contrib/sendmail/libsm/t-sem.c (new) 1.1.1.1.2.5 +8 -2 src/contrib/sendmail/libsm/t-shm.c 1.1.1.3.2.19 +5 -2 src/contrib/sendmail/src/README 1.1.1.2.6.9 +2 -1 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.4.2.16 +3 -2 src/contrib/sendmail/src/collect.c 1.5.2.19 +36 -10 src/contrib/sendmail/src/conf.c 1.1.1.3.2.17 +78 -14 src/contrib/sendmail/src/daemon.c 1.1.1.3.2.19 +15 -1 src/contrib/sendmail/src/deliver.c 1.1.1.3.2.12 +5 -4 src/contrib/sendmail/src/domain.c 1.1.1.3.2.10 +2 -2 src/contrib/sendmail/src/envelope.c 1.1.1.3.2.18 +29 -13 src/contrib/sendmail/src/map.c 1.3.6.15 +3 -3 src/contrib/sendmail/src/mci.c 1.1.1.1.2.21 +25 -3 src/contrib/sendmail/src/milter.c 1.1.1.2.6.19 +16 -3 src/contrib/sendmail/src/parseaddr.c 1.1.1.3.2.20 +199 -108 src/contrib/sendmail/src/queue.c 1.1.1.4.2.21 +6 -5 src/contrib/sendmail/src/sendmail.h 1.1.1.2.6.19 +21 -21 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.1.2.9 +4 -3 src/contrib/sendmail/src/tls.c 1.1.1.3.2.16 +1 -3 src/contrib/sendmail/src/usersmtp.c 1.1.1.3.2.22 +2 -2 src/contrib/sendmail/src/version.c 1.1.2.6 +1 -1 src/lib/libsm/Makefile 1.22.2.429 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml 1.15.2.18 +2 -0 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Sun Aug 28 05:38:41 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F64C16A41F; Sun, 28 Aug 2005 05:38:41 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EB7443D45; Sun, 28 Aug 2005 05:38:41 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S5cfF8025936; Sun, 28 Aug 2005 05:38:41 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S5cfUP025935; Sun, 28 Aug 2005 05:38:41 GMT (envelope-from alc) Message-Id: <200508280538.j7S5cfUP025935@repoman.freebsd.org> From: Alan Cox Date: Sun, 28 Aug 2005 05:38:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern link_elf_obj.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 05:38:41 -0000 alc 2005-08-28 05:38:41 UTC FreeBSD src repository Modified files: sys/kern link_elf_obj.c Log: Handle vm_map_wire()'s failure. Revision Changes Path 1.89 +5 -1 src/sys/kern/link_elf_obj.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 08:20:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C91316A449; Sun, 28 Aug 2005 08:20:43 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3545043D45; Sun, 28 Aug 2005 08:20:43 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S8KgJK079864; Sun, 28 Aug 2005 08:20:43 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S8Kgkj079861; Sun, 28 Aug 2005 08:20:42 GMT (envelope-from simon) Message-Id: <200508280820.j7S8Kgkj079861@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 28 Aug 2005 08:20:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/ja_JP.eucJP/hardware/common dev.sgml src/release/doc/ru_RU.KOI8-R/hardware/common dev.sgml src/release/doc/share/misc dev.archlist.txt src/release/doc/zh_CN.GB2312/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 08:20:43 -0000 simon 2005-08-28 08:20:42 UTC FreeBSD src repository (doc,ports committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/ja_JP.eucJP/hardware/common dev.sgml release/doc/ru_RU.KOI8-R/hardware/common dev.sgml release/doc/share/misc dev.archlist.txt release/doc/zh_CN.GB2312/hardware/common dev.sgml Log: Remove the el(4) device, which has been retired recently. Revision Changes Path 1.284 +0 -2 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.30 +0 -2 src/release/doc/ja_JP.eucJP/hardware/common/dev.sgml 1.15 +0 -2 src/release/doc/ru_RU.KOI8-R/hardware/common/dev.sgml 1.65 +0 -1 src/release/doc/share/misc/dev.archlist.txt 1.4 +0 -2 src/release/doc/zh_CN.GB2312/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Sun Aug 28 09:03:46 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F9C916A41F; Sun, 28 Aug 2005 09:03:46 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 603AC43D45; Sun, 28 Aug 2005 09:03:46 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S93kYb089061; Sun, 28 Aug 2005 09:03:46 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S93kNh089060; Sun, 28 Aug 2005 09:03:46 GMT (envelope-from yar) Message-Id: <200508280903.j7S93kNh089060@repoman.freebsd.org> From: Yar Tikhiy Date: Sun, 28 Aug 2005 09:03:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/netstat netstat.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 09:03:47 -0000 yar 2005-08-28 09:03:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/netstat netstat.1 Log: MFC rev. 1.52: List -W as one of the meaningful options to the -i (interfaces) display of netstat(1). Approved by: re (hrs) Revision Changes Path 1.50.8.2 +1 -1 src/usr.bin/netstat/netstat.1 From owner-cvs-src@FreeBSD.ORG Sun Aug 28 09:08:06 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ED0116A41F; Sun, 28 Aug 2005 09:08:06 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4541643D45; Sun, 28 Aug 2005 09:08:06 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7S986fh089592; Sun, 28 Aug 2005 09:08:06 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7S9864O089591; Sun, 28 Aug 2005 09:08:06 GMT (envelope-from yar) Message-Id: <200508280908.j7S9864O089591@repoman.freebsd.org> From: Yar Tikhiy Date: Sun, 28 Aug 2005 09:08:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc rc.subr src/etc/defaults rc.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 09:08:06 -0000 yar 2005-08-28 09:08:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc rc.subr etc/defaults rc.conf Log: MFC defaults/rc.conf#1.259, rc.subr#1.37: Stop hard-coding an -M flag to mdmfs(8) in /etc/rc.subr. Now this flag can be set, or not set, for memory-backed file systems on individual basis, as illustrated by the rc.conf(5) variables tmpmfs_flags and varmfs_flags. The flag is set for those FS'en by default, in /etc/defaults/rc.conf, in order to stay compatible with the old rc.subr behaviour. Approved by: re (scottl) Revision Changes Path 1.252.2.2 +2 -2 src/etc/defaults/rc.conf 1.34.2.3 +1 -1 src/etc/rc.subr From owner-cvs-src@FreeBSD.ORG Sun Aug 28 10:38:03 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24B5216A41F; Sun, 28 Aug 2005 10:38:03 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4C4A43D45; Sun, 28 Aug 2005 10:38:02 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.52 (FreeBSD)) id 1E9KY5-0009Ak-Tn; Sun, 28 Aug 2005 11:38:01 +0100 Date: Sun, 28 Aug 2005 11:38:01 +0100 From: Ceri Davies To: Craig Rodrigues Message-ID: <20050828103801.GD99537@submonkey.net> Mail-Followup-To: Ceri Davies , Craig Rodrigues , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n2Pv11Ogg/Ox8ay5" Content-Disposition: inline In-Reply-To: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.9i Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 10:38:03 -0000 --n2Pv11Ogg/Ox8ay5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 24, 2005 at 02:21:12AM +0000, Craig Rodrigues wrote: > rodrigc 2005-08-24 02:21:12 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.sbin/sysinstall menus.c=20 > Log: > - Remove NTP servers which do not resolve in DNS. > - Use pool.ntp.org servers where possible, thanks to > Chuck Swiger . > - Update list of Swedish NTP servers, thanks to > Fredrik Lindberg . I only checked the UK servers at http://ntp.isc.org/bin/view/Servers/StratumTwoTimeServers, but from the one= s in the diff: ntp.exnet.com notify ntp0.uk.uu.net restrictedaccess,notify ntp1.uk.uu.net notify ntp2.uk.uu.net restrictedaccess,notify That leaves only numbers 1,6-9 from the new list usable. Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --n2Pv11Ogg/Ox8ay5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD4DBQFDEZQJocfcwTS3JF8RAnvCAKCsRZLFMXTRJUCPq5soeqLqFQHvqQCVH0Lo dUFJ6cixJIirpyHGU6038A== =KoB7 -----END PGP SIGNATURE----- --n2Pv11Ogg/Ox8ay5-- From owner-cvs-src@FreeBSD.ORG Sun Aug 28 13:11:10 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36D0716A41F; Sun, 28 Aug 2005 13:11:10 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5CEE43D58; Sun, 28 Aug 2005 13:11:08 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SDB8dq009118; Sun, 28 Aug 2005 13:11:08 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SDB8A9009117; Sun, 28 Aug 2005 13:11:08 GMT (envelope-from delphij) Message-Id: <200508281311.j7SDB8A9009117@repoman.freebsd.org> From: Xin LI Date: Sun, 28 Aug 2005 13:11:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/linux linux_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 13:11:10 -0000 delphij 2005-08-28 13:11:08 UTC FreeBSD src repository Modified files: sys/compat/linux linux_ioctl.c Log: Fix kernel build. Reported by: tinderbox Revision Changes Path 1.130 +1 -1 src/sys/compat/linux/linux_ioctl.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 15:07:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4670816A41F; Sun, 28 Aug 2005 15:07:31 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19A7543D4C; Sun, 28 Aug 2005 15:07:31 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SF7V8I014126; Sun, 28 Aug 2005 15:07:31 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SF7UTT014125; Sun, 28 Aug 2005 15:07:30 GMT (envelope-from marius) Message-Id: <200508281507.j7SF7UTT014125@repoman.freebsd.org> From: Marius Strobl Date: Sun, 28 Aug 2005 15:07:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/gem if_gem.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 15:07:31 -0000 marius 2005-08-28 15:07:30 UTC FreeBSD src repository Modified files: sys/dev/gem if_gem.c Log: - Allow for VLAN-sized frames and set IFCAP_VLAN_MTU. - On resume all registers have to be initialized again like after power-on so reset sc_inited in gem_suspend() in order get all of the registers set next time gem_init_regs() is called. - On at least some ERI and GEM revisions GEM_MAC_RX_OVERFLOW happen often due to a silicon bug and re-initializing is all we can do about these errors so make handling them non-verbose. - Remove a superfluous memset(3) call in gem_meminit(), all elements are initialized to 0 anyway. MFC after: 1 week Revision Changes Path 1.34 +23 -8 src/sys/dev/gem/if_gem.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 15:08:58 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DDA516A41F; Sun, 28 Aug 2005 15:08:58 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A386443D48; Sun, 28 Aug 2005 15:08:57 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SF8vbE014179; Sun, 28 Aug 2005 15:08:57 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SF8vwJ014178; Sun, 28 Aug 2005 15:08:57 GMT (envelope-from marius) Message-Id: <200508281508.j7SF8vwJ014178@repoman.freebsd.org> From: Marius Strobl Date: Sun, 28 Aug 2005 15:08:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 vlan.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 15:08:58 -0000 marius 2005-08-28 15:08:57 UTC FreeBSD src repository Modified files: share/man/man4 vlan.4 Log: Add gem(4) to the list of devices supporting VLAN-sized frames natively (since sys/dev/gem/if_gem.c rev. 1.34). MFC after: 1 week Revision Changes Path 1.26 +5 -1 src/share/man/man4/vlan.4 From owner-cvs-src@FreeBSD.ORG Sun Aug 28 15:28:05 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92A1E16A41F; Sun, 28 Aug 2005 15:28:05 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [63.240.76.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id E96F243D46; Sun, 28 Aug 2005 15:28:04 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from c-66-30-115-133.hsd1.ma.comcast.net ([66.30.115.133]) by comcast.net (sccrmhc12) with ESMTP id <20050828152803012000baf4e>; Sun, 28 Aug 2005 15:28:03 +0000 Received: from c-66-30-115-133.hsd1.ma.comcast.net (localhost.127.in-addr.arpa [127.0.0.1]) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1) with ESMTP id j7SFRwdE001792; Sun, 28 Aug 2005 11:27:58 -0400 (EDT) (envelope-from rodrigc@c-66-30-115-133.hsd1.ma.comcast.net) Received: (from rodrigc@localhost) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1/Submit) id j7SFRvY9001791; Sun, 28 Aug 2005 11:27:57 -0400 (EDT) (envelope-from rodrigc) Date: Sun, 28 Aug 2005 11:27:57 -0400 From: Craig Rodrigues To: Xin LI Message-ID: <20050828152757.GA1783@crodrigues.org> References: <200508281311.j7SDB8A9009117@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200508281311.j7SDB8A9009117@repoman.freebsd.org> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/linux linux_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 15:28:05 -0000 On Sun, Aug 28, 2005 at 01:11:08PM +0000, Xin LI wrote: > delphij 2005-08-28 13:11:08 UTC > > FreeBSD src repository > > Modified files: > sys/compat/linux linux_ioctl.c > Log: > Fix kernel build. Thanks! -- Craig Rodrigues rodrigc@crodrigues.org From owner-cvs-src@FreeBSD.ORG Sun Aug 28 17:04:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C68A016A41F; Sun, 28 Aug 2005 17:04:43 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 857F544012; Sun, 28 Aug 2005 17:04:43 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SH4hsk026481; Sun, 28 Aug 2005 17:04:43 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SH4hO3026480; Sun, 28 Aug 2005 17:04:43 GMT (envelope-from ssouhlal) Message-Id: <200508281704.j7SH4hO3026480@repoman.freebsd.org> From: Suleiman Souhlal Date: Sun, 28 Aug 2005 17:04:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 17:04:43 -0000 ssouhlal 2005-08-28 17:04:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_vfsops.c Log: MFC rev 1.292: Set the mountpoint path in the superblock (fs_fsmnt) at mount-time so that it appears in the various messages (not cleanly unmounted, filesystem full, etc). This has been broken since rev 1.261. Approved by: re (scottl) Revision Changes Path 1.290.2.2 +2 -1 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 18:16:32 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8049216A460; Sun, 28 Aug 2005 18:16:32 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D6E43D53; Sun, 28 Aug 2005 18:16:32 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SIGWvW030917; Sun, 28 Aug 2005 18:16:32 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SIGWcj030916; Sun, 28 Aug 2005 18:16:32 GMT (envelope-from le) Message-Id: <200508281816.j7SIGWcj030916@repoman.freebsd.org> From: Lukas Ertl Date: Sun, 28 Aug 2005 18:16:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/vinum geom_vinum_init.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 18:16:32 -0000 le 2005-08-28 18:16:31 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_init.c Log: Prevent that sync operations can be started when they are already in progress, and be a bit more user friendly in terms of error messages returned from the kernel. Revision Changes Path 1.11 +81 -71 src/sys/geom/vinum/geom_vinum_init.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 19:14:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34BF416A521; Sun, 28 Aug 2005 19:14:24 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBE5744016; Sun, 28 Aug 2005 18:48:04 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SIm4kn032591; Sun, 28 Aug 2005 18:48:04 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SIm43V032590; Sun, 28 Aug 2005 18:48:04 GMT (envelope-from bmah) Message-Id: <200508281848.j7SIm43V032590@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 28 Aug 2005 18:48:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc rc.initdiskless X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 19:14:34 -0000 bmah 2005-08-28 18:48:04 UTC FreeBSD src repository Modified files: etc rc.initdiskless Log: Fix minor typo in a comment. Revision Changes Path 1.44 +1 -1 src/etc/rc.initdiskless From owner-cvs-src@FreeBSD.ORG Sun Aug 28 20:42:33 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B530F16A41F; Sun, 28 Aug 2005 20:42:33 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [63.240.76.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 166F343D46; Sun, 28 Aug 2005 20:42:32 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from c-66-30-115-133.hsd1.ma.comcast.net ([66.30.115.133]) by comcast.net (sccrmhc13) with ESMTP id <20050828204232013005dqh7e>; Sun, 28 Aug 2005 20:42:32 +0000 Received: from c-66-30-115-133.hsd1.ma.comcast.net (localhost.127.in-addr.arpa [127.0.0.1]) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1) with ESMTP id j7SKgVrY003461; Sun, 28 Aug 2005 16:42:31 -0400 (EDT) (envelope-from rodrigc@c-66-30-115-133.hsd1.ma.comcast.net) Received: (from rodrigc@localhost) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1/Submit) id j7SKgVAi003460; Sun, 28 Aug 2005 16:42:31 -0400 (EDT) (envelope-from rodrigc) Date: Sun, 28 Aug 2005 16:42:31 -0400 From: Craig Rodrigues To: Ceri Davies , Craig Rodrigues , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20050828204231.GA3431@crodrigues.org> References: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> <20050828103801.GD99537@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050828103801.GD99537@submonkey.net> User-Agent: Mutt/1.5.9i Cc: Subject: Re: cvs commit: src/usr.sbin/sysinstall menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Aug 2005 20:42:33 -0000 On Sun, Aug 28, 2005 at 11:38:01AM +0100, Ceri Davies wrote: > I only checked the UK servers at > http://ntp.isc.org/bin/view/Servers/StratumTwoTimeServers, but from the ones in > the diff: > > ntp.exnet.com notify > ntp0.uk.uu.net restrictedaccess,notify > ntp1.uk.uu.net notify > ntp2.uk.uu.net restrictedaccess,notify > > That leaves only numbers 1,6-9 from the new list usable. Feel free to make any changes to src/usr.sbin/sysinstall/menus.c to update the list of NTP servers. This list has not been updated in a while, and these days people are changing their policies with respect to usage of NTP servers. -- Craig Rodrigues rodrigc@crodrigues.org From owner-cvs-src@FreeBSD.ORG Sun Aug 28 22:11:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93A9B16A41F; Sun, 28 Aug 2005 22:11:43 +0000 (GMT) (envelope-from flata@magnesium.net) Received: from toxic.magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C94E43D46; Sun, 28 Aug 2005 22:11:43 +0000 (GMT) (envelope-from flata@magnesium.net) Received: by toxic.magnesium.net (Postfix, from userid 1212) id 04910DA8B4; Sun, 28 Aug 2005 15:11:43 -0700 (PDT) Date: Sun, 28 Aug 2005 12:11:42 -1000 From: juli mallett To: Tom Rhodes Message-ID: <20050828221142.GA71466@toxic.magnesium.net> References: <200508251022.j7PAMWFO030767@repoman.freebsd.org> <20050825195416.GA65980@toxic.magnesium.net> <20050826062242.734ffae4@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050826062242.734ffae4@localhost> User-Agent: Mutt/1.4.1i X-Towel: Yes Cc: juli mallett , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libufs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 22:11:43 -0000 * Tom Rhodes [ Date: 2005-08-26 ] [ w.r.t. Re: cvs commit: src/lib/libufs Makefile ] > On Thu, 25 Aug 2005 09:54:16 -1000 > juli mallett wrote: > > > * Tom Rhodes [ Date: 2005-08-25 ] > > [ w.r.t. cvs commit: src/lib/libufs Makefile ] > > > trhodes 2005-08-25 10:22:30 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > lib/libufs Makefile > > > Log: > > > Hook getino.3 up to the build and link it to putino.3. > > > > > > PR: 83820 > > > > This is wrong. As the PR states it was purposely not hooked up. > > inode.c doesn't have functions which look like the interfaces you've > > just published, and there isn't even a putino(3) in there. If the > > cause of the confusion is the manpage being listed in Xr's or > > something, then comment out the Xr's. This is very obviously wrong, > > if you try to use what's in the manpage I committed. Probably it > > shoudln't be in CVS at all. The reason I put it there at the time is > > that it was ready and inode.c was about ready to hit CVS, but that > > got dropped. Now, if you want to help me remember what P4 tree that > > inode.c was in, and pick up whereever I left off, that'd be awesome. > > Let me understand real quick, it was purposely not hooked up because > it was the only file not updated? I mean, I can back this out, > no problem; however, I fail to see why nothing is going on with > this code. No clue on the branch, sorry. It was purposely not hooked up because the code that it documents isn't in CVS. From owner-cvs-src@FreeBSD.ORG Sun Aug 28 23:00:12 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE61416A41F; Sun, 28 Aug 2005 23:00:12 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79AF743D45; Sun, 28 Aug 2005 23:00:12 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SN0Cbk082805; Sun, 28 Aug 2005 23:00:12 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SN0Ca4082804; Sun, 28 Aug 2005 23:00:12 GMT (envelope-from ssouhlal) Message-Id: <200508282300.j7SN0Ca4082804@repoman.freebsd.org> From: Suleiman Souhlal Date: Sun, 28 Aug 2005 23:00:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 23:00:12 -0000 ssouhlal 2005-08-28 23:00:12 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: Fix a typo in vop_rename_pre() where we ended up using vholdl() instead of vhold(), even though the vnode interlock is unlocked. MFC after: 3 days Revision Changes Path 1.643 +1 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Sun Aug 28 23:56:26 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3701616A41F; Sun, 28 Aug 2005 23:56:26 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F21B843D46; Sun, 28 Aug 2005 23:56:25 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7SNuPTI084988; Sun, 28 Aug 2005 23:56:25 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7SNuPR2084987; Sun, 28 Aug 2005 23:56:25 GMT (envelope-from imp) Message-Id: <200508282356.j7SNuPR2084987@repoman.freebsd.org> From: Warner Losh Date: Sun, 28 Aug 2005 23:56:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ed if_ed.c if_ed_3c503.c if_ed_cbus.c if_ed_hpp.c if_ed_isa.c if_ed_novell.c if_ed_pccard.c if_ed_pci.c if_ed_sic.c if_ed_wd80x3.c if_edvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 23:56:26 -0000 imp 2005-08-28 23:56:25 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed.c if_ed_3c503.c if_ed_cbus.c if_ed_hpp.c if_ed_isa.c if_ed_novell.c if_ed_pccard.c if_ed_pci.c if_ed_sic.c if_ed_wd80x3.c if_edvar.h Log: Finish conversion to bus space and make ed MP safe. o Lock ed o Fix extra newline in probe messages o Eliminate gone. o Make detach less-racy. o Eliminate spl* o Switch from timeout/untimeout to callout interface. o Read/write card memory using bus_space calls. o generalize readmem so that we don't need ifs in the code. o Fix memory stuff to be consistant. o Remove OLDCARD compat stuff. o Mark interrupt as MPSAFE. # sic, hpp not tested at all # ISA and PCI attachments lightly tested Revision Changes Path 1.257 +182 -142 src/sys/dev/ed/if_ed.c 1.3 +1 -1 src/sys/dev/ed/if_ed_3c503.c 1.22 +8 -6 src/sys/dev/ed/if_ed_cbus.c 1.3 +6 -5 src/sys/dev/ed/if_ed_hpp.c 1.24 +8 -2 src/sys/dev/ed/if_ed_isa.c 1.7 +9 -6 src/sys/dev/ed/if_ed_novell.c 1.86 +41 -62 src/sys/dev/ed/if_ed_pccard.c 1.44 +2 -1 src/sys/dev/ed/if_ed_pci.c 1.5 +4 -3 src/sys/dev/ed/if_ed_sic.c 1.5 +1 -1 src/sys/dev/ed/if_ed_wd80x3.c 1.33 +23 -7 src/sys/dev/ed/if_edvar.h From owner-cvs-src@FreeBSD.ORG Mon Aug 29 00:05:05 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 070EC16A41F; Mon, 29 Aug 2005 00:05:05 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABCE743D48; Mon, 29 Aug 2005 00:05:04 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T054N4085325; Mon, 29 Aug 2005 00:05:04 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T054Hx085324; Mon, 29 Aug 2005 00:05:04 GMT (envelope-from imp) Message-Id: <200508290005.j7T054Hx085324@repoman.freebsd.org> From: Warner Losh Date: Mon, 29 Aug 2005 00:05:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ep if_ep_eisa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 00:05:05 -0000 imp 2005-08-29 00:05:04 UTC FreeBSD src repository Modified files: sys/dev/ep if_ep_eisa.c Log: Simplify names. Revision Changes Path 1.34 +6 -6 src/sys/dev/ep/if_ep_eisa.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 01:16:44 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 524D816A41F; Mon, 29 Aug 2005 01:16:44 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CD4743D46; Mon, 29 Aug 2005 01:16:44 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T1GhO7095352; Mon, 29 Aug 2005 01:16:43 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T1Gh0t095351; Mon, 29 Aug 2005 01:16:43 GMT (envelope-from murray) Message-Id: <200508290116.j7T1Gh0t095351@repoman.freebsd.org> From: Murray Stokely Date: Mon, 29 Aug 2005 01:16:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/usr.sbin/sysinstall dist.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 01:16:44 -0000 murray 2005-08-29 01:16:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/sysinstall dist.c Log: MFC: r1.240 - update ports count and space requirement. Revision Changes Path 1.234.2.2 +2 -2 src/usr.sbin/sysinstall/dist.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 05:37:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D72016A41F; Mon, 29 Aug 2005 05:37:43 +0000 (GMT) (envelope-from nate@root.org) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A17943D53; Mon, 29 Aug 2005 05:37:42 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.250] (adsl-64-171-187-62.dsl.snfc21.pacbell.net [64.171.187.62]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id j7T5bfo5030681 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 28 Aug 2005 22:37:44 -0700 Message-ID: <43129EE6.7040608@root.org> Date: Sun, 28 Aug 2005 22:36:38 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Hajimu UMEMOTO References: <200508240752.j7O7qxep016309@repoman.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Bruno Ducrot , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/powerd powerd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 05:37:43 -0000 Hajimu UMEMOTO wrote: >>>>>>On Wed, 24 Aug 2005 20:14:42 +0900 >>>>>>Hajimu UMEMOTO said: > > ume> It feels too lazy for my laptop. One freq level for decreasing and > ume> two freq level for incresing is comfortable to me. > > Oops, I meant two and four. > Because, my main laptop has double CPU levels than my second laptop. > So, it takes double iteration for transition from highest to lowest or > from lowest to highest. Hello, I am back from vacation. As Kevin and Bruno will attest, I was not happy to go down this path since you can't make everyone happy without a proper predictive algorithm. For small numbers of levels, this algorithm works fine. For large numbers of levels, it can oscillate just as much as the previous algorithm when there is a periodic load. I do not think you should add an option to tune the parameters as this algorithm should be removed as soon as we have something better. I don't want to make it permanent by adding user-visible flags. The right fix is the project that was started by a Summer of Code participant to profile a set of predictive algorithms and choose the best. Some good background info about this is here if someone wants to take up this task: http://wikitest.freebsd.org/moin.cgi/powerd Another mitigating factor is a patch I hope to commit soon that removes levels that aren't useful. The general idea is the same as a recent email from Tijl Coosemans but my approach is different. -- Nate From owner-cvs-src@FreeBSD.ORG Mon Aug 29 05:46:06 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01DC816A41F; Mon, 29 Aug 2005 05:46:06 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B10ED43D45; Mon, 29 Aug 2005 05:46:05 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T5k57u014030; Mon, 29 Aug 2005 05:46:05 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T5k5SQ014029; Mon, 29 Aug 2005 05:46:05 GMT (envelope-from imp) Message-Id: <200508290546.j7T5k5SQ014029@repoman.freebsd.org> From: Warner Losh Date: Mon, 29 Aug 2005 05:46:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pccard pccarddevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 05:46:06 -0000 imp 2005-08-29 05:46:05 UTC FreeBSD src repository Modified files: sys/dev/pccard pccarddevs Log: Global Village appears to be using 0x018c as its vendor ID, but this doesn't appear in the official lists, so make a note of that. Revision Changes Path 1.113 +6 -1 src/sys/dev/pccard/pccarddevs From owner-cvs-src@FreeBSD.ORG Mon Aug 29 06:47:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA23F16A41F; Mon, 29 Aug 2005 06:47:43 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A9D43D48; Mon, 29 Aug 2005 06:47:43 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T6lhNq016419; Mon, 29 Aug 2005 06:47:43 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T6lh8v016418; Mon, 29 Aug 2005 06:47:43 GMT (envelope-from jcamou) Message-Id: <200508290647.j7T6lh8v016418@repoman.freebsd.org> From: "Jesus R. Camou" Date: Mon, 29 Aug 2005 06:47:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 06:47:43 -0000 jcamou 2005-08-29 06:47:43 UTC FreeBSD src repository (doc committer) Modified files: bin/sh sh.1 Log: o Discuss the ways to escape an alias. o Fix the alias syntax lines. o Refer to the Aliases subsection. PR: docs/84914 Submitted by: garys Approved by: trhodes (mentor) MFC after: 3 days Revision Changes Path 1.104 +16 -4 src/bin/sh/sh.1 From owner-cvs-src@FreeBSD.ORG Mon Aug 29 07:38:59 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F020016A41F; Mon, 29 Aug 2005 07:38:58 +0000 (GMT) (envelope-from bruno@poupinou.org) Received: from poup.poupinou.org (poup.poupinou.org [195.101.94.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59D8643D6D; Mon, 29 Aug 2005 07:38:54 +0000 (GMT) (envelope-from bruno@poupinou.org) Received: from bruno by poup.poupinou.org with local (Exim) id 1E9eDl-00071N-00; Mon, 29 Aug 2005 09:38:21 +0200 Date: Mon, 29 Aug 2005 09:38:21 +0200 To: Nate Lawson Message-ID: <20050829073821.GI7749@poupinou.org> References: <200508240752.j7O7qxep016309@repoman.freebsd.org> <43129EE6.7040608@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <43129EE6.7040608@root.org> User-Agent: Mutt/1.5.9i From: Bruno Ducrot Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/powerd powerd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 07:38:59 -0000 On Sun, Aug 28, 2005 at 10:36:38PM -0700, Nate Lawson wrote: > Another mitigating factor is a patch I hope to commit soon that removes > levels that aren't useful. The general idea is the same as a recent > email from Tijl Coosemans but my approach is different. I'm pretty sure it's incorrect to add p4tcc and acpi_throttle for power saving purpose. I plan to add some flags in order to use only relevant frequencies to this end, but IMHO that should be done at low-level drivers. On the other hand, it is usefull to keep the existing sysctl freqs, but for cooling purpose only. -- Bruno Ducrot -- Which is worse: ignorance or apathy? -- Don't know. Don't care. From owner-cvs-src@FreeBSD.ORG Mon Aug 29 08:58:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99D5116A41F; Mon, 29 Aug 2005 08:58:47 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EE2F43D4C; Mon, 29 Aug 2005 08:58:47 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T8wkcF030782; Mon, 29 Aug 2005 08:58:46 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T8wkNA030781; Mon, 29 Aug 2005 08:58:46 GMT (envelope-from glebius) Message-Id: <200508290858.j7T8wkNA030781@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 08:58:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet in.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 08:58:47 -0000 glebius 2005-08-29 08:58:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet in.c Log: MFC 1.87: In order to support CARP interfaces kernel was taught to handle more than one interface in one subnet. However, some userland apps rely on the believe that this configuration is impossible. Add a sysctl switch net.inet.ip.same_prefix_carp_only. If the switch is on, then kernel will refuse to add an additional interface to already connected subnet unless the interface is CARP. Default value is off. PR: bin/82306 In collaboration with: mlaier Approved by: re (scottl) Revision Changes Path 1.85.2.2 +12 -2 src/sys/netinet/in.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 08:59:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 106A016A41F; Mon, 29 Aug 2005 08:59:31 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F71643D45; Mon, 29 Aug 2005 08:59:30 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T8xU5I030869; Mon, 29 Aug 2005 08:59:30 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T8xUqN030868; Mon, 29 Aug 2005 08:59:30 GMT (envelope-from glebius) Message-Id: <200508290859.j7T8xUqN030868@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 08:59:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netinet in.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 08:59:31 -0000 glebius 2005-08-29 08:59:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet in.c Log: MFC 1.87: In order to support CARP interfaces kernel was taught to handle more than one interface in one subnet. However, some userland apps rely on the believe that this configuration is impossible. Add a sysctl switch net.inet.ip.same_prefix_carp_only. If the switch is on, then kernel will refuse to add an additional interface to already connected subnet unless the interface is CARP. Default value is off. PR: bin/82306 In collaboration with: mlaier Revision Changes Path 1.77.2.4 +12 -2 src/sys/netinet/in.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 09:01:58 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC2FE16A41F; Mon, 29 Aug 2005 09:01:58 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6807243D4C; Mon, 29 Aug 2005 09:01:58 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T91wW3031116; Mon, 29 Aug 2005 09:01:58 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T91wxA031114; Mon, 29 Aug 2005 09:01:58 GMT (envelope-from glebius) Message-Id: <200508290901.j7T91wxA031114@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 09:01:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph ng_ksocket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 09:01:59 -0000 glebius 2005-08-29 09:01:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph ng_ksocket.c Log: MFC: Backout revision 1.54, because it exposes a worse problem, than it fixes. I believe the problem lives somewhere outside ng_ksocket, but until it is found, let the node be working. PR: kern/84952 PR: kern/82413 Approved by: re (scottl) Revision Changes Path 1.55.2.1 +1 -3 src/sys/netgraph/ng_ksocket.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 09:01:59 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0235B16A420; Mon, 29 Aug 2005 09:01:58 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67F0943D48; Mon, 29 Aug 2005 09:01:58 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T91w70031117; Mon, 29 Aug 2005 09:01:58 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T91wbb031115; Mon, 29 Aug 2005 09:01:58 GMT (envelope-from sos) Message-Id: <200508290901.j7T91wbb031115@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 29 Aug 2005 09:01:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ata ata-chipset.c ata-pci.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 09:01:59 -0000 sos 2005-08-29 09:01:58 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-pci.h Log: Fix support for the VIA 6421 controller. Revision Changes Path 1.132 +29 -3 src/sys/dev/ata/ata-chipset.c 1.53 +1 -0 src/sys/dev/ata/ata-pci.h From owner-cvs-src@FreeBSD.ORG Mon Aug 29 09:04:11 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 381F816A41F; Mon, 29 Aug 2005 09:04:11 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECD4543D45; Mon, 29 Aug 2005 09:04:10 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T94AFg031239; Mon, 29 Aug 2005 09:04:10 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T94AH9031238; Mon, 29 Aug 2005 09:04:10 GMT (envelope-from glebius) Message-Id: <200508290904.j7T94AH9031238@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 09:04:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netgraph ng_ksocket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 09:04:11 -0000 glebius 2005-08-29 09:04:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netgraph ng_ksocket.c Log: Backout last revision, because it exposes a worse problem, than it fixes. I believe the problem lives somewhere outside ng_ksocket, but until it is found, let the node be working. PR: kern/84952 PR: kern/82413 Revision Changes Path 1.46.2.7 +1 -3 src/sys/netgraph/ng_ksocket.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 09:06:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89FFB16A41F; Mon, 29 Aug 2005 09:06:31 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49E1643D49; Mon, 29 Aug 2005 09:06:31 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T96VuE031372; Mon, 29 Aug 2005 09:06:31 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T96VHO031371; Mon, 29 Aug 2005 09:06:31 GMT (envelope-from glebius) Message-Id: <200508290906.j7T96VHO031371@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 09:06:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet if_ether.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 09:06:31 -0000 glebius 2005-08-29 09:06:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet if_ether.c Log: MFC 1.140: When we have a published ARP entry for some IP address, do reply on ARP requests only on the network where this IP address belong, to. Before this change we did replied on all interfaces. This could lead to an IP address conflict with host we are doing ARP proxy for. PR: kern/75634 Reviewed by: andre Approved by: re (scottl) Revision Changes Path 1.137.2.2 +9 -0 src/sys/netinet/if_ether.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 09:10:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6EA516A41F; Mon, 29 Aug 2005 09:10:22 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8238A43D55; Mon, 29 Aug 2005 09:10:22 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7T9AMAp031676; Mon, 29 Aug 2005 09:10:22 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7T9AMq0031675; Mon, 29 Aug 2005 09:10:22 GMT (envelope-from glebius) Message-Id: <200508290910.j7T9AMq0031675@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 09:10:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/man/man4 Makefile inet.4 inet6.4 syncache.4 tcp.4 ttcp.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 09:10:23 -0000 glebius 2005-08-29 09:10:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 Makefile inet.4 inet6.4 syncache.4 tcp.4 Removed files: (Branch: RELENG_6) share/man/man4 ttcp.4 Log: MFC: Remove all references to T/TCP, which was removed several months ago. Approved by: re (scottl) Revision Changes Path 1.320.2.3 +0 -1 src/share/man/man4/Makefile 1.36.2.2 +0 -1 src/share/man/man4/inet.4 1.19.2.1 +0 -1 src/share/man/man4/inet6.4 1.1.14.1 +0 -6 src/share/man/man4/syncache.4 1.51.2.1 +1 -12 src/share/man/man4/tcp.4 1.18 +0 -235 src/share/man/man4/ttcp.4 (dead) From owner-cvs-src@FreeBSD.ORG Mon Aug 29 10:05:09 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 415D016A41F; Mon, 29 Aug 2005 10:05:09 +0000 (GMT) (envelope-from tataz@tataz.chchile.org) Received: from postfix4-2.free.fr (postfix4-2.free.fr [213.228.0.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBA843D45; Mon, 29 Aug 2005 10:05:08 +0000 (GMT) (envelope-from tataz@tataz.chchile.org) Received: from tatooine.tataz.chchile.org (vol75-8-82-233-239-98.fbx.proxad.net [82.233.239.98]) by postfix4-2.free.fr (Postfix) with ESMTP id 334FB31C5BC; Mon, 29 Aug 2005 12:05:07 +0200 (CEST) Received: by tatooine.tataz.chchile.org (Postfix, from userid 1000) id 5A39E405A; Mon, 29 Aug 2005 12:05:27 +0200 (CEST) Date: Mon, 29 Aug 2005 12:05:27 +0200 From: Jeremie Le Hen To: Brian Fundakowski Feldman Message-ID: <20050829100527.GK659@obiwan.tataz.chchile.org> References: <200508241721.j7OHLcNP061118@repoman.freebsd.org> <20050825060448.Q11335@fledge.watson.org> <20050825154354.GE30465@funkthat.com> <20050826181815.GA56936@dragon.NUXI.org> <20050827044830.GA46755@green.homeunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050827044830.GA46755@green.homeunix.org> User-Agent: Mutt/1.5.9i Cc: John-Mark Gurney , src-committers@FreeBSD.org, Pawel Jakub Dawidek , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Robert Watson , David O'Brien Subject: Re: cvs commit: src/lib/libutil Makefile libutil.h pidfile.3 pidfile.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 10:05:09 -0000 > > Yuck! Directory hell to find information. > > Yeah, at least make it /var/run//pid or something :-( Anyway a symlink from /var/run/.pid to /var/run//.pid will be required for backward compatibility. Regards, -- Jeremie Le Hen < jeremie at le-hen dot org >< ttz at chchile dot org > From owner-cvs-src@FreeBSD.ORG Mon Aug 29 10:08:06 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7346C16A41F; Mon, 29 Aug 2005 10:08:06 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3199043D6E; Mon, 29 Aug 2005 10:08:05 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TA85HZ034288; Mon, 29 Aug 2005 10:08:05 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TA84ZF034287; Mon, 29 Aug 2005 10:08:04 GMT (envelope-from philip) Message-Id: <200508291008.j7TA84ZF034287@repoman.freebsd.org> From: Philip Paeps Date: Mon, 29 Aug 2005 10:08:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/bsnmpd/modules/snmp_pf pf_snmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 10:08:06 -0000 philip 2005-08-29 10:08:04 UTC FreeBSD src repository Modified files: usr.sbin/bsnmpd/modules/snmp_pf pf_snmp.c Log: Fix unhandled malloc errors. PR: bin/83467 Submitted by: Dan Lukes Prodded by: glebius MFC after: 3 days Revision Changes Path 1.6 +54 -9 src/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 10:23:46 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB1A016A41F; Mon, 29 Aug 2005 10:23:46 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B7C943D48; Mon, 29 Aug 2005 10:23:46 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TANkqM036068; Mon, 29 Aug 2005 10:23:46 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TANkSY036067; Mon, 29 Aug 2005 10:23:46 GMT (envelope-from glebius) Message-Id: <200508291023.j7TANkSY036067@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 10:23:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys listen.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 10:23:47 -0000 glebius 2005-08-29 10:23:46 UTC FreeBSD src repository Modified files: lib/libc/sys listen.2 Log: - Document the fact that the real length of listen queue is 1.5 more than the value of backlog argument. - Document the fact that a subsequent listen(2) calls on the listening socket change the backlog argument. - Note that current listen queue lengths can be queried using netstat(1). Submitted by: Igor Sysoev Wording by: gnn Revision Changes Path 1.28 +16 -1 src/lib/libc/sys/listen.2 From owner-cvs-src@FreeBSD.ORG Mon Aug 29 11:14:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02C3816A41F; Mon, 29 Aug 2005 11:14:21 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B8AA43D49; Mon, 29 Aug 2005 11:14:20 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TBEJRE038243; Mon, 29 Aug 2005 11:14:20 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TBEIWl038242; Mon, 29 Aug 2005 11:14:18 GMT (envelope-from phk) Message-Id: <200508291114.j7TBEIWl038242@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 29 Aug 2005 11:14:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/devfs devfs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 11:14:21 -0000 phk 2005-08-29 11:14:18 UTC FreeBSD src repository Modified files: sys/fs/devfs devfs_vnops.c Log: Add a missing dev_relthread() call. Remove unused variable. Spotted by: Hans Petter Selasky Revision Changes Path 1.121 +5 -4 src/sys/fs/devfs/devfs_vnops.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 11:34:08 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B1E116A41F; Mon, 29 Aug 2005 11:34:08 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 573E343D49; Mon, 29 Aug 2005 11:34:08 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TBY8To039058; Mon, 29 Aug 2005 11:34:08 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TBY8lJ039057; Mon, 29 Aug 2005 11:34:08 GMT (envelope-from pjd) Message-Id: <200508291134.j7TBY8lJ039057@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 29 Aug 2005 11:34:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_lock.c subr_stack.c src/sys/sys stack.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 11:34:08 -0000 pjd 2005-08-29 11:34:08 UTC FreeBSD src repository Modified files: sys/kern subr_stack.c kern_lock.c sys/sys stack.h Log: Add 'depth' argument to CTRSTACK() macro, which allows to reduce number of ktr slots used. If 'depth' is equal to 0, the whole stack will be logged, just like before. Revision Changes Path 1.92 +1 -1 src/sys/kern/kern_lock.c 1.2 +7 -3 src/sys/kern/subr_stack.c 1.2 +4 -4 src/sys/sys/stack.h From owner-cvs-src@FreeBSD.ORG Mon Aug 29 11:39:25 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5D7F16A41F; Mon, 29 Aug 2005 11:39:25 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54B8543D46; Mon, 29 Aug 2005 11:39:25 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TBdPFI039347; Mon, 29 Aug 2005 11:39:25 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TBdPQX039346; Mon, 29 Aug 2005 11:39:25 GMT (envelope-from pjd) Message-Id: <200508291139.j7TBdPQX039346@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 29 Aug 2005 11:39:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom geom_io.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 11:39:25 -0000 pjd 2005-08-29 11:39:24 UTC FreeBSD src repository Modified files: sys/geom geom_io.c Log: Use KTR to log allocations and destructions of bios. This should hopefully allow to track down "duplicate free of g_bio" panics. Revision Changes Path 1.66 +37 -1 src/sys/geom/geom_io.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 11:55:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98DB916A41F; Mon, 29 Aug 2005 11:55:23 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id D259243D45; Mon, 29 Aug 2005 11:55:20 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id EBC5952C19; Mon, 29 Aug 2005 13:55:17 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id DCEAC52BC5; Mon, 29 Aug 2005 13:55:10 +0200 (CEST) Date: Mon, 29 Aug 2005 13:54:45 +0200 From: Pawel Jakub Dawidek To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20050829115445.GC61941@garage.freebsd.pl> References: <200508291139.j7TBdPQX039346@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lMM8JwqTlfDpEaS6" Content-Disposition: inline In-Reply-To: <200508291139.j7TBdPQX039346@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng devel (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: Subject: Re: cvs commit: src/sys/geom geom_io.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 11:55:23 -0000 --lMM8JwqTlfDpEaS6 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 29, 2005 at 11:39:24AM +0000, Pawel Jakub Dawidek wrote: +> pjd 2005-08-29 11:39:24 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/geom geom_io.c=20 +> Log: +> Use KTR to log allocations and destructions of bios. +> This should hopefully allow to track down "duplicate free of g_bio" pa= nics. OK'ed by: phk --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --lMM8JwqTlfDpEaS6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDEveFForvXbEpPzQRAiGHAJ491BCdzYjI1SsMj7HCcZJIWbORsQCgjnfv RMxA0Nxne+dctcpeYKPco84= =xdcS -----END PGP SIGNATURE----- --lMM8JwqTlfDpEaS6-- From owner-cvs-src@FreeBSD.ORG Mon Aug 29 13:47:08 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAC4816A41F; Mon, 29 Aug 2005 13:47:08 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7810843D4C; Mon, 29 Aug 2005 13:47:08 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TDl8pH054591; Mon, 29 Aug 2005 13:47:08 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TDl8VM054590; Mon, 29 Aug 2005 13:47:08 GMT (envelope-from glebius) Message-Id: <200508291347.j7TDl8VM054590@repoman.freebsd.org> From: Gleb Smirnoff Date: Mon, 29 Aug 2005 13:47:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph ng_split.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 13:47:09 -0000 glebius 2005-08-29 13:47:08 UTC FreeBSD src repository Modified files: sys/netgraph ng_split.c Log: Plug item leak in case when not all hooks are connected. Found by: David Vos Revision Changes Path 1.7 +3 -0 src/sys/netgraph/ng_split.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 13:47:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61D7416A41F; Mon, 29 Aug 2005 13:47:43 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 189CE43D58; Mon, 29 Aug 2005 13:47:43 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TDlgGL054622; Mon, 29 Aug 2005 13:47:42 GMT (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TDlgmA054621; Mon, 29 Aug 2005 13:47:42 GMT (envelope-from deischen) Message-Id: <200508291347.j7TDlgmA054621@repoman.freebsd.org> From: Daniel Eischen Date: Mon, 29 Aug 2005 13:47:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpthread/thread thr_rtld.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 13:47:43 -0000 deischen 2005-08-29 13:47:42 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_rtld.c Log: Don't attempt to initialize the rtld lock if it can't be malloc()'d. PR: 83452 Revision Changes Path 1.6 +7 -5 src/lib/libpthread/thread/thr_rtld.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 13:49:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3021C16A41F; Mon, 29 Aug 2005 13:49:19 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0AFC43D46; Mon, 29 Aug 2005 13:49:18 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TDnI2s054690; Mon, 29 Aug 2005 13:49:18 GMT (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TDnIaq054689; Mon, 29 Aug 2005 13:49:18 GMT (envelope-from deischen) Message-Id: <200508291349.j7TDnIaq054689@repoman.freebsd.org> From: Daniel Eischen Date: Mon, 29 Aug 2005 13:49:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpthread/thread thr_kern.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 13:49:19 -0000 deischen 2005-08-29 13:49:18 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_kern.c Log: Handle failure to malloc() part of the thread structure. PR: 83457 Revision Changes Path 1.117 +4 -3 src/lib/libpthread/thread/thr_kern.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 14:21:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1104A16A41F; Mon, 29 Aug 2005 14:21:23 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8622643D8F; Mon, 29 Aug 2005 14:21:15 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id A90AD52C19; Mon, 29 Aug 2005 16:21:13 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id E0ABA52BC5; Mon, 29 Aug 2005 16:21:05 +0200 (CEST) Date: Mon, 29 Aug 2005 16:20:39 +0200 From: Pawel Jakub Dawidek To: "Christian S.J. Peron" Message-ID: <20050829142039.GA63415@garage.freebsd.pl> References: <200508170124.j7H1Ou1j047750@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline In-Reply-To: <200508170124.j7H1Ou1j047750@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng devel (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Dario Freni , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 14:21:23 -0000 --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 17, 2005 at 01:24:55AM +0000, Christian S.J. Peron wrote: +> csjp 2005-08-17 01:24:55 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/dev/md md.c=20 +> Log: +> Ensure that file flags such as schg, sappnd (and others) are honored +> by md(4). Before this change, it was possible to by-pass these flags +> by creating memory disks which used a file as a backing store and +> writing to the device. +> =20 +> This was discussed by the security team, and although this is problema= tic, +> it was decided that it was not critical as we never guarantee that roo= t will +> be restricted. +> =20 +> This change implements the following behavior changes: +> =20 [...] +> -Do not gracefully downgrade access modes without telling the user. In= stead +> make the user specify their intentions for the device (assuming the f= ile is +> read only). This seems like the more correct way to handle things. I don't think so. It already broke some environments (see current@). I think downgrading to read-only when file system is mounted read-only should stay. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --oyUTqETQ0mS9luUI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDExm3ForvXbEpPzQRAjzKAKDsIDkJ8TFxYhZaQv8UNBsv5tr1hQCg9B7x H938JOOhYtIJ38rcB9gZ/Cg= =BxIC -----END PGP SIGNATURE----- --oyUTqETQ0mS9luUI-- From owner-cvs-src@FreeBSD.ORG Mon Aug 29 15:13:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B01A16A420; Mon, 29 Aug 2005 15:13:23 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0B6A43D5D; Mon, 29 Aug 2005 15:13:12 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[10.50.40.201]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Mon, 29 Aug 2005 11:28:27 -0400 From: John Baldwin To: Marius Strobl Date: Mon, 29 Aug 2005 10:58:40 -0400 User-Agent: KMail/1.8 References: <200508271814.j7RIEsmG075567@repoman.freebsd.org> In-Reply-To: <200508271814.j7RIEsmG075567@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508291058.41978.jhb@FreeBSD.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4/man4.i386 Makefile el.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 15:13:23 -0000 On Saturday 27 August 2005 02:14 pm, Marius Strobl wrote: > marius 2005-08-27 18:14:54 UTC > > FreeBSD src repository > > Modified files: > share/man/man4/man4.i386 Makefile > Removed files: > share/man/man4/man4.i386 el.4 > Log: > Remove the man page of the recently axed el(4). Oops, thanks! -- 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 Aug 29 15:13:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA85616A422; Mon, 29 Aug 2005 15:13:23 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 767FC43D58; Mon, 29 Aug 2005 15:13:12 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[10.50.40.201]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Mon, 29 Aug 2005 11:28:27 -0400 From: John Baldwin To: Don Lewis Date: Mon, 29 Aug 2005 11:13:58 -0400 User-Agent: KMail/1.8 References: <200508250347.j7P3lbux099751@repoman.freebsd.org> In-Reply-To: <200508250347.j7P3lbux099751@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508291114.00148.jhb@FreeBSD.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 15:13:24 -0000 On Wednesday 24 August 2005 11:47 pm, Don Lewis wrote: > truckman 2005-08-25 03:47:37 UTC > > FreeBSD src repository > > Modified files: > sys/kern subr_witness.c > Log: > Track all lock relationships instead of pruning direct relationships > if an indirect relationship exists (keep both A->B->C and A->C). > This allows witness_checkorder() to use isitmychild() instead of > the much more expensive isitmydescendant() to check for valid lock > ordering. > > Don't do an expensive tree walk to update the w_level values when > the tree is updated. Only update the w_level values when using the > debugger to display the tree. > > Nuke the experimental "witness_watch > 1" mode that only compared > w_level for the two locks. This information is no longer maintained > at run time, and the use of isitmychild() in witness_checkorder > should bring performance close enough to the acceptable level that > this hack is not needed. > > Report witness data structure allocation statistics under the > debug.witness sysctl. > > Reviewed by: jhb > MFC after: 30 days > > Revision Changes Path > 1.198 +31 -71 src/sys/kern/subr_witness.c I didn't think of this until now, but I think this breaks indirect lock order relationships that aren't explicit. That is, suppose at some point the following lock order pairs are recorded: A -> B C -> D That will give you a tree structure of something like: A --> B --> C If you then do C -> A, since C isn't a direct descendant of A, witness won't catch it anymore. So, you might need to back this out until a solution to this problem is solved. What you changed is the situation where one does A -> B and A -> C first, establishing a tree like this: A --> B \-> C And then does B -> C. The old code moved C under B: A --> B --> C and would still catch C -> A because it checked the full tree. With your changes you would end up with: A --> B --> C \-> C Which is fine except that it only catches reversals of explicit reversals, it doesn't actually handle any indirect lock orders as in my first scenario above. Sorry I didn't think of this until now when you asked for my review earlier. -- 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 Aug 29 15:18:04 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF8AA16A41F; Mon, 29 Aug 2005 15:18:04 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F85E43D48; Mon, 29 Aug 2005 15:18:04 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TFI4n1060268; Mon, 29 Aug 2005 15:18:04 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TFI4HT060267; Mon, 29 Aug 2005 15:18:04 GMT (envelope-from yar) Message-Id: <200508291518.j7TFI4HT060267@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 29 Aug 2005 15:18:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/de Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 15:18:05 -0000 yar 2005-08-29 15:18:04 UTC FreeBSD src repository Modified files: sys/modules/de Makefile Log: Unbreak stand-alone build of the de(4) module. Revision Changes Path 1.5 +1 -1 src/sys/modules/de/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 29 15:46:42 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ECD116A41F; Mon, 29 Aug 2005 15:46:42 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D2A143D45; Mon, 29 Aug 2005 15:46:42 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TFkga4070721; Mon, 29 Aug 2005 15:46:42 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TFkgmw070720; Mon, 29 Aug 2005 15:46:42 GMT (envelope-from imp) Message-Id: <200508291546.j7TFkgmw070720@repoman.freebsd.org> From: Warner Losh Date: Mon, 29 Aug 2005 15:46:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/wi if_wi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 15:46:42 -0000 imp 2005-08-29 15:46:42 UTC FreeBSD src repository Modified files: sys/dev/wi if_wi.c Log: Eliminate bogus seatbelt in wi_cmd. This may have been appropriate for the spl-era locking, but now that we can have multiple, concurrent interrupts for multiple wi devices, having a global check to make sure at most one of them was in wi_cmd no longer makes sense. MFC After: 2 decifortnight Revision Changes Path 1.188 +0 -5 src/sys/dev/wi/if_wi.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 16:23:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8E1616A420; Mon, 29 Aug 2005 16:23:21 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7653743D4C; Mon, 29 Aug 2005 16:23:21 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TGNL3Y072474; Mon, 29 Aug 2005 16:23:21 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TGNLqq072473; Mon, 29 Aug 2005 16:23:21 GMT (envelope-from emax) Message-Id: <200508291623.j7TGNLqq072473@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 29 Aug 2005 16:23:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph ng_fec.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 16:23:22 -0000 emax 2005-08-29 16:23:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph ng_fec.c Log: MFC to RELENG_6 Make sure ng_fec_init() uses the same calling convention as the rest of the code, i.e. ng_fec_init() is called with the ifp->if_softc pointer and NOT with the ifp pointer. PR: kern/85239 Reviewed by: brooks Approved by: re (scottl) Revision Changes Path 1.18.2.2 +3 -3 src/sys/netgraph/ng_fec.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 16:31:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C35816A420; Mon, 29 Aug 2005 16:31:56 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4C6843D6E; Mon, 29 Aug 2005 16:31:51 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TGVpjq072951; Mon, 29 Aug 2005 16:31:51 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TGVpBM072950; Mon, 29 Aug 2005 16:31:51 GMT (envelope-from emax) Message-Id: <200508291631.j7TGVpBM072950@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 29 Aug 2005 16:31:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netgraph ng_fec.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 16:31:56 -0000 emax 2005-08-29 16:31:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netgraph ng_fec.c Log: MFC to RELENG_5 Make sure ng_fec_init() uses the same calling convention as the rest of the code, i.e. ng_fec_init() is called with the ifp->if_softc pointer and NOT with the ifp pointer. PR: kern/85239 Reviewed by: brooks Approved by: re (scottl) Revision Changes Path 1.14.2.2 +3 -3 src/sys/netgraph/ng_fec.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 16:48:29 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1A5416A41F; Mon, 29 Aug 2005 16:48:28 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFB5643D45; Mon, 29 Aug 2005 16:48:28 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TGmSTE080634; Mon, 29 Aug 2005 16:48:28 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TGmSqF080633; Mon, 29 Aug 2005 16:48:28 GMT (envelope-from imp) Message-Id: <200508291648.j7TGmSqF080633@repoman.freebsd.org> From: Warner Losh Date: Mon, 29 Aug 2005 16:48:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci if_pcn.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 16:48:29 -0000 imp 2005-08-29 16:48:28 UTC FreeBSD src repository Modified files: sys/pci if_pcn.c Log: Fix obsolete comment. MFC After: 2 days Revision Changes Path 1.74 +1 -1 src/sys/pci/if_pcn.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:00:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5F1316A41F; Mon, 29 Aug 2005 17:00:54 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FB9943D45; Mon, 29 Aug 2005 17:00:54 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TH0sUt081374; Mon, 29 Aug 2005 17:00:54 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TH0s5b081373; Mon, 29 Aug 2005 17:00:54 GMT (envelope-from emax) Message-Id: <200508291700.j7TH0s5b081373@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 29 Aug 2005 17:00:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/socket ng_btsocket_hci_raw.c ng_btsocket_l2cap_raw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:00:55 -0000 emax 2005-08-29 17:00:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph/bluetooth/socket ng_btsocket_hci_raw.c ng_btsocket_l2cap_raw.c Log: MFC to RELENG_6 Address minor locking issues. Use taskqueue_swi instead of taskqueue_swi_giant. Approved by: re (scottl) Revision Changes Path 1.17.2.1 +29 -21 src/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c 1.14.2.2 +45 -53 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:01:52 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4A0516A41F; Mon, 29 Aug 2005 17:01:52 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC7DA43D48; Mon, 29 Aug 2005 17:01:52 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TH1q2P081431; Mon, 29 Aug 2005 17:01:52 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TH1qjI081430; Mon, 29 Aug 2005 17:01:52 GMT (envelope-from wollman) Message-Id: <200508291701.j7TH1qjI081430@repoman.freebsd.org> From: Garrett Wollman Date: Mon, 29 Aug 2005 17:01:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: ADO Cc: Subject: cvs commit: src/share/zoneinfo - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 17:01:53 -0000 wollman 2005-08-29 17:01:52 UTC FreeBSD src repository src/share/zoneinfo - Imported sources Update of /home/ncvs/src/share/zoneinfo In directory repoman.freebsd.org:/tmp/cvs-serv81313 Log Message: Update to tzdata2005m release from Arthur Olson. Only updates are to commentary and to "Link" directives, but the latter should fix reported problems with clean installs (by no longer installing those links). Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2005m.tar.gz Status: Vendor Tag: ADO Release Tags: tzdata2005m U src/share/zoneinfo/africa U src/share/zoneinfo/antarctica C src/share/zoneinfo/asia U src/share/zoneinfo/australasia U src/share/zoneinfo/europe C src/share/zoneinfo/northamerica U src/share/zoneinfo/southamerica U src/share/zoneinfo/pacificnew U src/share/zoneinfo/etcetera U src/share/zoneinfo/factory U src/share/zoneinfo/backward U src/share/zoneinfo/systemv U src/share/zoneinfo/solar87 U src/share/zoneinfo/solar88 U src/share/zoneinfo/solar89 U src/share/zoneinfo/iso3166.tab U src/share/zoneinfo/zone.tab U src/share/zoneinfo/leapseconds U src/share/zoneinfo/yearistype.sh 2 conflicts created by this import. Use the following command to help the merge: cvs checkout -jADO:yesterday -jADO src/share/zoneinfo From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:03:32 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6947A16A420; Mon, 29 Aug 2005 17:03:32 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1330443D5A; Mon, 29 Aug 2005 17:03:32 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TH3VDS081555; Mon, 29 Aug 2005 17:03:31 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TH3Vxx081554; Mon, 29 Aug 2005 17:03:31 GMT (envelope-from imp) Message-Id: <200508291703.j7TH3Vxx081554@repoman.freebsd.org> From: Warner Losh Date: Mon, 29 Aug 2005 17:03:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci if_dc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:03:32 -0000 imp 2005-08-29 17:03:31 UTC FreeBSD src repository Modified files: sys/pci if_dc.c Log: Fix another instance of old info re: miibus Revision Changes Path 1.165 +1 -1 src/sys/pci/if_dc.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:03:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F28F516A420; Mon, 29 Aug 2005 17:03:53 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FBC743D67; Mon, 29 Aug 2005 17:03:52 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TH3qEh081613; Mon, 29 Aug 2005 17:03:52 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TH3q1b081612; Mon, 29 Aug 2005 17:03:52 GMT (envelope-from emax) Message-Id: <200508291703.j7TH3q1b081612@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 29 Aug 2005 17:03:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/socket ng_btsocket_hci_raw.c ng_btsocket_l2cap_raw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:03:54 -0000 emax 2005-08-29 17:03:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netgraph/bluetooth/socket ng_btsocket_hci_raw.c ng_btsocket_l2cap_raw.c Log: MFC to RELENG_5 Address minor locking issues. Use taskqueue_swi instead of taskqueue_swi_giant. Approved by: re (scottl) Revision Changes Path 1.15.2.3 +29 -21 src/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c 1.12.2.4 +45 -53 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:04:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7E2816A41F; Mon, 29 Aug 2005 17:04:47 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9486143D48; Mon, 29 Aug 2005 17:04:47 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TH4lc6081705; Mon, 29 Aug 2005 17:04:47 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TH4ln9081704; Mon, 29 Aug 2005 17:04:47 GMT (envelope-from wollman) Message-Id: <200508291704.j7TH4ln9081704@repoman.freebsd.org> From: Garrett Wollman Date: Mon, 29 Aug 2005 17:04:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/zoneinfo asia northamerica X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:04:48 -0000 wollman 2005-08-29 17:04:47 UTC FreeBSD src repository Modified files: share/zoneinfo asia northamerica Log: Merge tzdata200m from vendor branch. Revision Changes Path 1.27 +24 -10 src/share/zoneinfo/asia 1.27 +26 -28 src/share/zoneinfo/northamerica From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:05:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 851E516A41F; Mon, 29 Aug 2005 17:05:54 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41B1743D45; Mon, 29 Aug 2005 17:05:54 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TH5sET081883; Mon, 29 Aug 2005 17:05:54 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TH5st6081882; Mon, 29 Aug 2005 17:05:54 GMT (envelope-from wollman) Message-Id: <200508291705.j7TH5st6081882@repoman.freebsd.org> From: Garrett Wollman Date: Mon, 29 Aug 2005 17:05:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/share/zoneinfo asia backward northamerica X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:05:54 -0000 wollman 2005-08-29 17:05:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/zoneinfo asia backward northamerica Log: Merge tzdata2005m update from vendor branch. Revision Changes Path 1.24.4.3 +24 -10 src/share/zoneinfo/asia 1.1.2.10.4.2 +13 -6 src/share/zoneinfo/backward 1.23.4.4 +26 -28 src/share/zoneinfo/northamerica From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:11:07 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C32A116A41F; Mon, 29 Aug 2005 17:11:07 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C83643D46; Mon, 29 Aug 2005 17:11:07 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.13.3/8.13.3) with ESMTP id j7THAv2q012955; Mon, 29 Aug 2005 10:11:01 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200508291711.j7THAv2q012955@gw.catspoiler.org> Date: Mon, 29 Aug 2005 10:10:57 -0700 (PDT) From: Don Lewis To: jhb@FreeBSD.org In-Reply-To: <200508291114.00148.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:11:07 -0000 On 29 Aug, John Baldwin wrote: > On Wednesday 24 August 2005 11:47 pm, Don Lewis wrote: >> truckman 2005-08-25 03:47:37 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/kern subr_witness.c >> Log: >> Track all lock relationships instead of pruning direct relationships >> if an indirect relationship exists (keep both A->B->C and A->C). >> This allows witness_checkorder() to use isitmychild() instead of >> the much more expensive isitmydescendant() to check for valid lock >> ordering. >> >> Don't do an expensive tree walk to update the w_level values when >> the tree is updated. Only update the w_level values when using the >> debugger to display the tree. >> >> Nuke the experimental "witness_watch > 1" mode that only compared >> w_level for the two locks. This information is no longer maintained >> at run time, and the use of isitmychild() in witness_checkorder >> should bring performance close enough to the acceptable level that >> this hack is not needed. >> >> Report witness data structure allocation statistics under the >> debug.witness sysctl. >> >> Reviewed by: jhb >> MFC after: 30 days >> >> Revision Changes Path >> 1.198 +31 -71 src/sys/kern/subr_witness.c > > I didn't think of this until now, but I think this breaks indirect lock order > relationships that aren't explicit. That is, suppose at some point the > following lock order pairs are recorded: > > A -> B > C -> D Ok ... > That will give you a tree structure of something like: > > A --> B --> C You lost me here. How did this transformation happen? > If you then do C -> A, since C isn't a direct descendant of A, witness won't > catch it anymore. So, you might need to back this out until a solution to > this problem is solved. No, C -> A should still be caught. We first check for known direct relationships by calling isitmychild(C, A), which will return 0, and then start checking for reversals. In the loop, we will call isitmydescendent(A, C), which will find the A -> B -> C relationship, return 1, and cause witness_checkorder() to fall through to the "lock order reversal" message. > What you changed is the situation where one does A -> B and A -> C first, > establishing a tree like this: > > A --> B > \-> C > > And then does B -> C. The old code moved C under B: > > A --> B --> C > > and would still catch C -> A because it checked the full tree. > > With your changes you would end up with: > > A --> B --> C > \-> C > > Which is fine except that it only catches reversals of explicit reversals, it > doesn't actually handle any indirect lock orders as in my first scenario > above. Sorry I didn't think of this until now when you asked for my review > earlier. The entire tree is still checked for reversals. The optimization is to only check for direct relationships when validating that the lock is being grabbed in the direct order, so if anything, witness_checkorder() should fall through into the lock order reversal checking code more frequently. From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:32:20 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8AA216A41F; Mon, 29 Aug 2005 17:32:19 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5DF743D72; Mon, 29 Aug 2005 17:32:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[10.50.40.201]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Mon, 29 Aug 2005 13:47:30 -0400 From: John Baldwin To: Don Lewis Date: Mon, 29 Aug 2005 13:32:43 -0400 User-Agent: KMail/1.8 References: <200508291711.j7THAv2q012955@gw.catspoiler.org> In-Reply-To: <200508291711.j7THAv2q012955@gw.catspoiler.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508291332.45298.jhb@FreeBSD.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:32:20 -0000 On Monday 29 August 2005 01:10 pm, Don Lewis wrote: > On 29 Aug, John Baldwin wrote: > > On Wednesday 24 August 2005 11:47 pm, Don Lewis wrote: > >> truckman 2005-08-25 03:47:37 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> sys/kern subr_witness.c > >> Log: > >> Track all lock relationships instead of pruning direct relationships > >> if an indirect relationship exists (keep both A->B->C and A->C). > >> This allows witness_checkorder() to use isitmychild() instead of > >> the much more expensive isitmydescendant() to check for valid lock > >> ordering. > >> > >> Don't do an expensive tree walk to update the w_level values when > >> the tree is updated. Only update the w_level values when using the > >> debugger to display the tree. > >> > >> Nuke the experimental "witness_watch > 1" mode that only compared > >> w_level for the two locks. This information is no longer maintained > >> at run time, and the use of isitmychild() in witness_checkorder > >> should bring performance close enough to the acceptable level that > >> this hack is not needed. > >> > >> Report witness data structure allocation statistics under the > >> debug.witness sysctl. > >> > >> Reviewed by: jhb > >> MFC after: 30 days > >> > >> Revision Changes Path > >> 1.198 +31 -71 src/sys/kern/subr_witness.c > > > > I didn't think of this until now, but I think this breaks indirect lock > > order relationships that aren't explicit. That is, suppose at some point > > the following lock order pairs are recorded: > > > > A -> B > > C -> D > > Ok ... That should have been B -> C rather than C -> D. > > That will give you a tree structure of something like: > > > > A --> B --> C > > You lost me here. How did this transformation happen? > > > If you then do C -> A, since C isn't a direct descendant of A, witness > > won't catch it anymore. So, you might need to back this out until a > > solution to this problem is solved. > > No, C -> A should still be caught. We first check for known direct > relationships by calling isitmychild(C, A), which will return 0, and > then start checking for reversals. In the loop, we will call > isitmydescendent(A, C), which will find the A -> B -> C relationship, > return 1, and cause witness_checkorder() to fall through to the "lock > order reversal" message. Ah, I thought you only checked the direct children since the log message said: This allows witness_checkorder() to use isitmychild() instead of the much more expensive isitmydescendant() to check for valid lock ordering. > The entire tree is still checked for reversals. The optimization is to > only check for direct relationships when validating that the lock is > being grabbed in the direct order, so if anything, witness_checkorder() > should fall through into the lock order reversal checking code more > frequently. Yeah, I see that now, sorry for the noise. -- 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 Aug 29 17:52:24 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDC6316A41F; Mon, 29 Aug 2005 17:52:24 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5657643D64; Mon, 29 Aug 2005 17:52:17 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from kasuga.mahoroba.org (IDENT:VmcI49NtJmqm7AXw6IrDrjYzPHOab1FCi6fSMn+WFoOXp5NSPmj2FR7MFvseq0Ss@kasuga.mahoroba.org [IPv6:3ffe:501:185b:8010:20b:97ff:fe2e:b521]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.4/8.13.4) with ESMTP/inet6 id j7THq3tW027874 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 30 Aug 2005 02:52:10 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Tue, 30 Aug 2005 02:52:03 +0900 Message-ID: From: Hajimu UMEMOTO To: Nate Lawson In-Reply-To: <43129EE6.7040608@root.org> References: <200508240752.j7O7qxep016309@repoman.freebsd.org> <43129EE6.7040608@root.org> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (=?ISO-8859-4?Q?Sanj=F2?=) APEL/10.6 Emacs/22.0.50 (i386-unknown-freebsd6.0) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.0-BETA3 X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0 (ameno.mahoroba.org [IPv6:3ffe:501:185b:8010::1]); Tue, 30 Aug 2005 02:52:10 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-5.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.0.4 X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on ameno.mahoroba.org Cc: Bruno Ducrot , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/powerd powerd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:52:24 -0000 Hi, >>>>> On Sun, 28 Aug 2005 22:36:38 -0700 >>>>> Nate Lawson said: nate> Hello, I am back from vacation. As Kevin and Bruno will attest, I was nate> not happy to go down this path since you can't make everyone happy nate> without a proper predictive algorithm. For small numbers of levels, nate> this algorithm works fine. For large numbers of levels, it can nate> oscillate just as much as the previous algorithm when there is a nate> periodic load. I do not think you should add an option to tune the nate> parameters as this algorithm should be removed as soon as we have nate> something better. I don't want to make it permanent by adding nate> user-visible flags. Okay, it sounds reasonable to me. I'll go along with your plan. nate> The right fix is the project that was started by a Summer of Code nate> participant to profile a set of predictive algorithms and choose the nate> best. Some good background info about this is here if someone wants to nate> take up this task: nate> http://wikitest.freebsd.org/moin.cgi/powerd nate> Another mitigating factor is a patch I hope to commit soon that removes nate> levels that aren't useful. The general idea is the same as a recent nate> email from Tijl Coosemans but my approach is different. I'm looking foaward to the effort in this area. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:52:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1EFE16A423; Mon, 29 Aug 2005 17:52:54 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D67DE43D45; Mon, 29 Aug 2005 17:52:53 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7THqrfC084394; Mon, 29 Aug 2005 17:52:53 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7THqrUT084393; Mon, 29 Aug 2005 17:52:53 GMT (envelope-from andre) Message-Id: <200508291752.j7THqrUT084393@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 29 Aug 2005 17:52:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:52:54 -0000 andre 2005-08-29 17:52:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_fastfwd.c Log: MFC rev. 1.31 (correct layer 2 broad- and multicast handling) and rev. 1.29 (Misc spelling and/or English fixes in comments). PR: kern/85052 Approved by: re (scottl) Revision Changes Path 1.28.2.2 +15 -31 src/sys/netinet/ip_fastfwd.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 17:57:37 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3811116A41F; Mon, 29 Aug 2005 17:57:37 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8EBA43D46; Mon, 29 Aug 2005 17:57:36 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7THvaKC084590; Mon, 29 Aug 2005 17:57:36 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7THvaZY084589; Mon, 29 Aug 2005 17:57:36 GMT (envelope-from andre) Message-Id: <200508291757.j7THvaZY084589@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 29 Aug 2005 17:57:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/contrib/traceroute traceroute.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 17:57:37 -0000 andre 2005-08-29 17:57:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/traceroute traceroute.c Log: MFC rev. 1.27 (Pretty print multipath routes). Approved by: re (scottl) Revision Changes Path 1.26.8.1 +2 -1 src/contrib/traceroute/traceroute.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 18:19:07 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1C3C16A41F; Mon, 29 Aug 2005 18:19:07 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E90743D46; Mon, 29 Aug 2005 18:19:07 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TIJ7AQ089012; Mon, 29 Aug 2005 18:19:07 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TIJ7jr089011; Mon, 29 Aug 2005 18:19:07 GMT (envelope-from sos) Message-Id: <200508291819.j7TIJ7jr089011@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 29 Aug 2005 18:19:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ata ata-all.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 18:19:07 -0000 sos 2005-08-29 18:19:07 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: In ata_mode2str() properly list -1 as UNSUPPORTED. Revision Changes Path 1.256 +1 -0 src/sys/dev/ata/ata-all.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 18:33:59 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECB8C16A41F; Mon, 29 Aug 2005 18:33:59 +0000 (GMT) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EB5743D49; Mon, 29 Aug 2005 18:33:59 +0000 (GMT) (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.6) with ESMTP id j7TIXvBd070658 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 29 Aug 2005 11:33:58 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <431356B2.9070006@errno.com> Date: Mon, 29 Aug 2005 11:40:50 -0700 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050327) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Damien Bergamini References: <200508211416.j7LEGKCH041069@repoman.freebsd.org> In-Reply-To: <200508211416.j7LEGKCH041069@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ral if_ral.c src/sys/dev/usb if_ural.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 18:34:00 -0000 Damien Bergamini wrote: > damien 2005-08-21 14:16:20 UTC > > FreeBSD src repository > > Modified files: > sys/dev/ral if_ral.c > sys/dev/usb if_ural.c > Log: > Fix basic rates set for 802.11a/g operating modes. This can significantly > improve transfer rates in 802.11a/g. Fix IFS settings in ral(4) too. > With these changes I can now sometimes associate as a station with one of my production ap's in 11g. Other times I see the previous behaviour that I reported 1+ months ago. The AssocReq frame to the ap is rejected; it appears the ral sta side does not ACK the Auth response frame from the ap so it then rejects the AssocReq. Specifically I see retransmits of the Auth response from the ap until the AssocReq comes from the sta at which time the ap sends a Deauth. I also see ProbeResp frames from the ap being retransmitted which also indicates failure to ACK by the sta. In the one case where I was able to associate I could transfer data ok so I'm guessing you've still got setup issues prior to association and/or the handling of management frames. If you want a packet trace let me know. Otherwise I see problems when ejecting a ral cardbus card. It appears the driver doesn't recognize when a card has gone away when scanning; e.g. you'll see lots of msgs of the form: ral0: could not write to RF until there's a timeout (device timeout) followed by ral0: could not read from BBP ral0: could not write to BBP At some point LONG time past I see ral0: detached; but sometimes not until I insert another card. The above issues happen with both my ral cards (Asus WL-107g and Zonet ZEW1501). All this is with CURRENT of today. Sam From owner-cvs-src@FreeBSD.ORG Mon Aug 29 18:35:53 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8930916A41F; Mon, 29 Aug 2005 18:35:53 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id A80B343D53; Mon, 29 Aug 2005 18:35:51 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[10.50.40.201]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Mon, 29 Aug 2005 14:51:05 -0400 From: John Baldwin To: Garrett Wollman Date: Mon, 29 Aug 2005 14:36:29 -0400 User-Agent: KMail/1.8 References: <200508291701.j7TH1qjI081430@repoman.freebsd.org> In-Reply-To: <200508291701.j7TH1qjI081430@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508291436.30644.jhb@FreeBSD.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/zoneinfo - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 18:35:53 -0000 On Monday 29 August 2005 01:01 pm, Garrett Wollman wrote: > wollman 2005-08-29 17:01:52 UTC > > FreeBSD src repository > > src/share/zoneinfo - Imported sources > Update of /home/ncvs/src/share/zoneinfo > In directory repoman.freebsd.org:/tmp/cvs-serv81313 > > Log Message: > Update to tzdata2005m release from Arthur Olson. Only updates are to > commentary and to "Link" directives, but the latter should fix > reported problems with clean installs (by no longer installing those > links). > > Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2005m.tar.gz Hmm, we actually use the Links here at work (i.e. EST5EDT, etc.). Does 'env TZ=EST5EDT date' still work after the links are gone? -- 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 Aug 29 18:45:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B797716A41F; Mon, 29 Aug 2005 18:45:21 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 783FA43D45; Mon, 29 Aug 2005 18:45:21 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TIjL2f090250; Mon, 29 Aug 2005 18:45:21 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TIjLsM090249; Mon, 29 Aug 2005 18:45:21 GMT (envelope-from imp) Message-Id: <200508291845.j7TIjLsM090249@repoman.freebsd.org> From: Warner Losh Date: Mon, 29 Aug 2005 18:45:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci if_dc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 18:45:21 -0000 imp 2005-08-29 18:45:21 UTC FreeBSD src repository Modified files: sys/pci if_dc.c Log: Better comment Revision Changes Path 1.166 +4 -1 src/sys/pci/if_dc.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 18:46:40 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1612516A41F; Mon, 29 Aug 2005 18:46:40 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D756C43D45; Mon, 29 Aug 2005 18:46:39 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TIkdKC090397; Mon, 29 Aug 2005 18:46:39 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TIkdcM090396; Mon, 29 Aug 2005 18:46:39 GMT (envelope-from andre) Message-Id: <200508291846.j7TIkdcM090396@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 29 Aug 2005 18:46:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/include string.h src/lib/libc/string Makefile.inc memchr.3 memmem.3 memmem.c strchr.3 strstr.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 18:46:40 -0000 andre 2005-08-29 18:46:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) include string.h lib/libc/string Makefile.inc memchr.3 strchr.3 strstr.3 Added files: (Branch: RELENG_6) lib/libc/string memmem.3 memmem.c Log: MFC addition of memmem(3). Submitted by: Pascal Gloor Approved by: re (scottl) Revision Changes Path 1.21.2.1 +3 -0 src/include/string.h 1.34.8.1 +5 -5 src/lib/libc/string/Makefile.inc 1.7.14.1 +2 -1 src/lib/libc/string/memchr.3 1.1.2.1 +84 -0 src/lib/libc/string/memmem.3 (new) 1.1.2.1 +67 -0 src/lib/libc/string/memmem.c (new) 1.11.10.1 +1 -0 src/lib/libc/string/strchr.3 1.12.14.1 +1 -0 src/lib/libc/string/strstr.3 From owner-cvs-src@FreeBSD.ORG Mon Aug 29 18:51:02 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AAA916A41F; Mon, 29 Aug 2005 18:51:02 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB3A943D45; Mon, 29 Aug 2005 18:51:01 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TIp1uF090710; Mon, 29 Aug 2005 18:51:01 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TIp160090709; Mon, 29 Aug 2005 18:51:01 GMT (envelope-from andre) Message-Id: <200508291851.j7TIp160090709@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 29 Aug 2005 18:51:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 18:51:02 -0000 andre 2005-08-29 18:51:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet ip_fastfwd.c Log: MFC rev. 1.31 (correct layer 2 broad- and multicast handling). PR: kern/85052 Revision Changes Path 1.17.2.8 +3 -19 src/sys/netinet/ip_fastfwd.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 19:45:40 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 807E816A41F; Mon, 29 Aug 2005 19:45:40 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BAFF43D46; Mon, 29 Aug 2005 19:45:40 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TJjeLw092740; Mon, 29 Aug 2005 19:45:40 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TJjet2092739; Mon, 29 Aug 2005 19:45:40 GMT (envelope-from andre) Message-Id: <200508291945.j7TJjet2092739@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 29 Aug 2005 19:45:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 19:45:40 -0000 andre 2005-08-29 19:45:39 UTC FreeBSD src repository Modified files: sys/sys mbuf.h sys/kern uipc_mbuf.c Log: Add m_demote(struct mbuf *m, int all) to clean up mbuf (chain) from any tags and packet headers. If "all" is set then the first mbuf in the chain will be cleaned too. This function is used before an mbuf, that arrived as packet with m->flags & M_PKTHDR, is appended to an mbuf chain using m->m_next (not m->m_nextpkt). Reviewed by: glebius Revision Changes Path 1.150 +24 -0 src/sys/kern/uipc_mbuf.c 1.173 +1 -0 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Mon Aug 29 19:58:59 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 048E716A41F; Mon, 29 Aug 2005 19:58:59 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B647243D45; Mon, 29 Aug 2005 19:58:58 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TJwwQT093356; Mon, 29 Aug 2005 19:58:58 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TJwvd0093355; Mon, 29 Aug 2005 19:58:57 GMT (envelope-from andre) Message-Id: <200508291958.j7TJwvd0093355@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 29 Aug 2005 19:58:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 19:58:59 -0000 andre 2005-08-29 19:58:56 UTC FreeBSD src repository Modified files: sys/sys mbuf.h sys/kern uipc_mbuf.c Log: Add m_sanity(struct mbuf *m, int sanitize) to do some heavy sanity checking on mbuf's and mbuf chains. Set sanitize to 1 to garble illegal things and have them blow up later when used/accessed. m_sanity()'s main purpose is for KASSERT()'s and debugging of non- kosher mbuf manipulation (of which we have a number of). Reviewed by: glebius Revision Changes Path 1.151 +95 -0 src/sys/kern/uipc_mbuf.c 1.174 +1 -0 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Mon Aug 29 20:00:42 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18E6616A423; Mon, 29 Aug 2005 20:00:42 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B55A43D5C; Mon, 29 Aug 2005 20:00:32 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TK0WB1093416; Mon, 29 Aug 2005 20:00:32 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TK0V6f093415; Mon, 29 Aug 2005 20:00:32 GMT (envelope-from jhb) Message-Id: <200508292000.j7TK0V6f093415@repoman.freebsd.org> From: John Baldwin Date: Mon, 29 Aug 2005 20:00:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/my if_my.c if_myreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 20:00:42 -0000 jhb 2005-08-29 20:00:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/my if_my.c if_myreg.h Log: MFC: Locking and sundry fixes; mark MPSAFE: - Use device_printf() and if_printf(). - Remove pre-new-bus and other #if 0 code. - Overhaul failure handling in my_attach(). Approved by: re (scottl) Revision Changes Path 1.29.2.3 +138 -219 src/sys/dev/my/if_my.c 1.3.2.1 +1 -2 src/sys/dev/my/if_myreg.h From owner-cvs-src@FreeBSD.ORG Mon Aug 29 20:06:02 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2D8716A41F; Mon, 29 Aug 2005 20:06:02 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8072243D45; Mon, 29 Aug 2005 20:06:02 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TK62an093740; Mon, 29 Aug 2005 20:06:02 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TK62n8093739; Mon, 29 Aug 2005 20:06:02 GMT (envelope-from scottl) Message-Id: <200508292006.j7TK62n8093739@repoman.freebsd.org> From: Scott Long Date: Mon, 29 Aug 2005 20:06:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/wi if_wi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 20:06:02 -0000 scottl 2005-08-29 20:06:02 UTC FreeBSD src repository Modified files: sys/dev/wi if_wi.c Log: Correct previous commit. Revision Changes Path 1.189 +0 -3 src/sys/dev/wi/if_wi.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 20:15:34 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E6DB16A41F; Mon, 29 Aug 2005 20:15:34 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 662A243D46; Mon, 29 Aug 2005 20:15:34 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TKFYak094248; Mon, 29 Aug 2005 20:15:34 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TKFYuW094247; Mon, 29 Aug 2005 20:15:34 GMT (envelope-from andre) Message-Id: <200508292015.j7TKFYuW094247@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 29 Aug 2005 20:15:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 20:15:34 -0000 andre 2005-08-29 20:15:33 UTC FreeBSD src repository Modified files: sys/sys mbuf.h sys/kern uipc_mbuf.c Log: Add m_copymdata(struct mbuf *m, struct mbuf *n, int off, int len, int prep, int how). Copies the data portion of mbuf (chain) n starting from offset off for length len to mbuf (chain) m. Depending on prep the copied data will be appended or prepended. The function ensures that the mbuf (chain) m will be fully writeable by making real (not refcnt) copies of mbuf clusters. For the prepending the function returns a pointer to the new start of mbuf chain m and leaves as much leading space as possible in the new first mbuf. Reviewed by: glebius Revision Changes Path 1.152 +145 -0 src/sys/kern/uipc_mbuf.c 1.175 +2 -0 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Mon Aug 29 20:18:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC98416A421 for ; Mon, 29 Aug 2005 20:18:47 +0000 (GMT) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A4F443D76 for ; Mon, 29 Aug 2005 20:18:42 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 88805 invoked from network); 29 Aug 2005 19:56:49 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 29 Aug 2005 19:56:49 -0000 Message-ID: <43136DAC.4318A183@freebsd.org> Date: Mon, 29 Aug 2005 22:18:52 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200508291958.j7TJwvd0093355@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 20:18:47 -0000 Andre Oppermann wrote: > > andre 2005-08-29 19:58:56 UTC > > FreeBSD src repository > > Modified files: > sys/sys mbuf.h > sys/kern uipc_mbuf.c > Log: > Add m_sanity(struct mbuf *m, int sanitize) to do some heavy sanity > checking on mbuf's and mbuf chains. Set sanitize to 1 to garble > illegal things and have them blow up later when used/accessed. > > m_sanity()'s main purpose is for KASSERT()'s and debugging of non- > kosher mbuf manipulation (of which we have a number of). A kernel with m_santiy() as the first thing in ip_output() doesn't survive the first outgoing TCP connection. There are a lot of strange and sometimes right out incorrect mbuf (ab)uses in the kernel. -- Andre From owner-cvs-src@FreeBSD.ORG Mon Aug 29 20:19:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB27B16A420 for ; Mon, 29 Aug 2005 20:19:47 +0000 (GMT) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBDEC43D55 for ; Mon, 29 Aug 2005 20:19:46 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 88823 invoked from network); 29 Aug 2005 19:57:53 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 29 Aug 2005 19:57:53 -0000 Message-ID: <43136DEB.B59F9276@freebsd.org> Date: Mon, 29 Aug 2005 22:19:55 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200508292015.j7TKFYuW094247@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 20:19:47 -0000 Andre Oppermann wrote: > > andre 2005-08-29 20:15:33 UTC > > FreeBSD src repository > > Modified files: > sys/sys mbuf.h > sys/kern uipc_mbuf.c > Log: > Add m_copymdata(struct mbuf *m, struct mbuf *n, int off, int len, > int prep, int how). > > Copies the data portion of mbuf (chain) n starting from offset off > for length len to mbuf (chain) m. Depending on prep the copied > data will be appended or prepended. The function ensures that the > mbuf (chain) m will be fully writeable by making real (not refcnt) > copies of mbuf clusters. For the prepending the function returns > a pointer to the new start of mbuf chain m and leaves as much > leading space as possible in the new first mbuf. This one is primarily for the new TCP reassembly which makes very efficient use of mbufs. -- Andre From owner-cvs-src@FreeBSD.ORG Mon Aug 29 20:42:00 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A92BE16A41F; Mon, 29 Aug 2005 20:42:00 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2EC243D68; Mon, 29 Aug 2005 20:41:58 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TKfwlk095246; Mon, 29 Aug 2005 20:41:58 GMT (envelope-from garys@repoman.freebsd.org) Received: (from garys@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TKfw8b095245; Mon, 29 Aug 2005 20:41:58 GMT (envelope-from garys) Message-Id: <200508292041.j7TKfw8b095245@repoman.freebsd.org> From: "Gary W. Swearingen" Date: Mon, 29 Aug 2005 20:41:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/string strcspn.3 strspn.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 20:42:00 -0000 garys 2005-08-29 20:41:58 UTC FreeBSD src repository (doc committer) Modified files: lib/libc/string strcspn.3 strspn.3 Log: Added a sentence to explain what "span" means. PR: docs/84850 Submitted by: garys MFC after: 3 days Approved by: keramida Revision Changes Path 1.8 +8 -1 src/lib/libc/string/strcspn.3 1.9 +9 -2 src/lib/libc/string/strspn.3 From owner-cvs-src@FreeBSD.ORG Mon Aug 29 21:28:12 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E47BB16A41F; Mon, 29 Aug 2005 21:28:12 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A171D43D45; Mon, 29 Aug 2005 21:28:12 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TLSC0A004065; Mon, 29 Aug 2005 21:28:12 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TLSC7F004064; Mon, 29 Aug 2005 21:28:12 GMT (envelope-from jcamou) Message-Id: <200508292128.j7TLSC7F004064@repoman.freebsd.org> From: "Jesus R. Camou" Date: Mon, 29 Aug 2005 21:28:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 21:28:13 -0000 jcamou 2005-08-29 21:28:12 UTC FreeBSD src repository (doc committer) Modified files: bin/sh sh.1 Log: Wrap a line due to a new sentence. Noticed by: simon Approved by: trhodes (mentor) Revision Changes Path 1.105 +2 -1 src/bin/sh/sh.1 From owner-cvs-src@FreeBSD.ORG Mon Aug 29 22:09:01 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1081F16A420 for ; Mon, 29 Aug 2005 22:09:01 +0000 (GMT) (envelope-from silby@silby.com) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 1E43A43D49 for ; Mon, 29 Aug 2005 22:08:59 +0000 (GMT) (envelope-from silby@silby.com) Received: (qmail 92057 invoked from network); 29 Aug 2005 22:08:58 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 29 Aug 2005 22:08:58 -0000 X-pair-Authenticated: 209.68.2.70 Date: Mon, 29 Aug 2005 17:08:56 -0500 (CDT) From: Mike Silbersack To: Andre Oppermann In-Reply-To: <43136DAC.4318A183@freebsd.org> Message-ID: <20050829170809.L55561@odysseus.silby.com> References: <200508291958.j7TJwvd0093355@repoman.freebsd.org> <43136DAC.4318A183@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 22:09:01 -0000 On Mon, 29 Aug 2005, Andre Oppermann wrote: > A kernel with m_santiy() as the first thing in ip_output() doesn't > survive the first outgoing TCP connection. > > There are a lot of strange and sometimes right out incorrect mbuf > (ab)uses in the kernel. > > -- > Andre I can tell you one of the problems - tcp_reass moves the m_data pointer forward, then continues to use the data in the pre-pointer area. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Mon Aug 29 22:24:39 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18D2216A41F for ; Mon, 29 Aug 2005 22:24:39 +0000 (GMT) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8C5543D46 for ; Mon, 29 Aug 2005 22:24:37 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 89571 invoked from network); 29 Aug 2005 22:02:43 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.54]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 29 Aug 2005 22:02:43 -0000 Message-ID: <43138B2F.E03BB8@freebsd.org> Date: Tue, 30 Aug 2005 00:24:47 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Mike Silbersack References: <200508291958.j7TJwvd0093355@repoman.freebsd.org> <43136DAC.4318A183@freebsd.org> <20050829170809.L55561@odysseus.silby.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 22:24:39 -0000 Mike Silbersack wrote: > > On Mon, 29 Aug 2005, Andre Oppermann wrote: > > > A kernel with m_santiy() as the first thing in ip_output() doesn't > > survive the first outgoing TCP connection. > > > > There are a lot of strange and sometimes right out incorrect mbuf > > (ab)uses in the kernel. > > > > -- > > Andre > > I can tell you one of the problems - tcp_reass moves the m_data pointer > forward, then continues to use the data in the pre-pointer area. This is not the problem here. tcp_reass is not involved in the ip_output() path. -- Andre From owner-cvs-src@FreeBSD.ORG Mon Aug 29 22:42:36 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B42E316A41F; Mon, 29 Aug 2005 22:42:36 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (core.310.ru [83.97.105.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02CB943D49; Mon, 29 Aug 2005 22:42:35 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (localhost [127.0.0.1]) by core.310.ru (8.13.3/8.12.11) with ESMTP id j7TMgWTJ000428; Tue, 30 Aug 2005 02:42:32 +0400 (MSD) (envelope-from stas@core.310.ru) Received: (from stas@localhost) by core.310.ru (8.13.3/8.12.11/Submit) id j7TMgWdV000427; Tue, 30 Aug 2005 02:42:32 +0400 (MSD) (envelope-from stas) Date: Tue, 30 Aug 2005 02:42:32 +0400 From: Stanislav Sedov To: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Message-ID: <20050829224232.GB269@core.310.ru> Mail-Followup-To: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: Subject: fuser utility X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 22:42:36 -0000 I implemented POSIX fuser utility for freebsd. I expect it conforms IEEE 1003.1-2004. It works only on recent kernels where devfs_random influence on dev_t numbers was eliminated. Not all filesystems currently supported, support for udf works only with patch(included) (due to namespace conflicts). Support for additional filesystems can be added easily, but requires appropriate header files in /usr/include. How can commit it? Also I have a fixed version of fstat utility if anybody interested in it. archive with utility and patches: http://mbsd.msk.ru/stas/fuser.tar.bz2 . From owner-cvs-src@FreeBSD.ORG Mon Aug 29 23:08:02 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F9FC16A41F; Mon, 29 Aug 2005 23:08:02 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFF6043D48; Mon, 29 Aug 2005 23:08:01 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7TN81LT007644; Mon, 29 Aug 2005 23:08:01 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7TN81pR007643; Mon, 29 Aug 2005 23:08:01 GMT (envelope-from sobomax) Message-Id: <200508292308.j7TN81pR007643@repoman.freebsd.org> From: Maxim Sobolev Date: Mon, 29 Aug 2005 23:08:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/tools/recoverdisk README recoverdisk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 23:08:02 -0000 sobomax 2005-08-29 23:08:01 UTC FreeBSD src repository Modified files: tools/tools/recoverdisk README recoverdisk.c Log: Extend utility to allow recovering single file from the deffective media. MFC after: 2 weeks Revision Changes Path 1.3 +5 -2 src/tools/tools/recoverdisk/README 1.5 +28 -12 src/tools/tools/recoverdisk/recoverdisk.c From owner-cvs-src@FreeBSD.ORG Mon Aug 29 23:27:18 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D68BE16A41F; Mon, 29 Aug 2005 23:27:18 +0000 (GMT) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63E8443D45; Mon, 29 Aug 2005 23:27:18 +0000 (GMT) (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.6) with ESMTP id j7TNREBd071896 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 29 Aug 2005 16:27:17 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <43139B6E.9060702@errno.com> Date: Mon, 29 Aug 2005 16:34:06 -0700 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050327) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Damien Bergamini References: <200508211416.j7LEGKCH041069@repoman.freebsd.org> <431356B2.9070006@errno.com> In-Reply-To: <431356B2.9070006@errno.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ral if_ral.c src/sys/dev/usb if_ural.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 29 Aug 2005 23:27:19 -0000 Sam Leffler wrote: > Damien Bergamini wrote: > >> damien 2005-08-21 14:16:20 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/dev/ral if_ral.c sys/dev/usb if_ural.c >> Log: >> Fix basic rates set for 802.11a/g operating modes. This can >> significantly >> improve transfer rates in 802.11a/g. Fix IFS settings in ral(4) too. >> > > > With these changes I can now sometimes associate as a station with one > of my production ap's in 11g. Other times I see the previous behaviour > that I reported 1+ months ago. The AssocReq frame to the ap is > rejected; it appears the ral sta side does not ACK the Auth response > frame from the ap so it then rejects the AssocReq. Specifically I see > retransmits of the Auth response from the ap until the AssocReq comes > from the sta at which time the ap sends a Deauth. I also see ProbeResp > frames from the ap being retransmitted which also indicates failure to > ACK by the sta. In the one case where I was able to associate I could > transfer data ok so I'm guessing you've still got setup issues prior to > association and/or the handling of management frames. If you want a > packet trace let me know. > > Otherwise I see problems when ejecting a ral cardbus card. It appears > the driver doesn't recognize when a card has gone away when scanning; > e.g. you'll see lots of msgs of the form: > > ral0: could not write to RF > > until there's a timeout (device timeout) followed by > > ral0: could not read from BBP > ral0: could not write to BBP > > At some point LONG time past I see ral0: detached; but sometimes not > until I insert another card. > > The above issues happen with both my ral cards (Asus WL-107g and Zonet > ZEW1501). All this is with CURRENT of today. I spent some time looking at the problem w/ not associating and see at least two issues: the 802.11 duration in mgt frames is calculated incorrectly (short preamble is not handled properly) and the sequence number is not monotonically increasing. I also don't understand why you're using a fixed 2Mb/s rate to send mgt frames; this may not be permissable. I tried correcting these problems but still cannot get reliable communication so there's something else. Whatever is wrong is definitely at the lowest level as ACK's from the sta are not always sniffed which typically means the card is not implementing the media access properly. Separately I had several panics when ejecting cards when the driver cleans the tx ring. It looks like the refcnt handling on node references is not synchrnized properly. Sam From owner-cvs-src@FreeBSD.ORG Tue Aug 30 03:05:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D8CD16A41F; Tue, 30 Aug 2005 03:05:21 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3A1F43D48; Tue, 30 Aug 2005 03:05:20 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost [127.0.0.1]) by mp2.macomnet.net (8.13.3/8.13.3) with ESMTP id j7U35IEj048848; Tue, 30 Aug 2005 07:05:19 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Tue, 30 Aug 2005 07:05:18 +0400 (MSD) From: Maxim Konovalov To: Andre Oppermann In-Reply-To: <43136DEB.B59F9276@freebsd.org> Message-ID: <20050830070415.D48618@mp2.macomnet.net> References: <200508292015.j7TKFYuW094247@repoman.freebsd.org> <43136DEB.B59F9276@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 03:05:21 -0000 Hi, [...] > > Add m_copymdata(struct mbuf *m, struct mbuf *n, int off, int len, > > int prep, int how). > > > > Copies the data portion of mbuf (chain) n starting from offset off > > for length len to mbuf (chain) m. Depending on prep the copied > > data will be appended or prepended. The function ensures that the > > mbuf (chain) m will be fully writeable by making real (not refcnt) > > copies of mbuf clusters. For the prepending the function returns > > a pointer to the new start of mbuf chain m and leaves as much > > leading space as possible in the new first mbuf. > > This one is primarily for the new TCP reassembly which makes very > efficient use of mbufs. Is it feasible to document all these new mbuf functions in mbuf.9? TIA. -- Maxim Konovalov From owner-cvs-src@FreeBSD.ORG Tue Aug 30 03:42:00 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A95E16A41F; Tue, 30 Aug 2005 03:42:00 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE78243D45; Tue, 30 Aug 2005 03:41:59 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U3fx1q027812; Tue, 30 Aug 2005 03:41:59 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U3fx3u027811; Tue, 30 Aug 2005 03:41:59 GMT (envelope-from gshapiro) Message-Id: <200508300341.j7U3fx3u027811@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 30 Aug 2005 03:41:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 03:42:00 -0000 gshapiro 2005-08-30 03:41:59 UTC FreeBSD src repository Modified files: etc/rc.d sendmail Log: Be sure to execute sendmail_precmd() to check sendmail.cf conflicts and rebuild the aliases file if necessary. PR: conf/72910 Submitted by: matteo@ MFC after: 3 days Revision Changes Path 1.15 +1 -0 src/etc/rc.d/sendmail From owner-cvs-src@FreeBSD.ORG Tue Aug 30 04:45:33 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E5B416A41F; Tue, 30 Aug 2005 04:45:33 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1142C43D46; Tue, 30 Aug 2005 04:45:33 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U4jWVY030132; Tue, 30 Aug 2005 04:45:32 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U4jWXg030131; Tue, 30 Aug 2005 04:45:32 GMT (envelope-from njl) Message-Id: <200508300445.j7U4jWXg030131@repoman.freebsd.org> From: Nate Lawson Date: Tue, 30 Aug 2005 04:45:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_cpu.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 04:45:33 -0000 njl 2005-08-30 04:45:32 UTC FreeBSD src repository Modified files: sys/kern kern_cpu.c Log: Eliminate cpufreq levels for two cases that are less than optimal: 1. Walk the absolute list in reverse to prefer duplicated levels that have a lower absolute setting, i.e. 800 Mhz/50% is better than 1600 Mhz/25% even though both have the same actual frequency. This also removes the need to check for already-modified levels since by definition, those will be added later in the sorted list. 2. Compare the absolute settings for derived levels and don't use the new level if it's higher. For example, a level of 800 Mhz/75% is preferable to 1600 Mhz/25% even though the latter has a lower total frequency. This work is based on a patch from the submitter but reworked by myself. Submitted by: Tijl Coosemans (tijl/ulyssis.org) Revision Changes Path 1.20 +48 -47 src/sys/kern/kern_cpu.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 05:03:33 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32FF416A41F; Tue, 30 Aug 2005 05:03:33 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E61C743D53; Tue, 30 Aug 2005 05:03:32 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U53Wgx037753; Tue, 30 Aug 2005 05:03:32 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U53W0G037752; Tue, 30 Aug 2005 05:03:32 GMT (envelope-from njl) Message-Id: <200508300503.j7U53W0G037752@repoman.freebsd.org> From: Nate Lawson Date: Tue, 30 Aug 2005 05:03:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/conf files.i386 src/sys/i386/i386 p4tcc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 05:03:33 -0000 njl 2005-08-30 05:03:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/conf files.i386 Removed files: (Branch: RELENG_5) sys/i386/i386 p4tcc.c Log: Remove p4tcc now that this is supported by cpufreq(4). Revision Changes Path 1.504.2.8 +0 -1 src/sys/conf/files.i386 1.3.4.2 +0 -249 src/sys/i386/i386/p4tcc.c (dead) From owner-cvs-src@FreeBSD.ORG Tue Aug 30 05:08:28 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44B7B16A420; Tue, 30 Aug 2005 05:08:28 +0000 (GMT) (envelope-from nate@root.org) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8585A43D45; Tue, 30 Aug 2005 05:08:27 +0000 (GMT) (envelope-from nate@root.org) Received: from pimout6-ext.prodigy.net (pimout6-int.prodigy.net [207.115.4.22]) by ylpvm15.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id j7U58Zst030086; Tue, 30 Aug 2005 01:08:35 -0400 X-ORBL: [64.171.187.62] Received: from [10.0.0.115] (adsl-64-171-187-62.dsl.snfc21.pacbell.net [64.171.187.62]) by pimout6-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id j7U58PL4306630; Tue, 30 Aug 2005 01:08:25 -0400 Message-ID: <4313E9C9.5050508@root.org> Date: Mon, 29 Aug 2005 22:08:25 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050723) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bruno Ducrot References: <200508240752.j7O7qxep016309@repoman.freebsd.org> <43129EE6.7040608@root.org> <20050829073821.GI7749@poupinou.org> In-Reply-To: <20050829073821.GI7749@poupinou.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/powerd powerd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 05:08:28 -0000 Bruno Ducrot wrote: > On Sun, Aug 28, 2005 at 10:36:38PM -0700, Nate Lawson wrote: > >>Another mitigating factor is a patch I hope to commit soon that removes >>levels that aren't useful. The general idea is the same as a recent >>email from Tijl Coosemans but my approach is different. > > > I'm pretty sure it's incorrect to add p4tcc and acpi_throttle for power > saving purpose. I plan to add some flags in order to use only relevant > frequencies to this end, but IMHO that should be done at low-level > drivers. On the other hand, it is usefull to keep the existing sysctl > freqs, but for cooling purpose only. I think throttling, whether via p4tcc or acpi_throttle, is a useful addition to absolute frequency control (i.e. est or powernow). With appropriate tuning, as I hope the patch I committed provides, the additional levels should be helpful. -- Nate From owner-cvs-src@FreeBSD.ORG Tue Aug 30 05:24:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C75A16A41F; Tue, 30 Aug 2005 05:24:54 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CE8643D45; Tue, 30 Aug 2005 05:24:54 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U5OsxR038565; Tue, 30 Aug 2005 05:24:54 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U5OsbD038564; Tue, 30 Aug 2005 05:24:54 GMT (envelope-from imp) Message-Id: <200508300524.j7U5OsbD038564@repoman.freebsd.org> From: Warner Losh Date: Tue, 30 Aug 2005 05:24:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ed if_ed_cbus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 05:24:54 -0000 imp 2005-08-30 05:24:54 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed_cbus.c Log: Add back dropped if_media.h include Revision Changes Path 1.23 +1 -0 src/sys/dev/ed/if_ed_cbus.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 06:00:36 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6432116A41F; Tue, 30 Aug 2005 06:00:36 +0000 (GMT) (envelope-from phk@phk.freebsd.dk) Received: from haven.freebsd.dk (haven.freebsd.dk [130.225.244.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id F32B843D4C; Tue, 30 Aug 2005 06:00:35 +0000 (GMT) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (unknown [192.168.48.2]) by haven.freebsd.dk (Postfix) with ESMTP id D2E60BC66; Tue, 30 Aug 2005 06:00:33 +0000 (UTC) To: Stanislav Sedov From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 30 Aug 2005 02:42:32 +0400." <20050829224232.GB269@core.310.ru> Date: Tue, 30 Aug 2005 08:00:32 +0200 Message-ID: <18282.1125381632@phk.freebsd.dk> Sender: phk@phk.freebsd.dk Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: fuser utility X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 06:00:36 -0000 In message <20050829224232.GB269@core.310.ru>, Stanislav Sedov writes: >I implemented POSIX fuser utility for freebsd. I expect it conforms >IEEE 1003.1-2004. It works only on recent kernels where devfs_random >influence on dev_t numbers was eliminated. This is wrong, the randomness will be reintroduced soon. We need to create the necessary hooks in the kernel for doing this correctly (ie: not kvm). -- 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 Aug 30 06:01:44 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F33EE16A421 for ; Tue, 30 Aug 2005 06:01:43 +0000 (GMT) (envelope-from silby@silby.com) Received: from relay.pair.com (relay00.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0DEA743D55 for ; Tue, 30 Aug 2005 06:01:42 +0000 (GMT) (envelope-from silby@silby.com) Received: (qmail 13016 invoked from network); 30 Aug 2005 06:01:41 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 30 Aug 2005 06:01:41 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 30 Aug 2005 01:01:40 -0500 (CDT) From: Mike Silbersack To: Andre Oppermann In-Reply-To: <43138B2F.E03BB8@freebsd.org> Message-ID: <20050830010114.X58090@odysseus.silby.com> References: <200508291958.j7TJwvd0093355@repoman.freebsd.org> <43136DAC.4318A183@freebsd.org> <20050829170809.L55561@odysseus.silby.com> <43138B2F.E03BB8@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 06:01:44 -0000 On Tue, 30 Aug 2005, Andre Oppermann wrote: >> I can tell you one of the problems - tcp_reass moves the m_data pointer >> forward, then continues to use the data in the pre-pointer area. > > This is not the problem here. tcp_reass is not involved in the ip_output() > path. > > -- > Andre Ah. Well, once you get packets smoothly flowing out, you may still encounter problems on the way back in. :) Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Tue Aug 30 06:16:32 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 641AF16A41F; Tue, 30 Aug 2005 06:16:32 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F24BE43D46; Tue, 30 Aug 2005 06:16:31 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U6GVYh040422; Tue, 30 Aug 2005 06:16:31 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U6GVQX040421; Tue, 30 Aug 2005 06:16:31 GMT (envelope-from marcel) Message-Id: <200508300616.j7U6GVQX040421@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 30 Aug 2005 06:16:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt remove.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 06:16:32 -0000 marcel 2005-08-30 06:16:31 UTC FreeBSD src repository Modified files: sbin/gpt remove.c Log: Don't print the total number of partitions removed now that we print the name of the partitions that we remove. A summary is unnecessary and even makes parsing of the output more difficult. MFC after: 1 week Revision Changes Path 1.5 +1 -7 src/sbin/gpt/remove.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 06:20:20 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7DDE16A41F; Tue, 30 Aug 2005 06:20:20 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85D3543D46; Tue, 30 Aug 2005 06:20:20 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U6KKbZ040556; Tue, 30 Aug 2005 06:20:20 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U6KKEw040555; Tue, 30 Aug 2005 06:20:20 GMT (envelope-from marcel) Message-Id: <200508300620.j7U6KKEw040555@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 30 Aug 2005 06:20:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt mkdisk.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 06:20:20 -0000 marcel 2005-08-30 06:20:20 UTC FreeBSD src repository Removed files: sbin/gpt mkdisk.sh Log: This script was helpful during development, but has no reason to be kept alive. Removal is long overdue as it is. Revision Changes Path 1.4 +0 -11 src/sbin/gpt/mkdisk.sh (dead) From owner-cvs-src@FreeBSD.ORG Tue Aug 30 07:03:04 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F29016A41F; Tue, 30 Aug 2005 07:03:04 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10ACB43D45; Tue, 30 Aug 2005 07:03:04 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U733qx042151; Tue, 30 Aug 2005 07:03:03 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U733vM042150; Tue, 30 Aug 2005 07:03:03 GMT (envelope-from joel) Message-Id: <200508300703.j7U733vM042150@repoman.freebsd.org> From: Joel Dahl Date: Tue, 30 Aug 2005 07:03:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 ata.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 07:03:04 -0000 joel 2005-08-30 07:03:03 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 ata.4 Log: s/PDC2061/PDC20621 Approved by: brueffer (mentor) Revision Changes Path 1.58 +1 -1 src/share/man/man4/ata.4 From owner-cvs-src@FreeBSD.ORG Tue Aug 30 08:53:06 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16FFE16A41F; Tue, 30 Aug 2005 08:53:06 +0000 (GMT) (envelope-from bruno@poupinou.org) Received: from poup.poupinou.org (poup.poupinou.org [195.101.94.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id A974C43D45; Tue, 30 Aug 2005 08:53:05 +0000 (GMT) (envelope-from bruno@poupinou.org) Received: from bruno by poup.poupinou.org with local (Exim) id 1EA1r5-0000qW-00; Tue, 30 Aug 2005 10:52:31 +0200 Date: Tue, 30 Aug 2005 10:52:31 +0200 To: Nate Lawson Message-ID: <20050830085231.GA31034@poupinou.org> References: <200508240752.j7O7qxep016309@repoman.freebsd.org> <43129EE6.7040608@root.org> <20050829073821.GI7749@poupinou.org> <4313E9C9.5050508@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4313E9C9.5050508@root.org> User-Agent: Mutt/1.5.9i From: Bruno Ducrot Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/powerd powerd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 08:53:06 -0000 On Mon, Aug 29, 2005 at 10:08:25PM -0700, Nate Lawson wrote: > Bruno Ducrot wrote: > >On Sun, Aug 28, 2005 at 10:36:38PM -0700, Nate Lawson wrote: > > > >>Another mitigating factor is a patch I hope to commit soon that removes > >>levels that aren't useful. The general idea is the same as a recent > >>email from Tijl Coosemans but my approach is different. > > > > > >I'm pretty sure it's incorrect to add p4tcc and acpi_throttle for power > >saving purpose. I plan to add some flags in order to use only relevant > >frequencies to this end, but IMHO that should be done at low-level > >drivers. On the other hand, it is usefull to keep the existing sysctl > >freqs, but for cooling purpose only. > > I think throttling, whether via p4tcc or acpi_throttle, is a useful > addition to absolute frequency control (i.e. est or powernow). With > appropriate tuning, as I hope the patch I committed provides, the > additional levels should be helpful. Apart on older processors, I don't see the usefullness for power saving purpose. The problem is that when the processor is in stop grant state in the duty cycle, it will consume more power than when it is in sleep or deep sleep states (or deeper sleep state for some). If the processor is idle, you will have nearly like 100% of time spend in sleep state (for laptops) or stop grant state (for desktop), or even better if the system support C3 etc. But if you have a duty cycle of (say) 87.5% due to the idleness of the system (and the result of powerd), then the processor will be put for 87.5% of time in stop grant state which consume more power than sleep state. -- Bruno Ducrot -- Which is worse: ignorance or apathy? -- Don't know. Don't care. From owner-cvs-src@FreeBSD.ORG Tue Aug 30 09:03:14 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B12B016A41F; Tue, 30 Aug 2005 09:03:14 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E5ED43D49; Tue, 30 Aug 2005 09:03:14 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U93Eo7054551; Tue, 30 Aug 2005 09:03:14 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U93DUK054550; Tue, 30 Aug 2005 09:03:13 GMT (envelope-from mux) Message-Id: <200508300903.j7U93DUK054550@repoman.freebsd.org> From: Maxime Henrion Date: Tue, 30 Aug 2005 09:03:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/nve if_nve.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 09:03:14 -0000 mux 2005-08-30 09:03:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/nve if_nve.c Log: MFC if_nve.c r1.8: date: 2005/07/25 22:21:11; author: mux; state: Exp; lines: +0 -1 Remove an erroneous m_freem() call. If m_defrag() returns a non-NULL pointer, it has already freed the original mbuf chain, so we shouldn't do it again. Approved by: re (scottl) Revision Changes Path 1.7.2.3 +0 -1 src/sys/dev/nve/if_nve.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 09:44:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D07D16A41F; Tue, 30 Aug 2005 09:44:56 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF0A443D45; Tue, 30 Aug 2005 09:44:55 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U9it0r056105; Tue, 30 Aug 2005 09:44:55 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U9itFT056104; Tue, 30 Aug 2005 09:44:55 GMT (envelope-from glebius) Message-Id: <200508300944.j7U9itFT056104@repoman.freebsd.org> From: Gleb Smirnoff Date: Tue, 30 Aug 2005 09:44:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph netgraph.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 09:44:56 -0000 glebius 2005-08-30 09:44:54 UTC FreeBSD src repository Modified files: sys/netgraph netgraph.h Log: Add ng_callout_ini_mtx() macro. Revision Changes Path 1.60 +1 -0 src/sys/netgraph/netgraph.h From owner-cvs-src@FreeBSD.ORG Tue Aug 30 09:50:07 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3055016A420 for ; Tue, 30 Aug 2005 09:50:07 +0000 (GMT) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id F25FA43D4C for ; Tue, 30 Aug 2005 09:50:03 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 93098 invoked from network); 30 Aug 2005 09:28:04 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 30 Aug 2005 09:28:04 -0000 Message-ID: <43142BD7.F0F6A285@freebsd.org> Date: Tue, 30 Aug 2005 11:50:15 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Konovalov References: <200508292015.j7TKFYuW094247@repoman.freebsd.org> <43136DEB.B59F9276@freebsd.org> <20050830070415.D48618@mp2.macomnet.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 09:50:07 -0000 Maxim Konovalov wrote: > > Hi, > > [...] > > > Add m_copymdata(struct mbuf *m, struct mbuf *n, int off, int len, > > > int prep, int how). > > > > > > Copies the data portion of mbuf (chain) n starting from offset off > > > for length len to mbuf (chain) m. Depending on prep the copied > > > data will be appended or prepended. The function ensures that the > > > mbuf (chain) m will be fully writeable by making real (not refcnt) > > > copies of mbuf clusters. For the prepending the function returns > > > a pointer to the new start of mbuf chain m and leaves as much > > > leading space as possible in the new first mbuf. > > > > This one is primarily for the new TCP reassembly which makes very > > efficient use of mbufs. > > Is it feasible to document all these new mbuf functions in mbuf.9? Yes, upcoming. -- Andre From owner-cvs-src@FreeBSD.ORG Tue Aug 30 09:51:55 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FD7B16A41F; Tue, 30 Aug 2005 09:51:55 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 731A043D48; Tue, 30 Aug 2005 09:51:55 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7U9ptDg056484; Tue, 30 Aug 2005 09:51:55 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7U9pt9d056483; Tue, 30 Aug 2005 09:51:55 GMT (envelope-from glebius) Message-Id: <200508300951.j7U9pt9d056483@repoman.freebsd.org> From: Gleb Smirnoff Date: Tue, 30 Aug 2005 09:51:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph ng_pptpgre.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 09:51:55 -0000 glebius 2005-08-30 09:51:54 UTC FreeBSD src repository Modified files: sys/netgraph ng_pptpgre.c Log: Lock down PPTP node, since it has many data structures, that won't survive parallel ng_pptp_rcvdata(): - Add a per-node mutex. - Acquire mutex during all ng_pptp_rcvdata() method. - Make callouts protected by mutex. Now callouts count as netgraph writers, but there are plans to allow reader callouts for nodes, that have internal locking. - Acquire mutex in ng_pptp_reset(), which can be triggered by a message or node shutdown. PR: kern/80035 Tested by: Deomid Ryabkov Reviewed by: Deomid Ryabkov Revision Changes Path 1.38 +25 -7 src/sys/netgraph/ng_pptpgre.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 10:34:28 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AA1116A41F; Tue, 30 Aug 2005 10:34:28 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FB2D43D48; Tue, 30 Aug 2005 10:34:27 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.52 (FreeBSD)) id 1EA3Ri-0005wn-LT; Tue, 30 Aug 2005 11:34:26 +0100 Date: Tue, 30 Aug 2005 11:34:26 +0100 From: Ceri Davies To: Craig Rodrigues Message-ID: <20050830103426.GF83442@submonkey.net> Mail-Followup-To: Ceri Davies , Craig Rodrigues , Craig Rodrigues , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> <20050828103801.GD99537@submonkey.net> <20050828204231.GA3431@crodrigues.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uTRFFR9qmiCqR05s" Content-Disposition: inline In-Reply-To: <20050828204231.GA3431@crodrigues.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.9i Sender: Ceri Davies Cc: Craig Rodrigues , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 10:34:28 -0000 --uTRFFR9qmiCqR05s Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 28, 2005 at 04:42:31PM -0400, Craig Rodrigues wrote: > On Sun, Aug 28, 2005 at 11:38:01AM +0100, Ceri Davies wrote: > > I only checked the UK servers at > > http://ntp.isc.org/bin/view/Servers/StratumTwoTimeServers, but from the= ones in > > the diff: > >=20 > > ntp.exnet.com notify > > ntp0.uk.uu.net restrictedaccess,notify > > ntp1.uk.uu.net notify > > ntp2.uk.uu.net restrictedaccess,notify > >=20 > > That leaves only numbers 1,6-9 from the new list usable. >=20 > Feel free to make any changes to src/usr.sbin/sysinstall/menus.c > to update the list of NTP servers. This list has not been updated in a > while, and these days people are changing their policies with > respect to usage of NTP servers. You just updated it; flies are on you ;) Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --uTRFFR9qmiCqR05s Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDFDYyocfcwTS3JF8RAvY0AKCF7wfxHb9H3X9ZcdrUgFvq9rElxACdH5Ad sLXvWEvVGpCWM2/Pcdl4HNk= =s5r8 -----END PGP SIGNATURE----- --uTRFFR9qmiCqR05s-- From owner-cvs-src@FreeBSD.ORG Tue Aug 30 12:32:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05F0316A41F; Tue, 30 Aug 2005 12:32:19 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9071E43D46; Tue, 30 Aug 2005 12:32:18 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UCWI8I063918; Tue, 30 Aug 2005 12:32:18 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UCWINH063917; Tue, 30 Aug 2005 12:32:18 GMT (envelope-from tjr) Message-Id: <200508301232.j7UCWINH063917@repoman.freebsd.org> From: "Tim J. Robbins" Date: Tue, 30 Aug 2005 12:32:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/split split.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 12:32:19 -0000 tjr 2005-08-30 12:32:18 UTC FreeBSD src repository Modified files: usr.bin/split split.c Log: Remove undocumented historic support for treating "-" as an option instead of a file operand; this is not compatible with POSIX. Revision Changes Path 1.17 +8 -14 src/usr.bin/split/split.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 12:42:02 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C6E616A421; Tue, 30 Aug 2005 12:42:02 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4802D43D67; Tue, 30 Aug 2005 12:42:01 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UCg1Sg066466; Tue, 30 Aug 2005 12:42:01 GMT (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UCg1NW066465; Tue, 30 Aug 2005 12:42:01 GMT (envelope-from deischen) Message-Id: <200508301242.j7UCg1NW066465@repoman.freebsd.org> From: Daniel Eischen Date: Tue, 30 Aug 2005 12:42:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpthread/thread thr_kern.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 12:42:02 -0000 deischen 2005-08-30 12:42:01 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_kern.c Log: Allocate a thread's tcb last so it is easier to handle failures to malloc() siginfo. PR: 85468 Revision Changes Path 1.118 +21 -20 src/lib/libpthread/thread/thr_kern.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 12:48:28 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2CFC16A41F; Tue, 30 Aug 2005 12:48:28 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FAF243D49; Tue, 30 Aug 2005 12:48:28 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UCmSag073687; Tue, 30 Aug 2005 12:48:28 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UCmSaL073686; Tue, 30 Aug 2005 12:48:28 GMT (envelope-from tjr) Message-Id: <200508301248.j7UCmSaL073686@repoman.freebsd.org> From: "Tim J. Robbins" Date: Tue, 30 Aug 2005 12:48:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/split split.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 12:48:28 -0000 tjr 2005-08-30 12:48:28 UTC FreeBSD src repository Modified files: usr.bin/split split.1 Log: Include option-argument names in the list in the DESCRIPTION section. Remove a non-bug from the BUGS section. Revision Changes Path 1.17 +4 -12 src/usr.bin/split/split.1 From owner-cvs-src@FreeBSD.ORG Tue Aug 30 12:48:40 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AACA116A41F; Tue, 30 Aug 2005 12:48:40 +0000 (GMT) (envelope-from brian@Awfulhak.org) Received: from gw.Awfulhak.org (awfulhak.demon.co.uk [80.177.173.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1C1443D46; Tue, 30 Aug 2005 12:48:39 +0000 (GMT) (envelope-from brian@Awfulhak.org) Received: from cromwell.red.sophos (brian@localhost [127.0.0.1]) by gw.Awfulhak.org (8.13.3/8.13.3) with ESMTP id j7UCmW06007273; Tue, 30 Aug 2005 13:48:33 +0100 (BST) (envelope-from brian@Awfulhak.org) Date: Tue, 30 Aug 2005 13:48:27 +0100 From: Brian Somers To: Gleb Smirnoff Message-ID: <20050830134827.5c6ec64d@cromwell.red.sophos> In-Reply-To: <200508290859.j7T8xUqN030868@repoman.freebsd.org> References: <200508290859.j7T8xUqN030868@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 1.9.13 (GTK+ 2.6.9; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.0.4 X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on gw.lan.Awfulhak.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 12:48:41 -0000 On Mon, 29 Aug 2005 08:59:30 +0000 (UTC) Gleb Smirnoff wrote: > glebius 2005-08-29 08:59:30 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_5) > sys/netinet in.c > Log: > MFC 1.87: > In order to support CARP interfaces kernel was taught to handle more > than one interface in one subnet. However, some userland apps rely on > the believe that this configuration is impossible. > > Add a sysctl switch net.inet.ip.same_prefix_carp_only. If the switch > is on, then kernel will refuse to add an additional interface to > already connected subnet unless the interface is CARP. Default > value is off. > > PR: bin/82306 > In collaboration with: mlaier > > Revision Changes Path > 1.77.2.4 +12 -2 src/sys/netinet/in.c This would be much more useful on a per-interface level, although it would be a bit awkward to implement. This change allows a (user) ppp server machine to allocate dynamic IP numbers properly again, but I don't know if documenting it is the right way to go... -- Brian Somers Don't _EVER_ lose your sense of humour ! From owner-cvs-src@FreeBSD.ORG Tue Aug 30 13:10:37 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E885116A420 for ; Tue, 30 Aug 2005 13:10:37 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3998B43D4C for ; Tue, 30 Aug 2005 13:10:37 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j7UD7W5I053065 for cvs-src@FreeBSD.org.checked; Tue, 30 Aug 2005 17:07:32 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from [144.206.181.94] (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j7UD6oB6053044; Tue, 30 Aug 2005 17:06:50 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <431459EB.8070405@cronyx.ru> Date: Tue, 30 Aug 2005 17:06:51 +0400 From: Roman Kurakin User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200508261342.j7QDg4gc052237@repoman.freebsd.org> In-Reply-To: <200508261342.j7QDg4gc052237@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files.i386 src/sys/modules Makefile src/sys/modules/el Makefile src/sys/i386/conf NOTES src/sys/i386/isa if_el.c if_elreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 13:10:38 -0000 John Baldwin wrote: >jhb 2005-08-26 13:42:04 UTC > > FreeBSD src repository > > Modified files: > sys/conf files.i386 > sys/modules Makefile > sys/i386/conf NOTES > Removed files: > sys/modules/el Makefile > sys/i386/isa if_el.c if_elreg.h > Log: > Remove the el(4) driver for 3Com 3c501 ISA NICs from HEAD as threatened > earlier as no one has stepped up to test recent changes to the driver. > Oddly, the module was actually turned on on ia64 though I'm fairly certain > that no ia64 machine has ever had or will ever have an ISA slot. > > I can find a link to an external bridge for ISA if you want. I don't know if it would work under FreeBSD, but you may try to run ISA card on ia64 that way. You may even try to made this device by yourself if the soldering iron is your friend. rik > > Axe borrowed from: phk > > Revision Changes Path > 1.540 +0 -1 src/sys/conf/files.i386 > 1.1205 +0 -5 src/sys/i386/conf/NOTES > 1.70 +0 -808 src/sys/i386/isa/if_el.c (dead) > 1.10 +0 -78 src/sys/i386/isa/if_elreg.h (dead) > 1.453 +0 -3 src/sys/modules/Makefile > 1.3 +0 -9 src/sys/modules/el/Makefile (dead) > > From owner-cvs-src@FreeBSD.ORG Tue Aug 30 14:12:34 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A21516A41F; Tue, 30 Aug 2005 14:12:34 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [204.127.202.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAF8943D49; Tue, 30 Aug 2005 14:12:33 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from c-66-30-115-133.hsd1.ma.comcast.net ([66.30.115.133]) by comcast.net (sccrmhc14) with ESMTP id <2005083014101601400sn0tge>; Tue, 30 Aug 2005 14:10:16 +0000 Received: from c-66-30-115-133.hsd1.ma.comcast.net (localhost.127.in-addr.arpa [127.0.0.1]) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1) with ESMTP id j7UEACYl008470; Tue, 30 Aug 2005 10:10:12 -0400 (EDT) (envelope-from rodrigc@c-66-30-115-133.hsd1.ma.comcast.net) Received: (from rodrigc@localhost) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1/Submit) id j7UEAB81008469; Tue, 30 Aug 2005 10:10:11 -0400 (EDT) (envelope-from rodrigc) Date: Tue, 30 Aug 2005 10:10:11 -0400 From: Craig Rodrigues To: Ceri Davies , Craig Rodrigues , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20050830141011.GA8458@crodrigues.org> References: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> <20050828103801.GD99537@submonkey.net> <20050828204231.GA3431@crodrigues.org> <20050830103426.GF83442@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050830103426.GF83442@submonkey.net> User-Agent: Mutt/1.5.9i Cc: Subject: Re: cvs commit: src/usr.sbin/sysinstall menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 14:12:34 -0000 On Tue, Aug 30, 2005 at 11:34:26AM +0100, Ceri Davies wrote: > You just updated it; flies are on you ;) No. -- Craig Rodrigues rodrigc@crodrigues.org From owner-cvs-src@FreeBSD.ORG Tue Aug 30 14:14:09 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62BF816A41F; Tue, 30 Aug 2005 14:14:09 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20A1943D45; Tue, 30 Aug 2005 14:14:09 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UEE9eJ077720; Tue, 30 Aug 2005 14:14:09 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UEE8pw077719; Tue, 30 Aug 2005 14:14:08 GMT (envelope-from glebius) Message-Id: <200508301414.j7UEE8pw077719@repoman.freebsd.org> From: Gleb Smirnoff Date: Tue, 30 Aug 2005 14:14:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net if_vlan.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 14:14:09 -0000 glebius 2005-08-30 14:14:08 UTC FreeBSD src repository Modified files: sys/net if_vlan.c Log: Fix fallout from revision 1.77, mark outgoing packets with M_VLANTAG flag. PR: kern/80646 Reviewed by: yar MFC after: 3 days Revision Changes Path 1.82 +1 -0 src/sys/net/if_vlan.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 14:27:50 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B5CA16A41F; Tue, 30 Aug 2005 14:27:50 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B9AB43D4C; Tue, 30 Aug 2005 14:27:48 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UERmwi078925; Tue, 30 Aug 2005 14:27:48 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UERm6Y078924; Tue, 30 Aug 2005 14:27:48 GMT (envelope-from avatar) Message-Id: <200508301427.j7UERm6Y078924@repoman.freebsd.org> From: Tai-hwa Liang Date: Tue, 30 Aug 2005 14:27:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net80211 ieee80211_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 14:27:50 -0000 avatar 2005-08-30 14:27:48 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_ioctl.c Log: Properly set ic_curchan before calling back to device driver to do channel switching(ifconfig devX channel Y). This fix should make channel changing works again in monitor mode. Submitted by: sam X-MFC-With: other ic_curchan changes Revision Changes Path 1.35 +12 -2 src/sys/net80211/ieee80211_ioctl.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 14:56:03 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 676AC16A41F; Tue, 30 Aug 2005 14:56:03 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35AB343D46; Tue, 30 Aug 2005 14:56:03 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UEu3RD081024; Tue, 30 Aug 2005 14:56:03 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UEu37T081023; Tue, 30 Aug 2005 14:56:03 GMT (envelope-from pjd) Message-Id: <200508301456.j7UEu37T081023@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 30 Aug 2005 14:56:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/modules/padlock Makefile src/sys/crypto/via padlock.c src/sys/modules Makefile src/sys/conf files.i386 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 14:56:03 -0000 pjd 2005-08-30 14:56:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/modules Makefile sys/conf files.i386 Added files: (Branch: RELENG_6) sys/modules/padlock Makefile sys/crypto/via padlock.c Log: MFC: Add VIA/ACE "PadLock" support as a crypto(9) driver. HW donated by: Mike Tancsa Most of the code obtained from: OpenBSD Approved by: re (scottl) Revision Changes Path 1.538.2.1 +1 -0 src/sys/conf/files.i386 1.1.2.1 +504 -0 src/sys/crypto/via/padlock.c (new) 1.450.2.2 +6 -0 src/sys/modules/Makefile 1.1.2.1 +8 -0 src/sys/modules/padlock/Makefile (new) From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:01:51 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF3D316A420; Tue, 30 Aug 2005 15:01:50 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE5A043D48; Tue, 30 Aug 2005 15:01:50 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UF1opj081414; Tue, 30 Aug 2005 15:01:50 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UF1oiU081413; Tue, 30 Aug 2005 15:01:50 GMT (envelope-from pjd) Message-Id: <200508301501.j7UF1oiU081413@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 30 Aug 2005 15:01:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/crypto/rijndael rijndael-alg-fst.c src/sys/opencrypto xform.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 15:01:51 -0000 pjd 2005-08-30 15:01:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/crypto/rijndael rijndael-alg-fst.c sys/opencrypto xform.c Log: MFC: sys/crypto/rijndael/rijndael-alg-fst.c 1.9,1.11 sys/opencrypto/xform.c 1.6 Check key size for rijndael, as invalid key size can lead to kernel panic. I checked other algorithms against this bug and it seems they aren't affected. Reported by: Mike Tancsa PR: i386/84860 Approved by: re (scottl) Revision Changes Path 1.8.2.1 +4 -0 src/sys/crypto/rijndael/rijndael-alg-fst.c 1.5.2.1 +2 -0 src/sys/opencrypto/xform.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:09:07 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0425E16A41F; Tue, 30 Aug 2005 15:09:07 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A68C643D49; Tue, 30 Aug 2005 15:09:06 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UF96Jw081686; Tue, 30 Aug 2005 15:09:06 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UF96EI081685; Tue, 30 Aug 2005 15:09:06 GMT (envelope-from pjd) Message-Id: <200508301509.j7UF96EI081685@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 30 Aug 2005 15:09:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/geom/class/raid3 geom_raid3.c src/sbin/geom/misc subr.c subr.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 15:09:07 -0000 pjd 2005-08-30 15:09:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/geom/class/raid3 geom_raid3.c sbin/geom/misc subr.c subr.h Log: MFC: sbin/class/raid3/geom_raid3.c 1.13 sbin/misc/subr.c 1.4 sbin/misc/subr.h 1.4 Move function for calculating number of bits into more central place. Approved by: re (scottl) Revision Changes Path 1.11.2.2 +1 -6 src/sbin/geom/class/raid3/geom_raid3.c 1.3.8.1 +12 -0 src/sbin/geom/misc/subr.c 1.3.8.1 +1 -0 src/sbin/geom/misc/subr.h From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:12:09 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4850D16A41F; Tue, 30 Aug 2005 15:12:09 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78F4F43D4C; Tue, 30 Aug 2005 15:12:07 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 318BD52CB0; Tue, 30 Aug 2005 17:12:06 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 7B75B52BC1; Tue, 30 Aug 2005 17:12:00 +0200 (CEST) Date: Tue, 30 Aug 2005 17:11:33 +0200 From: Pawel Jakub Dawidek To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20050830151133.GF799@garage.freebsd.pl> References: <200508301509.j7UF96EI081685@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fmEUq8M7S0s+Fl0V" Content-Disposition: inline In-Reply-To: <200508301509.j7UF96EI081685@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng devel (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: Subject: Re: cvs commit: src/sbin/geom/class/raid3 geom_raid3.c src/sbin/geom/misc subr.c subr.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 15:12:09 -0000 --fmEUq8M7S0s+Fl0V Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 30, 2005 at 03:09:06PM +0000, Pawel Jakub Dawidek wrote: +> Log: +> MFC: sbin/class/raid3/geom_raid3.c 1.13 +> sbin/misc/subr.c 1.4 +> sbin/misc/subr.h 1.4 Should be: sbin/geom/class/raid3/geom_raid3.c sbin/geom/misc/subr.c sbin/geom/misc/subr.h --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --fmEUq8M7S0s+Fl0V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDFHclForvXbEpPzQRAk2EAJ9nE94tU213Oh29qJ6qWWeDj80svACfaoAr s8BJrcrbwFkmWioY0pBoieU= =KYfa -----END PGP SIGNATURE----- --fmEUq8M7S0s+Fl0V-- From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:14:41 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CD6716A41F; Tue, 30 Aug 2005 15:14:41 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD53543D4C; Tue, 30 Aug 2005 15:14:40 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UFEeAf082041; Tue, 30 Aug 2005 15:14:40 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UFEeGG082040; Tue, 30 Aug 2005 15:14:40 GMT (envelope-from pjd) Message-Id: <200508301514.j7UFEeGG082040@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 30 Aug 2005 15:14:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys systm.h src/sys/i386/i386 mp_machdep.c src/sys/amd64/amd64 mp_machdep.c src/sys/geom/stripe g_stripe.c g_stripe.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 15:14:41 -0000 pjd 2005-08-30 15:14:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys systm.h sys/i386/i386 mp_machdep.c sys/amd64/amd64 mp_machdep.c sys/geom/stripe g_stripe.c g_stripe.h Log: MFC: sys/sys/systm.h 1.235 sys/i386/i386/mp_machdep.c 1.253 sys/amd64/amd64/mp_machdep.c 1.262 sys/geom/stripe/g_stripe.c 1.27 sys/geom/stripe/g_stripe.h 1.8 Avoid code duplication and implement bitcount32() function in systm.h only. Approved by: re (scottl) Revision Changes Path 1.260.2.2 +1 -53 src/sys/amd64/amd64/mp_machdep.c 1.25.2.2 +1 -1 src/sys/geom/stripe/g_stripe.c 1.7.2.1 +0 -6 src/sys/geom/stripe/g_stripe.h 1.252.2.2 +1 -53 src/sys/i386/i386/mp_machdep.c 1.234.2.1 +52 -0 src/sys/sys/systm.h From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:16:15 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7125816A41F; Tue, 30 Aug 2005 15:16:15 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E02343D46; Tue, 30 Aug 2005 15:16:15 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UFGFVI082194; Tue, 30 Aug 2005 15:16:15 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UFGFvj082193; Tue, 30 Aug 2005 15:16:15 GMT (envelope-from pjd) Message-Id: <200508301516.j7UFGFvj082193@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 30 Aug 2005 15:16:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/geom/label g_label.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 15:16:15 -0000 pjd 2005-08-30 15:16:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/geom/label g_label.c Log: MFC: sys/geom/label/g_label.c 1.17 Back-out the change from revision 1.14 and allow for '/' in labels again. Convinced by: green, Gavin Atkinson, dougb, gordon Approved by: re (scottl) Revision Changes Path 1.13.2.2 +0 -8 src/sys/geom/label/g_label.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:18:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B243416A41F; Tue, 30 Aug 2005 15:18:54 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B5F343D46; Tue, 30 Aug 2005 15:18:54 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UFIs6P082310; Tue, 30 Aug 2005 15:18:54 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UFIs3t082309; Tue, 30 Aug 2005 15:18:54 GMT (envelope-from pjd) Message-Id: <200508301518.j7UFIs3t082309@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 30 Aug 2005 15:18:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/geom/label g_label_ext2fs.c g_label_iso9660.c g_label_reiserfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 15:18:55 -0000 pjd 2005-08-30 15:18:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/geom/label g_label_ext2fs.c g_label_iso9660.c g_label_reiserfs.c Log: MFC: sys/geom/label/g_label_ext2fs.c 1.2 sys/geom/label/g_label_iso9660.c 1.2 sys/geom/label/g_label_reiserfs.c 1.2 Verify if we can actually read the data at given offset. Approved by: re (scottl) Revision Changes Path 1.1.2.2 +3 -0 src/sys/geom/label/g_label_ext2fs.c 1.1.8.1 +5 -1 src/sys/geom/label/g_label_iso9660.c 1.1.2.2 +10 -6 src/sys/geom/label/g_label_reiserfs.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:27:30 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEC0316A41F; Tue, 30 Aug 2005 15:27:30 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99FA043D48; Tue, 30 Aug 2005 15:27:30 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UFRUid082732; Tue, 30 Aug 2005 15:27:30 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UFRU4h082731; Tue, 30 Aug 2005 15:27:30 GMT (envelope-from pjd) Message-Id: <200508301527.j7UFRU4h082731@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 30 Aug 2005 15:27:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/geom/eli g_eli.c g_eli.h g_eli_ctl.c src/sbin/geom/class/eli geli.8 geom_eli.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 15:27:31 -0000 pjd 2005-08-30 15:27:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/geom/eli g_eli.c g_eli.h g_eli_ctl.c sbin/geom/class/eli geli.8 geom_eli.c Log: MFC: sys/geom/eli/g_eli.c 1.6-11 sys/geom/eli/g_eli.h 1.3-4 sys/geom/eli/g_eli_ctl.c 1.2 sbin/geom/class/eli/geli.8 1.4-6 sbin/geom/class/eli/geom_eli.c 1.3 Sync with HEAD: - We don't need to clear allocated memory. This will speed-up things a bit. - Even if crypto_dispatch() return an error, request is not canceled and our callback will still be called, just to tell us that requested failed... - Always run dedicated kernel thread (even when we have hardware support). There is no performance impact, but allows to allocate memory with M_WAITOK flag. As a side effect this simplify code a bit. - Allow to change number of iterations for PKCS#5v2. It can only be used when there is only one key set. - Add a __packed keyword to g_eli_metadata struct definition, so sizeof(struct g_eli_metadata) will return the exact number of bytes needed for storing it on the disk. Without this change GELI was unusable on amd64 (and probably other 64-bit archs), because sizeof(struct g_eli_metadata) was greater than 512 bytes and geli(8) was failing on assertion. Approved by: re (scottl) Revision Changes Path 1.2.2.3 +10 -3 src/sbin/geom/class/eli/geli.8 1.1.2.3 +57 -23 src/sbin/geom/class/eli/geom_eli.c 1.3.2.3 +49 -136 src/sys/geom/eli/g_eli.c 1.1.2.3 +3 -3 src/sys/geom/eli/g_eli.h 1.1.2.2 +21 -2 src/sys/geom/eli/g_eli_ctl.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 15:59:49 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA22E16A41F; Tue, 30 Aug 2005 15:59:49 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80C6C43D49; Tue, 30 Aug 2005 15:59:49 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UFxnVX085069; Tue, 30 Aug 2005 15:59:49 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UFxn2o085068; Tue, 30 Aug 2005 15:59:49 GMT (envelope-from sam) Message-Id: <200508301559.j7UFxn2o085068@repoman.freebsd.org> From: Sam Leffler Date: Tue, 30 Aug 2005 15:59:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/wpa/wpa_supplicant driver_freebsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 15:59:49 -0000 sam 2005-08-30 15:59:49 UTC FreeBSD src repository Modified files: usr.sbin/wpa/wpa_supplicant driver_freebsd.c Log: o correct alignment of 802.11 addresses passed to ether_ntoa to fix segfaults on amd64 o while here correct printf formats for size_t args Identified by: Pascal Hofstee MFC after: 3 days Revision Changes Path 1.8 +11 -5 src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:03:16 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3114B16A41F; Tue, 30 Aug 2005 16:03:16 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E42F043D45; Tue, 30 Aug 2005 16:03:15 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UG3FOC085270; Tue, 30 Aug 2005 16:03:15 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UG3FHV085269; Tue, 30 Aug 2005 16:03:15 GMT (envelope-from sam) Message-Id: <200508301603.j7UG3FHV085269@repoman.freebsd.org> From: Sam Leffler Date: Tue, 30 Aug 2005 16:03:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/tools/ath athctrl.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 16:03:16 -0000 sam 2005-08-30 16:03:15 UTC FreeBSD src repository Added files: tools/tools/ath athctrl.sh Log: script to set ifs parameters based on distance; derived from program of the same name by Gunter Burchardt MFC after: 3 days Revision Changes Path 1.1 +42 -0 src/tools/tools/ath/athctrl.sh (new) From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:12:04 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E0D316A41F; Tue, 30 Aug 2005 16:12:04 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3C2D43D45; Tue, 30 Aug 2005 16:12:03 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGC36v085775; Tue, 30 Aug 2005 16:12:03 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGC3CM085774; Tue, 30 Aug 2005 16:12:03 GMT (envelope-from kan) Message-Id: <200508301612.j7UGC3CM085774@repoman.freebsd.org> From: Alexander Kabaev Date: Tue, 30 Aug 2005 16:12:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_lookup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 16:12:04 -0000 kan 2005-08-30 16:12:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_lookup.c Log: MFC r1.81: Do not keep parent directory locked while calling VFS_ROOT to traverse mount points in lookup(). The lock can be dropped safely around VFS_ROOT because LOCKPARENT semantics with child and parent vnodes coming from different FSes does not really have any meaningful use and we do not really care about parent state after we relock it. This prevents easily triggered deadlock on systems using automounter daemon. Approved by: re (scottl) Revision Changes Path 1.80.2.1 +2 -0 src/sys/kern/vfs_lookup.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:14:26 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66B8616A41F; Tue, 30 Aug 2005 16:14:26 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2134443D46; Tue, 30 Aug 2005 16:14:26 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGEQcj085925; Tue, 30 Aug 2005 16:14:26 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGEQVn085924; Tue, 30 Aug 2005 16:14:26 GMT (envelope-from scottl) Message-Id: <200508301614.j7UGEQVn085924@repoman.freebsd.org> From: Scott Long Date: Tue, 30 Aug 2005 16:14:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man5 autofs.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 16:14:26 -0000 scottl 2005-08-30 16:14:25 UTC FreeBSD src repository Removed files: share/man/man5 autofs.5 Log: Remove a stale manpage. Revision Changes Path 1.4 +0 -58 src/share/man/man5/autofs.5 (dead) From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:21:52 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1525E16A41F; Tue, 30 Aug 2005 16:21:52 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C777843D58; Tue, 30 Aug 2005 16:21:51 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGLpGC086325; Tue, 30 Aug 2005 16:21:51 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGLpek086324; Tue, 30 Aug 2005 16:21:51 GMT (envelope-from andre) Message-Id: <200508301621.j7UGLpek086324@repoman.freebsd.org> From: Andre Oppermann Date: Tue, 30 Aug 2005 16:21:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/ndis kern_ndis.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 16:21:52 -0000 andre 2005-08-30 16:21:51 UTC FreeBSD src repository Modified files: sys/compat/ndis kern_ndis.c Log: Test the mbuf flags against the correct constant. The previous version worked as intended but only by chance. MT_HEADER == M_PKTHDR == 0x2. Revision Changes Path 1.85 +1 -1 src/sys/compat/ndis/kern_ndis.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:28:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0B2416A41F; Tue, 30 Aug 2005 16:28:46 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B129843D53; Tue, 30 Aug 2005 16:28:46 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGSke0086896; Tue, 30 Aug 2005 16:28:46 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGSk5N086895; Tue, 30 Aug 2005 16:28:46 GMT (envelope-from andre) Message-Id: <200508301628.j7UGSk5N086895@repoman.freebsd.org> From: Andre Oppermann Date: Tue, 30 Aug 2005 16:28:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netatalk ddp_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 16:28:47 -0000 andre 2005-08-30 16:28:46 UTC FreeBSD src repository Modified files: sys/netatalk ddp_output.c Log: Use the correct mbuf type for MGET(). Revision Changes Path 1.28 +1 -1 src/sys/netatalk/ddp_output.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:33:40 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10B6316A41F; Tue, 30 Aug 2005 16:33:40 +0000 (GMT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9160B43D4C; Tue, 30 Aug 2005 16:33:39 +0000 (GMT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGXd0N087364; Tue, 30 Aug 2005 16:33:39 GMT (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGXd8l087363; Tue, 30 Aug 2005 16:33:39 GMT (envelope-from schweikh) Message-Id: <200508301633.j7UGXd8l087363@repoman.freebsd.org> From: Jens Schweikhardt Date: Tue, 30 Aug 2005 16:33:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/games/fortune/datfiles startrek X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 16:33:40 -0000 schweikh 2005-08-30 16:33:39 UTC FreeBSD src repository Modified files: games/fortune/datfiles startrek Log: Punctuation corrections. Revision Changes Path 1.8 +2 -2 src/games/fortune/datfiles/startrek From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:35:34 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 794A316A41F; Tue, 30 Aug 2005 16:35:34 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 489D443D58; Tue, 30 Aug 2005 16:35:29 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGZRgO087596; Tue, 30 Aug 2005 16:35:27 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGZR5Q087595; Tue, 30 Aug 2005 16:35:27 GMT (envelope-from andre) Message-Id: <200508301635.j7UGZR5Q087595@repoman.freebsd.org> From: Andre Oppermann Date: Tue, 30 Aug 2005 16:35:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_input.c ip_output.c tcp_subr.c src/sys/netinet6 ip6_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 16:35:34 -0000 andre 2005-08-30 16:35:27 UTC FreeBSD src repository Modified files: sys/netinet ip_input.c ip_output.c tcp_subr.c sys/netinet6 ip6_output.c Log: Use the correct mbuf type for MGET(). Revision Changes Path 1.304 +1 -1 src/sys/netinet/ip_input.c 1.246 +1 -1 src/sys/netinet/ip_output.c 1.232 +1 -1 src/sys/netinet/tcp_subr.c 1.97 +1 -1 src/sys/netinet6/ip6_output.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:43:24 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4DA216A41F; Tue, 30 Aug 2005 16:43:24 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A23A643D45; Tue, 30 Aug 2005 16:43:24 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGhOL4088200; Tue, 30 Aug 2005 16:43:24 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGhOrc088199; Tue, 30 Aug 2005 16:43:24 GMT (envelope-from mlaier) Message-Id: <200508301643.j7UGhOrc088199@repoman.freebsd.org> From: Max Laier Date: Tue, 30 Aug 2005 16:43:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net if_ethersubr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 16:43:25 -0000 mlaier 2005-08-30 16:43:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_ethersubr.c Log: MFC: if_ethersubr.c, 1.197: Don't loop back packets that have been routed by pf. This fixes an endless loop where the same packet is sent over and over again. Obtained from: OpenBSD Reported by: Sergey Lapin Tested by: Sergey Lapin Approved by: re (scottl) Revision Changes Path 1.193.2.3 +2 -1 src/sys/net/if_ethersubr.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:44:32 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62F3C16A41F; Tue, 30 Aug 2005 16:44:32 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2153A43D45; Tue, 30 Aug 2005 16:44:32 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGiW8B088327; Tue, 30 Aug 2005 16:44:32 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGiWs3088326; Tue, 30 Aug 2005 16:44:32 GMT (envelope-from mlaier) Message-Id: <200508301644.j7UGiWs3088326@repoman.freebsd.org> From: Max Laier Date: Tue, 30 Aug 2005 16:44:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/net if_ethersubr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 16:44:32 -0000 mlaier 2005-08-30 16:44:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/net if_ethersubr.c Log: MFC: if_ethersubr.c, 1.197: Don't loop back packets that have been routed by pf. This fixes an endless loop where the same packet is sent over and over again. Obtained from: OpenBSD Reported by: Sergey Lapin Tested by: Sergey Lapin Revision Changes Path 1.177.2.6 +2 -1 src/sys/net/if_ethersubr.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 16:45:32 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBB8116A41F; Tue, 30 Aug 2005 16:45:32 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FD7A43D53; Tue, 30 Aug 2005 16:45:32 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UGjWJM088435; Tue, 30 Aug 2005 16:45:32 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UGjWZF088434; Tue, 30 Aug 2005 16:45:32 GMT (envelope-from csjp) Message-Id: <200508301645.j7UGjWZF088434@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Tue, 30 Aug 2005 16:45:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 16:45:33 -0000 csjp 2005-08-30 16:45:32 UTC FreeBSD src repository Modified files: sbin/mdconfig mdconfig.c Log: When using files as backing stores for devices, and the user has requested the device be created read+write, check to see if the backing store is read only through the use of the access(2) system call. If this check fails returning EACCES, EPERM or EROFS then gracefully downgrade the access to read only. Also print a warning message to stderr, informing the user that the access mode they requested is not available. This behavior used to be handled by md(4) but was changed in revision 1.154 Discussed with: pjd, phk, Dario Freni Reviewed by: phk Revision Changes Path 1.44 +11 -0 src/sbin/mdconfig/mdconfig.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 17:03:39 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A088416A41F; Tue, 30 Aug 2005 17:03:39 +0000 (GMT) (envelope-from saturnero@freesbie.org) Received: from jail1-fbsd4.consiagnet.it (jail1-fbsd4.consiagnet.it [83.149.128.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CF7B43D46; Tue, 30 Aug 2005 17:03:38 +0000 (GMT) (envelope-from saturnero@freesbie.org) Received: from [192.168.10.2] (host235-73.pool8256.interbusiness.it [82.56.73.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by jail1-fbsd4.consiagnet.it (Postfix) with ESMTP id B6FA45745; Tue, 30 Aug 2005 19:05:06 +0200 (CEST) Message-ID: <4314916F.8010709@freesbie.org> Date: Tue, 30 Aug 2005 19:03:43 +0200 From: Dario Freni User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050828) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Christian S.J. Peron" References: <200508301645.j7UGjWZF088434@repoman.freebsd.org> In-Reply-To: <200508301645.j7UGjWZF088434@repoman.freebsd.org> X-Enigmail-Version: 0.92.0.0 OpenPGP: url=http://www.saturnero.net/saturnero.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigC74E651DF87AFDC29FE6ACFE" Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 17:03:39 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigC74E651DF87AFDC29FE6ACFE Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Christian S.J. Peron wrote: > csjp 2005-08-30 16:45:32 UTC > > FreeBSD src repository > > Modified files: > sbin/mdconfig mdconfig.c > Log: > When using files as backing stores for devices, and the user has requested the > device be created read+write, check to see if the backing store is read only > through the use of the access(2) system call. If this check fails returning > EACCES, EPERM or EROFS then gracefully downgrade the access to read only. Also > print a warning message to stderr, informing the user that the access mode > they requested is not available. > > This behavior used to be handled by md(4) but was changed in revision 1.154 > > Discussed with: pjd, phk, Dario Freni > Reviewed by: phk Thank you! -- Dario Freni (saturnero@freesbie.org) FreeSBIE developer (http://www.freesbie.org) GPG Public key at http://www.saturnero.net/saturnero.asc --------------enigC74E651DF87AFDC29FE6ACFE Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDFJFyymi72IiShysRArq4AKCFyBFmLL3JmhPyMim45e2mumMyZQCeKRyw Ag+mknK+52kFke9bPDAeJvA= =YMHR -----END PGP SIGNATURE----- --------------enigC74E651DF87AFDC29FE6ACFE-- From owner-cvs-src@FreeBSD.ORG Tue Aug 30 17:51:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A559916A41F; Tue, 30 Aug 2005 17:51:23 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EDBA43D45; Tue, 30 Aug 2005 17:51:23 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id E84AF52CB0; Tue, 30 Aug 2005 19:51:20 +0200 (CEST) Received: from localhost (dlo224.neoplus.adsl.tpnet.pl [83.24.44.224]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 9D47D52BC1; Tue, 30 Aug 2005 19:51:10 +0200 (CEST) Date: Tue, 30 Aug 2005 19:50:42 +0200 From: Pawel Jakub Dawidek To: "Christian S.J. Peron" Message-ID: <20050830175042.GA4215@garage.freebsd.pl> References: <200508301645.j7UGjWZF088434@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mP3DRpeJDSE+ciuQ" Content-Disposition: inline In-Reply-To: <200508301645.j7UGjWZF088434@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng devel (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-0.5 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 17:51:23 -0000 --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 30, 2005 at 04:45:32PM +0000, Christian S.J. Peron wrote: +> csjp 2005-08-30 16:45:32 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sbin/mdconfig mdconfig.c=20 +> Log: +> When using files as backing stores for devices, and the user has reque= sted the +> device be created read+write, check to see if the backing store is rea= d only +> through the use of the access(2) system call. If this check fails retu= rning +> EACCES, EPERM or EROFS then gracefully downgrade the access to read on= ly. Also +> print a warning message to stderr, informing the user that the access = mode +> they requested is not available. Thanks. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --mP3DRpeJDSE+ciuQ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDFJxyForvXbEpPzQRArMRAJ9ZCy1xmCdh8iaMO3BpyodIrhLvYACgjvfj DQ+H1oSekg5dsuWjXn4SujA= =OuPG -----END PGP SIGNATURE----- --mP3DRpeJDSE+ciuQ-- From owner-cvs-src@FreeBSD.ORG Tue Aug 30 18:19:42 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF4A216A420; Tue, 30 Aug 2005 18:19:42 +0000 (GMT) (envelope-from nate@root.org) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C2274408D; Tue, 30 Aug 2005 18:12:37 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.33] (adsl-67-119-74-222.dsl.sntc01.pacbell.net [67.119.74.222]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id j7UIBUo5019035 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 30 Aug 2005 11:11:30 -0700 Message-ID: <4314A14E.5020202@root.org> Date: Tue, 30 Aug 2005 11:11:26 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bruno Ducrot References: <200508240752.j7O7qxep016309@repoman.freebsd.org> <43129EE6.7040608@root.org> <20050829073821.GI7749@poupinou.org> <4313E9C9.5050508@root.org> <20050830085231.GA31034@poupinou.org> In-Reply-To: <20050830085231.GA31034@poupinou.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/powerd powerd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 18:19:43 -0000 Bruno Ducrot wrote: > On Mon, Aug 29, 2005 at 10:08:25PM -0700, Nate Lawson wrote: > >>Bruno Ducrot wrote: >>>I'm pretty sure it's incorrect to add p4tcc and acpi_throttle for power >>>saving purpose. I plan to add some flags in order to use only relevant >>>frequencies to this end, but IMHO that should be done at low-level >>>drivers. On the other hand, it is usefull to keep the existing sysctl >>>freqs, but for cooling purpose only. >> >>I think throttling, whether via p4tcc or acpi_throttle, is a useful >>addition to absolute frequency control (i.e. est or powernow). With >>appropriate tuning, as I hope the patch I committed provides, the >>additional levels should be helpful. > > Apart on older processors, I don't see the usefullness for power saving > purpose. The problem is that when the processor is in stop grant state > in the duty cycle, it will consume more power than when it is in sleep > or deep sleep states (or deeper sleep state for some). > If the processor is idle, you will have nearly like 100% of time spend > in sleep state (for laptops) or stop grant state (for desktop), or even > better if the system support C3 etc. > > But if you have a duty cycle of (say) 87.5% due to the idleness of the > system (and the result of powerd), then the processor will be put > for 87.5% of time in stop grant state which consume more power > than sleep state. We do use C3+ if supported, and I agree it gives more power savings when active. But even an idle system gets periodic timer interrupts, battery polling, and other events that require it to exit C3. So running at a low CPU rate via throttling may conserve power when not in C3. -- Nate From owner-cvs-src@FreeBSD.ORG Tue Aug 30 18:25:39 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D91C16A446; Tue, 30 Aug 2005 18:25:39 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 632914402F; Tue, 30 Aug 2005 18:20:47 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UIKlD1001256; Tue, 30 Aug 2005 18:20:47 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UIKl1w001255; Tue, 30 Aug 2005 18:20:47 GMT (envelope-from brooks) Message-Id: <200508301820.j7UIKl1w001255@repoman.freebsd.org> From: Brooks Davis Date: Tue, 30 Aug 2005 18:20:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/dhclient dhclient.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 18:25:40 -0000 brooks 2005-08-30 18:20:47 UTC FreeBSD src repository Modified files: sbin/dhclient dhclient.c Log: Introduce a new helper function check_search() derived for res_hnok to check the domain-name parameter according to the rules for "search" strings as documented in resolv.conf(5). Specifically, the string must be no more than 256 bytes long and contain no more than six valid domain names separated by white space. The previous unchecked values could result in a mangled resolv.conf file which could effectively deny access to local sites. This is not a security issue as rogue dhcp servers could already do this without sending invalid strings. Reviewed by: cperciva MFC After: 3 days Revision Changes Path 1.10 +56 -0 src/sbin/dhclient/dhclient.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 18:45:59 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5438416A41F; Tue, 30 Aug 2005 18:45:59 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id C13D643D46; Tue, 30 Aug 2005 18:45:58 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from [10.50.40.201] (Not Verified[10.50.40.201]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Tue, 30 Aug 2005 15:01:09 -0400 From: John Baldwin To: Roman Kurakin Date: Tue, 30 Aug 2005 14:12:08 -0400 User-Agent: KMail/1.8 References: <200508261342.j7QDg4gc052237@repoman.freebsd.org> <431459EB.8070405@cronyx.ru> In-Reply-To: <431459EB.8070405@cronyx.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508301412.09936.jhb@FreeBSD.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files.i386 src/sys/modules Makefile src/sys/modules/el Makefile src/sys/i386/conf NOTES src/sys/i386/isa if_el.c if_elreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 18:45:59 -0000 On Tuesday 30 August 2005 09:06 am, Roman Kurakin wrote: > John Baldwin wrote: > >jhb 2005-08-26 13:42:04 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf files.i386 > > sys/modules Makefile > > sys/i386/conf NOTES > > Removed files: > > sys/modules/el Makefile > > sys/i386/isa if_el.c if_elreg.h > > Log: > > Remove the el(4) driver for 3Com 3c501 ISA NICs from HEAD as threatened > > earlier as no one has stepped up to test recent changes to the driver. > > Oddly, the module was actually turned on on ia64 though I'm fairly > > certain that no ia64 machine has ever had or will ever have an ISA slot. > > I can find a link to an external bridge for ISA if you want. > I don't know if it would work under FreeBSD, but you > may try to run ISA card on ia64 that way. > You may even try to made this device by yourself if the > soldering iron is your friend. > > rik The ia64 comment was more that the module probably shouldn't have been enabled on ia64 in the first place. Why would you want to hack up a way to stick an 8-bit ISA 10Mbit ethernet card in a machine that probably has at least one (probably two or more) 10/100 (if not gige) builtin NICs. -- 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 Aug 30 18:57:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E55B16A420; Tue, 30 Aug 2005 18:57:47 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CBDC43D48; Tue, 30 Aug 2005 18:57:45 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.52 (FreeBSD)) id 1EABIl-0005D1-Rk; Tue, 30 Aug 2005 19:57:43 +0100 Date: Tue, 30 Aug 2005 19:57:43 +0100 From: Ceri Davies To: Craig Rodrigues Message-ID: <20050830185743.GA63826@submonkey.net> Mail-Followup-To: Ceri Davies , Craig Rodrigues , Craig Rodrigues , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> <20050828103801.GD99537@submonkey.net> <20050828204231.GA3431@crodrigues.org> <20050830103426.GF83442@submonkey.net> <20050830141011.GA8458@crodrigues.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="R3G7APHDIzY6R/pk" Content-Disposition: inline In-Reply-To: <20050830141011.GA8458@crodrigues.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.10i Sender: Ceri Davies Cc: Craig Rodrigues , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 18:57:47 -0000 --R3G7APHDIzY6R/pk Content-Type: multipart/mixed; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 30, 2005 at 10:10:11AM -0400, Craig Rodrigues wrote: > On Tue, Aug 30, 2005 at 11:34:26AM +0100, Ceri Davies wrote: > > You just updated it; flies are on you ;) >=20 > No. Fair enough. I'd like to know where the Swedish list came from though, as none of the servers added are listed at ntp.isc.org. I've attached as much updating as I'm doing tonight. Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="menus.diff" Content-Transfer-Encoding: quoted-printable Index: menus.c =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/usr.sbin/sysinstall/menus.c,v retrieving revision 1.411 diff -u -r1.411 menus.c --- menus.c 24 Aug 2005 02:21:12 -0000 1.411 +++ menus.c 30 Aug 2005 18:56:17 -0000 @@ -1531,63 +1531,36 @@ { "Australia", "au.pool.ntp.org", dmenuVarsCheck, dmenuSetVariables, NULL,=20 "ntpdate_enable=3DYES,ntpdate_flags=3Dau.pool.ntp.org" }, - { "Australia #2", "augean.eleceng.adelaide.edu.au", + { "Australia #2", "ntp1.tpg.com.au", dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Daugean.eleceng.adelaide.edu.au" }, - { "Australia #3", "ntp.adelaide.edu.au", + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.tpg.com.au" }, + { "Australia #3", "ntp2.tpg.com.au", dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.adelaide.edu.au" }, - { "Australia #4", "ntp.saard.net", - dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.saard.net" }, - { "Australia #5", "time.deakin.edu.au", - dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dtime.deakin.edu.au" }, + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2.tpg.com.au" }, { "Belgium", "ntp1.belbone.be", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.belbone.be" }, { "Belgium #2", "ntp2.belbone.be", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2.belbone.be" }, - { "Brazil", "ntp.cais.rnp.br", - dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.cais.rnp.br" }, - { "Brazil #2", "ntp.pop-df.rnp.br", - dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.pop-df.rnp.br" }, - { "Brazil #3", "ntp.ufes.br", - dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.ufes.br" }, - { "Brazil #4", "ntp1.pucpr.br", + { "Brazil", "ntp1.pucpr.br", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.pucpr.br" }, + { "Brazil #2", "ntp.pads.ufrj.br", + dmenuVarsCheck, dmenuSetVariables, NULL, + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.pads.ufrj.br" }, { "Canada", "ca.pool.ntp.org", dmenuVarsCheck, dmenuSetVariables, NULL,=20 "ntpdate_enable=3DYES,ntpdate_flags=3Dca.pool.ntp.org" }, - { "Canada #2", "ntp.cpsc.ucalgary.ca", - dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.cpsc.ucalgary.ca" }, - { "Canada #3", "ntp1.cmc.ec.gc.ca", - dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.cmc.ec.gc.ca" }, - { "Canada #4", "ntp2.cmc.ec.gc.ca", + { "Canada #2", "ntp2.cmc.ec.gc.ca", dmenuVarsCheck, dmenuSetVariables, NULL,=20 "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2.cmc.ec.gc.ca" }, - { "Canada #5", "tick.utoronto.ca", - dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dtick.utoronto.ca" }, - { "Canada #6", "time.chu.nrc.ca", - dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dtime.chu.nrc.ca" }, - { "Canada #7", "time.nrc.ca", + { "Canada #3", "time.nrc.ca", dmenuVarsCheck, dmenuSetVariables, NULL,=20 "ntpdate_enable=3DYES,ntpdate_flags=3Dtime.nrc.ca" }, - { "Canada #8", "timelord.uregina.ca", + { "Canada #4", "timelord.uregina.ca", dmenuVarsCheck, dmenuSetVariables, NULL,=20 "ntpdate_enable=3DYES,ntpdate_flags=3Dtimelord.uregina.ca" }, - { "Canada #9", "tock.utoronto.ca", - dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dtock.utoronto.ca" }, { "Czech", "ntp.karpo.cz", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.karpo.cz" }, @@ -1606,15 +1579,18 @@ { "Finland #2", "tock.keso.fi", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dtock.keso.fi" }, - { "France", "ntp.obspm.fr", + { "France", "ntp.kamino.fr", dmenuVarsCheck, dmenuSetVariables, NULL,=20 - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.obspm.fr" }, - { "France #2", "ntp.univ-lyon1.fr", + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.kamino.fr" }, + { "France #2", "ntp.tuxfamily.net", dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.univ-lyon1.fr" }, - { "France #3", "ntp.via.ecp.fr", + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.tuxfamily.net" }, + { "France #3", "ntp1.tuxfamily.net", dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.via.ecp.fr" }, + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.tuxfamily.net" }, + { "France #4", "ntp2.tuxfamily.net", + dmenuVarsCheck, dmenuSetVariables, NULL, + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2.tuxfamily.net" }, { "Croatia", "zg1.ntp.carnet.hr", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dzg1.ntp.carnet.hr" }, @@ -1633,15 +1609,18 @@ { "Hungary", "time.kfki.hu", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dtime.kfki.hu" }, - { "Indonesia", "ntp.kim.lipi.go.id", + { "Indonesia", "ntp.incaf.net", dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.kim.lipi.go.id" }, + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.incaf.net" }, { "Ireland", "ntp.maths.tcd.ie", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.maths.tcd.ie" }, { "Italy", "it.pool.ntp.org", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dit.pool.ntp.org" }, + { "Italy #2", "ntp1.altarisoluzione.com", + dmenuVarsCheck, dmenuSetVariables, NULL, + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.altarisoluzione.com" }, { "Japan", "ntp.jst.mfeed.ad.jp", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.jst.mfeed.ad.jp" }, @@ -1732,28 +1711,25 @@ { "United Kingdom", "uk.pool.ntp.org", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Duk.pool.ntp.org" }, - { "United Kingdom #2", "ntp.exnet.com", - dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp.exnet.com" }, - { "United Kingdom #3", "ntp0.uk.uu.net", + { "United Kingdom #2", "ntp0.sandvika.net", dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp0.uk.uu.net" }, - { "United Kingdom #4", "ntp1.uk.uu.net", + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp0.sandvika.net" }, + { "United Kingdom #3", "ntp1.sandvika.net", dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.uk.uu.net" }, - { "United Kingdom #5", "ntp2.uk.uu.net", + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp1.sandvika.net" }, + { "United Kingdom #4", "ntp2.sandvika.net", dmenuVarsCheck, dmenuSetVariables, NULL, - "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2.uk.uu.net" }, - { "United Kingdom #6", "ntp2a.mcc.ac.uk", + "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2.sandvika.net" }, + { "United Kingdom #5", "ntp2a.mcc.ac.uk", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2a.mcc.ac.uk" }, - { "United Kingdom #7", "ntp2b.mcc.ac.uk", + { "United Kingdom #6", "ntp2b.mcc.ac.uk", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2b.mcc.ac.uk" }, - { "United Kingdom #8", "ntp2c.mcc.ac.uk", + { "United Kingdom #7", "ntp2c.mcc.ac.uk", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2c.mcc.ac.uk" }, - { "United Kingdom #9", "ntp2d.mcc.ac.uk", + { "United Kingdom #8", "ntp2d.mcc.ac.uk", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=3DYES,ntpdate_flags=3Dntp2d.mcc.ac.uk" }, { "U.S.", "us.pool.ntp.org", --82I3+IH0IqGh5yIs-- --R3G7APHDIzY6R/pk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDFKwnocfcwTS3JF8RAuwtAJ97ZL7Ci3gmnj3hrf7lfn2cltIwBwCgo2hm bDrDCATd2v4mIEijV+yGKDU= =ZgBv -----END PGP SIGNATURE----- --R3G7APHDIzY6R/pk-- From owner-cvs-src@FreeBSD.ORG Tue Aug 30 18:58:18 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 534C116A41F; Tue, 30 Aug 2005 18:58:18 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B605643D49; Tue, 30 Aug 2005 18:58:17 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UIwHla003734; Tue, 30 Aug 2005 18:58:17 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UIwHT8003733; Tue, 30 Aug 2005 18:58:17 GMT (envelope-from rodrigc) Message-Id: <200508301858.j7UIwHT8003733@repoman.freebsd.org> From: Craig Rodrigues Date: Tue, 30 Aug 2005 18:58:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/syscons scmouse.c scvesactl.c scvidctl.c syscons.c syscons.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 18:58:18 -0000 rodrigc 2005-08-30 18:58:17 UTC FreeBSD src repository Modified files: sys/dev/syscons scmouse.c scvesactl.c scvidctl.c syscons.c syscons.h Log: Prevent division by zero errors in sc_mouse_move() by explicitly setting sc->font_width, in the same places where sc->font_size is set, instead of relying on the default initialized value of 0 for sc->font_width. PR: kern/84836 Reported by: Andrey V. Elsukov MFC after: 2 days Revision Changes Path 1.38 +1 -1 src/sys/dev/syscons/scmouse.c 1.23 +2 -2 src/sys/dev/syscons/scvesactl.c 1.35 +8 -6 src/sys/dev/syscons/scvidctl.c 1.438 +2 -2 src/sys/dev/syscons/syscons.c 1.84 +4 -3 src/sys/dev/syscons/syscons.h From owner-cvs-src@FreeBSD.ORG Tue Aug 30 19:14:17 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8DAD16A41F; Tue, 30 Aug 2005 19:14:17 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [63.240.76.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AADBA43D5E; Tue, 30 Aug 2005 19:14:16 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from c-66-30-115-133.hsd1.ma.comcast.net ([66.30.115.133]) by comcast.net (sccrmhc11) with ESMTP id <2005083019141001100t6ispe>; Tue, 30 Aug 2005 19:14:10 +0000 Received: from c-66-30-115-133.hsd1.ma.comcast.net (localhost.127.in-addr.arpa [127.0.0.1]) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1) with ESMTP id j7UJEAbY037184; Tue, 30 Aug 2005 15:14:10 -0400 (EDT) (envelope-from rodrigc@c-66-30-115-133.hsd1.ma.comcast.net) Received: (from rodrigc@localhost) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1/Submit) id j7UJEACO037183; Tue, 30 Aug 2005 15:14:10 -0400 (EDT) (envelope-from rodrigc) Date: Tue, 30 Aug 2005 15:14:10 -0400 From: Craig Rodrigues To: Ceri Davies , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20050830191410.GA37175@crodrigues.org> References: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> <20050828103801.GD99537@submonkey.net> <20050828204231.GA3431@crodrigues.org> <20050830103426.GF83442@submonkey.net> <20050830141011.GA8458@crodrigues.org> <20050830185743.GA63826@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050830185743.GA63826@submonkey.net> User-Agent: Mutt/1.5.9i Cc: Subject: Re: cvs commit: src/usr.sbin/sysinstall menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 19:14:18 -0000 On Tue, Aug 30, 2005 at 07:57:43PM +0100, Ceri Davies wrote: > Fair enough. I'd like to know where the Swedish list came from though, http://lists.freebsd.org/pipermail/freebsd-current/2005-August/054533.html > as none of the servers added are listed at ntp.isc.org. The ISC list is not bad, but even that list is not fully updated. -- Craig Rodrigues rodrigc@crodrigues.org From owner-cvs-src@FreeBSD.ORG Tue Aug 30 19:37:34 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A5F616A41F; Tue, 30 Aug 2005 19:37:34 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF4C243D48; Tue, 30 Aug 2005 19:37:33 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UJbXsC005510; Tue, 30 Aug 2005 19:37:33 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UJbXtO005509; Tue, 30 Aug 2005 19:37:33 GMT (envelope-from murray) Message-Id: <200508301937.j7UJbXtO005509@repoman.freebsd.org> From: Murray Stokely Date: Tue, 30 Aug 2005 19:37:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 19:37:34 -0000 murray 2005-08-30 19:37:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Update versions of KDE/GNOME included with FreeBSD 6.0, and minor grammatical changes. Approved by: re (hrs@) Revision Changes Path 1.883.2.3 +11 -11 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 30 19:56:19 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E65C816A41F; Tue, 30 Aug 2005 19:56:19 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29FEE43D45; Tue, 30 Aug 2005 19:56:18 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j7UJuIP9078485; Tue, 30 Aug 2005 22:56:18 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 68311-19; Tue, 30 Aug 2005 22:56:17 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j7UJuH7V078482 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 30 Aug 2005 22:56:17 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.3/8.13.3) id j7UJuPYI095852; Tue, 30 Aug 2005 22:56:25 +0300 (EEST) (envelope-from ru) Date: Tue, 30 Aug 2005 22:56:25 +0300 From: Ruslan Ermilov To: Gleb Smirnoff , Yar Tikhiy Message-ID: <20050830195625.GB50565@ip.net.ua> References: <200508301414.j7UEE8pw077719@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qlTNgmc+xy1dBmNv" Content-Disposition: inline In-Reply-To: <200508301414.j7UEE8pw077719@repoman.freebsd.org> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/net if_vlan.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 19:56:20 -0000 --qlTNgmc+xy1dBmNv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 30, 2005 at 02:14:08PM +0000, Gleb Smirnoff wrote: > glebius 2005-08-30 14:14:08 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/net if_vlan.c=20 > Log: > Fix fallout from revision 1.77, mark outgoing packets with M_VLANTAG fl= ag. > =20 > PR: kern/80646 > Reviewed by: yar > MFC after: 3 days > =20 > Revision Changes Path > 1.82 +1 -0 src/sys/net/if_vlan.c >=20 Thank you! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --qlTNgmc+xy1dBmNv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDFLnpqRfpzJluFF4RAqHkAJ4hQtXWQJmVYT9/U1Df+ZpKZ+zEdwCdG4+J I82fmdSwrxO7Io+t5FVrP0Y= =4aQt -----END PGP SIGNATURE----- --qlTNgmc+xy1dBmNv-- From owner-cvs-src@FreeBSD.ORG Tue Aug 30 20:01:33 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A989416A41F; Tue, 30 Aug 2005 20:01:33 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5299F43D46; Tue, 30 Aug 2005 20:01:33 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UK1XRT006495; Tue, 30 Aug 2005 20:01:33 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UK1X7t006494; Tue, 30 Aug 2005 20:01:33 GMT (envelope-from murray) Message-Id: <200508302001.j7UK1X7t006494@repoman.freebsd.org> From: Murray Stokely Date: Tue, 30 Aug 2005 20:01:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/sysinstall dist.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 20:01:33 -0000 murray 2005-08-30 20:01:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/sysinstall dist.c Log: MFC: r1.240 - update number and size of ports distribution. Approved by: re (scottl) Revision Changes Path 1.239.2.1 +2 -2 src/usr.sbin/sysinstall/dist.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 20:07:50 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 337FB16A41F; Tue, 30 Aug 2005 20:07:50 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E887143D49; Tue, 30 Aug 2005 20:07:49 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UK7njl006825; Tue, 30 Aug 2005 20:07:49 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UK7n6f006824; Tue, 30 Aug 2005 20:07:49 GMT (envelope-from andre) Message-Id: <200508302007.j7UK7n6f006824@repoman.freebsd.org> From: Andre Oppermann Date: Tue, 30 Aug 2005 20:07:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 20:07:50 -0000 andre 2005-08-30 20:07:49 UTC FreeBSD src repository Modified files: sys/sys mbuf.h sys/kern uipc_mbuf.c Log: o Remove the 'all' flag from m_demote(). Users can simply call it with m_demote(m->m_next) if they wish to start at the second mbuf in chain. o Test m_type with == instead of &. o Check m_nextpkt against NULL instead of implicit 0. Based on feedback from: sam Revision Changes Path 1.153 +3 -5 src/sys/kern/uipc_mbuf.c 1.176 +1 -1 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Tue Aug 30 20:26:55 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABAB216A41F; Tue, 30 Aug 2005 20:26:55 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 630C443D68; Tue, 30 Aug 2005 20:26:54 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UKQrY8007661; Tue, 30 Aug 2005 20:26:53 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UKQrqa007660; Tue, 30 Aug 2005 20:26:53 GMT (envelope-from thompsa) Message-Id: <200508302026.j7UKQrqa007660@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 30 Aug 2005 20:26:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net bridgestp.c if_bridge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 20:26:55 -0000 thompsa 2005-08-30 20:26:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net bridgestp.c if_bridge.c Log: MFC: bridgestp.c, r1.6; if_bridge.c, r1.18 > Mark the callouts as MPSAFE as if_bridge has been giant-free since day 1. > > Use the SMP friendly callout_init_mtx() while we are here. > Approved by: re (kensmith), mlaier (mentor) Revision Changes Path 1.3.2.3 +1 -3 src/sys/net/bridgestp.c 1.11.2.8 +8 -5 src/sys/net/if_bridge.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 20:30:44 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBB3516A41F; Tue, 30 Aug 2005 20:30:44 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3F9043D46; Tue, 30 Aug 2005 20:30:44 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UKUilc007916; Tue, 30 Aug 2005 20:30:44 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UKUihd007915; Tue, 30 Aug 2005 20:30:44 GMT (envelope-from thompsa) Message-Id: <200508302030.j7UKUihd007915@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 30 Aug 2005 20:30:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net if_bridge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 20:30:44 -0000 thompsa 2005-08-30 20:30:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_bridge.c Log: MFC: if_bridge, r1.20 > Fix a panic in softclock() if the interface is destroyed with a bpf consumer > attached. > > This is caused by bpf_detachd clearing IFF_PROMISC on the interface which does > a SIOCSIFFLAGS ioctl. The problem here is that while the interface has been > stopped, IFF_UP has not been cleared so IFF_UP != IFF_DRV_RUNNING, this causes > the ioctl function to init() the interface which resets the callouts. > > The destroy then completes and frees the softc but softclock will panic on a > dead callout pointer. > > Ensure ifp->if_flags matches reality by clearing IFF_UP when we destroy. Approved by: re (kensmith), mlaier (mentor) Revision Changes Path 1.11.2.9 +1 -0 src/sys/net/if_bridge.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 20:35:09 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0B5916A41F; Tue, 30 Aug 2005 20:35:08 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B29A943D46; Tue, 30 Aug 2005 20:35:08 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UKZ8xC008103; Tue, 30 Aug 2005 20:35:08 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UKZ8OR008102; Tue, 30 Aug 2005 20:35:08 GMT (envelope-from jhb) Message-Id: <200508302035.j7UKZ8OR008102@repoman.freebsd.org> From: John Baldwin Date: Tue, 30 Aug 2005 20:35:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci if_ste.c if_stereg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 20:35:09 -0000 jhb 2005-08-30 20:35:08 UTC FreeBSD src repository Modified files: sys/pci if_ste.c if_stereg.h Log: Various locking fixes and mark MPSAFE: - Add locked variants of start(), init(), ifmedia_upd(), and poll() and stop recursing on the driver lock. - Add locking to ifmedia_upd() and ifmedia_sts(). - Use callout_*() instead of timeout/untimeout. - Fix locking in ioctl(). Tested by: Bob Bishop rb at gid dot co dot uk MFC after: 3 days Revision Changes Path 1.88 +94 -59 src/sys/pci/if_ste.c 1.20 +1 -1 src/sys/pci/if_stereg.h From owner-cvs-src@FreeBSD.ORG Tue Aug 30 20:52:40 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 677E916A466 for ; Tue, 30 Aug 2005 20:52:40 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 815D443D46 for ; Tue, 30 Aug 2005 20:52:39 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j7UKnY9k015276 for cvs-src@FreeBSD.org.checked; Wed, 31 Aug 2005 00:49:34 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (localhost.cronyx.ru [127.0.0.1]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j7UKmnBc010865; Wed, 31 Aug 2005 00:48:49 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <4314C3F6.8050006@cronyx.ru> Date: Wed, 31 Aug 2005 00:39:18 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.2.1) Gecko/20030426 X-Accept-Language: ru-ru, en MIME-Version: 1.0 To: John Baldwin References: <200508261342.j7QDg4gc052237@repoman.freebsd.org> <431459EB.8070405@cronyx.ru> <200508301412.09936.jhb@FreeBSD.org> In-Reply-To: <200508301412.09936.jhb@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files.i386 src/sys/modules Makefile src/sys/modules/el Makefile src/sys/i386/conf NOTES src/sys/i386/isa if_el.c if_elreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 20:52:40 -0000 John Baldwin: >On Tuesday 30 August 2005 09:06 am, Roman Kurakin wrote: > > >>John Baldwin wrote: >> >> >>>jhb 2005-08-26 13:42:04 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/conf files.i386 >>> sys/modules Makefile >>> sys/i386/conf NOTES >>> Removed files: >>> sys/modules/el Makefile >>> sys/i386/isa if_el.c if_elreg.h >>> Log: >>> Remove the el(4) driver for 3Com 3c501 ISA NICs from HEAD as threatened >>> earlier as no one has stepped up to test recent changes to the driver. >>> Oddly, the module was actually turned on on ia64 though I'm fairly >>>certain that no ia64 machine has ever had or will ever have an ISA slot. >>> >>> >>I can find a link to an external bridge for ISA if you want. >>I don't know if it would work under FreeBSD, but you >>may try to run ISA card on ia64 that way. >>You may even try to made this device by yourself if the >>soldering iron is your friend. >> >>rik >> >> > >The ia64 comment was more that the module probably shouldn't have been enabled >on ia64 in the first place. Why would you want to hack up a way to stick an >8-bit ISA 10Mbit ethernet card in a machine that probably has at least one >(probably two or more) 10/100 (if not gige) builtin NICs. > I think that there is almost no one who may want to, but it is possible. The comment was about ability, in case you may want to use it, not a particular case. Sorry for the noise. rik > > > From owner-cvs-src@FreeBSD.ORG Tue Aug 30 20:53:10 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ABCE16A421 for ; Tue, 30 Aug 2005 20:53:10 +0000 (GMT) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A670043D46 for ; Tue, 30 Aug 2005 20:53:09 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 97681 invoked from network); 30 Aug 2005 20:31:05 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 30 Aug 2005 20:31:05 -0000 Message-ID: <4314C73F.4D280EA9@freebsd.org> Date: Tue, 30 Aug 2005 22:53:19 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200508302007.j7UK7n6f006824@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Subject: Re: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 20:53:10 -0000 Andre Oppermann wrote: > > andre 2005-08-30 20:07:49 UTC > > FreeBSD src repository > > Modified files: > sys/sys mbuf.h > sys/kern uipc_mbuf.c > Log: > o Remove the 'all' flag from m_demote(). Users can simply call it with > m_demote(m->m_next) if they wish to start at the second mbuf in chain. > o Test m_type with == instead of &. > o Check m_nextpkt against NULL instead of implicit 0. > > Based on feedback from: sam /me broke function. Fix is underway. Pointy hat to: andre -- Andre From owner-cvs-src@FreeBSD.ORG Tue Aug 30 21:14:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABB9616A41F; Tue, 30 Aug 2005 21:14:31 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D44943D48; Tue, 30 Aug 2005 21:14:31 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7ULEV1V016987; Tue, 30 Aug 2005 21:14:31 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7ULEVEp016986; Tue, 30 Aug 2005 21:14:31 GMT (envelope-from andre) Message-Id: <200508302114.j7ULEVEp016986@repoman.freebsd.org> From: Andre Oppermann Date: Tue, 30 Aug 2005 21:14:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 21:14:31 -0000 andre 2005-08-30 21:14:30 UTC FreeBSD src repository Modified files: sys/sys mbuf.h sys/kern uipc_mbuf.c Log: Unbreak m_demote() and put back the 'all' flag. Without it we cannot correctly test for m_nextpkt in an mbuf chain. Revision Changes Path 1.154 +3 -1 src/sys/kern/uipc_mbuf.c 1.177 +1 -1 src/sys/sys/mbuf.h From owner-cvs-src@FreeBSD.ORG Tue Aug 30 21:31:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A0A816A41F; Tue, 30 Aug 2005 21:31:43 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04ABB43D4C; Tue, 30 Aug 2005 21:31:43 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7ULVgNF017804; Tue, 30 Aug 2005 21:31:42 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7ULVgvs017803; Tue, 30 Aug 2005 21:31:42 GMT (envelope-from andre) Message-Id: <200508302131.j7ULVgvs017803@repoman.freebsd.org> From: Andre Oppermann Date: Tue, 30 Aug 2005 21:31:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern uipc_mbuf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 21:31:43 -0000 andre 2005-08-30 21:31:42 UTC FreeBSD src repository Modified files: sys/kern uipc_mbuf.c Log: Changes and cleanups to m_sanity(): o for() instead of while() looping over mbuf chain o paren's around all flag checks o more verbose function and purpose description o some more style changes Based on feedback from: sam Revision Changes Path 1.155 +17 -18 src/sys/kern/uipc_mbuf.c From owner-cvs-src@FreeBSD.ORG Tue Aug 30 22:25:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 085AC16A41F; Tue, 30 Aug 2005 22:25:23 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD61843D46; Tue, 30 Aug 2005 22:25:22 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UMPMEA020355; Tue, 30 Aug 2005 22:25:22 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UMPMU8020354; Tue, 30 Aug 2005 22:25:22 GMT (envelope-from brueffer) Message-Id: <200508302225.j7UMPMU8020354@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 30 Aug 2005 22:25:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2005 22:25:23 -0000 brueffer 2005-08-30 22:25:22 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Document the following: - VIA PadLock support + merge - dc, my, pcn, sf MPSAFE + merge - de, ed, ste MPSAFE - de converted to busdma(9) - el removed - geli(8) committed + merge - libmemstat(9) merge MFC after: 3 days Revision Changes Path 1.888 +25 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 30 22:47:05 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA5F516A41F; Tue, 30 Aug 2005 22:47:05 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B374943D46; Tue, 30 Aug 2005 22:47:04 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 91D245C7B6; Tue, 30 Aug 2005 15:47:04 -0700 (PDT) Date: Tue, 30 Aug 2005 15:47:04 -0700 From: Alfred Perlstein To: Alexander Kabaev Message-ID: <20050830224704.GI77060@elvis.mu.org> References: <200508301612.j7UGC3CM085774@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200508301612.j7UGC3CM085774@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_lookup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 22:47:05 -0000 Ok, maybe I'm missing something, but... while (dp->v_type == VDIR && (mp = dp->v_mountedhere) && (cnp->cn_flags & NOCROSSMOUNT) == 0) { KASSERT(dp != ndp->ni_dvp, ("XXX")); if (vfs_busy(mp, 0, 0, td)) continue; here ->>> vput(dp); tvfslocked = VFS_LOCK_GIANT(mp); VFS_UNLOCK_GIANT(vfslocked); vfslocked = tvfslocked; VOP_UNLOCK(ndp->ni_dvp, 0, td); error = VFS_ROOT(mp, cnp->cn_lkflags, &tdp, td); VOP_LOCK(ndp->ni_dvp, cnp->cn_lkflags | LK_RETRY, td); vfs_unbusy(mp, td); if (error) { dpunlocked = 1; goto bad2; } ndp->ni_vp = dp = tdp; } Isn't dp already unlocked here? vput should be unlocking the vnode and we have the above KASSERT showing that they should be the same vnode... Also, I think lockparent doesn't need to be respected because we're trading parent vnodes. Basically, we're hitting a vnode that has another vnode stacked on it (root vnode), and switching to it. we're not actually decending. Is this OK? -Alfred * Alexander Kabaev [050830 09:12] wrote: > kan 2005-08-30 16:12:03 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/kern vfs_lookup.c > Log: > MFC r1.81: > Do not keep parent directory locked while calling VFS_ROOT to > traverse mount points in lookup(). The lock can be dropped safely > around VFS_ROOT because LOCKPARENT semantics with child and parent > vnodes coming from different FSes does not really have any meaningful > use and we do not really care about parent state after we relock it. > This prevents easily triggered deadlock on systems using automounter > daemon. > > Approved by: re (scottl) > > Revision Changes Path > 1.80.2.1 +2 -0 src/sys/kern/vfs_lookup.c -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Tue Aug 30 23:12:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5BAD16A41F; Tue, 30 Aug 2005 23:12:19 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 675EE43D55; Tue, 30 Aug 2005 23:12:19 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7UNCJUU022209; Tue, 30 Aug 2005 23:12:19 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7UNCJgY022208; Tue, 30 Aug 2005 23:12:19 GMT (envelope-from rodrigc) Message-Id: <200508302312.j7UNCJgY022208@repoman.freebsd.org> From: Craig Rodrigues Date: Tue, 30 Aug 2005 23:12:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/fdc fdc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Aug 2005 23:12:19 -0000 rodrigc 2005-08-30 23:12:18 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c Log: FDOPT_NORETRY is an option, and must be compared with fd->options, not fd->flags. PR: kern/85481 Submitted by: Lev Levinson MFC after: 1 day Revision Changes Path 1.308 +1 -1 src/sys/dev/fdc/fdc.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 00:03:28 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38D1716A41F; Wed, 31 Aug 2005 00:03:28 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 949A143D45; Wed, 31 Aug 2005 00:03:24 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (ip68-105-180-11.dc.dc.cox.net [68.105.180.11]) (authenticated bits=0) by pittgoth.com (8.13.3/8.13.3) with ESMTP id j7V03NK6055625 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 30 Aug 2005 20:03:24 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Tue, 30 Aug 2005 20:02:19 -0400 From: Tom Rhodes To: juli mallett Message-ID: <20050830200219.534e6d72@localhost> In-Reply-To: <20050828221142.GA71466@toxic.magnesium.net> References: <200508251022.j7PAMWFO030767@repoman.freebsd.org> <20050825195416.GA65980@toxic.magnesium.net> <20050826062242.734ffae4@localhost> <20050828221142.GA71466@toxic.magnesium.net> X-Mailer: Sylpheed-Claws 1.9.13 (GTK+ 2.6.8; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: juli mallett , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libufs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 00:03:28 -0000 On Sun, 28 Aug 2005 12:11:42 -1000 juli mallett wrote: > * Tom Rhodes [ Date: 2005-08-26 ] > [ w.r.t. Re: cvs commit: src/lib/libufs Makefile ] > > On Thu, 25 Aug 2005 09:54:16 -1000 > > juli mallett wrote: > > > > > * Tom Rhodes [ Date: 2005-08-25 ] > > > [ w.r.t. cvs commit: src/lib/libufs Makefile ] > > > > trhodes 2005-08-25 10:22:30 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > lib/libufs Makefile > > > > Log: > > > > Hook getino.3 up to the build and link it to putino.3. > > > > > > > > PR: 83820 > > > > > > This is wrong. As the PR states it was purposely not hooked up. > > > inode.c doesn't have functions which look like the interfaces > > > you've just published, and there isn't even a putino(3) in > > > there. If the cause of the confusion is the manpage being listed > > > in Xr's or something, then comment out the Xr's. This is very > > > obviously wrong, if you try to use what's in the manpage I > > > committed. Probably it shoudln't be in CVS at all. The reason I > > > put it there at the time is that it was ready and inode.c was > > > about ready to hit CVS, but that got dropped. Now, if you want > > > to help me remember what P4 tree that inode.c was in, and pick up > > > whereever I left off, that'd be awesome. > > > > Let me understand real quick, it was purposely not hooked up because > > it was the only file not updated? I mean, I can back this out, > > no problem; however, I fail to see why nothing is going on with > > this code. No clue on the branch, sorry. > > It was purposely not hooked up because the code that it documents > isn't in CVS. > I know now why it wasn't hooked up to the build. What I'm asking is: 1: Is this currently maintained? and 2: What utilities are currently using this? Need to leave but I'll back it out later on this evening when I return. -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Aug 31 00:27:36 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0736C16A41F; Wed, 31 Aug 2005 00:27:36 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B60AA43D48; Wed, 31 Aug 2005 00:27:35 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V0RZF2025053; Wed, 31 Aug 2005 00:27:35 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V0RZXD025052; Wed, 31 Aug 2005 00:27:35 GMT (envelope-from rodrigc) Message-Id: <200508310027.j7V0RZXD025052@repoman.freebsd.org> From: Craig Rodrigues Date: Wed, 31 Aug 2005 00:27:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/man/man9 VOP_LISTEXTATTR.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 00:27:36 -0000 rodrigc 2005-08-31 00:27:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man9 VOP_LISTEXTATTR.9 Log: MFC: VOP_LISTEXTATTR.9, 1.7 Update man page to reflect the fact that VOP_LISTEXTATTR does not return a list of ASCII NUL terminated strings. Instead, a list of attribute names is returned, where each list entry consists of one byte for the name length, followed by the name, without a terminating ASCII NUL. This in similar to change 1.17 to extattr_get_file.2 Reviewed by: rwatson, ru Approved by: re (hrs) Revision Changes Path 1.6.2.1 +7 -5 src/share/man/man9/VOP_LISTEXTATTR.9 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 00:33:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 135DB16A41F; Wed, 31 Aug 2005 00:33:19 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E5B243D48; Wed, 31 Aug 2005 00:33:18 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V0XIcw025324; Wed, 31 Aug 2005 00:33:18 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V0XIYS025323; Wed, 31 Aug 2005 00:33:18 GMT (envelope-from rodrigc) Message-Id: <200508310033.j7V0XIYS025323@repoman.freebsd.org> From: Craig Rodrigues Date: Wed, 31 Aug 2005 00:33:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/share/man/man9 VOP_LISTEXTATTR.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 00:33:19 -0000 rodrigc 2005-08-31 00:33:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/man/man9 VOP_LISTEXTATTR.9 Log: MFC: VOP_LISTEXTATTR.9, 1.7 Update man page to reflect the fact that VOP_LISTEXTATTR does not return a list of ASCII NUL terminated strings. Instead, a list of attribute names is returned, where each list entry consists of one byte for the name length, followed by the name, without a terminating ASCII NUL. This in similar to change 1.17 to extattr_get_file.2 Reviewed by: rwatson, ru MFC: VOP_LISTEXTATTR.9, 1.6 Minor formatting fixes. Revision Changes Path 1.5.2.1 +14 -12 src/share/man/man9/VOP_LISTEXTATTR.9 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 01:16:55 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDFE216A420 for ; Wed, 31 Aug 2005 01:16:55 +0000 (GMT) (envelope-from kabaev@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 578E843D5A for ; Wed, 31 Aug 2005 01:16:52 +0000 (GMT) (envelope-from kabaev@gmail.com) Received: by rproxy.gmail.com with SMTP id r35so16786rna for ; Tue, 30 Aug 2005 18:16:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer:mime-version:content-type; b=X1duS6zif332jEaofUAWfJ4SQwX0gswamQAnzS5oeDNIYXyzwvD6KSszNUXo0WSKIDdzOmIvXIVCaQnUqUn040ff+OxeZGEGcpFV2a4+YfJFkAaCNxShyVaAly8jAXy/oI/Lddyc2+cupV12+TV3TKCq2zZ8lxnMy0kQ/k/vVaA= Received: by 10.38.161.7 with SMTP id j7mr16105rne; Tue, 30 Aug 2005 18:16:49 -0700 (PDT) Received: from kan.dnsalias.net ( [24.63.93.195]) by mx.gmail.com with ESMTP id g2sm128071rne.2005.08.30.18.16.49; Tue, 30 Aug 2005 18:16:49 -0700 (PDT) Date: Tue, 30 Aug 2005 21:16:44 -0400 From: Alexander Kabaev To: Alfred Perlstein Message-ID: <20050830211644.339c86db@kan.dnsalias.net> In-Reply-To: <20050830224704.GI77060@elvis.mu.org> References: <200508301612.j7UGC3CM085774@repoman.freebsd.org> <20050830224704.GI77060@elvis.mu.org> X-Mailer: Sylpheed-Claws 1.9.13 (GTK+ 2.6.9; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Signature_Tue__30_Aug_2005_21_16_44_-0400_jKUEwb3gwzt1VkZm; protocol="application/pgp-signature"; micalg=PGP-SHA1 Cc: Alexander Kabaev , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_lookup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 01:16:56 -0000 --Signature_Tue__30_Aug_2005_21_16_44_-0400_jKUEwb3gwzt1VkZm Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Tue, 30 Aug 2005 15:47:04 -0700 Alfred Perlstein wrote: > Ok, maybe I'm missing something, but... >=20 > while (dp->v_type =3D=3D VDIR && (mp =3D dp->v_mountedhere) && > (cnp->cn_flags & NOCROSSMOUNT) =3D=3D 0) { > KASSERT(dp !=3D ndp->ni_dvp, ("XXX")); > if (vfs_busy(mp, 0, 0, td)) > continue; > here ->>> vput(dp); > tvfslocked =3D VFS_LOCK_GIANT(mp); > VFS_UNLOCK_GIANT(vfslocked); > vfslocked =3D tvfslocked; > VOP_UNLOCK(ndp->ni_dvp, 0, td); > error =3D VFS_ROOT(mp, cnp->cn_lkflags, &tdp, td); > VOP_LOCK(ndp->ni_dvp, cnp->cn_lkflags | LK_RETRY, td); > vfs_unbusy(mp, td); > if (error) { > dpunlocked =3D 1; > goto bad2; > } > ndp->ni_vp =3D dp =3D tdp; > } >=20 > Isn't dp already unlocked here? vput should be unlocking the vnode > and we have the above KASSERT showing that they should be the same > vnode... dp !=3D ndp->ni_dvp at that point. If we have amd serving /home, ndp->ni_dvp is '/' directory dp is /home directory =20 Having / locked while waiting for VFS_ROOT on amd filesystem serves no purpose. > Also, I think lockparent doesn't need to be respected because > we're trading parent vnodes. Basically, we're hitting a vnode > that has another vnode stacked on it (root vnode), and switching to > it. we're not actually decending. >=20 > Is this OK? >=20 > -Alfred >=20 >=20 >=20 > * Alexander Kabaev [050830 09:12] wrote: > > kan 2005-08-30 16:12:03 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: (Branch: RELENG_6) > > sys/kern vfs_lookup.c=20 > > Log: > > MFC r1.81: > > Do not keep parent directory locked while calling VFS_ROOT to > > traverse mount points in lookup(). The lock can be dropped safely > > around VFS_ROOT because LOCKPARENT semantics with child and parent > > vnodes coming from different FSes does not really have any > > meaningful use and we do not really care about parent state after > > we relock it. This prevents easily triggered deadlock on systems > > using automounter daemon. > > =20 > > Approved by: re (scottl) > > =20 > > Revision Changes Path > > 1.80.2.1 +2 -0 src/sys/kern/vfs_lookup.c >=20 > --=20 > - Alfred Perlstein --=20 Alexander Kabaev --Signature_Tue__30_Aug_2005_21_16_44_-0400_jKUEwb3gwzt1VkZm Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDFQT/Q6z1jMm+XZYRAvsAAJ9yxJbuZrb5j+rrzrD1L4yhjPp5fQCgySmJ K7ppNeA7oXphk3xywnxaNDQ= =GE0Q -----END PGP SIGNATURE----- --Signature_Tue__30_Aug_2005_21_16_44_-0400_jKUEwb3gwzt1VkZm-- From owner-cvs-src@FreeBSD.ORG Wed Aug 31 01:33:27 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EB6816A41F; Wed, 31 Aug 2005 01:33:27 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD7943D48; Wed, 31 Aug 2005 01:33:27 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V1XRxx034682; Wed, 31 Aug 2005 01:33:27 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V1XRe2034681; Wed, 31 Aug 2005 01:33:27 GMT (envelope-from wollman) Message-Id: <200508310133.j7V1XRe2034681@repoman.freebsd.org> From: Garrett Wollman Date: Wed, 31 Aug 2005 01:33:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/zoneinfo Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 01:33:27 -0000 wollman 2005-08-31 01:33:26 UTC FreeBSD src repository Modified files: share/zoneinfo Makefile Log: Move "systemv" into OLDTIMEZONES clause; "backward" is a prerequisite. ("systemv" is even more backward than "backward" is!) Obliquely pointed out by: jhay Revision Changes Path 1.21 +2 -2 src/share/zoneinfo/Makefile From owner-cvs-src@FreeBSD.ORG Wed Aug 31 01:37:44 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CCB316A420; Wed, 31 Aug 2005 01:37:44 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B655743D48; Wed, 31 Aug 2005 01:37:43 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V1bh9V034904; Wed, 31 Aug 2005 01:37:43 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V1bhXJ034903; Wed, 31 Aug 2005 01:37:43 GMT (envelope-from wollman) Message-Id: <200508310137.j7V1bhXJ034903@repoman.freebsd.org> From: Garrett Wollman Date: Wed, 31 Aug 2005 01:37:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/share/zoneinfo Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 01:37:44 -0000 wollman 2005-08-31 01:37:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) share/zoneinfo Makefile Log: Insta-MFC rev 1.21: don't build "systemv" when not doing "backward". This fixes virgin installs (and thus "make release"). Revision Changes Path 1.19.8.1 +2 -2 src/share/zoneinfo/Makefile From owner-cvs-src@FreeBSD.ORG Wed Aug 31 01:39:00 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30B0F16A41F; Wed, 31 Aug 2005 01:39:00 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 004BE43D46; Wed, 31 Aug 2005 01:38:59 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id E4AE75C81A; Tue, 30 Aug 2005 18:38:59 -0700 (PDT) Date: Tue, 30 Aug 2005 18:38:59 -0700 From: Alfred Perlstein To: Alexander Kabaev Message-ID: <20050831013859.GL77060@elvis.mu.org> References: <200508301612.j7UGC3CM085774@repoman.freebsd.org> <20050830224704.GI77060@elvis.mu.org> <20050830211644.339c86db@kan.dnsalias.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050830211644.339c86db@kan.dnsalias.net> User-Agent: Mutt/1.4.2.1i Cc: Alexander Kabaev , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_lookup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 01:39:00 -0000 * Alexander Kabaev [050830 18:16] wrote: > > dp != ndp->ni_dvp at that point. If we have amd serving /home, > > ndp->ni_dvp is '/' directory > dp is /home directory > > Having / locked while waiting for VFS_ROOT on amd filesystem serves no > purpose. Ok! I did misread the Kassert. Sorry for the confusion. -Alfred From owner-cvs-src@FreeBSD.ORG Wed Aug 31 01:47:20 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14B7716A41F; Wed, 31 Aug 2005 01:47:20 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D629243D46; Wed, 31 Aug 2005 01:47:19 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V1lJdc035270; Wed, 31 Aug 2005 01:47:19 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V1lJA2035269; Wed, 31 Aug 2005 01:47:19 GMT (envelope-from marcel) Message-Id: <200508310147.j7V1lJA2035269@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 31 Aug 2005 01:47:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt add.c create.c destroy.c gpt.c gpt.h map.c map.h migrate.c recover.c remove.c show.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 01:47:20 -0000 marcel 2005-08-31 01:47:19 UTC FreeBSD src repository Modified files: sbin/gpt add.c create.c destroy.c gpt.c gpt.h map.c map.h migrate.c recover.c remove.c show.c Log: /* -> /*- for license. Revision Changes Path 1.12 +1 -1 src/sbin/gpt/add.c 1.11 +1 -1 src/sbin/gpt/create.c 1.6 +1 -1 src/sbin/gpt/destroy.c 1.11 +1 -1 src/sbin/gpt/gpt.c 1.8 +1 -1 src/sbin/gpt/gpt.h 1.6 +1 -1 src/sbin/gpt/map.c 1.6 +1 -1 src/sbin/gpt/map.h 1.14 +1 -1 src/sbin/gpt/migrate.c 1.8 +1 -1 src/sbin/gpt/recover.c 1.6 +1 -1 src/sbin/gpt/remove.c 1.12 +1 -1 src/sbin/gpt/show.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 02:30:36 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6D9E16A41F; Wed, 31 Aug 2005 02:30:36 +0000 (GMT) (envelope-from flata@magnesium.net) Received: from toxic.magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A83243D49; Wed, 31 Aug 2005 02:30:36 +0000 (GMT) (envelope-from flata@magnesium.net) Received: by toxic.magnesium.net (Postfix, from userid 1212) id 30DA8DA8A0; Tue, 30 Aug 2005 19:30:36 -0700 (PDT) Date: Tue, 30 Aug 2005 16:30:36 -1000 From: juli mallett To: Tom Rhodes Message-ID: <20050831023036.GA25335@toxic.magnesium.net> References: <200508251022.j7PAMWFO030767@repoman.freebsd.org> <20050825195416.GA65980@toxic.magnesium.net> <20050826062242.734ffae4@localhost> <20050828221142.GA71466@toxic.magnesium.net> <20050830200219.534e6d72@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050830200219.534e6d72@localhost> User-Agent: Mutt/1.4.1i X-Towel: Yes Cc: juli mallett , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libufs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 02:30:36 -0000 * Tom Rhodes [ Date: 2005-08-30 ] [ w.r.t. Re: cvs commit: src/lib/libufs Makefile ] > On Sun, 28 Aug 2005 12:11:42 -1000 > juli mallett wrote: > > > * Tom Rhodes [ Date: 2005-08-26 ] > > [ w.r.t. Re: cvs commit: src/lib/libufs Makefile ] > > > On Thu, 25 Aug 2005 09:54:16 -1000 > > > juli mallett wrote: > > > > > > > * Tom Rhodes [ Date: 2005-08-25 ] > > > > [ w.r.t. cvs commit: src/lib/libufs Makefile ] > > > > > trhodes 2005-08-25 10:22:30 UTC > > > > > > > > > > FreeBSD src repository > > > > > > > > > > Modified files: > > > > > lib/libufs Makefile > > > > > Log: > > > > > Hook getino.3 up to the build and link it to putino.3. > > > > > > > > > > PR: 83820 > > > > > > > > This is wrong. As the PR states it was purposely not hooked up. > > > > inode.c doesn't have functions which look like the interfaces > > > > you've just published, and there isn't even a putino(3) in > > > > there. If the cause of the confusion is the manpage being listed > > > > in Xr's or something, then comment out the Xr's. This is very > > > > obviously wrong, if you try to use what's in the manpage I > > > > committed. Probably it shoudln't be in CVS at all. The reason I > > > > put it there at the time is that it was ready and inode.c was > > > > about ready to hit CVS, but that got dropped. Now, if you want > > > > to help me remember what P4 tree that inode.c was in, and pick up > > > > whereever I left off, that'd be awesome. > > > > > > Let me understand real quick, it was purposely not hooked up because > > > it was the only file not updated? I mean, I can back this out, > > > no problem; however, I fail to see why nothing is going on with > > > this code. No clue on the branch, sorry. > > > > It was purposely not hooked up because the code that it documents > > isn't in CVS. > > > > I know now why it wasn't hooked up to the build. What I'm asking > is: > > 1: Is this currently maintained? and > 2: What utilities are currently using this? I don't remember what uses getino() as implemented in libufs. Maybe nothing, in which case it can just be removed. In any event, the interface that is there is bad and shouldn't be documented. That said, it isn't currently maintained very well, so the odds of me remembering where the new code is and what's wrong with it are low, so in any event, the right thing to do is for the manpage to not be installed, and to not be in CVS. Thanx, juli. From owner-cvs-src@FreeBSD.ORG Wed Aug 31 05:40:42 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3DB316A41F; Wed, 31 Aug 2005 05:40:41 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B293243D45; Wed, 31 Aug 2005 05:40:41 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V5efni051922; Wed, 31 Aug 2005 05:40:41 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V5efDe051921; Wed, 31 Aug 2005 05:40:41 GMT (envelope-from marcel) Message-Id: <200508310540.j7V5efDe051921@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 31 Aug 2005 05:40:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt gpt.c gpt.h migrate.c show.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 05:40:42 -0000 marcel 2005-08-31 05:40:41 UTC FreeBSD src repository Modified files: sbin/gpt gpt.c gpt.h migrate.c show.c Log: o Replace unicode16() by utf8_to_utf16(). o Introduce utf16_to_utf8(). o Add option -l to the show command to display the GPT label instead of the friendly partition type. o Add option -u to the show command to suppress the friendly output and print th raw UUIDs instead. Revision Changes Path 1.12 +104 -5 src/sbin/gpt/gpt.c 1.9 +3 -1 src/sbin/gpt/gpt.h 1.15 +10 -9 src/sbin/gpt/migrate.c 1.13 +22 -4 src/sbin/gpt/show.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 05:56:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39A6A16A41F; Wed, 31 Aug 2005 05:56:22 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDDE443D45; Wed, 31 Aug 2005 05:56:21 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V5uLFQ053159; Wed, 31 Aug 2005 05:56:21 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V5uLBR053158; Wed, 31 Aug 2005 05:56:21 GMT (envelope-from marcel) Message-Id: <200508310556.j7V5uLBR053158@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 31 Aug 2005 05:56:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt gpt.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 05:56:22 -0000 marcel 2005-08-31 05:56:21 UTC FreeBSD src repository Modified files: sbin/gpt gpt.8 Log: Document the -l and -u options of the show command. Revision Changes Path 1.14 +15 -1 src/sbin/gpt/gpt.8 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 07:44:46 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8EA516A41F; Wed, 31 Aug 2005 07:44:46 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79EBE43D46; Wed, 31 Aug 2005 07:44:46 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V7iklO058817; Wed, 31 Aug 2005 07:44:46 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V7ik2W058810; Wed, 31 Aug 2005 07:44:46 GMT (envelope-from trhodes) Message-Id: <200508310744.j7V7ik2W058810@repoman.freebsd.org> From: Tom Rhodes Date: Wed, 31 Aug 2005 07:44:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libufs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 07:44:46 -0000 trhodes 2005-08-31 07:44:45 UTC FreeBSD src repository Modified files: lib/libufs Makefile Log: Disconnect getino.3 and remove MLINK I added. Discussed with: jmallett Revision Changes Path 1.12 +1 -2 src/lib/libufs/Makefile From owner-cvs-src@FreeBSD.ORG Wed Aug 31 08:31:15 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A720E16A41F; Wed, 31 Aug 2005 08:31:15 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6872F43D48; Wed, 31 Aug 2005 08:31:15 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V8VFbN060820; Wed, 31 Aug 2005 08:31:15 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V8VEht060819; Wed, 31 Aug 2005 08:31:14 GMT (envelope-from glebius) Message-Id: <200508310831.j7V8VEht060819@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 08:31:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/periodic/security 550.ipfwlimit X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 08:31:15 -0000 glebius 2005-08-31 08:31:14 UTC FreeBSD src repository Modified files: etc/periodic/security 550.ipfwlimit Log: Fix braino in last commit. Print nothing if ipfw(4) is not present. Revision Changes Path 1.9 +2 -2 src/etc/periodic/security/550.ipfwlimit From owner-cvs-src@FreeBSD.ORG Wed Aug 31 08:36:06 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5721016A41F; Wed, 31 Aug 2005 08:36:06 +0000 (GMT) (envelope-from jmallett@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F239243D45; Wed, 31 Aug 2005 08:36:05 +0000 (GMT) (envelope-from jmallett@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7V8a5Yu061043; Wed, 31 Aug 2005 08:36:05 GMT (envelope-from jmallett@repoman.freebsd.org) Received: (from jmallett@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7V8a5Sv061042; Wed, 31 Aug 2005 08:36:05 GMT (envelope-from jmallett) Message-Id: <200508310836.j7V8a5Sv061042@repoman.freebsd.org> From: Juli Mallett Date: Wed, 31 Aug 2005 08:36:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libufs getino.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 08:36:06 -0000 jmallett 2005-08-31 08:36:05 UTC FreeBSD src repository Removed files: lib/libufs getino.3 Log: Remove getino(3) manpage. It doesn't document what is here, what is here should not get documented, and what it does document isn't going to come to CVS any time in the immediate future. Patience of a saint: trhodes Revision Changes Path 1.6 +0 -116 src/lib/libufs/getino.3 (dead) From owner-cvs-src@FreeBSD.ORG Wed Aug 31 09:13:18 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F29DC16A41F; Wed, 31 Aug 2005 09:13:17 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 798D243D45; Wed, 31 Aug 2005 09:13:17 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.52 (FreeBSD)) id 1EAOei-000Fsl-2J; Wed, 31 Aug 2005 10:13:16 +0100 Date: Wed, 31 Aug 2005 10:13:16 +0100 From: Ceri Davies To: Craig Rodrigues Message-ID: <20050831091315.GA69728@submonkey.net> Mail-Followup-To: Ceri Davies , Craig Rodrigues , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200508240221.j7O2LCeZ096558@repoman.freebsd.org> <20050828103801.GD99537@submonkey.net> <20050828204231.GA3431@crodrigues.org> <20050830103426.GF83442@submonkey.net> <20050830141011.GA8458@crodrigues.org> <20050830185743.GA63826@submonkey.net> <20050830191410.GA37175@crodrigues.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <20050830191410.GA37175@crodrigues.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.10i Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall menus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 09:13:18 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 30, 2005 at 03:14:10PM -0400, Craig Rodrigues wrote: > On Tue, Aug 30, 2005 at 07:57:43PM +0100, Ceri Davies wrote: > > Fair enough. I'd like to know where the Swedish list came from though, >=20 > http://lists.freebsd.org/pipermail/freebsd-current/2005-August/054533.html >=20 > > as none of the servers added are listed at ntp.isc.org. >=20 > The ISC list is not bad, but even that list is not fully updated. Ah, I had thought it was supposed to be definitive. Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDFXSrocfcwTS3JF8RAp2GAKCRgqiiZ7+TTEy9MhVvHyxmZSwBGACfftxg 4Jcw3zlNxcgN+oNphYPXMwY= =PnlN -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-cvs-src@FreeBSD.ORG Wed Aug 31 09:55:40 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75D5D16A41F; Wed, 31 Aug 2005 09:55:40 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (core.310.ru [83.97.105.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD2FA43D46; Wed, 31 Aug 2005 09:55:39 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (localhost [127.0.0.1]) by core.310.ru (8.13.3/8.12.11) with ESMTP id j7V9tZ4S000727; Wed, 31 Aug 2005 13:55:35 +0400 (MSD) (envelope-from stas@core.310.ru) Received: (from stas@localhost) by core.310.ru (8.13.3/8.12.11/Submit) id j7V9tZLb000726; Wed, 31 Aug 2005 13:55:35 +0400 (MSD) (envelope-from stas) Date: Wed, 31 Aug 2005 13:55:35 +0400 From: Stanislav Sedov To: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Message-ID: <20050831095535.GA702@core.310.ru> Mail-Followup-To: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org References: <20050829224232.GB269@core.310.ru> <18282.1125381632@phk.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <18282.1125381632@phk.freebsd.dk> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: fuser utility X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 09:55:40 -0000 On Tue, Aug 30, 2005 at 08:00:32AM +0200, Poul-Henning Kamp wrote: > In message <20050829224232.GB269@core.310.ru>, Stanislav Sedov writes: > > >I implemented POSIX fuser utility for freebsd. I expect it conforms > >IEEE 1003.1-2004. It works only on recent kernels where devfs_random > >influence on dev_t numbers was eliminated. > > This is wrong, the randomness will be reintroduced soon. > > We need to create the necessary hooks in the kernel for doing this > correctly (ie: not kvm). > > -- > 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. > > Can we add sysctl for devfs's random number? It seems it won't introduce problems. From owner-cvs-src@FreeBSD.ORG Wed Aug 31 10:23:32 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F338F16A41F; Wed, 31 Aug 2005 10:23:31 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F92A43D4C; Wed, 31 Aug 2005 10:23:31 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (tradenet-it.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.3/8.13.3) with ESMTP id j7VANTbr061965 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 31 Aug 2005 06:23:30 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 31 Aug 2005 06:22:29 -0400 From: Tom Rhodes To: juli mallett Message-ID: <20050831062229.29ddae02@localhost> In-Reply-To: <20050831023036.GA25335@toxic.magnesium.net> References: <200508251022.j7PAMWFO030767@repoman.freebsd.org> <20050825195416.GA65980@toxic.magnesium.net> <20050826062242.734ffae4@localhost> <20050828221142.GA71466@toxic.magnesium.net> <20050830200219.534e6d72@localhost> <20050831023036.GA25335@toxic.magnesium.net> X-Mailer: Sylpheed-Claws 1.9.13 (GTK+ 2.6.8; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: juli mallett , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libufs Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 10:23:32 -0000 On Tue, 30 Aug 2005 16:30:36 -1000 juli mallett wrote: > * Tom Rhodes [ Date: 2005-08-30 ] > [ w.r.t. Re: cvs commit: src/lib/libufs Makefile ] > > On Sun, 28 Aug 2005 12:11:42 -1000 > > juli mallett wrote: > > > > > * Tom Rhodes [ Date: 2005-08-26 ] > > > [ w.r.t. Re: cvs commit: src/lib/libufs Makefile ] > > > > On Thu, 25 Aug 2005 09:54:16 -1000 > > > > juli mallett wrote: > > > > > > > > > * Tom Rhodes [ Date: 2005-08-25 ] > > > > > [ w.r.t. cvs commit: src/lib/libufs Makefile ] > > > > > > trhodes 2005-08-25 10:22:30 UTC > > > > > > > > > > > > FreeBSD src repository > > > > > > > > > > > > Modified files: > > > > > > lib/libufs Makefile > > > > > > Log: > > > > > > Hook getino.3 up to the build and link it to putino.3. > > > > > > > > > > > > PR: 83820 > > > > > > > > > > This is wrong. As the PR states it was purposely not hooked > > > > > up. inode.c doesn't have functions which look like the > > > > > interfaces you've just published, and there isn't even a > > > > > putino(3) in there. If the cause of the confusion is the > > > > > manpage being listed in Xr's or something, then comment out > > > > > the Xr's. This is very obviously wrong, if you try to use > > > > > what's in the manpage I committed. Probably it shoudln't be > > > > > in CVS at all. The reason I put it there at the time is that > > > > > it was ready and inode.c was about ready to hit CVS, but that > > > > > got dropped. Now, if you want to help me remember what P4 > > > > > tree that inode.c was in, and pick up whereever I left off, > > > > > that'd be awesome. > > > > > > > > Let me understand real quick, it was purposely not hooked up > > > > because it was the only file not updated? I mean, I can back > > > > this out, no problem; however, I fail to see why nothing is > > > > going on with this code. No clue on the branch, sorry. > > > > > > It was purposely not hooked up because the code that it documents > > > isn't in CVS. > > > > > > > I know now why it wasn't hooked up to the build. What I'm asking > > is: > > > > 1: Is this currently maintained? and > > 2: What utilities are currently using this? > > I don't remember what uses getino() as implemented in libufs. Maybe > nothing, in which case it can just be removed. In any event, the > interface that is there is bad and shouldn't be documented. That > said, it isn't currently maintained very well, so the odds of me > remembering where the new code is and what's wrong with it are low, > so in any event, the right thing to do is for the manpage to not be > installed, and to not be in CVS. > > Thanx, > juli. > Backed out, as you know. We'll discuss this offline. :) -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Wed Aug 31 10:51:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 994DC16A41F; Wed, 31 Aug 2005 10:51:56 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D23743D4C; Wed, 31 Aug 2005 10:51:56 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VApt8Q077938; Wed, 31 Aug 2005 10:51:55 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VAptrr077937; Wed, 31 Aug 2005 10:51:55 GMT (envelope-from glebius) Message-Id: <200508311051.j7VAptrr077937@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 10:51:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 10:51:56 -0000 glebius 2005-08-31 10:51:55 UTC FreeBSD src repository Modified files: sys/boot/forth loader.conf Log: net.graph.ngqfreemax has been deprecated. Revision Changes Path 1.100 +0 -1 src/sys/boot/forth/loader.conf From owner-cvs-src@FreeBSD.ORG Wed Aug 31 11:36:51 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5961016A41F; Wed, 31 Aug 2005 11:36:51 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17A2143D45; Wed, 31 Aug 2005 11:36:51 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VBao3N079997; Wed, 31 Aug 2005 11:36:50 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VBaoKD079996; Wed, 31 Aug 2005 11:36:50 GMT (envelope-from yar) Message-Id: <200508311136.j7VBaoKD079996@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 31 Aug 2005 11:36:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net if_vlan.c if_vlan_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 11:36:51 -0000 yar 2005-08-31 11:36:50 UTC FreeBSD src repository Modified files: sys/net if_vlan.c if_vlan_var.h Log: Use VLAN_TAG_VALUE() not only to read a dot1q tag value from an m_tag, but also to set it. This reduces complex code duplication and improves its readability. Alas, we shouldn't rename the macro to VLAN_TAG_LVALUE() globally because that would cause pain for kernel module port maintainers and vendors using FreeBSD as their codebase. Added a clarifying comment instead. Discussed with: ru, glebius X-MFC-After: 6.0-RELEASE (MFC is good just to reduce the diff) Revision Changes Path 1.83 +1 -1 src/sys/net/if_vlan.c 1.22 +7 -2 src/sys/net/if_vlan_var.h From owner-cvs-src@FreeBSD.ORG Wed Aug 31 13:56:18 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9968716A41F; Wed, 31 Aug 2005 13:56:18 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D34C43D6A; Wed, 31 Aug 2005 13:56:16 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VDuGTK098048; Wed, 31 Aug 2005 13:56:16 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VDuG2v098047; Wed, 31 Aug 2005 13:56:16 GMT (envelope-from glebius) Message-Id: <200508311356.j7VDuG2v098047@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 13:56:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 13:56:18 -0000 glebius 2005-08-31 13:56:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet tcp_syncache.c Log: MFC 1.76: - Refuse hashsize of 0, since it is invalid. - Use defined constant instead of 512. Approved by: re (kensmith) Revision Changes Path 1.74.2.2 +2 -2 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 13:57:09 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F41A816A41F; Wed, 31 Aug 2005 13:57:08 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A0643D49; Wed, 31 Aug 2005 13:57:04 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VDv4Aw098156; Wed, 31 Aug 2005 13:57:04 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VDv4RM098155; Wed, 31 Aug 2005 13:57:04 GMT (envelope-from glebius) Message-Id: <200508311357.j7VDv4RM098155@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 13:57:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 13:57:09 -0000 glebius 2005-08-31 13:57:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet tcp_syncache.c Log: MFC 1.76: - Refuse hashsize of 0, since it is invalid. - Use defined constant instead of 512. Revision Changes Path 1.66.2.3 +2 -2 src/sys/netinet/tcp_syncache.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 13:57:39 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCF1616A434; Wed, 31 Aug 2005 13:57:38 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7064743D58; Wed, 31 Aug 2005 13:57:38 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VDvbaZ098283; Wed, 31 Aug 2005 13:57:37 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VDvbt4098281; Wed, 31 Aug 2005 13:57:37 GMT (envelope-from keramida) Message-Id: <200508311357.j7VDvbt4098281@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 31 Aug 2005 13:57:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/kldload kldload.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 13:57:39 -0000 keramida 2005-08-31 13:57:37 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) sbin/kldload kldload.8 Log: MFC 1.23: Make it clear that the .ko extention of a module to be loaded is optional. Approved by: re (hrs) Revision Changes Path 1.22.2.1 +10 -3 src/sbin/kldload/kldload.8 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 13:58:29 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CD5816A41F; Wed, 31 Aug 2005 13:58:29 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDAB043D45; Wed, 31 Aug 2005 13:58:28 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VDwSOe098446; Wed, 31 Aug 2005 13:58:28 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VDwSCb098445; Wed, 31 Aug 2005 13:58:28 GMT (envelope-from glebius) Message-Id: <200508311358.j7VDwSCb098445@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 13:58:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet if_atm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 13:58:29 -0000 glebius 2005-08-31 13:58:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet if_atm.c Log: MFC 1.21: Add newline to debuging printf. PR: kern/85271 Submitted by: Simon Morgan Approved by: re (kensmith) Revision Changes Path 1.19.2.2 +2 -1 src/sys/netinet/if_atm.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 13:58:39 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE08716A439; Wed, 31 Aug 2005 13:58:39 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6864F43D58; Wed, 31 Aug 2005 13:58:39 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VDwdxw098516; Wed, 31 Aug 2005 13:58:39 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VDwdFd098515; Wed, 31 Aug 2005 13:58:39 GMT (envelope-from keramida) Message-Id: <200508311358.j7VDwdFd098515@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 31 Aug 2005 13:58:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sbin/kldload kldload.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 13:58:39 -0000 keramida 2005-08-31 13:58:39 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) sbin/kldload kldload.8 Log: MFC 1.23: Make it clear that the .ko extention of a module to be loaded is optional. Revision Changes Path 1.21.6.1 +10 -3 src/sbin/kldload/kldload.8 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 13:59:01 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76A8516A453; Wed, 31 Aug 2005 13:59:01 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 046C643D48; Wed, 31 Aug 2005 13:59:01 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VDx03W098618; Wed, 31 Aug 2005 13:59:00 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VDx0pA098617; Wed, 31 Aug 2005 13:59:00 GMT (envelope-from glebius) Message-Id: <200508311359.j7VDx0pA098617@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 13:59:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netinet if_atm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 13:59:01 -0000 glebius 2005-08-31 13:59:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet if_atm.c Log: MFC 1.21: Add newline to debuging printf. PR: kern/85271 Submitted by: Simon Morgan Revision Changes Path 1.18.2.2 +2 -1 src/sys/netinet/if_atm.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 14:01:49 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4672116A41F; Wed, 31 Aug 2005 14:01:49 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3AEE43D45; Wed, 31 Aug 2005 14:01:48 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VE1meK098927; Wed, 31 Aug 2005 14:01:48 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VE1mtG098926; Wed, 31 Aug 2005 14:01:48 GMT (envelope-from glebius) Message-Id: <200508311401.j7VE1mtG098926@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 14:01:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libc/sys listen.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 14:01:51 -0000 glebius 2005-08-31 14:01:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/sys listen.2 Log: MFC 1.28: - Document the fact that the real length of listen queue is 1.5 more than the value of backlog argument. - Document the fact that a subsequent listen(2) calls on the listening socket change the backlog argument. - Note that current listen queue lengths can be queried using netstat(1). Submitted by: Igor Sysoev Wording by: gnn Approved by: re (kensmith) Revision Changes Path 1.27.12.1 +16 -1 src/lib/libc/sys/listen.2 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 14:02:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07C6816A41F; Wed, 31 Aug 2005 14:02:21 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94FBE43D45; Wed, 31 Aug 2005 14:02:20 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VE2KJI099013; Wed, 31 Aug 2005 14:02:20 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VE2Kcs099012; Wed, 31 Aug 2005 14:02:20 GMT (envelope-from glebius) Message-Id: <200508311402.j7VE2Kcs099012@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 31 Aug 2005 14:02:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/lib/libc/sys listen.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 14:02:21 -0000 glebius 2005-08-31 14:02:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libc/sys listen.2 Log: MFC 1.28: - Document the fact that the real length of listen queue is 1.5 more than the value of backlog argument. - Document the fact that a subsequent listen(2) calls on the listening socket change the backlog argument. - Note that current listen queue lengths can be queried using netstat(1). Submitted by: Igor Sysoev Wording by: gnn Revision Changes Path 1.27.6.1 +16 -1 src/lib/libc/sys/listen.2 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 14:03:38 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 080D016A41F; Wed, 31 Aug 2005 14:03:38 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 583F343D46; Wed, 31 Aug 2005 14:03:37 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 86A6E52C19; Wed, 31 Aug 2005 16:03:35 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 6624952BC5; Wed, 31 Aug 2005 16:03:28 +0200 (CEST) Date: Wed, 31 Aug 2005 16:03:01 +0200 From: Pawel Jakub Dawidek To: Gleb Smirnoff Message-ID: <20050831140301.GB791@garage.freebsd.pl> References: <200508311356.j7VDuG2v098047@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/NkBOFFp2J2Af1nK" Content-Disposition: inline In-Reply-To: <200508311356.j7VDuG2v098047@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng devel (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 14:03:38 -0000 --/NkBOFFp2J2Af1nK Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 31, 2005 at 01:56:15PM +0000, Gleb Smirnoff wrote: +> glebius 2005-08-31 13:56:15 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: (Branch: RELENG_6) +> sys/netinet tcp_syncache.c=20 +> Log: +> MFC 1.76: +> - Refuse hashsize of 0, since it is invalid. [...] +> - if (!powerof2(tcp_syncache.hashsize)) { +> + if (!powerof2(tcp_syncache.hashsize) || tcp_syncache.hashsize =3D=3D 0= ) { I ran into this as well. The problem here is powerof2() macro and the macro should be fixed: 0 is not a power of 2. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --/NkBOFFp2J2Af1nK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDFbiVForvXbEpPzQRAu7wAKDOsH0o7OlHmpUwdQwVg+eiDIdcLwCg0rqw u86A1ThbGW38r2mu2Qio/fw= =eKwV -----END PGP SIGNATURE----- --/NkBOFFp2J2Af1nK-- From owner-cvs-src@FreeBSD.ORG Wed Aug 31 14:57:40 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17A3216A41F; Wed, 31 Aug 2005 14:57:40 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B93AC43D46; Wed, 31 Aug 2005 14:57:39 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VEvduE002455; Wed, 31 Aug 2005 14:57:39 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VEvdV9002454; Wed, 31 Aug 2005 14:57:39 GMT (envelope-from rodrigc) Message-Id: <200508311457.j7VEvdV9002454@repoman.freebsd.org> From: Craig Rodrigues Date: Wed, 31 Aug 2005 14:57:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libdevinfo devinfo.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 14:57:40 -0000 rodrigc 2005-08-31 14:57:39 UTC FreeBSD src repository Modified files: lib/libdevinfo devinfo.h Log: Add __BEGIN_DECLS/__END_DECLS so that this header can be included in C++ programs. Also, add include guards. PR: bin/44277 Submitted by: Alex Zepeda MFC after: 1 day Revision Changes Path 1.5 +9 -0 src/lib/libdevinfo/devinfo.h From owner-cvs-src@FreeBSD.ORG Wed Aug 31 15:02:11 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC61E16A41F; Wed, 31 Aug 2005 15:02:11 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7C4A43D45; Wed, 31 Aug 2005 15:02:11 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VF2B3o002683; Wed, 31 Aug 2005 15:02:11 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VF2BTC002682; Wed, 31 Aug 2005 15:02:11 GMT (envelope-from keramida) Message-Id: <200508311502.j7VF2BTC002682@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 31 Aug 2005 15:02:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc login.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 15:02:12 -0000 keramida 2005-08-31 15:02:11 UTC FreeBSD src repository (doc committer) Modified files: etc login.conf Log: Add a short description of how a literal colon ':' can be inlined in the value of capability databases, since it's not really obvious how a colon can be escaped, and a pointer to the getcap(3) manpage for more details. Triggered by: a question by Ceri on -questions Revision Changes Path 1.50 +5 -0 src/etc/login.conf From owner-cvs-src@FreeBSD.ORG Wed Aug 31 16:55:01 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C329516A41F; Wed, 31 Aug 2005 16:55:01 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCC0B43D60; Wed, 31 Aug 2005 16:55:00 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VGt0wB014374; Wed, 31 Aug 2005 16:55:00 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VGt0kk014373; Wed, 31 Aug 2005 16:55:00 GMT (envelope-from scottl) Message-Id: <200508311655.j7VGt0kk014373@repoman.freebsd.org> From: Scott Long Date: Wed, 31 Aug 2005 16:55:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 16:55:01 -0000 scottl 2005-08-31 16:55:00 UTC FreeBSD src repository Modified files: share/man/man9 bus_dma.9 Log: More clarification on how bus_dmamap_sync works. Fix bogus text concerning bus_dmamem_alloc. Revision Changes Path 1.27 +25 -11 src/share/man/man9/bus_dma.9 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 17:00:48 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C7BB16A41F; Wed, 31 Aug 2005 17:00:48 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B5AA43D45; Wed, 31 Aug 2005 17:00:48 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VH0m4t014678; Wed, 31 Aug 2005 17:00:48 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VH0mLH014677; Wed, 31 Aug 2005 17:00:48 GMT (envelope-from imp) Message-Id: <200508311700.j7VH0mLH014677@repoman.freebsd.org> From: Warner Losh Date: Wed, 31 Aug 2005 17:00:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pccard pccarddevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 17:00:48 -0000 imp 2005-08-31 17:00:48 UTC FreeBSD src repository Modified files: sys/dev/pccard pccarddevs Log: Update for a few recently discovered Olicom token ring cards: OC3231 Token Ring + 28.8 modem OC3232 Token Ring + 33.6 modem Revision Changes Path 1.114 +3 -1 src/sys/dev/pccard/pccarddevs From owner-cvs-src@FreeBSD.ORG Wed Aug 31 17:53:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35BA716A41F; Wed, 31 Aug 2005 17:53:54 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBAA443D48; Wed, 31 Aug 2005 17:53:53 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VHrrGu017030; Wed, 31 Aug 2005 17:53:53 GMT (envelope-from ups@repoman.freebsd.org) Received: (from ups@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VHrrc0017029; Wed, 31 Aug 2005 17:53:53 GMT (envelope-from ups) Message-Id: <200508311753.j7VHrrc0017029@repoman.freebsd.org> From: Stephan Uphoff Date: Wed, 31 Aug 2005 17:53:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c softdep.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 17:53:54 -0000 ups 2005-08-31 17:53:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/ufs/ffs ffs_softdep.c softdep.h Log: MFC ffs_softdep.c 1.182, softdep.h 1.18 Delay freeing disk space for file system blocks until all dirty buffers are safely released. This fixes softdep problems on truncation (deletion) of files with dirty buffers. Revision Changes Path 1.57.2.15 +19 -0 src/sys/ufs/ffs/ffs_softdep.c 1.7.2.2 +2 -1 src/sys/ufs/ffs/softdep.h From owner-cvs-src@FreeBSD.ORG Wed Aug 31 17:58:39 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2B8816A41F; Wed, 31 Aug 2005 17:58:39 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27CA143D58; Wed, 31 Aug 2005 17:58:39 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VHwdNK017371; Wed, 31 Aug 2005 17:58:39 GMT (envelope-from garys@repoman.freebsd.org) Received: (from garys@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VHwdV4017370; Wed, 31 Aug 2005 17:58:39 GMT (envelope-from garys) Message-Id: <200508311758.j7VHwdV4017370@repoman.freebsd.org> From: "Gary W. Swearingen" Date: Wed, 31 Aug 2005 17:58:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/ls ls.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 17:58:40 -0000 garys 2005-08-31 17:58:39 UTC FreeBSD src repository (doc committer) Modified files: bin/ls ls.1 Log: Improved descriptions of block size handling. PR: docs/84765 Submitted by: garys Approved by: keramida MFC after: 3 days Revision Changes Path 1.90 +48 -37 src/bin/ls/ls.1 From owner-cvs-src@FreeBSD.ORG Wed Aug 31 18:03:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 565D216A41F; Wed, 31 Aug 2005 18:03:19 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 164B343D45; Wed, 31 Aug 2005 18:03:19 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VI3Ix1017611; Wed, 31 Aug 2005 18:03:18 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VI3IJV017610; Wed, 31 Aug 2005 18:03:18 GMT (envelope-from jhb) Message-Id: <200508311803.j7VI3IJV017610@repoman.freebsd.org> From: John Baldwin Date: Wed, 31 Aug 2005 18:03:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci if_wb.c if_wbreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 18:03:19 -0000 jhb 2005-08-31 18:03:18 UTC FreeBSD src repository Modified files: sys/pci if_wb.c if_wbreg.h Log: Use if_printf() and device_printf() for printf's and remove the unit number from the softc. MFC after: 3 days Revision Changes Path 1.82 +15 -19 src/sys/pci/if_wb.c 1.13 +0 -1 src/sys/pci/if_wbreg.h From owner-cvs-src@FreeBSD.ORG Wed Aug 31 18:09:54 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAFFC16A41F; Wed, 31 Aug 2005 18:09:54 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78AF643D45; Wed, 31 Aug 2005 18:09:54 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VI9s6J017912; Wed, 31 Aug 2005 18:09:54 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VI9sbW017911; Wed, 31 Aug 2005 18:09:54 GMT (envelope-from jhb) Message-Id: <200508311809.j7VI9sbW017911@repoman.freebsd.org> From: John Baldwin Date: Wed, 31 Aug 2005 18:09:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/txp if_txp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 18:09:54 -0000 jhb 2005-08-31 18:09:54 UTC FreeBSD src repository Modified files: sys/dev/txp if_txp.c Log: - Only call txp_release_resources() once if attach fails. - Set errno to ENXIO instead of 0 in several attach failure cases. - Setup the interrupt handler at the very end of txp_attach() after ether_ifattach(). - Various whitespace fixes in function prototypes. Revision Changes Path 1.34 +31 -38 src/sys/dev/txp/if_txp.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 18:13:24 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3465116A41F; Wed, 31 Aug 2005 18:13:24 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0293043D45; Wed, 31 Aug 2005 18:13:24 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VIDNW9018246; Wed, 31 Aug 2005 18:13:23 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VIDNHt018245; Wed, 31 Aug 2005 18:13:23 GMT (envelope-from emax) Message-Id: <200508311813.j7VIDNHt018245@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 31 Aug 2005 18:13:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/include ng_l2cap.h src/sys/netgraph/bluetooth/l2cap ng_l2cap_cmds.c ng_l2cap_misc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 18:13:24 -0000 emax 2005-08-31 18:13:23 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/include ng_l2cap.h sys/netgraph/bluetooth/l2cap ng_l2cap_cmds.c ng_l2cap_misc.c Log: Fix dangling callout problem in the Bluetooth L2CAP code that leads to panic. The panic happens when outgoing L2CAP connection descriptor is deleted with the L2CAP command(s) pending in the queue. In this case when the last L2CAP command is deleted (due to cleanup) and reference counter for the L2CAP connection goes down to zero the auto disconnect timeout is incorrectly set. pjd gets credit for tracking this down and committing bandaid. Reported by: Jonatan B MFC after: 3 days Revision Changes Path 1.4 +1 -0 src/sys/netgraph/bluetooth/include/ng_l2cap.h 1.6 +3 -0 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c 1.12 +10 -5 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 19:44:41 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53B1016A41F; Wed, 31 Aug 2005 19:44:41 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D249F43D49; Wed, 31 Aug 2005 19:44:40 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VJievh024351; Wed, 31 Aug 2005 19:44:40 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VJie6N024350; Wed, 31 Aug 2005 19:44:40 GMT (envelope-from stefanf) Message-Id: <200508311944.j7VJie6N024350@repoman.freebsd.org> From: Stefan Farfeleder Date: Wed, 31 Aug 2005 19:44:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen Makefile rpc_cout.c rpc_main.c rpc_util.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 19:44:41 -0000 stefanf 2005-08-31 19:44:40 UTC FreeBSD src repository Modified files: usr.bin/rpcgen Makefile rpc_cout.c rpc_main.c rpc_util.h Log: Rename the variable `inline' to `inline_size'. Revision Changes Path 1.8 +0 -5 src/usr.bin/rpcgen/Makefile 1.12 +8 -8 src/usr.bin/rpcgen/rpc_cout.c 1.26 +2 -2 src/usr.bin/rpcgen/rpc_main.c 1.7 +1 -1 src/usr.bin/rpcgen/rpc_util.h From owner-cvs-src@FreeBSD.ORG Wed Aug 31 19:45:11 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0D4816A41F; Wed, 31 Aug 2005 19:45:11 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84BF743D5F; Wed, 31 Aug 2005 19:45:11 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VJjBGQ024418; Wed, 31 Aug 2005 19:45:11 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VJjBO6024417; Wed, 31 Aug 2005 19:45:11 GMT (envelope-from pjd) Message-Id: <200508311945.j7VJjBO6024417@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 31 Aug 2005 19:45:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 31 Aug 2005 19:45:12 -0000 pjd 2005-08-31 19:45:11 UTC FreeBSD src repository Modified files: sys/dev/md md.c Log: - Add md_mtx lock to protect ID number and list of devices. - Always check mdnew() return value, as even in !autounit case kthread_create() can fail. Those two changes fix serval panics provked by simple stress test. Tested by: Kris The BugMagnet MFC after: 3 days Revision Changes Path 1.155 +37 -25 src/sys/dev/md/md.c From owner-cvs-src@FreeBSD.ORG Wed Aug 31 20:45:15 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C72D116A41F; Wed, 31 Aug 2005 20:45:15 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90D5343D45; Wed, 31 Aug 2005 20:45:15 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7VKjFbh033837; Wed, 31 Aug 2005 20:45:15 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7VKjFsu033836; Wed, 31 Aug 2005 20:45:15 GMT (envelope-from stefanf) Message-Id: <200508312045.j7VKjFsu033836@repoman.freebsd.org> From: Stefan Farfeleder Date: Wed, 31 Aug 2005 20:45:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_clntout.c rpc_cout.c rpc_hout.c rpc_main.c rpc_parse.h rpc_sample.c rpc_scan.h rpc_svcout.c rpc_tblout.c rpc_util.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 20:45:16 -0000 stefanf 2005-08-31 20:45:15 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_clntout.c rpc_cout.c rpc_hout.c rpc_main.c rpc_parse.h rpc_sample.c rpc_scan.h rpc_svcout.c rpc_tblout.c rpc_util.h Log: - Use prototypes in headers. - Include rpc_scan.h before rpc_util.h for the tok_kind enum. - Nuke unused declarations. Revision Changes Path 1.10 +1 -0 src/usr.bin/rpcgen/rpc_clntout.c 1.13 +1 -0 src/usr.bin/rpcgen/rpc_cout.c 1.11 +1 -0 src/usr.bin/rpcgen/rpc_hout.c 1.27 +1 -1 src/usr.bin/rpcgen/rpc_main.c 1.6 +1 -1 src/usr.bin/rpcgen/rpc_parse.h 1.7 +1 -0 src/usr.bin/rpcgen/rpc_sample.c 1.6 +7 -7 src/usr.bin/rpcgen/rpc_scan.h 1.17 +1 -0 src/usr.bin/rpcgen/rpc_svcout.c 1.10 +1 -0 src/usr.bin/rpcgen/rpc_tblout.c 1.8 +34 -34 src/usr.bin/rpcgen/rpc_util.h From owner-cvs-src@FreeBSD.ORG Thu Sep 1 01:00:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7278316A41F; Thu, 1 Sep 2005 01:00:56 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32FD843D45; Thu, 1 Sep 2005 01:00:56 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j8110ulj059301; Thu, 1 Sep 2005 01:00:56 GMT (envelope-from garys@repoman.freebsd.org) Received: (from garys@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j8110uFE059300; Thu, 1 Sep 2005 01:00:56 GMT (envelope-from garys) Message-Id: <200509010100.j8110uFE059300@repoman.freebsd.org> From: "Gary W. Swearingen" Date: Thu, 1 Sep 2005 01:00:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/gnu/usr.bin/man/apropos apropos.man X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 01:00:56 -0000 garys 2005-09-01 01:00:55 UTC FreeBSD src repository (doc committer) Modified files: gnu/usr.bin/man/apropos apropos.man Log: Added ENVIRONMENT section (PAGER, MANPATH, etc.). PR: docs/84485 Submitted by: garys Approved by: keramida MFC after: 3 days Revision Changes Path 1.14 +13 -0 src/gnu/usr.bin/man/apropos/apropos.man From owner-cvs-src@FreeBSD.ORG Thu Sep 1 01:15:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C512616A420; Thu, 1 Sep 2005 01:15:22 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8677E43D46; Thu, 1 Sep 2005 01:15:22 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j811FMDe059968; Thu, 1 Sep 2005 01:15:22 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j811FMbU059967; Thu, 1 Sep 2005 01:15:22 GMT (envelope-from marcel) Message-Id: <200509010115.j811FMbU059967@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 1 Sep 2005 01:15:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt remove.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 01:15:22 -0000 marcel 2005-09-01 01:15:22 UTC FreeBSD src repository Modified files: sbin/gpt remove.c Log: Add a comment before the statement that is responsible for the removal of the GPT entry. There's a bit of code around that one statement that it's good to have it stand out a bit more. Revision Changes Path 1.7 +2 -0 src/sbin/gpt/remove.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 01:24:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3283016A41F; Thu, 1 Sep 2005 01:24:43 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0E5743D48; Thu, 1 Sep 2005 01:24:42 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j811OgpE060402; Thu, 1 Sep 2005 01:24:42 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j811Ogus060401; Thu, 1 Sep 2005 01:24:42 GMT (envelope-from imp) Message-Id: <200509010124.j811Ogus060401@repoman.freebsd.org> From: Warner Losh Date: Thu, 1 Sep 2005 01:24:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 01:24:43 -0000 imp 2005-09-01 01:24:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc Makefile Log: MFC: Allow one to override {CAP,PWD}_MKDB_ENDIAN from the command line. Approved by: re@ (scottl) Revision Changes Path 1.343.2.2 +6 -5 src/etc/Makefile From owner-cvs-src@FreeBSD.ORG Thu Sep 1 02:42:35 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53CEF16A41F; Thu, 1 Sep 2005 02:42:35 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 179A543D49; Thu, 1 Sep 2005 02:42:35 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j812gYHw063287; Thu, 1 Sep 2005 02:42:34 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j812gYsB063286; Thu, 1 Sep 2005 02:42:34 GMT (envelope-from imp) Message-Id: <200509010242.j812gYsB063286@repoman.freebsd.org> From: Warner Losh Date: Thu, 1 Sep 2005 02:42:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 02:42:35 -0000 imp 2005-09-01 02:42:34 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Treat resources that are 0xfffff.... as being 'unassigned'. Reviewed by: jhb Tested by: Mark Kirkwood MFC After: 3 days Revision Changes Path 1.293 +6 -1 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 02:42:52 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99A0316A41F; Thu, 1 Sep 2005 02:42:52 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59AB643D4C; Thu, 1 Sep 2005 02:42:52 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j812gqGC063322; Thu, 1 Sep 2005 02:42:52 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j812gqb5063321; Thu, 1 Sep 2005 02:42:52 GMT (envelope-from marcel) Message-Id: <200509010242.j812gqb5063321@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 1 Sep 2005 02:42:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt add.c migrate.c remove.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 02:42:52 -0000 marcel 2005-09-01 02:42:52 UTC FreeBSD src repository Modified files: sbin/gpt add.c migrate.c remove.c Log: Dot the i's: multiple devices can be specified, so the usage should have ellipsis following the device. Revision Changes Path 1.13 +1 -1 src/sbin/gpt/add.c 1.16 +1 -1 src/sbin/gpt/migrate.c 1.8 +5 -3 src/sbin/gpt/remove.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 02:49:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BCDA16A41F; Thu, 1 Sep 2005 02:49:21 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D54B643D45; Thu, 1 Sep 2005 02:49:20 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j812nK0i063607; Thu, 1 Sep 2005 02:49:20 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j812nKxC063606; Thu, 1 Sep 2005 02:49:20 GMT (envelope-from marcel) Message-Id: <200509010249.j812nKxC063606@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 1 Sep 2005 02:49:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt Makefile gpt.8 gpt.c gpt.h label.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 02:49:21 -0000 marcel 2005-09-01 02:49:20 UTC FreeBSD src repository Modified files: sbin/gpt Makefile gpt.8 gpt.c gpt.h Added files: sbin/gpt label.c Log: Add support for setting GPT partition labels. The partitions to be labeled are selected in the same way as with the remove command. Update the manpage to have the selection options described for the label command and referenced to it from the remove command. The label can be specified on the command line with the -l option or read from a file with the -f option. In both cases, the label is assumed to be encoded in UTF-8. PR: ia64/83124 MFC after: 1 week Revision Changes Path 1.7 +2 -2 src/sbin/gpt/Makefile 1.15 +75 -30 src/sbin/gpt/gpt.8 1.13 +2 -1 src/sbin/gpt/gpt.c 1.10 +1 -0 src/sbin/gpt/gpt.h 1.1 +263 -0 src/sbin/gpt/label.c (new) From owner-cvs-src@FreeBSD.ORG Thu Sep 1 06:05:40 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6251A16A41F; Thu, 1 Sep 2005 06:05:40 +0000 (GMT) (envelope-from jhay@meraka.csir.co.za) Received: from zibbi.meraka.csir.co.za (zibbi.meraka.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5177843D45; Thu, 1 Sep 2005 06:05:35 +0000 (GMT) (envelope-from jhay@meraka.csir.co.za) Received: by zibbi.meraka.csir.co.za (Postfix, from userid 3973) id 59FF744; Thu, 1 Sep 2005 08:05:29 +0200 (SAST) Date: Thu, 1 Sep 2005 08:05:29 +0200 From: John Hay To: Garrett Wollman Message-ID: <20050901060529.GA22644@zibbi.meraka.csir.co.za> References: <200508310133.j7V1XRe2034681@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200508310133.j7V1XRe2034681@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/zoneinfo Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 06:05:40 -0000 On Wed, Aug 31, 2005 at 01:33:26AM +0000, Garrett Wollman wrote: > wollman 2005-08-31 01:33:26 UTC > > FreeBSD src repository > > Modified files: > share/zoneinfo Makefile > Log: > Move "systemv" into OLDTIMEZONES clause; "backward" is a prerequisite. > ("systemv" is even more backward than "backward" is!) > > Obliquely pointed out by: jhay > > Revision Changes Path > 1.21 +2 -2 src/share/zoneinfo/Makefile Thanks, my release snapshots of both -current and RELENG_5 finished without an error. :-) John -- John Hay -- John.Hay@meraka.csir.co.za / jhay@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Thu Sep 1 07:30:04 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1427B16A426; Thu, 1 Sep 2005 07:30:04 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C539F43D46; Thu, 1 Sep 2005 07:30:03 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j817U381083349; Thu, 1 Sep 2005 07:30:03 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j817U33s083348; Thu, 1 Sep 2005 07:30:03 GMT (envelope-from philip) Message-Id: <200509010730.j817U33s083348@repoman.freebsd.org> From: Philip Paeps Date: Thu, 1 Sep 2005 07:30:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/lib/libbsnmp/modules/snmp_pf pf_snmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 07:30:04 -0000 philip 2005-09-01 07:30:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libbsnmp/modules/snmp_pf pf_snmp.c Log: MFC r1.6: fix unhandled malloc errors. Revision Changes Path 1.1.2.2 +54 -9 src/lib/libbsnmp/modules/snmp_pf/pf_snmp.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 13:52:13 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0402316A41F; Thu, 1 Sep 2005 13:52:13 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B772343D4C; Thu, 1 Sep 2005 13:52:12 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81DqCmX015468; Thu, 1 Sep 2005 13:52:12 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81DqCOO015467; Thu, 1 Sep 2005 13:52:12 GMT (envelope-from philip) Message-Id: <200509011352.j81DqCOO015467@repoman.freebsd.org> From: Philip Paeps Date: Thu, 1 Sep 2005 13:52:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/bsnmpd/modules/snmp_pf pf_snmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 13:52:13 -0000 philip 2005-09-01 13:52:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/bsnmpd/modules/snmp_pf pf_snmp.c Log: MFC: r1.6 - Fix unhandled malloc errors. Approved by: re (kensmith) Revision Changes Path 1.5.2.1 +54 -9 src/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 14:19:37 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F1AC16A41F; Thu, 1 Sep 2005 14:19:37 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id D584443D45; Thu, 1 Sep 2005 14:19:36 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id C56F452CB5; Thu, 1 Sep 2005 16:19:34 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id D753D52C13; Thu, 1 Sep 2005 16:19:25 +0200 (CEST) Date: Thu, 1 Sep 2005 16:18:55 +0200 From: Pawel Jakub Dawidek To: John Baldwin Message-ID: <20050901141855.GG6407@garage.freebsd.pl> References: <200508022050.j72KojMA023633@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yRA+Bmk8aPhU85Qt" Content-Disposition: inline In-Reply-To: <200508022050.j72KojMA023633@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng devel (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mutex.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 14:19:37 -0000 --yRA+Bmk8aPhU85Qt Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 02, 2005 at 08:50:45PM +0000, John Baldwin wrote: +> jhb 2005-08-02 20:50:45 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/sys mutex.h=20 +> Log: +> Include a SYSUNINIT() to destroy the mutex in MTX_SYSINIT. This makes +> MTX_SYSINIT mutexes play well with modules that can be unloaded. Should the same thing be added to SX_SYSINIT()? --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --yRA+Bmk8aPhU85Qt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDFw3PForvXbEpPzQRAotcAJ9Zpb3tR1w9jO8kYzMvvo9JgHy+hACfXTqW vn2UezlbbFNLZw88Ak809oY= =H3Fk -----END PGP SIGNATURE----- --yRA+Bmk8aPhU85Qt-- From owner-cvs-src@FreeBSD.ORG Thu Sep 1 15:16:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50B2716A41F; Thu, 1 Sep 2005 15:16:47 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7AFD43D49; Thu, 1 Sep 2005 15:16:46 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81FGkxf019936; Thu, 1 Sep 2005 15:16:46 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81FGkdV019935; Thu, 1 Sep 2005 15:16:46 GMT (envelope-from stefanf) Message-Id: <200509011516.j81FGkdV019935@repoman.freebsd.org> From: Stefan Farfeleder Date: Thu, 1 Sep 2005 15:16:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpthread/thread thr_pspinlock.c thr_sem.c thr_sigsuspend.c thr_symbols.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 15:16:47 -0000 stefanf 2005-09-01 15:16:46 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_pspinlock.c thr_sem.c thr_sigsuspend.c thr_symbols.c Log: Include needed headers that were obtained through . Sort headers while here. Revision Changes Path 1.3 +5 -2 src/lib/libpthread/thread/thr_pspinlock.c 1.17 +1 -0 src/lib/libpthread/thread/thr_sem.c 1.27 +5 -2 src/lib/libpthread/thread/thr_sigsuspend.c 1.2 +1 -0 src/lib/libpthread/thread/thr_symbols.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 15:21:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F30B16A41F; Thu, 1 Sep 2005 15:21:23 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CF7543D5A; Thu, 1 Sep 2005 15:21:23 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81FLNUN020153; Thu, 1 Sep 2005 15:21:23 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81FLNhR020152; Thu, 1 Sep 2005 15:21:23 GMT (envelope-from stefanf) Message-Id: <200509011521.j81FLNhR020152@repoman.freebsd.org> From: Stefan Farfeleder Date: Thu, 1 Sep 2005 15:21:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libthr/thread thr_create.c thr_sem.c thr_symbols.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 15:21:23 -0000 stefanf 2005-09-01 15:21:23 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_create.c thr_sem.c thr_symbols.c Log: Include needed headers that were obtained through . Sort headers while here. Revision Changes Path 1.23 +2 -1 src/lib/libthr/thread/thr_create.c 1.6 +1 -0 src/lib/libthr/thread/thr_sem.c 1.3 +1 -0 src/lib/libthr/thread/thr_symbols.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 15:33:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5DB016A421; Thu, 1 Sep 2005 15:33:22 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 797B343D46; Thu, 1 Sep 2005 15:33:22 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81FXMtd020621; Thu, 1 Sep 2005 15:33:22 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81FXM0b020620; Thu, 1 Sep 2005 15:33:22 GMT (envelope-from stefanf) Message-Id: <200509011533.j81FXM0b020620@repoman.freebsd.org> From: Stefan Farfeleder Date: Thu, 1 Sep 2005 15:33:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/include pthread.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 15:33:23 -0000 stefanf 2005-09-01 15:33:22 UTC FreeBSD src repository Modified files: include pthread.h Log: Improve POSIX conformance: - Don't pollute the namespace by including , , and . Use __MINSIGSTKSZ and __ULONG_MAX from , __sigset_t from instead. - Include because POSIX says we have to. PTHREAD_{DESTRUCTOR_ITERATIONS,KEYS_MAX,STACK_MIN,THREADS_MAX} should eventually move to but are left here for now. Discussed on: standards@, threads@ Revision Changes Path 1.39 +7 -7 src/include/pthread.h From owner-cvs-src@FreeBSD.ORG Thu Sep 1 16:41:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 255FA16A41F; Thu, 1 Sep 2005 16:41:43 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B7343D48; Thu, 1 Sep 2005 16:41:42 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81Gfg8R023379; Thu, 1 Sep 2005 16:41:42 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81GfgH1023378; Thu, 1 Sep 2005 16:41:42 GMT (envelope-from jhb) Message-Id: <200509011641.j81GfgH1023378@repoman.freebsd.org> From: John Baldwin Date: Thu, 1 Sep 2005 16:41:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 16:41:43 -0000 jhb 2005-09-01 16:41:42 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Typo in comment. Revision Changes Path 1.294 +1 -1 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 18:46:16 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B50B416A41F; Thu, 1 Sep 2005 18:46:16 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (core.310.ru [83.97.105.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16ECF43D45; Thu, 1 Sep 2005 18:46:15 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (localhost [127.0.0.1]) by core.310.ru (8.13.3/8.12.11) with ESMTP id j81Iju0A004070; Thu, 1 Sep 2005 22:45:56 +0400 (MSD) (envelope-from stas@core.310.ru) Received: (from stas@localhost) by core.310.ru (8.13.3/8.12.11/Submit) id j81Ijt48004069; Thu, 1 Sep 2005 22:45:55 +0400 (MSD) (envelope-from stas) Date: Thu, 1 Sep 2005 22:45:55 +0400 From: Stanislav Sedov To: Poul-Henning Kamp , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Message-ID: <20050901184555.GA694@core.310.ru> Mail-Followup-To: Poul-Henning Kamp , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org References: <20050829224232.GB269@core.310.ru> <18282.1125381632@phk.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <18282.1125381632@phk.freebsd.dk> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: fuser utility X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 18:46:16 -0000 On Tue, Aug 30, 2005 at 08:00:32AM +0200, Poul-Henning Kamp wrote: > In message <20050829224232.GB269@core.310.ru>, Stanislav Sedov writes: > > >I implemented POSIX fuser utility for freebsd. I expect it conforms > >IEEE 1003.1-2004. It works only on recent kernels where devfs_random > >influence on dev_t numbers was eliminated. > > This is wrong, the randomness will be reintroduced soon. > > We need to create the necessary hooks in the kernel for doing this > correctly (ie: not kvm). > > -- > 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. > > No one needs it? Sorry for flame. From owner-cvs-src@FreeBSD.ORG Thu Sep 1 19:14:42 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3850516A41F; Thu, 1 Sep 2005 19:14:42 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA16143D45; Thu, 1 Sep 2005 19:14:41 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81JEfmY050805; Thu, 1 Sep 2005 19:14:41 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81JEf9G050804; Thu, 1 Sep 2005 19:14:41 GMT (envelope-from scottl) Message-Id: <200509011914.j81JEf9G050804@repoman.freebsd.org> From: Scott Long Date: Thu, 1 Sep 2005 19:14:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 19:14:42 -0000 scottl 2005-09-01 19:14:41 UTC FreeBSD src repository Modified files: share/man/man9 bus_dma.9 Log: Fix a few small problems and bump the date. Submitted by: ru Revision Changes Path 1.28 +4 -3 src/share/man/man9/bus_dma.9 From owner-cvs-src@FreeBSD.ORG Thu Sep 1 19:16:28 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9241C16A421; Thu, 1 Sep 2005 19:16:28 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF05A43D6A; Thu, 1 Sep 2005 19:16:25 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81JGP1r050946; Thu, 1 Sep 2005 19:16:25 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81JGPcm050945; Thu, 1 Sep 2005 19:16:25 GMT (envelope-from stefanf) Message-Id: <200509011916.j81JGPcm050945@repoman.freebsd.org> From: Stefan Farfeleder Date: Thu, 1 Sep 2005 19:16:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_hout.c rpc_main.c rpc_util.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 19:16:28 -0000 stefanf 2005-09-01 19:16:25 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_hout.c rpc_main.c rpc_util.h Log: Only write the dispatch table function prototypes to the header if the -h flag was specified. If all files are generated at once, those functions are static and shouldn't appear in the header. PR: 84450 Reviewed by: alfred Revision Changes Path 1.12 +15 -13 src/usr.bin/rpcgen/rpc_hout.c 1.28 +7 -10 src/usr.bin/rpcgen/rpc_main.c 1.9 +2 -2 src/usr.bin/rpcgen/rpc_util.h From owner-cvs-src@FreeBSD.ORG Thu Sep 1 20:08:25 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C49E16A41F; Thu, 1 Sep 2005 20:08:25 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5DDF43D48; Thu, 1 Sep 2005 20:08:24 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81K8ORA053005; Thu, 1 Sep 2005 20:08:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81K8OXG053004; Thu, 1 Sep 2005 20:08:24 GMT (envelope-from imp) Message-Id: <200509012008.j81K8OXG053004@repoman.freebsd.org> From: Warner Losh Date: Thu, 1 Sep 2005 20:08:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ed if_ed_pccard.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 20:08:25 -0000 imp 2005-09-01 20:08:24 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed_pccard.c Log: At some point in the past, we read the PROM by words. Now we read PROM by bytes. Adjust the extraction of the MAC address from this data to reflect this change. This gets the AX88x90 based PC Cards MAC address working again (my UMAX Ethernet and Linksys EC2T cards now work). MFC After: 3 days Revision Changes Path 1.87 +2 -6 src/sys/dev/ed/if_ed_pccard.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 21:46:33 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C704316A41F; Thu, 1 Sep 2005 21:46:33 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 851B443D48; Thu, 1 Sep 2005 21:46:33 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81LkXeO065442; Thu, 1 Sep 2005 21:46:33 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81LkXL3065441; Thu, 1 Sep 2005 21:46:33 GMT (envelope-from pjd) Message-Id: <200509012146.j81LkXL3065441@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Thu, 1 Sep 2005 21:46:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Sep 2005 21:46:33 -0000 pjd 2005-09-01 21:46:33 UTC FreeBSD src repository Modified files: sys/kern vfs_syscalls.c Log: In case of mac_check_vnode_rename_from() or vn_start_write() failure, vn_finished_write() should not be called. Reviewed by: ssouhlal MFC after: 3 days Revision Changes Path 1.393 +2 -1 src/sys/kern/vfs_syscalls.c From owner-cvs-src@FreeBSD.ORG Thu Sep 1 22:45:25 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED64116A41F; Thu, 1 Sep 2005 22:45:25 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74EBC43D49; Thu, 1 Sep 2005 22:45:25 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j81MjPsO067609; Thu, 1 Sep 2005 22:45:25 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j81MjPgx067608; Thu, 1 Sep 2005 22:45:25 GMT (envelope-from emax) Message-Id: <200509012245.j81MjPgx067608@repoman.freebsd.org> From: Maksim Yevmenkin Date: Thu, 1 Sep 2005 22:45:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/bluetooth/l2ping l2ping.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 01 Sep 2005 22:45:26 -0000 emax 2005-09-01 22:45:25 UTC FreeBSD src repository Modified files: usr.sbin/bluetooth/l2ping l2ping.c Log: Fix typo in usage. Submitted by: Jonatan B < onatan at gmail dot com > MFC after: 3 days Revision Changes Path 1.7 +1 -1 src/usr.sbin/bluetooth/l2ping/l2ping.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 00:33:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F11E16A41F; Fri, 2 Sep 2005 00:33:31 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F39A143D45; Fri, 2 Sep 2005 00:33:30 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j820XUoU071683; Fri, 2 Sep 2005 00:33:30 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j820XUfE071682; Fri, 2 Sep 2005 00:33:30 GMT (envelope-from rodrigc) Message-Id: <200509020033.j820XUfE071682@repoman.freebsd.org> From: Craig Rodrigues Date: Fri, 2 Sep 2005 00:33:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/fdc fdc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 00:33:31 -0000 rodrigc 2005-09-02 00:33:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/fdc fdc.c Log: MFC: 1.380 FDOPT_NORETRY is an option, and must be compared with fd->options, not fd->flags. PR: kern/85481 Submitted by: Lev Levinson Approved by: re (ken) Revision Changes Path 1.307.2.1 +1 -1 src/sys/dev/fdc/fdc.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 00:39:13 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD2FD16A41F; Fri, 2 Sep 2005 00:39:13 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C9CD43D45; Fri, 2 Sep 2005 00:39:13 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j820dDCN071991; Fri, 2 Sep 2005 00:39:13 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j820dDeR071990; Fri, 2 Sep 2005 00:39:13 GMT (envelope-from rodrigc) Message-Id: <200509020039.j820dDeR071990@repoman.freebsd.org> From: Craig Rodrigues Date: Fri, 2 Sep 2005 00:39:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/dev/fdc fdc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 00:39:14 -0000 rodrigc 2005-09-02 00:39:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/fdc fdc.c Log: MFC 1.380: FDOPT_NORETRY is an option, and must be compared with fd->options, not fd->flags. PR: kern/85481 Submitted by: Lev Levinson Revision Changes Path 1.283.2.8 +1 -1 src/sys/dev/fdc/fdc.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 02:52:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E22A16A41F; Fri, 2 Sep 2005 02:52:56 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DD1843D48; Fri, 2 Sep 2005 02:52:56 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j822qtoN084308; Fri, 2 Sep 2005 02:52:55 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j822qtxm084307; Fri, 2 Sep 2005 02:52:55 GMT (envelope-from gshapiro) Message-Id: <200509020252.j822qtxm084307@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Fri, 2 Sep 2005 02:52:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 02:52:56 -0000 gshapiro 2005-09-02 02:52:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) etc/rc.d sendmail Log: MFC: Be sure to execute sendmail_precmd() to check sendmail.cf conflicts and rebuild the aliases file if necessary. Revision Changes Path 1.15 +1 -0 src/etc/rc.d/sendmail Revision Changes Path 1.12.2.2 +1 -0 src/etc/rc.d/sendmail From owner-cvs-src@FreeBSD.ORG Fri Sep 2 03:15:52 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95F2B16A41F; Fri, 2 Sep 2005 03:15:52 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 587B443D45; Fri, 2 Sep 2005 03:15:52 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j823FqpH085514; Fri, 2 Sep 2005 03:15:52 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j823FqXn085513; Fri, 2 Sep 2005 03:15:52 GMT (envelope-from imp) Message-Id: <200509020315.j823FqXn085513@repoman.freebsd.org> From: Warner Losh Date: Fri, 2 Sep 2005 03:15:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ed if_ed.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 03:15:52 -0000 imp 2005-09-02 03:15:51 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed.c Log: MFp4: kill bogus comment Revision Changes Path 1.258 +0 -5 src/sys/dev/ed/if_ed.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 03:16:31 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3473016A420; Fri, 2 Sep 2005 03:16:31 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA02843D48; Fri, 2 Sep 2005 03:16:30 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j823GUYj085579; Fri, 2 Sep 2005 03:16:30 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j823GUcX085578; Fri, 2 Sep 2005 03:16:30 GMT (envelope-from rodrigc) Message-Id: <200509020316.j823GUcX085578@repoman.freebsd.org> From: Craig Rodrigues Date: Fri, 2 Sep 2005 03:16:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libdevinfo devinfo.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 03:16:31 -0000 rodrigc 2005-09-02 03:16:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libdevinfo devinfo.h Log: MFC 1.5: Add __BEGIN_DECLS/__END_DECLS so that this header can be included in C++ programs. Also, add include guards. PR: bin/44277 Submitted by: Alex Zepeda Approved by: re (scottl) Revision Changes Path 1.4.14.1 +9 -0 src/lib/libdevinfo/devinfo.h From owner-cvs-src@FreeBSD.ORG Fri Sep 2 03:52:12 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A58C16A41F; Fri, 2 Sep 2005 03:52:12 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC25943D48; Fri, 2 Sep 2005 03:52:11 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j823qB3q087224; Fri, 2 Sep 2005 03:52:11 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j823qB2E087223; Fri, 2 Sep 2005 03:52:11 GMT (envelope-from gshapiro) Message-Id: <200509020352.j823qB2E087223@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Fri, 2 Sep 2005 03:52:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 03:52:12 -0000 gshapiro 2005-09-02 03:52:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Clean up duplicate entry for sendmail. Approved by: re (scottl) Revision Changes Path 1.883.2.4 +0 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Fri Sep 2 03:52:29 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7709816A41F; Fri, 2 Sep 2005 03:52:29 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 323F543D48; Fri, 2 Sep 2005 03:52:29 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j823qTGE087266; Fri, 2 Sep 2005 03:52:29 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j823qTGB087265; Fri, 2 Sep 2005 03:52:29 GMT (envelope-from rodrigc) Message-Id: <200509020352.j823qTGB087265@repoman.freebsd.org> From: Craig Rodrigues Date: Fri, 2 Sep 2005 03:52:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/compat/linux linux_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 03:52:29 -0000 rodrigc 2005-09-02 03:52:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/compat/linux linux_ioctl.c Log: MFC 1.29, 1.30: Rewrite linux_ifconf() to be more like ifconf() in net/if.c so that we do not call uiomove() while IFNET_RLOCK() is held. This eliminates the witness warning: Calling uiomove() with the following non-sleepable locks held: exclusive sleep mutex ifnet r = 0 (0xc096dd60) locked @ /usr/src/sys/modules/linux/../../compat/linux/linux_ioctl.c:2170 Approved by: re (scottl) Revision Changes Path 1.127.2.2 +39 -25 src/sys/compat/linux/linux_ioctl.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 03:53:11 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F30C16A41F; Fri, 2 Sep 2005 03:53:11 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E86743D46; Fri, 2 Sep 2005 03:53:11 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j823rAoQ087303; Fri, 2 Sep 2005 03:53:11 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j823rAIf087302; Fri, 2 Sep 2005 03:53:10 GMT (envelope-from gshapiro) Message-Id: <200509020353.j823rAIf087302@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Fri, 2 Sep 2005 03:53:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 03:53:11 -0000 gshapiro 2005-09-02 03:53:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d sendmail Log: MFC: Be sure to execute sendmail_precmd() to check sendmail.cf conflicts and rebuild the aliases file if necessary. Revision Changes Path 1.15 +1 -0 src/etc/rc.d/sendmail Approved by: re (scottl) Revision Changes Path 1.14.2.1 +1 -0 src/etc/rc.d/sendmail From owner-cvs-src@FreeBSD.ORG Fri Sep 2 05:52:29 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EF9E16A41F; Fri, 2 Sep 2005 05:52:29 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DE1243D45; Fri, 2 Sep 2005 05:52:29 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j825qTWr002720; Fri, 2 Sep 2005 05:52:29 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j825qTxK002719; Fri, 2 Sep 2005 05:52:29 GMT (envelope-from jcamou) Message-Id: <200509020552.j825qTxK002719@repoman.freebsd.org> From: "Jesus R. Camou" Date: Fri, 2 Sep 2005 05:52:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 05:52:29 -0000 jcamou 2005-09-02 05:52:28 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_5) bin/sh sh.1 Log: MFC rev. 1.05: o The ways to escape an alias. o Fix in the alias syntax lines. o Refero to the Aliases subsection. Approved by: trhodes (mentor) Revision Changes Path 1.92.2.4 +17 -4 src/bin/sh/sh.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 2 06:30:42 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26F7816A41F; Fri, 2 Sep 2005 06:30:42 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D904643D46; Fri, 2 Sep 2005 06:30:41 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j826Uf98004129; Fri, 2 Sep 2005 06:30:41 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j826Uf6B004128; Fri, 2 Sep 2005 06:30:41 GMT (envelope-from jcamou) Message-Id: <200509020630.j826Uf6B004128@repoman.freebsd.org> From: "Jesus R. Camou" Date: Fri, 2 Sep 2005 06:30:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/amd/amd amd.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 06:30:42 -0000 jcamou 2005-09-02 06:30:41 UTC FreeBSD src repository (doc committer) Modified files: contrib/amd/amd amd.8 Log: Update URL and email address. Approved by: trhodes (mentor) 20 day timeout: mbr (did not reply, mentor approved commit) Revision Changes Path 1.21 +2 -2 src/contrib/amd/amd/amd.8 From owner-cvs-src@FreeBSD.ORG Fri Sep 2 09:18:08 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0ECA16A41F; Fri, 2 Sep 2005 09:18:08 +0000 (GMT) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [194.58.105.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 276EC43D4C; Fri, 2 Sep 2005 09:18:08 +0000 (GMT) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.44 (FreeBSD)) id 1EB7gP-0006fK-S8; Fri, 02 Sep 2005 13:18:02 +0400 Date: Fri, 2 Sep 2005 13:18:01 +0400 From: Slawa Olhovchenkov To: John Baldwin Message-ID: <20050902091801.GA48098@zxy.spb.ru> References: <200508261342.j7QDg4gc052237@repoman.freebsd.org> <431459EB.8070405@cronyx.ru> <200508301412.09936.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200508301412.09936.jhb@FreeBSD.org> User-Agent: Mutt/1.5.7i X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Roman Kurakin Subject: Re: cvs commit: src/sys/conf files.i386 src/sys/modules Makefile src/sys/modules/el Makefile src/sys/i386/conf NOTES src/sys/i386/isa if_el.c if_elreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 09:18:08 -0000 On Tue, Aug 30, 2005 at 02:12:08PM -0400, John Baldwin wrote: > On Tuesday 30 August 2005 09:06 am, Roman Kurakin wrote: > > John Baldwin wrote: > > >jhb 2005-08-26 13:42:04 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/conf files.i386 > > > sys/modules Makefile > > > sys/i386/conf NOTES > > > Removed files: > > > sys/modules/el Makefile > > > sys/i386/isa if_el.c if_elreg.h > > > Log: > > > Remove the el(4) driver for 3Com 3c501 ISA NICs from HEAD as threatened > > > earlier as no one has stepped up to test recent changes to the driver. > > > Oddly, the module was actually turned on on ia64 though I'm fairly > > > certain that no ia64 machine has ever had or will ever have an ISA slot. > > > > I can find a link to an external bridge for ISA if you want. > > I don't know if it would work under FreeBSD, but you > > may try to run ISA card on ia64 that way. > > You may even try to made this device by yourself if the > > soldering iron is your friend. > > > > rik > > The ia64 comment was more that the module probably shouldn't have been enabled > on ia64 in the first place. Why would you want to hack up a way to stick an > 8-bit ISA 10Mbit ethernet card in a machine that probably has at least one > (probably two or more) 10/100 (if not gige) builtin NICs. 10base5/10base2 connectivity? From owner-cvs-src@FreeBSD.ORG Fri Sep 2 10:23:27 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D0F416A41F; Fri, 2 Sep 2005 10:23:27 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AFB543D53; Fri, 2 Sep 2005 10:23:27 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82ANRii019371; Fri, 2 Sep 2005 10:23:27 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82ANRBF019370; Fri, 2 Sep 2005 10:23:27 GMT (envelope-from stefanf) Message-Id: <200509021023.j82ANRBF019370@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 10:23:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_clntout.c rpc_cout.c rpc_hout.c rpc_main.c rpc_sample.c rpc_svcout.c rpc_tblout.c rpc_util.h rpcgen.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 10:23:27 -0000 stefanf 2005-09-02 10:23:26 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_clntout.c rpc_cout.c rpc_hout.c rpc_main.c rpc_sample.c rpc_svcout.c rpc_tblout.c rpc_util.h rpcgen.1 Log: Don't generate K&R C code. The -C flag is kept for backwards compatibility. Also remove the SIG_PF macro, there is no need to cast closedown. Revision Changes Path 1.11 +23 -74 src/usr.bin/rpcgen/rpc_clntout.c 1.14 +6 -15 src/usr.bin/rpcgen/rpc_cout.c 1.13 +24 -99 src/usr.bin/rpcgen/rpc_hout.c 1.29 +16 -51 src/usr.bin/rpcgen/rpc_main.c 1.8 +4 -20 src/usr.bin/rpcgen/rpc_sample.c 1.18 +47 -134 src/usr.bin/rpcgen/rpc_svcout.c 1.11 +1 -1 src/usr.bin/rpcgen/rpc_tblout.c 1.10 +1 -2 src/usr.bin/rpcgen/rpc_util.h 1.23 +3 -6 src/usr.bin/rpcgen/rpcgen.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 2 10:32:06 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0233016A41F; Fri, 2 Sep 2005 10:32:06 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4E6A43D49; Fri, 2 Sep 2005 10:32:05 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82AW5rF019903; Fri, 2 Sep 2005 10:32:05 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82AW5xo019902; Fri, 2 Sep 2005 10:32:05 GMT (envelope-from stefanf) Message-Id: <200509021032.j82AW5xo019902@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 10:32:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_cout.c rpc_hout.c rpc_svcout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 10:32:06 -0000 stefanf 2005-09-02 10:32:05 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_cout.c rpc_hout.c rpc_svcout.c Log: Stop generating the `register' keyword. Revision Changes Path 1.15 +2 -2 src/usr.bin/rpcgen/rpc_cout.c 1.14 +1 -1 src/usr.bin/rpcgen/rpc_hout.c 1.19 +1 -1 src/usr.bin/rpcgen/rpc_svcout.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 10:58:59 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB38816A41F; Fri, 2 Sep 2005 10:58:59 +0000 (GMT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id D39EF43D46; Fri, 2 Sep 2005 10:58:56 +0000 (GMT) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.gsoft.com.au (ppp215-145.lns1.adl2.internode.on.net [203.122.215.145]) (authenticated bits=0) by cain.gsoft.com.au (8.13.4/8.13.4) with ESMTP id j82AwSmn062348 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 2 Sep 2005 20:28:34 +0930 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: cvs-all@freebsd.org Date: Fri, 2 Sep 2005 20:28:21 +0930 User-Agent: KMail/1.8.1 References: <200508261342.j7QDg4gc052237@repoman.freebsd.org> <200508301412.09936.jhb@FreeBSD.org> <20050902091801.GA48098@zxy.spb.ru> In-Reply-To: <20050902091801.GA48098@zxy.spb.ru> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2406408.OO72YnoCgq"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200509022028.22586.doconnor@gsoft.com.au> X-Spam-Score: 0.05 () FORGED_RCVD_HELO X-Scanned-By: MIMEDefang 2.51 on 203.31.81.10 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Roman Kurakin , John Baldwin , Slawa Olhovchenkov Subject: Re: cvs commit: src/sys/conf files.i386 src/sys/modules Makefile src/sys/modules/el Makefile src/sys/i386/conf NOTES src/sys/i386/isa if_el.c if_elreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 10:58:59 -0000 --nextPart2406408.OO72YnoCgq Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 02 September 2005 18:48, Slawa Olhovchenkov wrote: > > The ia64 comment was more that the module probably shouldn't have been > > enabled on ia64 in the first place. Why would you want to hack up a way > > to stick an 8-bit ISA 10Mbit ethernet card in a machine that probably h= as > > at least one (probably two or more) 10/100 (if not gige) builtin NICs. > > 10base5/10base2 connectivity? I have some PCI network cards with AIU connectors if you want to buy them :) =2D-=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --nextPart2406408.OO72YnoCgq Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBDGDBO5ZPcIHs/zowRArzDAJ9LkxgQAl+P3G6iY88AJJtVXi7UTwCfcW9z lpP40I2zHJebRxqDBe3PKnE= =hNqg -----END PGP SIGNATURE----- --nextPart2406408.OO72YnoCgq-- From owner-cvs-src@FreeBSD.ORG Fri Sep 2 11:09:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8461616A41F; Fri, 2 Sep 2005 11:09:19 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4469C43D45; Fri, 2 Sep 2005 11:09:19 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82B9Jwg021309; Fri, 2 Sep 2005 11:09:19 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82B9JFI021308; Fri, 2 Sep 2005 11:09:19 GMT (envelope-from jcamou) Message-Id: <200509021109.j82B9JFI021308@repoman.freebsd.org> From: "Jesus R. Camou" Date: Fri, 2 Sep 2005 11:09:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/amd/amd amd.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 11:09:19 -0000 jcamou 2005-09-02 11:09:18 UTC FreeBSD src repository (doc committer) Modified files: contrib/amd/amd amd.8 Log: Forced commit to set an MFC reminder forgotten in previous commit. MFC after: 10 days Revision Changes Path 1.22 +0 -0 src/contrib/amd/amd/amd.8 From owner-cvs-src@FreeBSD.ORG Fri Sep 2 13:27:38 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FFF316A41F; Fri, 2 Sep 2005 13:27:38 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E68D43D5D; Fri, 2 Sep 2005 13:27:37 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id j82DQlCX038212; Fri, 2 Sep 2005 07:26:47 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 02 Sep 2005 07:27:15 -0600 (MDT) Message-Id: <20050902.072715.44519258.imp@bsdimp.com> To: slw@zxy.spb.ru From: "M. Warner Losh" In-Reply-To: <20050902091801.GA48098@zxy.spb.ru> References: <431459EB.8070405@cronyx.ru> <200508301412.09936.jhb@FreeBSD.org> <20050902091801.GA48098@zxy.spb.ru> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 02 Sep 2005 07:26:50 -0600 (MDT) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, jhb@freebsd.org, rik@cronyx.ru Subject: Re: cvs commit: src/sys/conf files.i386 src/sys/modules Makefile src/sys/modules/el Makefile src/sys/i386/conf NOTES src/sys/i386/isa if_el.c if_elreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 13:27:38 -0000 In message: <20050902091801.GA48098@zxy.spb.ru> Slawa Olhovchenkov writes: : > The ia64 comment was more that the module probably shouldn't have been enabled : > on ia64 in the first place. Why would you want to hack up a way to stick an : > 8-bit ISA 10Mbit ethernet card in a machine that probably has at least one : > (probably two or more) 10/100 (if not gige) builtin NICs. : : 10base5/10base2 connectivity? There are many 10Base2/10BaseT PCI cards or 16-bit ISA cards to choose from that would be better choices than the 3C501. The PCI cards would even be easier to hack :-) Warner From owner-cvs-src@FreeBSD.ORG Fri Sep 2 13:37:55 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E26516A41F; Fri, 2 Sep 2005 13:37:55 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 122BE43D45; Fri, 2 Sep 2005 13:37:55 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82Dbsuk035020; Fri, 2 Sep 2005 13:37:54 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82Dbs7G035019; Fri, 2 Sep 2005 13:37:54 GMT (envelope-from ssouhlal) Message-Id: <200509021337.j82Dbs7G035019@repoman.freebsd.org> From: Suleiman Souhlal Date: Fri, 2 Sep 2005 13:37:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 13:37:55 -0000 ssouhlal 2005-09-02 13:37:54 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Don't unbusy the devfs mount in vfs_mountroot_try() as it gets accessed and unbusied in devfs_fixup(), which assumes that the devfs mount is still locked. Granced at by: phk MFC after: 3 days Revision Changes Path 1.197 +0 -1 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 13:52:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5EC716A421; Fri, 2 Sep 2005 13:52:56 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2075843D53; Fri, 2 Sep 2005 13:52:56 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82Dqu3t035682; Fri, 2 Sep 2005 13:52:56 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82Dqt5n035681; Fri, 2 Sep 2005 13:52:55 GMT (envelope-from ssouhlal) Message-Id: <200509021352.j82Dqt5n035681@repoman.freebsd.org> From: Suleiman Souhlal Date: Fri, 2 Sep 2005 13:52:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 13:52:56 -0000 ssouhlal 2005-09-02 13:52:55 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_vfsops.c Log: ffs_mountfs() needs devvp to be locked, so lock it. Glanced at by: phk Tested by: pjd MFC after: 3 days Revision Changes Path 1.293 +3 -5 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 14:06:27 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5369C16A41F; Fri, 2 Sep 2005 14:06:27 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1393A43D46; Fri, 2 Sep 2005 14:06:27 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82E6Qev036236; Fri, 2 Sep 2005 14:06:26 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82E6Qid036235; Fri, 2 Sep 2005 14:06:26 GMT (envelope-from glebius) Message-Id: <200509021406.j82E6Qid036235@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 2 Sep 2005 14:06:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net if_vlan.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 14:06:27 -0000 glebius 2005-09-02 14:06:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_vlan.c Log: Merge 1.82: Fix fallout from revision 1.77, mark outgoing packets with M_VLANTAG flag. PR: kern/80646 Reviewed by: yar Approved by: re (scottl) Revision Changes Path 1.79.2.3 +1 -0 src/sys/net/if_vlan.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 14:08:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DCC916A434; Fri, 2 Sep 2005 14:08:19 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48EF043D45; Fri, 2 Sep 2005 14:08:19 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82E8JNq036459; Fri, 2 Sep 2005 14:08:19 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82E8Jh9036458; Fri, 2 Sep 2005 14:08:19 GMT (envelope-from glebius) Message-Id: <200509021408.j82E8Jh9036458@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 2 Sep 2005 14:08:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 14:08:19 -0000 glebius 2005-09-02 14:08:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/boot/forth loader.conf Log: MFC: net.graph.ngqfreemax has been deprecated. Approved by: re (scottl) Revision Changes Path 1.95.2.2 +0 -1 src/sys/boot/forth/loader.conf From owner-cvs-src@FreeBSD.ORG Fri Sep 2 14:08:52 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FC5216A41F; Fri, 2 Sep 2005 14:08:52 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4DC543D46; Fri, 2 Sep 2005 14:08:51 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82E8psF036590; Fri, 2 Sep 2005 14:08:51 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82E8peB036589; Fri, 2 Sep 2005 14:08:51 GMT (envelope-from glebius) Message-Id: <200509021408.j82E8peB036589@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 2 Sep 2005 14:08:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 14:08:52 -0000 glebius 2005-09-02 14:08:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/boot/forth loader.conf Log: MFC: net.graph.ngqfreemax has been deprecated. Revision Changes Path 1.85.2.5 +0 -1 src/sys/boot/forth/loader.conf From owner-cvs-src@FreeBSD.ORG Fri Sep 2 14:13:17 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8DB516A41F; Fri, 2 Sep 2005 14:13:17 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 818FE43D46; Fri, 2 Sep 2005 14:13:17 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82EDHvw037247; Fri, 2 Sep 2005 14:13:17 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82EDHk4037244; Fri, 2 Sep 2005 14:13:17 GMT (envelope-from glebius) Message-Id: <200509021413.j82EDHk4037244@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 2 Sep 2005 14:13:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/periodic/security 550.ipfwlimit X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 14:13:17 -0000 glebius 2005-09-02 14:13:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/periodic/security 550.ipfwlimit Log: MFC 1.8, 1.9: - Correctly parse output, when logging amount is limited in the rule itself, not in verbose_limit sysctl. [1] - Do check rules, even if verbose_limit is set 0. Rules may have their own log limits. PR: conf/77929 Submitted by: Andriy Gapon [1] Reviewed by: matteo Approved by: re (scottl) Revision Changes Path 1.7.2.1 +15 -7 src/etc/periodic/security/550.ipfwlimit From owner-cvs-src@FreeBSD.ORG Fri Sep 2 14:20:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAE6516A41F; Fri, 2 Sep 2005 14:20:22 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 686FE43D45; Fri, 2 Sep 2005 14:20:22 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82EKMcr037844; Fri, 2 Sep 2005 14:20:22 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82EKMC1037843; Fri, 2 Sep 2005 14:20:22 GMT (envelope-from glebius) Message-Id: <200509021420.j82EKMC1037843@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 2 Sep 2005 14:20:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/etc/periodic/security 550.ipfwlimit X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 14:20:22 -0000 glebius 2005-09-02 14:20:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) etc/periodic/security 550.ipfwlimit Log: MFC 1.6 - 1.9: - Use 'ipfw list'. - Correctly parse output, when logging amount is limited in the rule itself, not in verbose_limit sysctl. [1] PR: conf/77929 Submitted by: Andriy Gapon [1] eviewed by: matteo Revision Changes Path 1.6.4.1 +15 -7 src/etc/periodic/security/550.ipfwlimit From owner-cvs-src@FreeBSD.ORG Fri Sep 2 14:58:27 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1AC716A41F; Fri, 2 Sep 2005 14:58:27 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A7A943D49; Fri, 2 Sep 2005 14:58:27 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82EwR9n049110; Fri, 2 Sep 2005 14:58:27 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82EwRql049109; Fri, 2 Sep 2005 14:58:27 GMT (envelope-from ssouhlal) Message-Id: <200509021458.j82EwRql049109@repoman.freebsd.org> From: Suleiman Souhlal Date: Fri, 2 Sep 2005 14:58:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/ruptime ruptime.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 14:58:27 -0000 ssouhlal 2005-09-02 14:58:27 UTC FreeBSD src repository Modified files: usr.bin/ruptime ruptime.c Log: - Do not allocate memory to entries in /var/rwho which have been down for more than 4 days - waste of memory. Obtained from: DragonFlyBSD (liamfoy) MFC after: 3 days Revision Changes Path 1.18 +3 -3 src/usr.bin/ruptime/ruptime.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 15:27:24 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 597CC16A41F; Fri, 2 Sep 2005 15:27:24 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2501743D4C; Fri, 2 Sep 2005 15:27:24 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82FROkp050664; Fri, 2 Sep 2005 15:27:24 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82FROYM050663; Fri, 2 Sep 2005 15:27:24 GMT (envelope-from ssouhlal) Message-Id: <200509021527.j82FROYM050663@repoman.freebsd.org> From: Suleiman Souhlal Date: Fri, 2 Sep 2005 15:27:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/hpfs hpfs_vfsops.c src/sys/fs/msdosfs msdosfs_vfsops.c src/sys/fs/ntfs ntfs_vfsops.c src/sys/fs/udf udf_vfsops.c src/sys/gnu/fs/ext2fs ext2_vfsops.c src/sys/gnu/fs/reiserfs reiserfs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 15:27:24 -0000 ssouhlal 2005-09-02 15:27:24 UTC FreeBSD src repository Modified files: sys/fs/hpfs hpfs_vfsops.c sys/fs/msdosfs msdosfs_vfsops.c sys/fs/ntfs ntfs_vfsops.c sys/fs/udf udf_vfsops.c sys/gnu/fs/ext2fs ext2_vfsops.c sys/gnu/fs/reiserfs reiserfs_vfsops.c Log: *_mountfs() (if the filesystem mounts from a device) needs devvp to be locked, so lock it. Glanced at by: phk MFC after: 3 days Revision Changes Path 1.54 +5 -9 src/sys/fs/hpfs/hpfs_vfsops.c 1.145 +3 -5 src/sys/fs/msdosfs/msdosfs_vfsops.c 1.79 +11 -12 src/sys/fs/ntfs/ntfs_vfsops.c 1.34 +2 -4 src/sys/fs/udf/udf_vfsops.c 1.152 +3 -5 src/sys/gnu/fs/ext2fs/ext2_vfsops.c 1.2 +2 -4 src/sys/gnu/fs/reiserfs/reiserfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 15:31:03 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF5B916A41F; Fri, 2 Sep 2005 15:31:03 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91FF943D49; Fri, 2 Sep 2005 15:31:03 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82FV3Ut050946; Fri, 2 Sep 2005 15:31:03 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82FV3WP050945; Fri, 2 Sep 2005 15:31:03 GMT (envelope-from rodrigc) Message-Id: <200509021531.j82FV3WP050945@repoman.freebsd.org> From: Craig Rodrigues Date: Fri, 2 Sep 2005 15:31:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/syscons scmouse.c scvesactl.c scvidctl.c syscons.c syscons.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 15:31:03 -0000 rodrigc 2005-09-02 15:31:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/syscons scmouse.c scvesactl.c scvidctl.c syscons.c syscons.h Log: MFC: Prevent division by zero errors in sc_mouse_move() by explicitly setting sc->font_width, in the same places where sc->font_size is set, instead of relying on the default initialized value of 0 for sc->font_width. PR: kern/84836 Reported by: Andrey V. Elsukov Approved by: re (scottl) Revision Changes Path 1.37.2.1 +1 -1 src/sys/dev/syscons/scmouse.c 1.22.2.1 +2 -2 src/sys/dev/syscons/scvesactl.c 1.34.2.1 +8 -6 src/sys/dev/syscons/scvidctl.c 1.436.2.2 +2 -2 src/sys/dev/syscons/syscons.c 1.83.2.1 +4 -3 src/sys/dev/syscons/syscons.h From owner-cvs-src@FreeBSD.ORG Fri Sep 2 15:49:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8290116A41F; Fri, 2 Sep 2005 15:49:56 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 439AD43D46; Fri, 2 Sep 2005 15:49:56 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82FnuU7051620; Fri, 2 Sep 2005 15:49:56 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82Fnut9051619; Fri, 2 Sep 2005 15:49:56 GMT (envelope-from ssouhlal) Message-Id: <200509021549.j82Fnut9051619@repoman.freebsd.org> From: Suleiman Souhlal Date: Fri, 2 Sep 2005 15:49:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/nullfs null_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 15:49:56 -0000 ssouhlal 2005-09-02 15:49:56 UTC FreeBSD src repository Modified files: sys/fs/nullfs null_vnops.c Log: Use vput() instead of vrele() in null_reclaim() since the lower vnode is locked. MFC after: 3 days Revision Changes Path 1.88 +5 -4 src/sys/fs/nullfs/null_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 15:56:01 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A636216A41F; Fri, 2 Sep 2005 15:56:01 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 684D243D45; Fri, 2 Sep 2005 15:56:01 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82Fu1ae051982; Fri, 2 Sep 2005 15:56:01 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82Fu1D0051981; Fri, 2 Sep 2005 15:56:01 GMT (envelope-from ssouhlal) Message-Id: <200509021556.j82Fu1D0051981@repoman.freebsd.org> From: Suleiman Souhlal Date: Fri, 2 Sep 2005 15:56:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_lock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 15:56:01 -0000 ssouhlal 2005-09-02 15:56:01 UTC FreeBSD src repository Modified files: sys/kern kern_lock.c Log: Print out a warning and a backtrace if we try to unlock a lockmgr that we do not hold. Glanced at by: phk MFC after: 3 days Revision Changes Path 1.93 +7 -0 src/sys/kern/kern_lock.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 15:57:48 2005 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7D9516A41F; Fri, 2 Sep 2005 15:57:48 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (core.310.ru [83.97.105.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 107DE43D45; Fri, 2 Sep 2005 15:57:47 +0000 (GMT) (envelope-from stas@core.310.ru) Received: from core.310.ru (localhost [127.0.0.1]) by core.310.ru (8.13.3/8.12.11) with ESMTP id j82FvZ41001048; Fri, 2 Sep 2005 19:57:35 +0400 (MSD) (envelope-from stas@core.310.ru) Received: (from stas@localhost) by core.310.ru (8.13.3/8.12.11/Submit) id j82FvZNs001047; Fri, 2 Sep 2005 19:57:35 +0400 (MSD) (envelope-from stas) Date: Fri, 2 Sep 2005 19:57:35 +0400 From: Stanislav Sedov To: Pawel Jakub Dawidek , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Message-ID: <20050902155735.GF617@core.310.ru> Mail-Followup-To: Pawel Jakub Dawidek , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org References: <200508201705.j7KH5lj8059360@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200508201705.j7KH5lj8059360@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: cvs commit: src/sys/geom/label g_label.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 15:57:48 -0000 On Sat, Aug 20, 2005 at 05:05:47PM +0000, Pawel Jakub Dawidek wrote: > pjd 2005-08-20 17:05:47 UTC > > FreeBSD src repository > > Modified files: > sys/geom/label g_label.c > Log: > Back-out the change from revision 1.14 and allow for '/' in labels again. > > Convinced by: green, Gavin Atkinson, dougb, gordon > MFC after: 1 day > > Revision Changes Path > 1.17 +0 -8 src/sys/geom/label/g_label.c > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" > > We need to check for '(\.\.|/)+' in labels, as some labels would not work, e.g. '/', '../' and so on. If you are interested I have a patch against last revision. From owner-cvs-src@FreeBSD.ORG Fri Sep 2 16:32:46 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ADB616A41F; Fri, 2 Sep 2005 16:32:46 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C629B43D58; Fri, 2 Sep 2005 16:32:43 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82GWhZD054885; Fri, 2 Sep 2005 16:32:43 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82GWh98054884; Fri, 2 Sep 2005 16:32:43 GMT (envelope-from njl) Message-Id: <200509021632.j82GWh98054884@repoman.freebsd.org> From: Nate Lawson Date: Fri, 2 Sep 2005 16:32:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_cpu.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 16:32:46 -0000 njl 2005-09-02 16:32:43 UTC FreeBSD src repository Modified files: sys/kern kern_cpu.c Log: Break out the checks for duplicates and absolute settings being too high instead of trying to do them all at once. This should fix the level sorting problems from the previous revision. Testing help: ume Revision Changes Path 1.21 +17 -8 src/sys/kern/kern_cpu.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 17:05:08 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1421616A41F; Fri, 2 Sep 2005 17:05:08 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2AF243D46; Fri, 2 Sep 2005 17:05:07 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82H57wj063232; Fri, 2 Sep 2005 17:05:07 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82H57wM063231; Fri, 2 Sep 2005 17:05:07 GMT (envelope-from brooks) Message-Id: <200509021705.j82H57wM063231@repoman.freebsd.org> From: Brooks Davis Date: Fri, 2 Sep 2005 17:05:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/rc.d netif X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 17:05:08 -0000 brooks 2005-09-02 17:05:07 UTC FreeBSD src repository Modified files: etc/rc.d netif Log: Block SIGQUIT (Ctrl-C) while running in startup mode. This should allow dhclient's to be killed without stopping all boot progress. Minor cleanup of the interface list generation code. Revision Changes Path 1.15 +4 -4 src/etc/rc.d/netif From owner-cvs-src@FreeBSD.ORG Fri Sep 2 17:11:13 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC80516A41F; Fri, 2 Sep 2005 17:11:13 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63BDD43D46; Fri, 2 Sep 2005 17:11:13 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82HBDOe063564; Fri, 2 Sep 2005 17:11:13 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82HBDXt063563; Fri, 2 Sep 2005 17:11:13 GMT (envelope-from brooks) Message-Id: <200509021711.j82HBDXt063563@repoman.freebsd.org> From: Brooks Davis Date: Fri, 2 Sep 2005 17:11:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc network.subr X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 17:11:13 -0000 brooks 2005-09-02 17:11:13 UTC FreeBSD src repository Modified files: etc network.subr Log: - Alwasy explicitly bring the interface up before configuring it. - If an interface's ifconfig_ is set, but empty, don't set it to ifconfig_DEFAULT. This way interfaces can be disabled even in the presence of ifconfig_DEFAULT. - When listing interfaces and network_interfaces=auto, place lo0 first if it's around. Revision Changes Path 1.167 +17 -7 src/etc/network.subr From owner-cvs-src@FreeBSD.ORG Fri Sep 2 17:35:36 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8581616A41F; Fri, 2 Sep 2005 17:35:36 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21D5843D4C; Fri, 2 Sep 2005 17:35:36 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82HZZBe064528; Fri, 2 Sep 2005 17:35:36 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82HZZhE064527; Fri, 2 Sep 2005 17:35:35 GMT (envelope-from brooks) Message-Id: <200509021735.j82HZZhE064527@repoman.freebsd.org> From: Brooks Davis Date: Fri, 2 Sep 2005 17:35:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/dhclient dhclient.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 17:35:36 -0000 brooks 2005-09-02 17:35:35 UTC FreeBSD src repository Modified files: sbin/dhclient dhclient.c Log: When we supersed the subnet-mask, write the forced value to the lease file. This is what the ISC client does. Submitted by: Rostislav Krasny Revision Changes Path 1.11 +14 -10 src/sbin/dhclient/dhclient.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 17:37:46 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C719916A41F; Fri, 2 Sep 2005 17:37:46 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B0A543D48; Fri, 2 Sep 2005 17:37:46 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82HbkfR064603; Fri, 2 Sep 2005 17:37:46 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82HbkW4064602; Fri, 2 Sep 2005 17:37:46 GMT (envelope-from rodrigc) Message-Id: <200509021737.j82HbkW4064602@repoman.freebsd.org> From: Craig Rodrigues Date: Fri, 2 Sep 2005 17:37:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/dev/syscons scmouse.c scvesactl.c scvidctl.c syscons.c syscons.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 17:37:46 -0000 rodrigc 2005-09-02 17:37:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/syscons scmouse.c scvesactl.c scvidctl.c syscons.c syscons.h Log: MFC: Prevent division by zero errors in sc_mouse_move() by explicitly setting sc->font_width, in the same places where sc->font_size is set, instead of relying on the default initialized value of 0 for sc->font_width. PR: kern/84836 Reported by: Andrey V. Elsukov Revision Changes Path 1.36.4.1 +1 -1 src/sys/dev/syscons/scmouse.c 1.20.2.1 +2 -2 src/sys/dev/syscons/scvesactl.c 1.32.2.1 +8 -6 src/sys/dev/syscons/scvidctl.c 1.427.2.2 +2 -2 src/sys/dev/syscons/syscons.c 1.80.2.1 +4 -3 src/sys/dev/syscons/syscons.h From owner-cvs-src@FreeBSD.ORG Fri Sep 2 18:20:49 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AE6916A41F; Fri, 2 Sep 2005 18:20:49 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB94043D48; Fri, 2 Sep 2005 18:20:48 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82IKmMk067420; Fri, 2 Sep 2005 18:20:48 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82IKmNB067419; Fri, 2 Sep 2005 18:20:48 GMT (envelope-from stefanf) Message-Id: <200509021820.j82IKmNB067419@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 18:20:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_svcout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 18:20:49 -0000 stefanf 2005-09-02 18:20:48 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_svcout.c Log: Fix a syntax error in the generated code when invoked with -P. Note that the generated code still doesn't compile as we lack tinfo, t_getinfo and friends. Revision Changes Path 1.20 +0 -1 src/usr.bin/rpcgen/rpc_svcout.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 18:30:17 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9155616A41F; Fri, 2 Sep 2005 18:30:17 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1DDA43D45; Fri, 2 Sep 2005 18:30:16 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82IUGLN067918; Fri, 2 Sep 2005 18:30:16 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82IUGc1067917; Fri, 2 Sep 2005 18:30:16 GMT (envelope-from brooks) Message-Id: <200509021830.j82IUGc1067917@repoman.freebsd.org> From: Brooks Davis Date: Fri, 2 Sep 2005 18:30:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/rc.d netif X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 18:30:17 -0000 brooks 2005-09-02 18:30:16 UTC FreeBSD src repository Modified files: etc/rc.d netif Log: Actually block Ctrl-C (SIGINT=2). Reported by: sam Pointy hat to: brooks Revision Changes Path 1.16 +2 -2 src/etc/rc.d/netif From owner-cvs-src@FreeBSD.ORG Fri Sep 2 18:37:34 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4B6F16A41F; Fri, 2 Sep 2005 18:37:34 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A592D43D46; Fri, 2 Sep 2005 18:37:34 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82IbYiw068193; Fri, 2 Sep 2005 18:37:34 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82IbYAj068192; Fri, 2 Sep 2005 18:37:34 GMT (envelope-from stefanf) Message-Id: <200509021837.j82IbYAj068192@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 18:37:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpcgen.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 18:37:35 -0000 stefanf 2005-09-02 18:37:34 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpcgen.1 Log: The appropriate argument is -K -1, not -k -1. Revision Changes Path 1.24 +2 -2 src/usr.bin/rpcgen/rpcgen.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 2 19:10:15 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADB3316A41F; Fri, 2 Sep 2005 19:10:15 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FA9243D45; Fri, 2 Sep 2005 19:10:15 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82JAFg6072981; Fri, 2 Sep 2005 19:10:15 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82JAFKG072980; Fri, 2 Sep 2005 19:10:15 GMT (envelope-from simon) Message-Id: <200509021910.j82JAFKG072980@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Fri, 2 Sep 2005 19:10:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/tools/tools/nanobsd nanobsd.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 19:10:15 -0000 simon 2005-09-02 19:10:15 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) tools/tools/nanobsd nanobsd.sh Log: MFC rev 1.8: Correct a comment to match the configuration parameter it describes. Approved by: re (scottl) Revision Changes Path 1.7.2.2 +1 -1 src/tools/tools/nanobsd/nanobsd.sh From owner-cvs-src@FreeBSD.ORG Fri Sep 2 19:33:50 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF24B16A41F; Fri, 2 Sep 2005 19:33:50 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58B9243D48; Fri, 2 Sep 2005 19:33:50 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82JXoAD073916; Fri, 2 Sep 2005 19:33:50 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82JXoJS073915; Fri, 2 Sep 2005 19:33:50 GMT (envelope-from stefanf) Message-Id: <200509021933.j82JXoJS073915@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 19:33:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_svcout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 19:33:51 -0000 stefanf 2005-09-02 19:33:50 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_svcout.c Log: Use socklen_t variables when passing sizes to getsockname() and getsockopt(). Revision Changes Path 1.21 +4 -4 src/usr.bin/rpcgen/rpc_svcout.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 19:34:14 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2F1D16A41F; Fri, 2 Sep 2005 19:34:13 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4DF543D45; Fri, 2 Sep 2005 19:34:13 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82JYD1m073949; Fri, 2 Sep 2005 19:34:13 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82JYDED073948; Fri, 2 Sep 2005 19:34:13 GMT (envelope-from glebius) Message-Id: <200509021934.j82JYDED073948@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 2 Sep 2005 19:34:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys ktr.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 19:34:14 -0000 glebius 2005-09-02 19:34:13 UTC FreeBSD src repository Modified files: sys/sys ktr.h Log: Change default KTR_COMPILE from KTR_GEN to KTR_ALL, to match with manual page. Reviewed by: jhb, pjd Revision Changes Path 1.33 +1 -1 src/sys/sys/ktr.h From owner-cvs-src@FreeBSD.ORG Fri Sep 2 19:52:55 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D82D816A41F; Fri, 2 Sep 2005 19:52:55 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9957B43D45; Fri, 2 Sep 2005 19:52:55 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82Jqt7K074811; Fri, 2 Sep 2005 19:52:55 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82Jqt1R074810; Fri, 2 Sep 2005 19:52:55 GMT (envelope-from glebius) Message-Id: <200509021952.j82Jqt1R074810@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 2 Sep 2005 19:52:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph ng_base.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 19:52:56 -0000 glebius 2005-09-02 19:52:55 UTC FreeBSD src repository Modified files: sys/netgraph ng_base.c Log: Use non-debug macros inside debugging functions, to prevent important information from being rewritten. Revision Changes Path 1.108 +4 -4 src/sys/netgraph/ng_base.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 20:20:02 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A998016A41F; Fri, 2 Sep 2005 20:20:02 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B1BF43D45; Fri, 2 Sep 2005 20:20:02 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82KK2O3075949; Fri, 2 Sep 2005 20:20:02 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82KK25S075948; Fri, 2 Sep 2005 20:20:02 GMT (envelope-from jhb) Message-Id: <200509022020.j82KK25S075948@repoman.freebsd.org> From: John Baldwin Date: Fri, 2 Sep 2005 20:20:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_exit.c kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 20:20:02 -0000 jhb 2005-09-02 20:20:02 UTC FreeBSD src repository Modified files: sys/kern kern_exit.c kern_kse.c Log: Add witness warnings to panic if a thread tries to exit while holding any locks. Requested by: jeff MFC after: 3 days Revision Changes Path 1.265 +3 -0 src/sys/kern/kern_exit.c 1.217 +2 -0 src/sys/kern/kern_kse.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 20:21:50 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F8F816A41F; Fri, 2 Sep 2005 20:21:50 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 207DC43D48; Fri, 2 Sep 2005 20:21:50 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82KLoQX076137; Fri, 2 Sep 2005 20:21:50 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82KLnZ4076136; Fri, 2 Sep 2005 20:21:49 GMT (envelope-from jhb) Message-Id: <200509022021.j82KLnZ4076136@repoman.freebsd.org> From: John Baldwin Date: Fri, 2 Sep 2005 20:21:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_mutex.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 20:21:50 -0000 jhb 2005-09-02 20:21:49 UTC FreeBSD src repository Modified files: sys/kern kern_mutex.c Log: - Add an assertion to panic if one tries to call mtx_trylock() on a spin mutex. - Don't panic if a spin lock is held too long inside _mtx_lock_spin() if panicstr is set (meaning that we are already in a panic). Just keep spinning forever instead. Revision Changes Path 1.157 +4 -1 src/sys/kern/kern_mutex.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 20:23:50 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 841AD16A41F; Fri, 2 Sep 2005 20:23:50 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44F4243D46; Fri, 2 Sep 2005 20:23:50 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82KNo5V076197; Fri, 2 Sep 2005 20:23:50 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82KNoeo076196; Fri, 2 Sep 2005 20:23:50 GMT (envelope-from jhb) Message-Id: <200509022023.j82KNoeo076196@repoman.freebsd.org> From: John Baldwin Date: Fri, 2 Sep 2005 20:23:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 20:23:50 -0000 jhb 2005-09-02 20:23:50 UTC FreeBSD src repository Modified files: sys/kern subr_witness.c Log: - Add some comments to some of the static lock orders. Don't explicitly link proctree and allproc to Giant since that order is already implicitly enforced. - Use a goto to handle the case where we want to enforce a reversal before calling isitmydescendant() in witness_checkorder() so that the logic is easier to follow and so that it is easier to add more forced-reversal cases in the future. MFC after: 3 days Revision Changes Path 1.199 +14 -5 src/sys/kern/subr_witness.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 20:41:03 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBA6016A41F; Fri, 2 Sep 2005 20:41:03 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63BA543D4C; Fri, 2 Sep 2005 20:41:03 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82Kf3BQ076941; Fri, 2 Sep 2005 20:41:03 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82Kf3of076940; Fri, 2 Sep 2005 20:41:03 GMT (envelope-from jhb) Message-Id: <200509022041.j82Kf3of076940@repoman.freebsd.org> From: John Baldwin Date: Fri, 2 Sep 2005 20:41:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys sx.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 20:41:04 -0000 jhb 2005-09-02 20:41:03 UTC FreeBSD src repository Modified files: sys/sys sx.h Log: Add a SYSUNINIT() to SX_SYSINIT() to call sx_destroy() to destroy the sx lock when a module is unloaded similar to the recent change made to MTX_SYSINIT(). Suggested by: pjd MFC after: 3 days Revision Changes Path 1.22 +5 -3 src/sys/sys/sx.h From owner-cvs-src@FreeBSD.ORG Fri Sep 2 20:57:44 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 098DF16A41F; Fri, 2 Sep 2005 20:57:44 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36B3943D45; Fri, 2 Sep 2005 20:57:35 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (junior.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.3/8.13.3) with ESMTP id j82LAmFS030167; Fri, 2 Sep 2005 15:10:48 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4318BCB5.5050001@samsco.org> Date: Fri, 02 Sep 2005 14:57:25 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200509022021.j82KLnZ4076136@repoman.freebsd.org> In-Reply-To: <200509022021.j82KLnZ4076136@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-2.8 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_mutex.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 20:57:44 -0000 John Baldwin wrote: > jhb 2005-09-02 20:21:49 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_mutex.c > Log: > - Add an assertion to panic if one tries to call mtx_trylock() on a spin > mutex. Explaining exactly why this is bad, either in a commit log, in a manpage, or in source code comments would be really nice. The pitfalls are not immediately obvious to the casual observer. > - Don't panic if a spin lock is held too long inside _mtx_lock_spin() if > panicstr is set (meaning that we are already in a panic). Just keep > spinning forever instead. If panicstr is set, shouldn't all CPUs have already been sent an NMI? This seems like a step backwards in reliability. Scott From owner-cvs-src@FreeBSD.ORG Fri Sep 2 21:15:58 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 204B716A41F; Fri, 2 Sep 2005 21:15:58 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D47AF43D49; Fri, 2 Sep 2005 21:15:57 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82LFvYC085365; Fri, 2 Sep 2005 21:15:57 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82LFv81085364; Fri, 2 Sep 2005 21:15:57 GMT (envelope-from stefanf) Message-Id: <200509022115.j82LFv81085364@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 21:15:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 21:15:58 -0000 stefanf 2005-09-02 21:15:57 UTC FreeBSD src repository Modified files: bin/sh sh.1 Log: Document that unalias can be used to remove several alias names. Revision Changes Path 1.106 +3 -5 src/bin/sh/sh.1 From owner-cvs-src@FreeBSD.ORG Fri Sep 2 21:51:18 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D70FC16A41F; Fri, 2 Sep 2005 21:51:18 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 968F443D48; Fri, 2 Sep 2005 21:51:18 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82LpIok087242; Fri, 2 Sep 2005 21:51:18 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82LpIbr087241; Fri, 2 Sep 2005 21:51:18 GMT (envelope-from stefanf) Message-Id: <200509022151.j82LpIbr087241@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 21:51:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_util.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 21:51:19 -0000 stefanf 2005-09-02 21:51:18 UTC FreeBSD src repository Modified files: usr.bin/rpcgen rpc_util.h Log: In version 1.8 I botched findval()'s type, fix. Revision Changes Path 1.11 +1 -1 src/usr.bin/rpcgen/rpc_util.h From owner-cvs-src@FreeBSD.ORG Fri Sep 2 22:28:28 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BC7316A41F; Fri, 2 Sep 2005 22:28:28 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B01A43D45; Fri, 2 Sep 2005 22:28:28 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82MSSWq088550; Fri, 2 Sep 2005 22:28:28 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82MSSLZ088549; Fri, 2 Sep 2005 22:28:28 GMT (envelope-from stefanf) Message-Id: <200509022228.j82MSSLZ088549@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 22:28:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh show.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 22:28:28 -0000 stefanf 2005-09-02 22:28:28 UTC FreeBSD src repository Modified files: bin/sh show.c Log: Remove extra getenv() declaration. Revision Changes Path 1.22 +0 -1 src/bin/sh/show.c From owner-cvs-src@FreeBSD.ORG Fri Sep 2 22:43:28 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B74AB16A41F; Fri, 2 Sep 2005 22:43:28 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D0443D46; Fri, 2 Sep 2005 22:43:28 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j82MhScV089161; Fri, 2 Sep 2005 22:43:28 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j82MhSaD089160; Fri, 2 Sep 2005 22:43:28 GMT (envelope-from stefanf) Message-Id: <200509022243.j82MhSaD089160@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 2 Sep 2005 22:43:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh alias.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 22:43:28 -0000 stefanf 2005-09-02 22:43:28 UTC FreeBSD src repository Modified files: bin/sh alias.c Log: Return 1 from the unalias builtin if _any_ removal fails, not just the last one. Revision Changes Path 1.20 +1 -1 src/bin/sh/alias.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 00:21:56 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C551116A41F; Sat, 3 Sep 2005 00:21:56 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BDEA43D48; Sat, 3 Sep 2005 00:21:56 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j830Lufp099394; Sat, 3 Sep 2005 00:21:56 GMT (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j830LuEJ099393; Sat, 3 Sep 2005 00:21:56 GMT (envelope-from truckman) Message-Id: <200509030021.j830LuEJ099393@repoman.freebsd.org> From: Don Lewis Date: Sat, 3 Sep 2005 00:21:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 00:21:56 -0000 truckman 2005-09-03 00:21:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_subr.c Log: MFC vfs_subr.c 1.636 and 1.642 vfs_subr.c 1.642 fixes a small race condition in vlrureclaim() and depends on 1.636. Modified files: sys/kern vfs_subr.c Log: - Allow vnlru to drop giant if the filesystem does not require it. The vnlru proc is extremely inefficient, potentially iteration over tens of thousands of vnodes without blocking. Droping Giant allows other threads to preempt us although we should revisit the algorithm to fix the runtime problems especially since this may hold up all vnode allocations. - Remove the LK_NOWAIT from the VOP_LOCK in vlrureclaim. This provides a natural blocking point to help alleviate the situation described above although it may not technically be desirable. - yield after we make a pass on all mount points to prevent us from blocking other threads which require Giant. MFC after: 2 weeks Revision Changes Path 1.636 +11 -2 src/sys/kern/vfs_subr.c Modified files: sys/kern vfs_subr.c Log: Back out the removal of LK_NOWAIT from the VOP_LOCK() call in vlrureclaim() in vfs_subr.c 1.636 because waiting for the vnode lock aggravates an existing race condition. It is also undesirable according to the commit log for 1.631. Fix the tiny race condition that remains by rechecking the vnode state after grabbing the vnode lock and grabbing the vnode interlock. Fix the problem of other threads being starved (which 1.636 attempted to fix by removing LK_NOWAIT) by calling uio_yield() periodically in vlrureclaim(). This should be more deterministic than hoping that VOP_LOCK() without LK_NOWAIT will block, which may not happen in this loop. Reviewed by: kan MFC after: 5 days Revision Changes Path 1.642 +37 -7 src/sys/kern/vfs_subr.c Approved by: re (scottl) Revision Changes Path 1.635.2.4 +46 -7 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 00:40:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D695616A41F; Sat, 3 Sep 2005 00:40:19 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 953AB43D46; Sat, 3 Sep 2005 00:40:19 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j830eJQ9099986; Sat, 3 Sep 2005 00:40:19 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j830eJ9X099985; Sat, 3 Sep 2005 00:40:19 GMT (envelope-from ssouhlal) Message-Id: <200509030040.j830eJ9X099985@repoman.freebsd.org> From: Suleiman Souhlal Date: Sat, 3 Sep 2005 00:40:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/hpfs hpfs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 00:40:20 -0000 ssouhlal 2005-09-03 00:40:19 UTC FreeBSD src repository Modified files: sys/fs/hpfs hpfs_vfsops.c Log: Unbreak the build. Pointyhat to: ssouhlal Revision Changes Path 1.55 +4 -2 src/sys/fs/hpfs/hpfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 03:34:23 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E50F116A41F; Sat, 3 Sep 2005 03:34:23 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B414143D45; Sat, 3 Sep 2005 03:34:23 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j833YNxE013528; Sat, 3 Sep 2005 03:34:23 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j833YNWo013527; Sat, 3 Sep 2005 03:34:23 GMT (envelope-from emax) Message-Id: <200509030334.j833YNWo013527@repoman.freebsd.org> From: Maksim Yevmenkin Date: Sat, 3 Sep 2005 03:34:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/include ng_l2cap.h src/sys/netgraph/bluetooth/l2cap ng_l2cap_cmds.c ng_l2cap_misc.c ng_l2cap_misc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 03:34:24 -0000 emax 2005-09-03 03:34:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph/bluetooth/include ng_l2cap.h sys/netgraph/bluetooth/l2cap ng_l2cap_cmds.c ng_l2cap_misc.c ng_l2cap_misc.h Log: MFC to RELENG 6 Fix dangling callout problem in the Bluetooth L2CAP code that leads to panic. The panic happens when outgoing L2CAP connection descriptor is deleted with the L2CAP command(s) pending in the queue. In this case when the last L2CAP command is deleted (due to cleanup) and reference counter for the L2CAP connection goes down to zero the auto disconnect timeout is incorrectly set. pjd gets credit for tracking this down and committing bandaid. Reported by: Jonatan B Approved by: re (scottl) Revision Changes Path 1.3.2.1 +1 -0 src/sys/netgraph/bluetooth/include/ng_l2cap.h 1.5.2.1 +3 -0 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c 1.10.2.1 +10 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c 1.5.2.1 +1 -0 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h From owner-cvs-src@FreeBSD.ORG Sat Sep 3 03:39:41 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 240B716A41F; Sat, 3 Sep 2005 03:39:41 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E675C43D45; Sat, 3 Sep 2005 03:39:40 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j833deex013780; Sat, 3 Sep 2005 03:39:40 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j833der8013779; Sat, 3 Sep 2005 03:39:40 GMT (envelope-from emax) Message-Id: <200509030339.j833der8013779@repoman.freebsd.org> From: Maksim Yevmenkin Date: Sat, 3 Sep 2005 03:39:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/include ng_l2cap.h src/sys/netgraph/bluetooth/l2cap ng_l2cap_cmds.c ng_l2cap_misc.c ng_l2cap_misc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 03:39:41 -0000 emax 2005-09-03 03:39:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netgraph/bluetooth/include ng_l2cap.h sys/netgraph/bluetooth/l2cap ng_l2cap_cmds.c ng_l2cap_misc.c ng_l2cap_misc.h Log: MFC to RELENG_5 Fix dangling callout problem in the Bluetooth L2CAP code that leads to panic. The panic happens when outgoing L2CAP connection descriptor is deleted with the L2CAP command(s) pending in the queue. In this case when the last L2CAP command is deleted (due to cleanup) and reference counter for the L2CAP connection goes down to zero the auto disconnect timeout is incorrectly set. pjd gets credit for tracking this down and committing bandaid. Reported by: Jonatan B Approved by: re (scottl) Revision Changes Path 1.2.6.2 +1 -0 src/sys/netgraph/bluetooth/include/ng_l2cap.h 1.4.2.2 +3 -0 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c 1.7.2.4 +10 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c 1.4.4.2 +1 -0 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h From owner-cvs-src@FreeBSD.ORG Sat Sep 3 06:42:12 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF2B716A420; Sat, 3 Sep 2005 06:42:12 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A29C343D48; Sat, 3 Sep 2005 06:42:12 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j836gC85027226; Sat, 3 Sep 2005 06:42:12 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j836gCYV027225; Sat, 3 Sep 2005 06:42:12 GMT (envelope-from des) Message-Id: <200509030642.j836gCYV027225@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 3 Sep 2005 06:42:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh FREEBSD-tricks X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 06:42:13 -0000 des 2005-09-03 06:42:11 UTC FreeBSD src repository Modified files: crypto/openssh FREEBSD-tricks Log: fine-tune. Revision Changes Path 1.6 +3 -3 src/crypto/openssh/FREEBSD-tricks From owner-cvs-src@FreeBSD.ORG Sat Sep 3 06:59:38 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C23E16A41F; Sat, 3 Sep 2005 06:59:38 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB02243D45; Sat, 3 Sep 2005 06:59:37 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j836xbMT027793; Sat, 3 Sep 2005 06:59:37 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j836xbsp027792; Sat, 3 Sep 2005 06:59:37 GMT (envelope-from des) Message-Id: <200509030659.j836xbsp027792@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 3 Sep 2005 06:59:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENSSH Cc: Subject: cvs commit: src/crypto/openssh - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 06:59:38 -0000 des 2005-09-03 06:59:37 UTC FreeBSD src repository src/crypto/openssh - Imported sources Update of /home/ncvs/src/crypto/openssh In directory repoman.freebsd.org:/tmp/cvs-serv27772 Log Message: Vendor import of OpenSSH 4.2p1. Status: Vendor Tag: OPENSSH Release Tags: OpenSSH_4_2p1 U src/crypto/openssh/nchan2.ms U src/crypto/openssh/CREDITS U src/crypto/openssh/ChangeLog U src/crypto/openssh/INSTALL C src/crypto/openssh/LICENCE U src/crypto/openssh/Makefile.in U src/crypto/openssh/OVERVIEW U src/crypto/openssh/README U src/crypto/openssh/README.dns U src/crypto/openssh/README.platform U src/crypto/openssh/README.privsep U src/crypto/openssh/README.smartcard U src/crypto/openssh/RFC.nroff U src/crypto/openssh/TODO U src/crypto/openssh/WARNING.RNG C src/crypto/openssh/acconfig.h U src/crypto/openssh/aclocal.m4 U src/crypto/openssh/acss.c U src/crypto/openssh/acss.h U src/crypto/openssh/atomicio.c U src/crypto/openssh/atomicio.h U src/crypto/openssh/audit-bsm.c U src/crypto/openssh/audit.c U src/crypto/openssh/audit.h C src/crypto/openssh/auth.c U src/crypto/openssh/auth-bsdauth.c U src/crypto/openssh/auth-chall.c C src/crypto/openssh/auth-krb5.c U src/crypto/openssh/auth-options.c U src/crypto/openssh/auth-options.h C src/crypto/openssh/auth-pam.c U src/crypto/openssh/auth-pam.h C src/crypto/openssh/auth-passwd.c C src/crypto/openssh/auth-rh-rsa.c U src/crypto/openssh/auth-rhosts.c C src/crypto/openssh/auth-rsa.c U src/crypto/openssh/auth-shadow.c U src/crypto/openssh/auth-sia.c U src/crypto/openssh/auth-sia.h C src/crypto/openssh/auth-skey.c C src/crypto/openssh/auth.h C src/crypto/openssh/auth1.c C src/crypto/openssh/auth2-chall.c U src/crypto/openssh/auth2-gss.c U src/crypto/openssh/auth2-hostbased.c U src/crypto/openssh/auth2-kbdint.c U src/crypto/openssh/auth2-none.c U src/crypto/openssh/auth2-passwd.c U src/crypto/openssh/auth2-pubkey.c C src/crypto/openssh/auth2.c C src/crypto/openssh/authfd.c U src/crypto/openssh/authfd.h C src/crypto/openssh/authfile.c U src/crypto/openssh/authfile.h C src/crypto/openssh/bufaux.c U src/crypto/openssh/bufaux.h U src/crypto/openssh/buffer.c U src/crypto/openssh/buffer.h U src/crypto/openssh/buildpkg.sh.in C src/crypto/openssh/canohost.c U src/crypto/openssh/canohost.h C src/crypto/openssh/channels.c C src/crypto/openssh/channels.h U src/crypto/openssh/cipher-3des1.c U src/crypto/openssh/cipher-acss.c U src/crypto/openssh/cipher-aes.c U src/crypto/openssh/cipher-bf1.c U src/crypto/openssh/cipher-ctr.c C src/crypto/openssh/cipher.c U src/crypto/openssh/cipher.h U src/crypto/openssh/cleanup.c U src/crypto/openssh/clientloop.c U src/crypto/openssh/clientloop.h U src/crypto/openssh/compat.c U src/crypto/openssh/compat.h U src/crypto/openssh/compress.c U src/crypto/openssh/compress.h U src/crypto/openssh/config.guess U src/crypto/openssh/config.sub C src/crypto/openssh/configure.ac U src/crypto/openssh/crc32.c U src/crypto/openssh/crc32.h U src/crypto/openssh/deattack.c U src/crypto/openssh/deattack.h U src/crypto/openssh/defines.h U src/crypto/openssh/dh.c U src/crypto/openssh/dh.h U src/crypto/openssh/dispatch.c U src/crypto/openssh/dispatch.h U src/crypto/openssh/dns.c U src/crypto/openssh/dns.h U src/crypto/openssh/entropy.c U src/crypto/openssh/entropy.h U src/crypto/openssh/envpass.sh U src/crypto/openssh/fatal.c U src/crypto/openssh/fixpaths U src/crypto/openssh/fixprogs U src/crypto/openssh/getput.h U src/crypto/openssh/groupaccess.c U src/crypto/openssh/groupaccess.h U src/crypto/openssh/gss-genr.c U src/crypto/openssh/gss-serv-krb5.c U src/crypto/openssh/gss-serv.c C src/crypto/openssh/hostfile.c U src/crypto/openssh/hostfile.h C src/crypto/openssh/includes.h U src/crypto/openssh/install-sh U src/crypto/openssh/kex.c U src/crypto/openssh/kex.h U src/crypto/openssh/kexdh.c U src/crypto/openssh/kexdhc.c U src/crypto/openssh/kexdhs.c U src/crypto/openssh/kexgex.c U src/crypto/openssh/kexgexc.c U src/crypto/openssh/kexgexs.c C src/crypto/openssh/key.c U src/crypto/openssh/key.h U src/crypto/openssh/log.c U src/crypto/openssh/log.h C src/crypto/openssh/loginrec.c U src/crypto/openssh/loginrec.h U src/crypto/openssh/logintest.c U src/crypto/openssh/mac.c U src/crypto/openssh/mac.h U src/crypto/openssh/match.c U src/crypto/openssh/match.h U src/crypto/openssh/md5crypt.c U src/crypto/openssh/md5crypt.h U src/crypto/openssh/mdoc2man.awk U src/crypto/openssh/misc.c U src/crypto/openssh/misc.h U src/crypto/openssh/mkinstalldirs U src/crypto/openssh/moduli U src/crypto/openssh/moduli.c C src/crypto/openssh/monitor.c U src/crypto/openssh/monitor.h U src/crypto/openssh/monitor_fdpass.c U src/crypto/openssh/monitor_fdpass.h U src/crypto/openssh/monitor_mm.c U src/crypto/openssh/monitor_mm.h C src/crypto/openssh/monitor_wrap.c U src/crypto/openssh/monitor_wrap.h U src/crypto/openssh/msg.c U src/crypto/openssh/msg.h C src/crypto/openssh/myproposal.h U src/crypto/openssh/nchan.c U src/crypto/openssh/nchan.ms U src/crypto/openssh/opensshd.init.in U src/crypto/openssh/packet.c C src/crypto/openssh/packet.h U src/crypto/openssh/pathnames.h U src/crypto/openssh/progressmeter.c U src/crypto/openssh/progressmeter.h C src/crypto/openssh/readconf.c C src/crypto/openssh/readconf.h U src/crypto/openssh/readpass.c U src/crypto/openssh/rijndael.c U src/crypto/openssh/rijndael.h U src/crypto/openssh/rsa.c U src/crypto/openssh/rsa.h U src/crypto/openssh/scard-opensc.c U src/crypto/openssh/scard.c U src/crypto/openssh/scard.h U src/crypto/openssh/scp.1 C src/crypto/openssh/scp.c C src/crypto/openssh/servconf.c U src/crypto/openssh/servconf.h C src/crypto/openssh/serverloop.c U src/crypto/openssh/serverloop.h C src/crypto/openssh/session.c C src/crypto/openssh/session.h U src/crypto/openssh/sftp-client.c U src/crypto/openssh/sftp-client.h U src/crypto/openssh/sftp-common.c U src/crypto/openssh/sftp-common.h U src/crypto/openssh/sftp-glob.c U src/crypto/openssh/sftp-server.8 U src/crypto/openssh/sftp-server.c U src/crypto/openssh/sftp.1 U src/crypto/openssh/sftp.c U src/crypto/openssh/sftp.h U src/crypto/openssh/ssh-add.1 C src/crypto/openssh/ssh-add.c U src/crypto/openssh/ssh-agent.1 U src/crypto/openssh/ssh-agent.c U src/crypto/openssh/ssh-dss.c U src/crypto/openssh/ssh-gss.h U src/crypto/openssh/ssh-keygen.1 U src/crypto/openssh/ssh-keygen.c U src/crypto/openssh/ssh-keyscan.1 C src/crypto/openssh/ssh-keyscan.c U src/crypto/openssh/ssh-keysign.8 U src/crypto/openssh/ssh-keysign.c U src/crypto/openssh/ssh-rand-helper.8 U src/crypto/openssh/ssh-rand-helper.c U src/crypto/openssh/ssh-rsa.c C src/crypto/openssh/ssh.1 C src/crypto/openssh/ssh.c U src/crypto/openssh/ssh.h U src/crypto/openssh/ssh1.h U src/crypto/openssh/ssh2.h U src/crypto/openssh/ssh_config C src/crypto/openssh/ssh_config.5 U src/crypto/openssh/ssh_prng_cmds.in C src/crypto/openssh/sshconnect.c U src/crypto/openssh/sshconnect.h C src/crypto/openssh/sshconnect1.c C src/crypto/openssh/sshconnect2.c C src/crypto/openssh/sshd.8 C src/crypto/openssh/sshd.c C src/crypto/openssh/sshd_config C src/crypto/openssh/sshd_config.5 U src/crypto/openssh/sshlogin.c U src/crypto/openssh/sshlogin.h C src/crypto/openssh/sshpty.c U src/crypto/openssh/sshpty.h U src/crypto/openssh/sshtty.c U src/crypto/openssh/survey.sh.in U src/crypto/openssh/ttymodes.c U src/crypto/openssh/ttymodes.h U src/crypto/openssh/uidswap.c U src/crypto/openssh/uidswap.h U src/crypto/openssh/uuencode.c U src/crypto/openssh/uuencode.h C src/crypto/openssh/version.h U src/crypto/openssh/xmalloc.c U src/crypto/openssh/xmalloc.h U src/crypto/openssh/regress/Makefile U src/crypto/openssh/regress/README.regress U src/crypto/openssh/regress/agent-getpeereid.sh U src/crypto/openssh/regress/agent-ptrace.sh U src/crypto/openssh/regress/agent-timeout.sh U src/crypto/openssh/regress/agent.sh U src/crypto/openssh/regress/banner.sh U src/crypto/openssh/regress/broken-pipe.sh U src/crypto/openssh/regress/brokenkeys.sh U src/crypto/openssh/regress/bsd.regress.mk U src/crypto/openssh/regress/connect-privsep.sh U src/crypto/openssh/regress/connect.sh U src/crypto/openssh/regress/dsa_ssh2.prv U src/crypto/openssh/regress/dsa_ssh2.pub U src/crypto/openssh/regress/dynamic-forward.sh U src/crypto/openssh/regress/envpass.sh U src/crypto/openssh/regress/exit-status.sh U src/crypto/openssh/regress/forwarding.sh U src/crypto/openssh/regress/keygen-change.sh U src/crypto/openssh/regress/keyscan.sh U src/crypto/openssh/regress/login-timeout.sh U src/crypto/openssh/regress/multiplex.sh U src/crypto/openssh/regress/proto-mismatch.sh U src/crypto/openssh/regress/proto-version.sh U src/crypto/openssh/regress/proxy-connect.sh U src/crypto/openssh/regress/reconfigure.sh U src/crypto/openssh/regress/reexec.sh U src/crypto/openssh/regress/rekey.sh U src/crypto/openssh/regress/rsa_openssh.prv U src/crypto/openssh/regress/rsa_openssh.pub U src/crypto/openssh/regress/rsa_ssh2.prv U src/crypto/openssh/regress/runtests.sh U src/crypto/openssh/regress/scp-ssh-wrapper.sh U src/crypto/openssh/regress/scp.sh U src/crypto/openssh/regress/sftp-badcmds.sh U src/crypto/openssh/regress/sftp-batch.sh U src/crypto/openssh/regress/sftp-cmds.sh U src/crypto/openssh/regress/sftp-glob.sh U src/crypto/openssh/regress/sftp.sh U src/crypto/openssh/regress/ssh-com-client.sh U src/crypto/openssh/regress/t4.ok U src/crypto/openssh/regress/ssh-com.sh U src/crypto/openssh/regress/ssh-com-keygen.sh U src/crypto/openssh/regress/ssh-com-sftp.sh U src/crypto/openssh/regress/sshd-log-wrapper.sh U src/crypto/openssh/regress/stderr-after-eof.sh U src/crypto/openssh/regress/stderr-data.sh U src/crypto/openssh/regress/t5.ok U src/crypto/openssh/regress/test-exec.sh U src/crypto/openssh/regress/transfer.sh U src/crypto/openssh/regress/try-ciphers.sh U src/crypto/openssh/regress/yes-head.sh U src/crypto/openssh/openbsd-compat/Makefile.in U src/crypto/openssh/openbsd-compat/base64.c U src/crypto/openssh/openbsd-compat/base64.h U src/crypto/openssh/openbsd-compat/basename.c U src/crypto/openssh/openbsd-compat/bindresvport.c U src/crypto/openssh/openbsd-compat/bsd-arc4random.c U src/crypto/openssh/openbsd-compat/bsd-closefrom.c U src/crypto/openssh/openbsd-compat/bsd-cray.c U src/crypto/openssh/openbsd-compat/bsd-cray.h U src/crypto/openssh/openbsd-compat/bsd-cygwin_util.c U src/crypto/openssh/openbsd-compat/bsd-cygwin_util.h U src/crypto/openssh/openbsd-compat/bsd-getpeereid.c U src/crypto/openssh/openbsd-compat/bsd-misc.c U src/crypto/openssh/openbsd-compat/bsd-misc.h U src/crypto/openssh/openbsd-compat/bsd-nextstep.c U src/crypto/openssh/openbsd-compat/bsd-nextstep.h U src/crypto/openssh/openbsd-compat/bsd-openpty.c U src/crypto/openssh/openbsd-compat/bsd-snprintf.c U src/crypto/openssh/openbsd-compat/bsd-waitpid.c U src/crypto/openssh/openbsd-compat/bsd-waitpid.h U src/crypto/openssh/openbsd-compat/daemon.c U src/crypto/openssh/openbsd-compat/dirname.c U src/crypto/openssh/openbsd-compat/fake-rfc2553.c C src/crypto/openssh/openbsd-compat/fake-rfc2553.h U src/crypto/openssh/openbsd-compat/getcwd.c U src/crypto/openssh/openbsd-compat/getgrouplist.c U src/crypto/openssh/openbsd-compat/getopt.c U src/crypto/openssh/openbsd-compat/getrrsetbyname.c U src/crypto/openssh/openbsd-compat/getrrsetbyname.h U src/crypto/openssh/openbsd-compat/glob.c U src/crypto/openssh/openbsd-compat/glob.h U src/crypto/openssh/openbsd-compat/inet_aton.c U src/crypto/openssh/openbsd-compat/inet_ntoa.c U src/crypto/openssh/openbsd-compat/inet_ntop.c U src/crypto/openssh/openbsd-compat/mktemp.c U src/crypto/openssh/openbsd-compat/openbsd-compat.h N src/crypto/openssh/openbsd-compat/openssl-compat.c N src/crypto/openssh/openbsd-compat/openssl-compat.h U src/crypto/openssh/openbsd-compat/port-aix.c U src/crypto/openssh/openbsd-compat/port-aix.h U src/crypto/openssh/openbsd-compat/port-irix.c U src/crypto/openssh/openbsd-compat/port-irix.h N src/crypto/openssh/openbsd-compat/port-uw.c N src/crypto/openssh/openbsd-compat/port-uw.h U src/crypto/openssh/openbsd-compat/readpassphrase.c U src/crypto/openssh/openbsd-compat/readpassphrase.h U src/crypto/openssh/openbsd-compat/realpath.c U src/crypto/openssh/openbsd-compat/rresvport.c U src/crypto/openssh/openbsd-compat/setenv.c U src/crypto/openssh/openbsd-compat/setproctitle.c U src/crypto/openssh/openbsd-compat/sigact.c U src/crypto/openssh/openbsd-compat/sigact.h U src/crypto/openssh/openbsd-compat/strlcat.c U src/crypto/openssh/openbsd-compat/strlcpy.c U src/crypto/openssh/openbsd-compat/strmode.c U src/crypto/openssh/openbsd-compat/strsep.c N src/crypto/openssh/openbsd-compat/strtoll.c N src/crypto/openssh/openbsd-compat/strtonum.c U src/crypto/openssh/openbsd-compat/strtoul.c U src/crypto/openssh/openbsd-compat/sys-queue.h U src/crypto/openssh/openbsd-compat/sys-tree.h U src/crypto/openssh/openbsd-compat/vis.c U src/crypto/openssh/openbsd-compat/vis.h U src/crypto/openssh/openbsd-compat/xcrypt.c U src/crypto/openssh/openbsd-compat/xmmap.c U src/crypto/openssh/scard/Ssh.bin U src/crypto/openssh/scard/Makefile.in U src/crypto/openssh/scard/Ssh.bin.uu U src/crypto/openssh/scard/Ssh.java 51 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENSSH:yesterday -jOPENSSH src/crypto/openssh From owner-cvs-src@FreeBSD.ORG Sat Sep 3 07:04:26 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0CA716A41F; Sat, 3 Sep 2005 07:04:26 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 604AD43D46; Sat, 3 Sep 2005 07:04:26 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j8374QBm028153; Sat, 3 Sep 2005 07:04:26 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j8374QWP028152; Sat, 3 Sep 2005 07:04:26 GMT (envelope-from des) Message-Id: <200509030704.j8374QWP028152@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 3 Sep 2005 07:04:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh LICENCE acconfig.h auth-chall.c auth-krb5.c auth-pam.c auth-pam.h auth-passwd.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.c auth.h auth1.c auth2-chall.c auth2-kbdint.c auth2.c authfd.c authfile.c bufaux.c canohost.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 07:04:26 -0000 des 2005-09-03 07:04:25 UTC FreeBSD src repository Modified files: crypto/openssh LICENCE acconfig.h auth-chall.c auth-krb5.c auth-pam.c auth-pam.h auth-passwd.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.c auth.h auth1.c auth2-chall.c auth2-kbdint.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c compat.c config.h configure.ac hostfile.c includes.h key.c log.h loginrec.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h myproposal.h packet.h readconf.c readconf.h scp.c servconf.c servconf.h serverloop.c session.c session.h ssh-add.c ssh-agent.c ssh-keyscan.c ssh.1 ssh.c ssh_config ssh_config.5 sshconnect.c sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config sshd_config.5 sshpty.c version.h crypto/openssh/openbsd-compat fake-rfc2553.h Removed files: crypto/openssh mpaux.c mpaux.h tildexpand.c Log: Resolve conflicts. Revision Changes Path 1.8 +2 -0 src/crypto/openssh/LICENCE 1.12 +2 -8 src/crypto/openssh/acconfig.h 1.10 +1 -1 src/crypto/openssh/auth-chall.c 1.20 +32 -27 src/crypto/openssh/auth-krb5.c 1.17 +31 -16 src/crypto/openssh/auth-pam.c 1.12 +1 -1 src/crypto/openssh/auth-pam.h 1.20 +4 -2 src/crypto/openssh/auth-passwd.c 1.13 +2 -2 src/crypto/openssh/auth-rh-rsa.c 1.16 +4 -2 src/crypto/openssh/auth-rsa.c 1.16 +2 -2 src/crypto/openssh/auth-skey.c 1.18 +27 -43 src/crypto/openssh/auth.c 1.16 +7 -3 src/crypto/openssh/auth.h 1.33 +196 -134 src/crypto/openssh/auth1.c 1.11 +6 -7 src/crypto/openssh/auth2-chall.c 1.4 +1 -1 src/crypto/openssh/auth2-kbdint.c 1.26 +2 -2 src/crypto/openssh/auth2.c 1.19 +6 -6 src/crypto/openssh/authfd.c 1.19 +9 -7 src/crypto/openssh/authfile.c 1.17 +3 -3 src/crypto/openssh/bufaux.c 1.18 +5 -4 src/crypto/openssh/canohost.c 1.21 +60 -46 src/crypto/openssh/channels.c 1.14 +5 -4 src/crypto/openssh/channels.h 1.21 +41 -61 src/crypto/openssh/cipher.c 1.13 +1 -1 src/crypto/openssh/compat.c 1.12 +1 -1 src/crypto/openssh/config.h 1.12 +334 -71 src/crypto/openssh/configure.ac 1.15 +2 -2 src/crypto/openssh/hostfile.c 1.20 +11 -2 src/crypto/openssh/includes.h 1.20 +2 -2 src/crypto/openssh/key.c 1.7 +1 -1 src/crypto/openssh/log.h 1.10 +21 -20 src/crypto/openssh/loginrec.c 1.18 +5 -5 src/crypto/openssh/monitor.c 1.7 +1 -1 src/crypto/openssh/monitor.h 1.11 +13 -14 src/crypto/openssh/monitor_wrap.c 1.9 +1 -1 src/crypto/openssh/monitor_wrap.h 1.10 +0 -46 src/crypto/openssh/mpaux.c (dead) 1.2 +0 -32 src/crypto/openssh/mpaux.h (dead) 1.8 +5 -4 src/crypto/openssh/myproposal.h 1.7 +12 -6 src/crypto/openssh/openbsd-compat/fake-rfc2553.h 1.15 +4 -2 src/crypto/openssh/packet.h 1.26 +28 -5 src/crypto/openssh/readconf.c 1.18 +6 -1 src/crypto/openssh/readconf.h 1.9 +23 -19 src/crypto/openssh/scp.c 1.47 +32 -6 src/crypto/openssh/servconf.c 1.18 +1 -1 src/crypto/openssh/servconf.h 1.14 +3 -3 src/crypto/openssh/serverloop.c 1.47 +122 -13 src/crypto/openssh/session.c 1.10 +3 -2 src/crypto/openssh/session.h 1.16 +2 -2 src/crypto/openssh/ssh-add.c 1.25 +1 -1 src/crypto/openssh/ssh-agent.c 1.12 +21 -13 src/crypto/openssh/ssh-keyscan.c 1.32 +57 -44 src/crypto/openssh/ssh.1 1.29 +94 -142 src/crypto/openssh/ssh.c 1.28 +2 -2 src/crypto/openssh/ssh_config 1.18 +67 -19 src/crypto/openssh/ssh_config.5 1.30 +22 -48 src/crypto/openssh/sshconnect.c 1.20 +2 -2 src/crypto/openssh/sshconnect1.c 1.16 +10 -8 src/crypto/openssh/sshconnect2.c 1.32 +17 -17 src/crypto/openssh/sshd.8 1.40 +27 -13 src/crypto/openssh/sshd.c 1.43 +5 -5 src/crypto/openssh/sshd_config 1.24 +23 -18 src/crypto/openssh/sshd_config.5 1.12 +2 -2 src/crypto/openssh/sshpty.c 1.2 +0 -66 src/crypto/openssh/tildexpand.c (dead) 1.31 +4 -4 src/crypto/openssh/version.h From owner-cvs-src@FreeBSD.ORG Sat Sep 3 07:08:52 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1DE816A41F; Sat, 3 Sep 2005 07:08:51 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B14A043D46; Sat, 3 Sep 2005 07:08:51 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j8378paN028368; Sat, 3 Sep 2005 07:08:51 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j8378pSp028367; Sat, 3 Sep 2005 07:08:51 GMT (envelope-from des) Message-Id: <200509030708.j8378pSp028367@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 3 Sep 2005 07:08:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 07:08:52 -0000 des 2005-09-03 07:08:51 UTC FreeBSD src repository Modified files: crypto/openssh config.h Log: Regenerate Revision Changes Path 1.13 +56 -12 src/crypto/openssh/config.h From owner-cvs-src@FreeBSD.ORG Sat Sep 3 07:10:34 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1B2316A41F; Sat, 3 Sep 2005 07:10:33 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B266343D46; Sat, 3 Sep 2005 07:10:33 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j837AXfD028491; Sat, 3 Sep 2005 07:10:33 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j837AXjY028490; Sat, 3 Sep 2005 07:10:33 GMT (envelope-from des) Message-Id: <200509030710.j837AXjY028490@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 3 Sep 2005 07:10:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/secure/lib/libssh Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 07:10:34 -0000 des 2005-09-03 07:10:33 UTC FreeBSD src repository Modified files: secure/lib/libssh Makefile Log: Update for OpenSSH 4.2p1. Revision Changes Path 1.36 +4 -3 src/secure/lib/libssh/Makefile From owner-cvs-src@FreeBSD.ORG Sat Sep 3 07:23:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6149916A41F; Sat, 3 Sep 2005 07:23:47 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from efnet-math.org (efnet-math.org [69.60.109.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id D79EA43D49; Sat, 3 Sep 2005 07:23:46 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from [192.168.1.5] (host245-176.pool8257.interbusiness.it [82.57.176.245]) (authenticated bits=0) by efnet-math.org (8.13.1/8.13.1) with ESMTP id j837NYek006572 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Sat, 3 Sep 2005 03:23:36 -0400 In-Reply-To: <20050902184655.C4631@10.0.0.1> References: <200509021549.j82Fnut9051619@repoman.freebsd.org> <20050902184655.C4631@10.0.0.1> Mime-Version: 1.0 (Apple Message framework v733) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Suleiman Souhlal Date: Sat, 3 Sep 2005 09:23:18 +0200 To: Jeff Roberson X-Mailer: Apple Mail (2.733) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/nullfs null_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 07:23:47 -0000 Hi, On Sep 3, 2005, at 3:48 AM, Jeff Roberson wrote: > I'm not sure that this is correct. The line: > lockmgr(vnlock, LK_RELEASE, NULL, curthread); > > Should unlock the lower node which vput would have already > unlocked. It must be done this way to properly adjust the vnlock ptr. I'm not sure I understand what you're saying. After this commit, the code is: vnlock = vp->v_vnlock; vp->v_vnlock = &vp->v_lock; lockmgr(vp->v_vnlock, LK_EXCLUSIVE, NULL, curthread); if (lowervp) { vput(lowervp); } else lockmgr(vnlock, LK_RELEASE, NULL, curthread); Which I believe unlocks things in the right order. However, after discussing with kan@, we identified two races: - There is a short time between changing the pointer and locking vp->v_lock during which someone might steal the lock from us, so we should hold the interlock during these two operations. - Someone might be waiting on the lower vnode's lock, and when it is released, he might think that he has the vnode. I am unsure how this can be fixed. -- Suleiman Souhlal | ssouhlal@vt.edu The FreeBSD Project | ssouhlal@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sat Sep 3 10:28:09 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A39D016A41F; Sat, 3 Sep 2005 10:28:09 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5247543D46; Sat, 3 Sep 2005 10:28:09 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83AS9aV042570; Sat, 3 Sep 2005 10:28:09 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83AS9Zm042569; Sat, 3 Sep 2005 10:28:09 GMT (envelope-from phk) Message-Id: <200509031028.j83AS9Zm042569@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 3 Sep 2005 10:28:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern subr_prf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 10:28:09 -0000 phk 2005-09-03 10:28:08 UTC FreeBSD src repository Modified files: sys/kern subr_prf.c Log: If we ignore an unknown % sequence, we must stop interpreting the remaining % arguments because the varargs are now out of sync and there is a risk that we might for instance dereference an integer in a %s argument. Sponsored by: Napatech.com Revision Changes Path 1.117 +9 -2 src/sys/kern/subr_prf.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 11:03:11 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D03516A41F; Sat, 3 Sep 2005 11:03:11 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C9FE43D4C; Sat, 3 Sep 2005 11:03:11 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83B3AsI044091; Sat, 3 Sep 2005 11:03:10 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83B3ASM044090; Sat, 3 Sep 2005 11:03:10 GMT (envelope-from phk) Message-Id: <200509031103.j83B3ASM044090@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 3 Sep 2005 11:03:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom geom.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 11:03:11 -0000 phk 2005-09-03 11:03:10 UTC FreeBSD src repository Modified files: sys/geom geom.h Log: Typo. Revision Changes Path 1.91 +1 -1 src/sys/geom/geom.h From owner-cvs-src@FreeBSD.ORG Sat Sep 3 11:04:29 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0ACC16A41F; Sat, 3 Sep 2005 11:04:28 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7820B43D6E; Sat, 3 Sep 2005 11:04:26 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83B4P1x044143; Sat, 3 Sep 2005 11:04:25 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83B4P6C044142; Sat, 3 Sep 2005 11:04:25 GMT (envelope-from brian) Message-Id: <200509031104.j83B4P6C044142@repoman.freebsd.org> From: Brian Somers Date: Sat, 3 Sep 2005 11:04:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/mtree verify.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 11:04:29 -0000 brian 2005-09-03 11:04:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/mtree verify.c Log: MFC: If we fail in chown(2), try to just change the group and continue on to change the permissions. Failures are still recorded. Approved by: re (scottl) Sponsored by: Sophos/ActiveState Revision Changes Path 1.23.8.1 +28 -10 src/usr.sbin/mtree/verify.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 11:06:09 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8311D16A41F; Sat, 3 Sep 2005 11:06:09 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 420B443D45; Sat, 3 Sep 2005 11:06:09 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83B69Qx044326; Sat, 3 Sep 2005 11:06:09 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83B69gG044325; Sat, 3 Sep 2005 11:06:09 GMT (envelope-from brian) Message-Id: <200509031106.j83B69gG044325@repoman.freebsd.org> From: Brian Somers Date: Sat, 3 Sep 2005 11:06:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/usr.sbin/mtree verify.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 11:06:09 -0000 brian 2005-09-03 11:06:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/mtree verify.c Log: MFC: If we fail in chown(2), try to just change the group and continue on to change the permissions. Failures are still recorded. Sponsored by: Sophos/ActiveState Revision Changes Path 1.23.2.1 +28 -10 src/usr.sbin/mtree/verify.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 11:57:29 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F3F316A41F; Sat, 3 Sep 2005 11:57:29 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DFDF43D45; Sat, 3 Sep 2005 11:57:29 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83BvTIT046137; Sat, 3 Sep 2005 11:57:29 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83BvTMI046136; Sat, 3 Sep 2005 11:57:29 GMT (envelope-from jkoshy) Message-Id: <200509031157.j83BvTMI046136@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 3 Sep 2005 11:57:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/amd64/amd64 db_trace.c exception.S genassym.c trap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 11:57:29 -0000 jkoshy 2005-09-03 11:57:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 db_trace.c exception.S genassym.c trap.c Log: MFC: { db_trace.c:1.69, exception.S:1.127, genassym.c:1.156, trap.c:1.290 } - Special-case NMI handling on the AMD64. On entry or exit from the kernel the 'alltraps' and 'doreti' the code used by normal traps disables interrupts to protect the critical sections where it is setting up %gs. This protection is insufficient in the presence of NMIs since NMIs can be taken even when the processor has disabled normal interrupts. Thus the NMI handler needs to actually read MSR_GBASE on entry to the kernel to determine whether a swap of %gs using 'swapgs' is needed. However, reads of MSRs are expensive and integrating this check into the 'alltraps'/'doreti' path would penalize normal interrupts. - Teach DDB about the 'nmi_calltrap' symbol. Reviewed by: bde, peter (an older version) and ups Approved by: re (scottl) Revision Changes Path 1.66.2.1 +2 -1 src/sys/amd64/amd64/db_trace.c 1.125.2.1 +76 -2 src/sys/amd64/amd64/exception.S 1.155.2.1 +2 -0 src/sys/amd64/amd64/genassym.c 1.289.2.1 +2 -1 src/sys/amd64/amd64/trap.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 11:58:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D86E216A41F; Sat, 3 Sep 2005 11:58:19 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [204.156.12.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CB6143D48; Sat, 3 Sep 2005 11:58:19 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by cyrus.watson.org (Postfix) with ESMTP id 07D6646B06; Sat, 3 Sep 2005 07:58:19 -0400 (EDT) Date: Sat, 3 Sep 2005 12:58:18 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Brooks Davis In-Reply-To: <200509021705.j82H57wM063231@repoman.freebsd.org> Message-ID: <20050903125756.X86944@fledge.watson.org> References: <200509021705.j82H57wM063231@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d netif X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 11:58:20 -0000 On Fri, 2 Sep 2005, Brooks Davis wrote: > Block SIGQUIT (Ctrl-C) while running in startup mode. This should > allow > dhclient's to be killed without stopping all boot progress. > > Minor cleanup of the interface list generation code. Thanks! Much more happiness is now likely on my notebook, I'll test this tomorrow. Robert N M Watson From owner-cvs-src@FreeBSD.ORG Sat Sep 3 15:57:05 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07AD116A41F; Sat, 3 Sep 2005 15:57:05 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B949C43D45; Sat, 3 Sep 2005 15:57:04 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83Fv4jd061612; Sat, 3 Sep 2005 15:57:04 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83Fv446061611; Sat, 3 Sep 2005 15:57:04 GMT (envelope-from pjd) Message-Id: <200509031557.j83Fv446061611@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 3 Sep 2005 15:57:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 15:57:05 -0000 pjd 2005-09-03 15:57:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_syscalls.c Log: MFC: sys/kern/vfs_syscalls.c 1.393 In case of mac_check_vnode_rename_from() or vn_start_write() failure, vn_finished_write() should not be called. Reviewed by: ssouhlal Approved by: re (scottl) Revision Changes Path 1.392.2.1 +2 -1 src/sys/kern/vfs_syscalls.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 16:02:38 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 461EE16A41F; Sat, 3 Sep 2005 16:02:38 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0355943D45; Sat, 3 Sep 2005 16:02:38 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83G2bHI061875; Sat, 3 Sep 2005 16:02:37 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83G2bEg061874; Sat, 3 Sep 2005 16:02:37 GMT (envelope-from pjd) Message-Id: <200509031602.j83G2bEg061874@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 3 Sep 2005 16:02:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 16:02:38 -0000 pjd 2005-09-03 16:02:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/md md.c Log: MFC: sys/dev/md/md.c 1.155 - Add md_mtx lock to protect ID number and list of devices. - Always check mdnew() return value, as even in !autounit case kthread_create() can fail. Those two changes fix serval panics provoked by simple stress test. Tested by: Kris The BugMagnet Approved by: re (scottl) Revision Changes Path 1.153.2.1 +37 -25 src/sys/dev/md/md.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 16:06:05 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 301A616A41F; Sat, 3 Sep 2005 16:06:05 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF33643D48; Sat, 3 Sep 2005 16:06:04 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83G64gB062053; Sat, 3 Sep 2005 16:06:04 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83G64Fb062052; Sat, 3 Sep 2005 16:06:04 GMT (envelope-from stefanf) Message-Id: <200509031606.j83G64Fb062052@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 3 Sep 2005 16:06:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh sh.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 16:06:05 -0000 stefanf 2005-09-03 16:06:04 UTC FreeBSD src repository Modified files: bin/sh sh.1 Log: Document that `in word ...' is optional in the for command. Revision Changes Path 1.107 +7 -2 src/bin/sh/sh.1 From owner-cvs-src@FreeBSD.ORG Sat Sep 3 16:13:06 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA5D516A41F; Sat, 3 Sep 2005 16:13:06 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6838143D45; Sat, 3 Sep 2005 16:13:06 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83GD6dX062344; Sat, 3 Sep 2005 16:13:06 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83GD6VM062343; Sat, 3 Sep 2005 16:13:06 GMT (envelope-from ume) Message-Id: <200509031613.j83GD6VM062343@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 3 Sep 2005 16:13:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netkey key.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 16:13:06 -0000 ume 2005-09-03 16:13:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netkey key.c Log: MFC 1.74: SADB_UPDATE did not return an error when key length is invalid. Approved by: re (scottl) Revision Changes Path 1.71.2.1 +2 -2 src/sys/netkey/key.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 16:14:53 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2345D16A41F; Sat, 3 Sep 2005 16:14:53 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5DE643D45; Sat, 3 Sep 2005 16:14:52 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83GEqMS062477; Sat, 3 Sep 2005 16:14:52 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83GEqBH062476; Sat, 3 Sep 2005 16:14:52 GMT (envelope-from ume) Message-Id: <200509031614.j83GEqBH062476@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 3 Sep 2005 16:14:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/netkey key.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 16:14:53 -0000 ume 2005-09-03 16:14:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netkey key.c Log: MFC 1.74: SADB_UPDATE did not return an error when key length is invalid. Revision Changes Path 1.65.2.7 +2 -2 src/sys/netkey/key.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 17:16:00 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A735916A41F; Sat, 3 Sep 2005 17:16:00 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B0E543D48; Sat, 3 Sep 2005 17:16:00 +0000 (GMT) (envelope-from garys@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83HG0LK071878; Sat, 3 Sep 2005 17:16:00 GMT (envelope-from garys@repoman.freebsd.org) Received: (from garys@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83HG0J6071877; Sat, 3 Sep 2005 17:16:00 GMT (envelope-from garys) Message-Id: <200509031716.j83HG0J6071877@repoman.freebsd.org> From: "Gary W. Swearingen" Date: Sat, 3 Sep 2005 17:16:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man7 security.7 src/sbin/init init.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 17:16:00 -0000 garys 2005-09-03 17:16:00 UTC FreeBSD src repository (doc committer) Modified files: share/man/man7 security.7 sbin/init init.8 Log: Moved descriptions of securelevels from init(7) to security(7). Files used both "securelevel" and either "secure level" or "security level"; all are now "security level". PR: docs/84266 Submitted by: garys Approved by: keramida MFC after: 3 days Revision Changes Path 1.47 +5 -62 src/sbin/init/init.8 1.44 +63 -7 src/share/man/man7/security.7 From owner-cvs-src@FreeBSD.ORG Sat Sep 3 17:45:55 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22A3616A41F; Sat, 3 Sep 2005 17:45:55 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D577143D48; Sat, 3 Sep 2005 17:45:54 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83HjsOA073333; Sat, 3 Sep 2005 17:45:54 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83Hjshs073332; Sat, 3 Sep 2005 17:45:54 GMT (envelope-from sam) Message-Id: <200509031745.j83Hjshs073332@repoman.freebsd.org> From: Sam Leffler Date: Sat, 3 Sep 2005 17:45:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/wpa/wpa_supplicant driver_freebsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 17:45:55 -0000 sam 2005-09-03 17:45:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/wpa/wpa_supplicant driver_freebsd.c Log: MFC 1.8: correct alignment of addresses passed to ether_ntoa to fix segfaults on amd64 Approved by: re (scottl) Revision Changes Path 1.5.2.2 +68 -14 src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 17:50:20 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07D8416A41F; Sat, 3 Sep 2005 17:50:20 +0000 (GMT) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7823443D6A; Sat, 3 Sep 2005 17:50:15 +0000 (GMT) (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.6) with ESMTP id j83HoEBd099929 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 3 Sep 2005 10:50:14 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <4319E3F3.3010202@errno.com> Date: Sat, 03 Sep 2005 10:57:07 -0700 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050327) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sam Leffler References: <200509031745.j83Hjshs073332@repoman.freebsd.org> In-Reply-To: <200509031745.j83Hjshs073332@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/wpa/wpa_supplicant driver_freebsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 17:50:20 -0000 Sam Leffler wrote: > sam 2005-09-03 17:45:54 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > usr.sbin/wpa/wpa_supplicant driver_freebsd.c > Log: > MFC 1.8: correct alignment of addresses passed to ether_ntoa to > fix segfaults on amd64 > > Approved by: re (scottl) > > Revision Changes Path > 1.5.2.2 +68 -14 src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c > http://cvsweb.FreeBSD.org/src/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c.diff?r1=1.5.2.1&r2=1.5.2.2 > > Actually this sync'd with HEAD and also brought in rev 1.7 which should be ok. Sam From owner-cvs-src@FreeBSD.ORG Sat Sep 3 18:20:20 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E809016A41F; Sat, 3 Sep 2005 18:20:20 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEE9743D45; Sat, 3 Sep 2005 18:20:20 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83IKKSV074810; Sat, 3 Sep 2005 18:20:20 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83IKKIJ074809; Sat, 3 Sep 2005 18:20:20 GMT (envelope-from alc) Message-Id: <200509031820.j83IKKIJ074809@repoman.freebsd.org> From: Alan Cox Date: Sat, 3 Sep 2005 18:20:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/arm/arm pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c src/sys/powerpc/powerpc pmap.c src/sys/sparc64/sparc64 pmap.c src/sys/vm pmap.h vm_fault.c vm_map.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 18:20:21 -0000 alc 2005-09-03 18:20:20 UTC FreeBSD src repository Modified files: sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/arm/arm pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c sys/powerpc/powerpc pmap.c sys/sparc64/sparc64 pmap.c sys/vm pmap.h vm_fault.c vm_map.c Log: Pass a value of type vm_prot_t to pmap_enter_quick() so that it determine whether the mapping should permit execute access. Revision Changes Path 1.179 +2 -2 src/sys/alpha/alpha/pmap.c 1.527 +4 -2 src/sys/amd64/amd64/pmap.c 1.37 +3 -3 src/sys/arm/arm/pmap.c 1.531 +2 -2 src/sys/i386/i386/pmap.c 1.163 +4 -3 src/sys/ia64/ia64/pmap.c 1.100 +3 -2 src/sys/powerpc/powerpc/pmap.c 1.149 +3 -2 src/sys/sparc64/sparc64/pmap.c 1.72 +1 -1 src/sys/vm/pmap.h 1.207 +2 -1 src/sys/vm/vm_fault.c 1.368 +2 -2 src/sys/vm/vm_map.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 19:01:13 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96E4416A41F; Sat, 3 Sep 2005 19:01:13 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B6A43D46; Sat, 3 Sep 2005 19:01:13 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83J1DTr076664; Sat, 3 Sep 2005 19:01:13 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83J1D2U076663; Sat, 3 Sep 2005 19:01:13 GMT (envelope-from ssouhlal) Message-Id: <200509031901.j83J1D2U076663@repoman.freebsd.org> From: Suleiman Souhlal Date: Sat, 3 Sep 2005 19:01:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 19:01:13 -0000 ssouhlal 2005-09-03 19:01:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_subr.c Log: MFC r1.643: Fix a typo in vop_rename_pre() where we ended up using vholdl() instead of vhold(), even though the vnode interlock is unlocked. Approved by: re (scottl) Revision Changes Path 1.635.2.5 +1 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 19:43:16 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C82C16A41F; Sat, 3 Sep 2005 19:43:16 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A8AF43D45; Sat, 3 Sep 2005 19:43:16 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83JhGDc079304; Sat, 3 Sep 2005 19:43:16 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83JhGYK079303; Sat, 3 Sep 2005 19:43:16 GMT (envelope-from marcel) Message-Id: <200509031943.j83JhGYK079303@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 3 Sep 2005 19:43:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ia64/ia64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 19:43:16 -0000 marcel 2005-09-03 19:43:15 UTC FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c Log: Fix collision chain termination checks. The result of IA64_PHYS_TO_RR7 is never 0, so one cannot test for a NULL pointer after a physical address is translated into a virtual pointer with said macro. Instead, keep the physical address around and test it against 0. Note that this obviously implies that a PTE can never be allocated at physical address 0. This isn't exactly guaranteed, but hasn't been a problem so far. We test the physical address against 0 for as long as the ia64 port exists... Revision Changes Path 1.164 +17 -15 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 20:23:42 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5895716A41F; Sat, 3 Sep 2005 20:23:42 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2580E43D45; Sat, 3 Sep 2005 20:23:42 +0000 (GMT) (envelope-from ssouhlal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83KNfEp081531; Sat, 3 Sep 2005 20:23:42 GMT (envelope-from ssouhlal@repoman.freebsd.org) Received: (from ssouhlal@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83KNfP3081530; Sat, 3 Sep 2005 20:23:41 GMT (envelope-from ssouhlal) Message-Id: <200509032023.j83KNfP3081530@repoman.freebsd.org> From: Suleiman Souhlal Date: Sat, 3 Sep 2005 20:23:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/hpfs hpfs_vfsops.c src/sys/fs/ntfs ntfs_vfsops.c src/sys/fs/udf udf_vfsops.c src/sys/gnu/fs/ext2fs ext2_vfsops.c src/sys/gnu/fs/reiserfs reiserfs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 20:23:42 -0000 ssouhlal 2005-09-03 20:23:41 UTC FreeBSD src repository Modified files: sys/fs/hpfs hpfs_vfsops.c sys/fs/ntfs ntfs_vfsops.c sys/fs/udf udf_vfsops.c sys/gnu/fs/ext2fs ext2_vfsops.c sys/gnu/fs/reiserfs reiserfs_vfsops.c Log: Unbreak hpfs/ntfs/udf/ext2fs/reiserfs mounting. Another pointyhat to: ssouhlal Revision Changes Path 1.56 +0 -1 src/sys/fs/hpfs/hpfs_vfsops.c 1.80 +0 -1 src/sys/fs/ntfs/ntfs_vfsops.c 1.35 +0 -1 src/sys/fs/udf/udf_vfsops.c 1.153 +4 -3 src/sys/gnu/fs/ext2fs/ext2_vfsops.c 1.3 +2 -2 src/sys/gnu/fs/reiserfs/reiserfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 22:40:03 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E7BB16A41F; Sat, 3 Sep 2005 22:40:03 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07F2843D48; Sat, 3 Sep 2005 22:40:03 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83Me2FB094053; Sat, 3 Sep 2005 22:40:02 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83Me2nZ094052; Sat, 3 Sep 2005 22:40:02 GMT (envelope-from sam) Message-Id: <200509032240.j83Me2nZ094052@repoman.freebsd.org> From: Sam Leffler Date: Sat, 3 Sep 2005 22:40:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net80211 _ieee80211.h ieee80211.c ieee80211_acl.c ieee80211_crypto.c ieee80211_crypto.h ieee80211_crypto_tkip.c ieee80211_freebsd.c ieee80211_freebsd.h ieee80211_input.c ieee80211_ioctl.c ieee80211_ioctl.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 22:40:03 -0000 sam 2005-09-03 22:40:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net80211 _ieee80211.h ieee80211.c ieee80211_acl.c ieee80211_crypto.c ieee80211_crypto.h ieee80211_crypto_tkip.c ieee80211_freebsd.c ieee80211_freebsd.h ieee80211_input.c ieee80211_ioctl.c ieee80211_ioctl.h ieee80211_node.c ieee80211_node.h ieee80211_output.c ieee80211_proto.c ieee80211_proto.h ieee80211_var.h Log: sync with HEAD: o add ic_curchan to resolve issues with what the "current channel" is o split beacon and listen interval o fixup mac acl support so you can query state o split h/w tx+rx key indices in crypto state o add optional h/w key index -> node mapping o change default key index allocator to DTRT for legacy parts that are WPA capable o define typedef for a h/w key index o fix race on node refcnt handling with sending probe response frames o isolate scanning-related input handling to reduce diffs against future scanning code o sanity check beacon interval in recv'd management frames and discard frames with out-of-range data o fix refcnt race sending null data frames o lock ioctl to get sta info o fix misc races in ap mode sta state teardown Approved by: re (scottl) Revision Changes Path 1.2.2.1 +2 -0 src/sys/net80211/_ieee80211.h 1.19.2.2 +9 -3 src/sys/net80211/ieee80211.c 1.3.2.1 +53 -1 src/sys/net80211/ieee80211_acl.c 1.10.2.2 +18 -11 src/sys/net80211/ieee80211_crypto.c 1.9.2.1 +13 -10 src/sys/net80211/ieee80211_crypto.h 1.9.2.1 +3 -1 src/sys/net80211/ieee80211_crypto_tkip.c 1.7.2.1 +8 -4 src/sys/net80211/ieee80211_freebsd.c 1.5.2.1 +4 -1 src/sys/net80211/ieee80211_freebsd.h 1.62.2.2 +91 -170 src/sys/net80211/ieee80211_input.c 1.25.2.3 +122 -84 src/sys/net80211/ieee80211_ioctl.c 1.10.2.2 +8 -1 src/sys/net80211/ieee80211_ioctl.h 1.48.2.2 +457 -66 src/sys/net80211/ieee80211_node.c 1.17.2.2 +48 -1 src/sys/net80211/ieee80211_node.h 1.26.2.2 +19 -14 src/sys/net80211/ieee80211_output.c 1.17.2.2 +2 -2 src/sys/net80211/ieee80211_proto.c 1.11.2.2 +4 -0 src/sys/net80211/ieee80211_proto.h 1.22.2.2 +4 -1 src/sys/net80211/ieee80211_var.h From owner-cvs-src@FreeBSD.ORG Sat Sep 3 22:46:43 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB83016A41F; Sat, 3 Sep 2005 22:46:43 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98BA143D45; Sat, 3 Sep 2005 22:46:43 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83Mkh2p094931; Sat, 3 Sep 2005 22:46:43 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83MkhYm094930; Sat, 3 Sep 2005 22:46:43 GMT (envelope-from sam) Message-Id: <200509032246.j83MkhYm094930@repoman.freebsd.org> From: Sam Leffler Date: Sat, 3 Sep 2005 22:46:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ath if_ath.c if_athvar.h src/sys/dev/awi awi.c src/sys/dev/iwi if_iwi.c src/sys/dev/ipw if_ipw.c src/sys/dev/wi if_wi.c src/sys/dev/usb if_ural.c src/sys/dev/ral if_ral.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 22:46:44 -0000 sam 2005-09-03 22:46:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ath if_ath.c if_athvar.h sys/dev/awi awi.c sys/dev/iwi if_iwi.c sys/dev/ipw if_ipw.c sys/dev/wi if_wi.c sys/dev/usb if_ural.c sys/dev/ral if_ral.c Log: sync with HEAD after net80211 changes: o ic_curchan o beacon/listen interval split o split tx+rx crypto key and h/w key index -> node mapping support Also for ath: o correct duration calculation when protection is enabled Also for wi: o handle all-zero mac address properly o fix media status handling so devd recognizes cards on insert Also for ipw/iwi: o always include statistics sysctls (was only when compiled w/ debugging) o honor manual roaming setting Also for ral/ural: o fix basic rate set o fix IFS parameters o honor operating mode when selecting ack rate o honor manual roaming setting Approved by: re (scottl) Revision Changes Path 1.94.2.4 +52 -91 src/sys/dev/ath/if_ath.c 1.27.2.2 +0 -1 src/sys/dev/ath/if_athvar.h 1.37.2.4 +6 -5 src/sys/dev/awi/awi.c 1.7.2.3 +3 -10 src/sys/dev/ipw/if_ipw.c 1.8.2.3 +7 -11 src/sys/dev/iwi/if_iwi.c 1.10.2.3 +43 -27 src/sys/dev/ral/if_ral.c 1.10.2.3 +31 -16 src/sys/dev/usb/if_ural.c 1.180.2.4 +11 -3 src/sys/dev/wi/if_wi.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 22:47:48 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 021AA16A41F; Sat, 3 Sep 2005 22:47:48 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B846443D45; Sat, 3 Sep 2005 22:47:47 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83MllJa094992; Sat, 3 Sep 2005 22:47:47 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83MllOf094991; Sat, 3 Sep 2005 22:47:47 GMT (envelope-from sam) Message-Id: <200509032247.j83MllOf094991@repoman.freebsd.org> From: Sam Leffler Date: Sat, 3 Sep 2005 22:47:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/ifconfig ifconfig.8 ifieee80211.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Sep 2005 22:47:48 -0000 sam 2005-09-03 22:47:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/ifconfig ifconfig.8 ifieee80211.c Log: sync with HEAD for net80211 changes: o list mac support o update manual page Approved by: re (scottl) Revision Changes Path 1.95.2.5 +15 -8 src/sbin/ifconfig/ifconfig.8 1.18.2.4 +83 -2 src/sbin/ifconfig/ifieee80211.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 22:49:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 893A016A41F; Sat, 3 Sep 2005 22:49:22 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C89343D45; Sat, 3 Sep 2005 22:49:22 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83MnMPE095055; Sat, 3 Sep 2005 22:49:22 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83MnMNc095054; Sat, 3 Sep 2005 22:49:22 GMT (envelope-from sam) Message-Id: <200509032249.j83MnMNc095054@repoman.freebsd.org> From: Sam Leffler Date: Sat, 3 Sep 2005 22:49:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc devd.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 22:49:22 -0000 sam 2005-09-03 22:49:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc devd.conf Log: MFC 1.28: use media type to recognize eth+802.11 network interfaces instead of doing a regex on device names Approved by: re (scottl) Revision Changes Path 1.26.2.1 +26 -9 src/etc/devd.conf From owner-cvs-src@FreeBSD.ORG Sat Sep 3 23:15:47 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D68916A41F; Sat, 3 Sep 2005 23:15:47 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97E4843D46; Sat, 3 Sep 2005 23:15:46 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83NFkuo096116; Sat, 3 Sep 2005 23:15:46 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83NFkNJ096115; Sat, 3 Sep 2005 23:15:46 GMT (envelope-from imp) Message-Id: <200509032315.j83NFkNJ096115@repoman.freebsd.org> From: Warner Losh Date: Sat, 3 Sep 2005 23:15:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 23:15:47 -0000 imp 2005-09-03 23:15:46 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: More consistantly return the correct BAR size. Before, we'd only return the correct bar size if we encountered a 64-bit BAR that had its resources already assigned. If the resources weren't yet assigned, we'd bogusly assume it was a 32-bit bar and return 1. Revision Changes Path 1.295 +8 -6 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Sat Sep 3 23:53:50 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA9D816A41F; Sat, 3 Sep 2005 23:53:50 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E76143D45; Sat, 3 Sep 2005 23:53:50 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j83NroUB098235; Sat, 3 Sep 2005 23:53:50 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j83Nrok5098234; Sat, 3 Sep 2005 23:53:50 GMT (envelope-from marcel) Message-Id: <200509032353.j83Nrok5098234@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 3 Sep 2005 23:53:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ia64/ia64 mp_machdep.c pmap.c src/sys/ia64/include pmap.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Sep 2005 23:53:51 -0000 marcel 2005-09-03 23:53:50 UTC FreeBSD src repository Modified files: sys/ia64/ia64 mp_machdep.c pmap.c sys/ia64/include pmap.h Log: o s/vhpt_size/pmap_vhpt_log2size/g o s/vhpt_base/pmap_vhpt_base/g o s/vhpt_bucket/pmap_vhpt_bucket/g o Declare the above in o Move the vm.stats.vhpt.* sysctls to machdep.vhpt.* o Create a tunable machdep.vhpt.log2size, with corresponding sysctl. The tunable allows the user to specify the VHPT size from the loader. o Don't keep track of the number of PTEs in the VHPT. Calculate the population when necessary by iterating the buckets and summing up the length of the buckets. o Don't perform the tpa instruction with a bucket lock held. The instruction can (theoretically) fault and locking is not needed. Revision Changes Path 1.58 +2 -4 src/sys/ia64/ia64/mp_machdep.c 1.165 +83 -44 src/sys/ia64/ia64/pmap.c 1.25 +3 -0 src/sys/ia64/include/pmap.h