From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 00:09:13 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0886E16A41F;
	Sun, 18 Dec 2005 00:09:13 +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 C5F9243D55;
	Sun, 18 Dec 2005 00:09:12 +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 jBI09Cxp025799;
	Sun, 18 Dec 2005 00:09:12 GMT
	(envelope-from marcel@repoman.freebsd.org)
Received: (from marcel@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBI09C4J025798;
	Sun, 18 Dec 2005 00:09:12 GMT (envelope-from marcel)
Message-Id: <200512180009.jBI09C4J025798@repoman.freebsd.org>
From: Marcel Moolenaar <marcel@FreeBSD.org>
Date: Sun, 18 Dec 2005 00:09: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/sys elf32.h elf64.h elf_common.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 00:09:13 -0000

marcel      2005-12-18 00:09:12 UTC

  FreeBSD src repository

  Modified files:
    sys/sys              elf32.h elf64.h elf_common.h 
  Log:
  Get in sync with current ELF definitions. In particular this means:
  o  Remove the unused and non-standard SHT_NUM, PT_COUNT and DT_COUNT.
  o  Add the STV_DEFAULT, STV_INTERNAL, STV_HIDDEN and STV_PROTECTED
     symbol visibility constants.
  o  Add the ELF32_ST_VISIBILITY and ELF64_ST_VISIBILITY macros to
     get the symbol visibility from the st_other field.
  o  Add the ELFOSABI_AIX, ELFOSABI_OPENVMS and ELFOSABI_NSK constants.
  o  Add the ET_LOOS, ET_HIOS, ET_LOPROC and ET_HIPROC constants.
  o  Further flesh out the list of machine types. Note that EM_ALPHA
     remains non-standard. The standard value for EM_ALPHA is given
     by EM_ALPHA_STD (which is a non-standard name :-)
  o  Add the SHN_LOOS, SHN_HIOS and SHN_XINDEX constants.
  o  Add the SHT_INIT_ARRAY, SHT_FINI_ARRAY, SHT_PREINIT_ARRAY, SHT_GROUP
     and SHT_SYMTAB_SHNDX constants.
  o  Add the SHF_MERGE, SHF_STRINGS, SHF_INFO_LINK, SHF_LINK_ORDER,
     SHF_OS_NONCONFORMING, SHF_GROUP and SHF_MASKOS constants.
  o  Add the PF_MASKOS and PF_MASKPROC constants.
  o  Add the STB_LOOS andf STB_HIOS constants.
  o  Add the STT_COMMON, STT_LOOS and STT_HIOS constants.
  
  MFC after: 1 week
  
  Revision  Changes    Path
  1.9       +3 -0      src/sys/sys/elf32.h
  1.12      +3 -0      src/sys/sys/elf64.h
  1.16      +104 -48   src/sys/sys/elf_common.h

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 01:38:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8A97716A41F;
	Sun, 18 Dec 2005 01:38:27 +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 1857043D67;
	Sun, 18 Dec 2005 01:38:27 +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 jBI1cQCv036479;
	Sun, 18 Dec 2005 01:38:26 GMT
	(envelope-from marcel@repoman.freebsd.org)
Received: (from marcel@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBI1cQYD036478;
	Sun, 18 Dec 2005 01:38:26 GMT (envelope-from marcel)
Message-Id: <200512180138.jBI1cQYD036478@repoman.freebsd.org>
From: Marcel Moolenaar <marcel@FreeBSD.org>
Date: Sun, 18 Dec 2005 01:38: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/libexec/rtld-elf/alpha reloc.c
 src/libexec/rtld-elf/amd64
 reloc.c src/libexec/rtld-elf/ia64 reloc.c src/usr.sbin/kldxref
 ef_sparc64.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 01:38:27 -0000

marcel      2005-12-18 01:38:26 UTC

  FreeBSD src repository

  Modified files:
    libexec/rtld-elf/alpha reloc.c 
    libexec/rtld-elf/amd64 reloc.c 
    libexec/rtld-elf/ia64 reloc.c 
    usr.sbin/kldxref     ef_sparc64.c 
  Log:
  Explicitly cast ELF_R_TYPE() to the right type.
  
  Revision  Changes    Path
  1.21      +2 -2      src/libexec/rtld-elf/alpha/reloc.c
  1.16      +2 -2      src/libexec/rtld-elf/amd64/reloc.c
  1.16      +2 -2      src/libexec/rtld-elf/ia64/reloc.c
  1.4       +1 -1      src/usr.sbin/kldxref/ef_sparc64.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 03:22:01 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1C60F16A41F;
	Sun, 18 Dec 2005 03:22:01 +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 F3FD643D4C;
	Sun, 18 Dec 2005 03:21:59 +0000 (GMT)
	(envelope-from pjd@garage.freebsd.pl)
Received: by mail.garage.freebsd.pl (Postfix, from userid 65534)
	id F304552C76; Sun, 18 Dec 2005 04:21:57 +0100 (CET)
Received: from localhost (djz42.neoplus.adsl.tpnet.pl [83.24.3.42])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mail.garage.freebsd.pl (Postfix) with ESMTP id EB0BA50F93;
	Sun, 18 Dec 2005 04:21:51 +0100 (CET)
Date: Sun, 18 Dec 2005 04:20:53 +0100
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
To: Alan Cox <alc@FreeBSD.org>
Message-ID: <20051218032053.GD80713@garage.freebsd.pl>
References: <200512161834.jBGIYEnv092676@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="NtwzykIc2mflq5ck"
Content-Disposition: inline
In-Reply-To: <200512161834.jBGIYEnv092676@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-r535 (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/sys/kern imgact_elf.c src/sys/vm vm_extern.h
	vm_glue.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 03:22:01 -0000


--NtwzykIc2mflq5ck
Content-Type: text/plain; charset=iso-8859-2
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Fri, Dec 16, 2005 at 06:34:14PM +0000, Alan Cox wrote:
+> alc         2005-12-16 18:34:14 UTC
+>=20
+>   FreeBSD src repository
+>=20
+>   Modified files:
+>     sys/kern             imgact_elf.c=20
+>     sys/vm               vm_extern.h vm_glue.c=20
+>   Log:
+>   Use sf_buf_alloc() instead of vm_map_find() on exec_map to create the
+>   ephemeral mappings that are used as the source for three copy
+>   operations from kernel space to user space.  There are two reasons for
+>   making this change: (1) Under heavy load exec_map can fill up causing
+>   vm_map_find() to fail.  When it fails, the nascent process is aborted
+>   (SIGABRT).  Whereas, this reimplementation using sf_buf_alloc()
+>   sleeps.  (2) Although it is possible to sleep on vm_map_find()'s
+>   failure until address space becomes available (see kmem_alloc_wait()),
+>   using sf_buf_alloc() is faster.  Furthermore, the reimplementation
+>   uses a CPU private mapping, avoiding a TLB shootdown on
+>   multiprocessors.

I got panic on boot with this change (maybe because I've DEBUG_VFS_LOCKS
compiled into the kernel):

Trying to mount root from ufs:/dev/ad0s1a
KDB: stack backtrace:
vfs_badlock() at vfs_badlock+0x95
assert_vop_locked() at assert_vop_locked+0x77
VOP_GETPAGES_APV() at VOP_GETPAGES_APV+0x8a
vnode_pager_getpages() at vnode_pager_getpages+0x92
vm_imgact_map_page() at vm_imgact_map_page+0x84
elf64_load_section() at elf64_load_section+0xe9
exec_elf64_imgact() at exec_elf64_imgact+0x336
kern_execve() at kern_execve+0x457
execve() at execve+0x5d
start_init() at start_init+0x249
fork_exit() at fork_exit+0xbb
fork_trampoline() at fork_trampoline+0xe
--- trap 0, rip =3D 0, rsp =3D 0xffffffffb280dd40, rbp =3D 0 ---
VOP_GETPAGES: 0xffffff0009848200 is not locked but should be
KDB: enter: lock violation
[thread pid 1 tid 100004 ]
Stopped at      kdb_enter+0x2f: nop    =20

--=20
Pawel Jakub Dawidek                       http://www.wheel.pl
pjd@FreeBSD.org                           http://www.FreeBSD.org
FreeBSD committer                         Am I Evil? Yes, I Am!

--NtwzykIc2mflq5ck
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQFDpNWVForvXbEpPzQRAuvAAKCXvfmv2MOpzaWjVMng31QDrMwe1QCgsmCv
ME/32kWwR9gRaQFnBe8gtlY=
=97nA
-----END PGP SIGNATURE-----

--NtwzykIc2mflq5ck--

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 04:52:39 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 77E8E16A420;
	Sun, 18 Dec 2005 04:52:39 +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 062E543D46;
	Sun, 18 Dec 2005 04:52:39 +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 jBI4qcJe053556;
	Sun, 18 Dec 2005 04:52:38 GMT
	(envelope-from marcel@repoman.freebsd.org)
Received: (from marcel@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBI4qc31053555;
	Sun, 18 Dec 2005 04:52:38 GMT (envelope-from marcel)
Message-Id: <200512180452.jBI4qc31053555@repoman.freebsd.org>
From: Marcel Moolenaar <marcel@FreeBSD.org>
Date: Sun, 18 Dec 2005 04:52:38 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/lib/libc/gen nlist.c src/libexec/rtld-elf rtld.c
 rtld.h src/libexec/rtld-elf/sparc64 reloc.c src/share/man/man5
 elf.5 src/sys/alpha/alpha elf_machdep.c src/sys/amd64/amd64
 elf_machdep.c src/sys/boot/common bootstrap.h load_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 04:52:39 -0000

marcel      2005-12-18 04:52:38 UTC

  FreeBSD src repository

  Modified files:
    lib/libc/gen         nlist.c 
    libexec/rtld-elf     rtld.c rtld.h 
    libexec/rtld-elf/sparc64 reloc.c 
    share/man/man5       elf.5 
    sys/alpha/alpha      elf_machdep.c 
    sys/amd64/amd64      elf_machdep.c 
    sys/boot/common      bootstrap.h load_elf.c load_elf_obj.c 
                         reloc_elf.c 
    sys/ia64/ia64        elf_machdep.c 
    sys/kern             link_elf.c link_elf_obj.c 
    sys/sparc64/sparc64  elf_machdep.c 
    sys/sys              elf32.h elf64.h elf_generic.h 
                         imgact_elf.h linker.h 
    usr.bin/elf2aout     elf2aout.c 
    usr.sbin/crunch/crunchide exec_elf32.c 
    usr.sbin/kldxref     ef.c ef.h ef_amd64.c ef_i386.c ef_obj.c 
                         ef_powerpc.c ef_sparc64.c 
  Log:
  Make our ELF64 type definitions match standards. In particular this
  means:
  o  Remove Elf64_Quarter,
  o  Redefine Elf64_Half to be 16-bit,
  o  Redefine Elf64_Word to be 32-bit,
  o  Add Elf64_Xword and Elf64_Sxword for 64-bit entities,
  o  Use Elf_Size in MI code to abstract the difference between
     Elf32_Word and Elf64_Word.
  o  Add Elf_Ssize as the signed counterpart of Elf_Size.
  
  MFC after: 2 weeks
  
  Revision  Changes    Path
  1.19      +3 -3      src/lib/libc/gen/nlist.c
  1.108     +1 -1      src/libexec/rtld-elf/rtld.c
  1.36      +2 -2      src/libexec/rtld-elf/rtld.h
  1.11      +8 -8      src/libexec/rtld-elf/sparc64/reloc.c
  1.32      +48 -49    src/share/man/man5/elf.5
  1.20      +1 -1      src/sys/alpha/alpha/elf_machdep.c
  1.24      +1 -1      src/sys/amd64/amd64/elf_machdep.c
  1.42      +1 -1      src/sys/boot/common/bootstrap.h
  1.33      +1 -1      src/sys/boot/common/load_elf.c
  1.2       +2 -2      src/sys/boot/common/load_elf_obj.c
  1.2       +3 -3      src/sys/boot/common/reloc_elf.c
  1.21      +2 -2      src/sys/ia64/ia64/elf_machdep.c
  1.87      +5 -5      src/sys/kern/link_elf.c
  1.90      +5 -5      src/sys/kern/link_elf_obj.c
  1.20      +3 -3      src/sys/sparc64/sparc64/elf_machdep.c
  1.10      +18 -14    src/sys/sys/elf32.h
  1.13      +43 -39    src/sys/sys/elf64.h
  1.7       +5 -2      src/sys/sys/elf_generic.h
  1.28      +9 -9      src/sys/sys/imgact_elf.h
  1.40      +3 -3      src/sys/sys/linker.h
  1.10      +6 -6      src/usr.bin/elf2aout/elf2aout.c
  1.15      +4 -4      src/usr.sbin/crunch/crunchide/exec_elf32.c
  1.9       +2 -2      src/usr.sbin/kldxref/ef.c
  1.6       +1 -1      src/usr.sbin/kldxref/ef.h
  1.3       +1 -1      src/usr.sbin/kldxref/ef_amd64.c
  1.3       +1 -1      src/usr.sbin/kldxref/ef_i386.c
  1.4       +2 -2      src/usr.sbin/kldxref/ef_obj.c
  1.3       +1 -1      src/usr.sbin/kldxref/ef_powerpc.c
  1.5       +1 -1      src/usr.sbin/kldxref/ef_sparc64.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 08:07:33 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9576B16A41F;
	Sun, 18 Dec 2005 08:07:33 +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 2905243D58;
	Sun, 18 Dec 2005 08:07:31 +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 jBI87Uf4060420;
	Sun, 18 Dec 2005 08:07:30 GMT
	(envelope-from simon@repoman.freebsd.org)
Received: (from simon@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBI87Uof060419;
	Sun, 18 Dec 2005 08:07:30 GMT (envelope-from simon)
Message-Id: <200512180807.jBI87Uof060419@repoman.freebsd.org>
From: "Simon L. Nielsen" <simon@FreeBSD.org>
Date: Sun, 18 Dec 2005 08: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/share/man/man9 VFS_LOCK_GIANT.9
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 08:07:33 -0000

simon       2005-12-18 08:07:30 UTC

  FreeBSD src repository (doc,ports committer)

  Modified files:
    share/man/man9       VFS_LOCK_GIANT.9 
  Log:
  VFS_LOCK_GIANT and VFS_UNLOCK_GIANT are actually defined in sys/mount.h,
  so also include sys/mount.h in SYNOPSIS.
  
  PR:             docs/90541
  Submitted by:   Wojciech A. Koszek dunstan^freebsd.czest.pl
  MFC after:      1 week
  
  Revision  Changes    Path
  1.3       +1 -0      src/share/man/man9/VFS_LOCK_GIANT.9

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 11:16:35 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E8C3916A41F;
	Sun, 18 Dec 2005 11:16:35 +0000 (GMT)
	(envelope-from nyan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9C3AB43D4C;
	Sun, 18 Dec 2005 11:16:35 +0000 (GMT)
	(envelope-from nyan@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 jBIBGYR8075069;
	Sun, 18 Dec 2005 11:16:35 GMT
	(envelope-from nyan@repoman.freebsd.org)
Received: (from nyan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIBGYA8075068;
	Sun, 18 Dec 2005 11:16:34 GMT (envelope-from nyan)
Message-Id: <200512181116.jBIBGYA8075068@repoman.freebsd.org>
From: Takahashi Yoshihiro <nyan@FreeBSD.org>
Date: Sun, 18 Dec 2005 11: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/sys/pc98/cbus sio.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 11:16:36 -0000

nyan        2005-12-18 11:16:31 UTC

  FreeBSD src repository

  Modified files:
    sys/pc98/cbus        sio.c 
  Log:
  Merged from sys/dev/sio/sio.c revision 1.463.
  
  Revision  Changes    Path
  1.239     +1 -0      src/sys/pc98/cbus/sio.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 12:09:24 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8B76A16A41F;
	Sun, 18 Dec 2005 12:09:24 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 29C7543D64;
	Sun, 18 Dec 2005 12:09:24 +0000 (GMT) (envelope-from ru@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 jBIC9Nks077110;
	Sun, 18 Dec 2005 12:09:23 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIC9NuN077109;
	Sun, 18 Dec 2005 12:09:23 GMT (envelope-from ru)
Message-Id: <200512181209.jBIC9NuN077109@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Sun, 18 Dec 2005 12:09:23 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/gnu/usr.bin/grep grep.1
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 12:09:24 -0000

ru          2005-12-18 12:09:23 UTC

  FreeBSD src repository

  Modified files:
    gnu/usr.bin/grep     grep.1 
  Log:
  Fix a markup nit.
  
  PR:             docs/88848
  Prodded by:     remko
  
  Revision  Changes    Path
  1.28      +1 -0      src/gnu/usr.bin/grep/grep.1

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 14:25:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 95A6316A41F;
	Sun, 18 Dec 2005 14:25:21 +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 316B743D45;
	Sun, 18 Dec 2005 14:25:20 +0000 (GMT) (envelope-from nate@root.org)
Received: from [10.0.5.50] (ppp-71-139-30-140.dsl.snfc21.pacbell.net
	[71.139.30.140])
	by www.cryptography.com (8.12.8/8.12.8) with ESMTP id jBIEPM9e029822
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
	Sun, 18 Dec 2005 06:25:24 -0800
Message-ID: <43A57142.1070207@root.org>
Date: Sun, 18 Dec 2005 06:25:06 -0800
From: Nate Lawson <nate@root.org>
User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: Scott Long <scottl@samsco.org>
References: <200512170357.jBH3vAhh030893@repoman.freebsd.org>
	<200512171445.04475.jhb@freebsd.org> <43A47F96.5040304@samsco.org>
In-Reply-To: <43A47F96.5040304@samsco.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,
	John Baldwin <jhb@FreeBSD.org>
Subject: Re: cvs commit: src/sys/sys ktr.h src/sys/kern kern_clock.c
	kern_switch.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 14:25:21 -0000

Scott Long wrote:
> John Baldwin wrote:
> 
>> On Friday 16 December 2005 10:57 pm, Nate Lawson wrote:
>>
>>> njl         2005-12-17 03:57:10 UTC
>>>
>>>  FreeBSD src repository
>>>
>>>  Modified files:
>>>    sys/sys              ktr.h
>>>    sys/kern             kern_clock.c kern_switch.c
>>>  Log:
>>>  Clean up unused or poorly utilized KTR values.  Remove KTR_FS, 
>>> KTR_KGDB,
>>>  and KTR_IO as they were never used.  Remove KTR_CLK since it was only
>>>  used for hardclock firing and use KTR_INTR there instead.  Remove
>>>  KTR_CRITICAL since it was only used for crit enter/exit and use
>>>  KTR_CONTENTION instead.
>>
>>
>>
>> Actually, I thought I had mentioned that KTR_CRITICAL should stay as 
>> it is (well, and the larger thought about doing away with the entire 
>> bitmask concept which no one responded to).  critical_enter/exit are 
>> not related in the least to KTR_CONTENTION which is used for 
>> MUTEX_PROFILING, nor do they have anything at all to do with 
>> contention of any sort.  If you must stick them somewhere, put them in 
>> KTR_SCHED instead.  I think scottl@ recently added support to 
>> schedgraph for those traces anyway (though I'm not sure if they are in 
>> his local tree or CVS).
>>
> 
> Yes, it's in CVS.  In the big scheme of things, it's probably a good
> idea to put KTR_CRITICAL in the same domain as KTR_SCHED.  And yeah, it
> has nothing to do with KTR_CONTENTION.  It was this part of the drive-by
> commit that irritated me most.  A simple email saying, "I'm about to do
> this, please review," would have have been welcomed and likely not even
> ignored.

I fear I've been phk'd.  You asked why I didn't ask for comments and I 
directed you to the thread on arch@ where I asked for comments.  cvs 
annotate didn't show either of you anywhere near the KTR_CRITICAL stuff, 
except I know in the past John has worked on critical sections not 
disabling interrupts.  I did my best to take into account his comments 
in a minimal way.

So, relax, you're not being attacked, and I'll continue to fix this today.

-- 
Nate

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 15:51:32 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1B68416A424;
	Sun, 18 Dec 2005 15:51:32 +0000 (GMT)
	(envelope-from iedowse@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A951543D58;
	Sun, 18 Dec 2005 15:51:31 +0000 (GMT)
	(envelope-from iedowse@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 jBIFpVgE093228;
	Sun, 18 Dec 2005 15:51:31 GMT
	(envelope-from iedowse@repoman.freebsd.org)
Received: (from iedowse@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIFpVX3093227;
	Sun, 18 Dec 2005 15:51:31 GMT (envelope-from iedowse)
Message-Id: <200512181551.jBIFpVX3093227@repoman.freebsd.org>
From: Ian Dowse <iedowse@FreeBSD.org>
Date: Sun, 18 Dec 2005 15:51: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/usb uhub.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 15:51:32 -0000

iedowse     2005-12-18 15:51:31 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/dev/usb          uhub.c 
  Log:
  MFC 1.70: provide the USB device release number along with other
  parameters so that devd can match on it.
  
  Revision  Changes    Path
  1.69.2.1  +4 -4      src/sys/dev/usb/uhub.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 16:50:07 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5AFCD16A41F;
	Sun, 18 Dec 2005 16:50:07 +0000 (GMT)
	(envelope-from ariff@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 81C2443D62;
	Sun, 18 Dec 2005 16:50:06 +0000 (GMT)
	(envelope-from ariff@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 jBIGo6S7003169;
	Sun, 18 Dec 2005 16:50:06 GMT
	(envelope-from ariff@repoman.freebsd.org)
Received: (from ariff@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIGo6bA003168;
	Sun, 18 Dec 2005 16:50:06 GMT (envelope-from ariff)
Message-Id: <200512181650.jBIGo6bA003168@repoman.freebsd.org>
From: Ariff Abdullah <ariff@FreeBSD.org>
Date: Sun, 18 Dec 2005 16:50:06 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/sound/usb uaudio.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 16:50:07 -0000

ariff       2005-12-18 16:50:06 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/sound/usb    uaudio.c 
  Log:
  Precision for AFMT_x24_yE and AFMT_x32_yE should be 24 and 32, respectively.
  
  Submitted by:   Kazuhito HONDA <kazuhito@ph.noda.tus.ac.jp>
  
  Revision  Changes    Path
  1.18      +2 -2      src/sys/dev/sound/usb/uaudio.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 18:10:58 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9CF0C16A41F;
	Sun, 18 Dec 2005 18:10:58 +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 13DC543D45;
	Sun, 18 Dec 2005 18:10:58 +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 jBIIAv9L006048;
	Sun, 18 Dec 2005 18:10:57 GMT (envelope-from njl@repoman.freebsd.org)
Received: (from njl@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIIAvGj006047;
	Sun, 18 Dec 2005 18:10:57 GMT (envelope-from njl)
Message-Id: <200512181810.jBIIAvGj006047@repoman.freebsd.org>
From: Nate Lawson <njl@FreeBSD.org>
Date: Sun, 18 Dec 2005 18:10:57 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/kern kern_switch.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 18:10:58 -0000

njl         2005-12-18 18:10:57 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             kern_switch.c 
  Log:
  Restore KTR_CRITICAL but conditionally compile it in as KTR_SCHED.
  
  Requested by:   scottl, jhb
  
  Revision  Changes    Path
  1.119     +9 -2      src/sys/kern/kern_switch.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 18:11:55 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id A526816A41F;
	Sun, 18 Dec 2005 18:11:55 +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 4C4D243D49;
	Sun, 18 Dec 2005 18:11:55 +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 jBIIBtPG006101;
	Sun, 18 Dec 2005 18:11:55 GMT (envelope-from njl@repoman.freebsd.org)
Received: (from njl@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIIBtDM006100;
	Sun, 18 Dec 2005 18:11:55 GMT (envelope-from njl)
Message-Id: <200512181811.jBIIBtDM006100@repoman.freebsd.org>
From: Nate Lawson <njl@FreeBSD.org>
Date: Sun, 18 Dec 2005 18:11: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/kern kern_clock.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 18:11:55 -0000

njl         2005-12-18 18:11:55 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             kern_clock.c 
  Log:
  Remove the KTR for hardclock completely.  It seems to not be useful.
  
  Requested by:   jhb
  
  Revision  Changes    Path
  1.184     +0 -1      src/sys/kern/kern_clock.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 18:14:47 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 301F116A41F;
	Sun, 18 Dec 2005 18:14:47 +0000 (GMT) (envelope-from nate@root.org)
Received: from ylpvm12.prodigy.net (ylpvm12-ext.prodigy.net [207.115.57.43])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A730343D58;
	Sun, 18 Dec 2005 18:14:46 +0000 (GMT) (envelope-from nate@root.org)
Received: from pimout5-ext.prodigy.net (pimout5-int.prodigy.net [207.115.4.21])
	by ylpvm12.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id
	jBIIEiKI002110; Sun, 18 Dec 2005 13:14:45 -0500
X-ORBL: [71.139.30.140]
Received: from [10.0.0.115] (ppp-71-139-30-140.dsl.snfc21.pacbell.net
	[71.139.30.140])
	by pimout5-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with
	ESMTP id jBIIEhHN079006; Sun, 18 Dec 2005 13:14:44 -0500
Message-ID: <43A5A70A.4000508@root.org>
Date: Sun, 18 Dec 2005 10:14:34 -0800
From: Nate Lawson <nate@root.org>
User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050723)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: John Baldwin <jhb@freebsd.org>
References: <200512170357.jBH3vAhh030893@repoman.freebsd.org>
	<200512171445.04475.jhb@freebsd.org>
In-Reply-To: <200512171445.04475.jhb@freebsd.org>
Content-Type: text/plain; charset=ISO-8859-15; format=flowed
Content-Transfer-Encoding: 7bit
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/sys ktr.h src/sys/kern kern_clock.c
	kern_switch.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 18:14:47 -0000

John Baldwin wrote:
> On Friday 16 December 2005 10:57 pm, Nate Lawson wrote:
> 
>>njl         2005-12-17 03:57:10 UTC
>>
>>  FreeBSD src repository
>>
>>  Modified files:
>>    sys/sys              ktr.h
>>    sys/kern             kern_clock.c kern_switch.c
>>  Log:
>>  Clean up unused or poorly utilized KTR values.  Remove KTR_FS, KTR_KGDB,
>>  and KTR_IO as they were never used.  Remove KTR_CLK since it was only
>>  used for hardclock firing and use KTR_INTR there instead.  Remove
>>  KTR_CRITICAL since it was only used for crit enter/exit and use
>>  KTR_CONTENTION instead.
> 
> 
> Actually, I thought I had mentioned that KTR_CRITICAL should stay as it is 
> (well, and the larger thought about doing away with the entire bitmask 
> concept which no one responded to).  critical_enter/exit are not related in 
> the least to KTR_CONTENTION which is used for MUTEX_PROFILING, nor do they 
> have anything at all to do with contention of any sort.  If you must stick 
> them somewhere, put them in KTR_SCHED instead.  I think scottl@ recently 
> added support to schedgraph for those traces anyway (though I'm not sure if 
> they are in his local tree or CVS).

Ah, I misread your email.  I see now what you said.

> The hardclock trace can probably just be axed entirely as it isn't all that 
> useful.

Ok, done.

-- 
Nate

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 18:16:24 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 07FA316A41F;
	Sun, 18 Dec 2005 18:16:24 +0000 (GMT) (envelope-from nate@root.org)
Received: from ylpvm12.prodigy.net (ylpvm12-ext.prodigy.net [207.115.57.43])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9697643D5A;
	Sun, 18 Dec 2005 18:16:21 +0000 (GMT) (envelope-from nate@root.org)
Received: from pimout5-ext.prodigy.net (pimout5-int.prodigy.net [207.115.4.21])
	by ylpvm12.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id
	jBIIGKKI004379; Sun, 18 Dec 2005 13:16:20 -0500
X-ORBL: [71.139.30.140]
Received: from [10.0.0.115] (ppp-71-139-30-140.dsl.snfc21.pacbell.net
	[71.139.30.140])
	by pimout5-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with
	ESMTP id jBIIGHGC016230; Sun, 18 Dec 2005 13:16:17 -0500
Message-ID: <43A5A768.4090708@root.org>
Date: Sun, 18 Dec 2005 10:16:08 -0800
From: Nate Lawson <nate@root.org>
User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050723)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: John Baldwin <jhb@freebsd.org>
References: <43A547F2.2090401@root.org> <200512171454.52514.jhb@freebsd.org>
In-Reply-To: <200512171454.52514.jhb@freebsd.org>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Cc: cvs-src@freebsd.org, Scott Long <scottl@samsco.org>,
	src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/sys ktr.h src/sys/kern kern_clock.c     
 kern_switch.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 18:16:24 -0000

John Baldwin wrote:
> On Sunday 18 December 2005 06:28 am, Nate Lawson wrote:
> 
>>Scott Long wrote:
>>
>>>Nate Lawson wrote:
>>>
>>>>njl         2005-12-17 03:57:10 UTC
>>>>
>>>> FreeBSD src repository
>>>>
>>>> Modified files:
>>>>   sys/sys              ktr.h
>>>>   sys/kern             kern_clock.c kern_switch.c
>>>> Log:
>>>> Clean up unused or poorly utilized KTR values.  Remove KTR_FS,
>>>>KTR_KGDB, and KTR_IO as they were never used.  Remove KTR_CLK since it
>>>>was only used for hardclock firing and use KTR_INTR there instead. 
>>>>Remove KTR_CRITICAL since it was only used for crit enter/exit and use
>>>>KTR_CONTENTION instead.
>>>>
>>>> Revision  Changes    Path
>>>> 1.183     +1 -1      src/sys/kern/kern_clock.c
>>>> 1.118     +2 -2      src/sys/kern/kern_switch.c
>>>> 1.35      +12 -12    src/sys/sys/ktr.h
>>>
>>>Um, I was using KTR_CRITICAL for schedgraph.  It was actually quite
>>>useful.  Compressing the option space only makes the options less
>>>useful.  Surely there has to be a better solution.  Or, at least you
>>>could call for comments before you alter this stuff.
>>
>>You didn't speak up about that in the previous discussion on arch@,
>>starting 10/31/2005.  The only comment was jhb@ saying it was not useful
>>alone, and he's the only one doing work on critical sections lately.
> 
> 
> I didn't say to merge it to KTR_CONTENTION, I said to make it use KTR_SUBSYS 
> but have it optional (I just checked the thread, and in my first e-mail I 
> remembered incorrectly) (i.e. put a #if 0 #define KTR_CRITICAL KTR_CONTENTION 
> #else #define KTR_CRITICAL 0 #endif in kern_switch.c).  Given Scott's recent 
> changes to schedgraph, it would probably be best to just make then under 
> KTR_SCHED, though maybe have it optional, thus:
> 
> #if 0
> #define KTR_CRITICAL KTR_SCHED
> #else
> #define KTR_CRITICAL 0
> #endif
> 
> or something.

Ok, I committed this.

>>If you can think of another use for this besides one event (enter/exit),
>>feel free to add it back.  Or, consider adding KTR_SUBSYS as a one-off
>>use like KTR_DEV is for other parts of the system.  KTR_CRITICAL would
>>be conditionally defined as KTR_SUBSYS when needed.
> 
> 
> That's what I asked you to do and you ignored that part of what I said. :(  It 
> can be ok to have a KTR class limited to a small number of events if those 
> events fire very often which these do.  I think you can also make KTR_WITNESS 
> optional and use KTR_SUBSYS as well.  (That's also in my original replies.)  
> And I'd still be interested in feedback on my proposal to axe the whole 
> bitmask concept for KTR entirely.

I didn't want to add KTR_SUBSYS or touch KTR_WITNESS when I wasn't sure 
of all the ramifications.  I've got enough free bits now; feel free to 
continue this if you want.

-- 
Nate

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 18:24:28 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6243F16A425;
	Sun, 18 Dec 2005 18:24:28 +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 201F543D53;
	Sun, 18 Dec 2005 18:24: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 jBIIOS6g006996;
	Sun, 18 Dec 2005 18:24:28 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIIOSIW006995;
	Sun, 18 Dec 2005 18:24:28 GMT (envelope-from glebius)
Message-Id: <200512181824.jBIIOSIW006995@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Sun, 18 Dec 2005 18:24: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/dev/bge if_bge.c src/sys/dev/em if_em.c
 src/sys/dev/ixgb if_ixgb.c src/sys/dev/nge if_nge.c src/sys/dev/re
 if_re.c src/sys/dev/ti if_ti.c src/sys/dev/txp if_txp.c
 src/sys/dev/vge if_vge.c src/sys/net 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 18:24:28 -0000

glebius     2005-12-18 18:24:27 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/bge          if_bge.c 
    sys/dev/em           if_em.c 
    sys/dev/ixgb         if_ixgb.c 
    sys/dev/nge          if_nge.c 
    sys/dev/re           if_re.c 
    sys/dev/ti           if_ti.c 
    sys/dev/txp          if_txp.c 
    sys/dev/vge          if_vge.c 
    sys/net              if_vlan_var.h 
    sys/net80211         ieee80211_input.c 
  Log:
  - Fix VLAN_INPUT_TAG() macro, so that it doesn't touch mtag in
    case if memory allocation failed.
  - Remove fourth argument from VLAN_INPUT_TAG(), that was used
    incorrectly in almost all drivers. Indicate failure with
    mbuf value of NULL.
  
  In collaboration with:  yongari, ru, sam
  
  Revision  Changes    Path
  1.107     +5 -2      src/sys/dev/bge/if_bge.c
  1.93      +1 -2      src/sys/dev/em/if_em.c
  1.18      +1 -2      src/sys/dev/ixgb/if_ixgb.c
  1.85      +3 -1      src/sys/dev/nge/if_nge.c
  1.62      +5 -2      src/sys/dev/re/if_re.c
  1.118     +5 -2      src/sys/dev/ti/if_ti.c
  1.40      +3 -2      src/sys/dev/txp/if_txp.c
  1.23      +5 -2      src/sys/dev/vge/if_vge.c
  1.23      +7 -6      src/sys/net/if_vlan_var.h
  1.85      +3 -2      src/sys/net80211/ieee80211_input.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 19:12:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B37BD16A420;
	Sun, 18 Dec 2005 19:12:00 +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 7CD6D43D5D;
	Sun, 18 Dec 2005 19:11:57 +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 jBIJBvQ6008974;
	Sun, 18 Dec 2005 19:11:57 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIJBvYO008973;
	Sun, 18 Dec 2005 19:11:57 GMT (envelope-from glebius)
Message-Id: <200512181911.jBIJBvYO008973@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Sun, 18 Dec 2005 19:11:57 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/netinet if_ether.c src/usr.sbin/arp arp.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 19:12:00 -0000

glebius     2005-12-18 19:11:57 UTC

  FreeBSD src repository

  Modified files:
    sys/netinet          if_ether.c 
    usr.sbin/arp         arp.4 
  Log:
  Add a knob to suppress logging of attempts to modify
  permanent ARP entries.
  
  Submitted by:   Andrew Alcheyev <buddy telenet.ru>
  
  Revision  Changes    Path
  1.147     +11 -6     src/sys/netinet/if_ether.c
  1.22      +8 -1      src/usr.sbin/arp/arp.4

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 19:38:44 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EC06716A41F;
	Sun, 18 Dec 2005 19:38:43 +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 8A57F43D5C;
	Sun, 18 Dec 2005 19:38:43 +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 jBIJchBn009929;
	Sun, 18 Dec 2005 19:38:43 GMT
	(envelope-from csjp@repoman.freebsd.org)
Received: (from csjp@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIJchET009928;
	Sun, 18 Dec 2005 19:38:43 GMT (envelope-from csjp)
Message-Id: <200512181938.jBIJchET009928@repoman.freebsd.org>
From: "Christian S.J. Peron" <csjp@FreeBSD.org>
Date: Sun, 18 Dec 2005 19:38: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 19:38:44 -0000

csjp        2005-12-18 19:38:43 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/netstat      netstat.1 
  Log:
  Provide some basic documentation explaining what the bpf(4) flags are
  supposed to mean. Also, add an external references for bpf now that we
  reference flags from that man page.
  
  Revision  Changes    Path
  1.56      +24 -0     src/usr.bin/netstat/netstat.1

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 19:43:34 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 759A716A41F;
	Sun, 18 Dec 2005 19:43:34 +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 3163743D4C;
	Sun, 18 Dec 2005 19:43:34 +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 jBIJhY8v010377;
	Sun, 18 Dec 2005 19:43:34 GMT (envelope-from kan@repoman.freebsd.org)
Received: (from kan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIJhYpg010376;
	Sun, 18 Dec 2005 19:43:34 GMT (envelope-from kan)
Message-Id: <200512181943.jBIJhYpg010376@repoman.freebsd.org>
From: Alexander Kabaev <kan@FreeBSD.org>
Date: Sun, 18 Dec 2005 19:43:33 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/include dlfcn.h src/lib/libc/gen dlfcn.c
 src/libexec/rtld-elf map_object.c rtld.c rtld.h
 src/libexec/rtld-elf/alpha reloc.c src/libexec/rtld-elf/amd64
 reloc.c src/libexec/rtld-elf/arm reloc.c src/libexec/rtld-elf/i386 ...
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 19:43:34 -0000

kan         2005-12-18 19:43:33 UTC

  FreeBSD src repository

  Modified files:
    include              dlfcn.h 
    lib/libc/gen         dlfcn.c 
    libexec/rtld-elf     map_object.c rtld.c rtld.h 
    libexec/rtld-elf/alpha reloc.c 
    libexec/rtld-elf/amd64 reloc.c 
    libexec/rtld-elf/arm reloc.c 
    libexec/rtld-elf/i386 reloc.c 
    libexec/rtld-elf/powerpc reloc.c 
    libexec/rtld-elf/sparc64 reloc.c 
    sys/sys              elf32.h elf64.h elf_common.h 
                         elf_generic.h 
  Log:
  Implement ELF symbol versioning using GNU semantics. This code aims
  to be compatible with symbol versioning support as implemented by
  GNU libc and documented by http://people.redhat.com/~drepper/symbol-versioning
  and LSB 3.0.
  
  Implement dlvsym() function to allow lookups for a specific version of
  a given symbol.
  
  Revision  Changes    Path
  1.20      +2 -0      src/include/dlfcn.h
  1.13      +9 -0      src/lib/libc/gen/dlfcn.c
  1.22      +3 -1      src/libexec/rtld-elf/alpha/reloc.c
  1.17      +3 -1      src/libexec/rtld-elf/amd64/reloc.c
  1.4       +3 -1      src/libexec/rtld-elf/arm/reloc.c
  1.19      +3 -1      src/libexec/rtld-elf/i386/reloc.c
  1.17      +8 -2      src/libexec/rtld-elf/map_object.c
  1.6       +3 -1      src/libexec/rtld-elf/powerpc/reloc.c
  1.109     +489 -123  src/libexec/rtld-elf/rtld.c
  1.37      +34 -3     src/libexec/rtld-elf/rtld.h
  1.12      +3 -1      src/libexec/rtld-elf/sparc64/reloc.c
  1.11      +38 -0     src/sys/sys/elf32.h
  1.14      +34 -0     src/sys/sys/elf64.h
  1.17      +25 -0     src/sys/sys/elf_common.h
  1.8       +5 -0      src/sys/sys/elf_generic.h

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 20:26:18 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id A791D16A41F;
	Sun, 18 Dec 2005 20:26: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 D0A8243D62;
	Sun, 18 Dec 2005 20:26: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 jBIKQCkP011926;
	Sun, 18 Dec 2005 20:26:12 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIKQCiw011925;
	Sun, 18 Dec 2005 20:26:12 GMT (envelope-from glebius)
Message-Id: <200512182026.jBIKQCiw011925@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Sun, 18 Dec 2005 20:26: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/dev/bge if_bge.c if_bgereg.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 20:26:18 -0000

glebius     2005-12-18 20:26:12 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/bge          if_bge.c if_bgereg.h 
  Log:
  Since BGE_MBX_TX_HOST_PROD0_LO register is write-only to software,
  we can cache its value in the softc. Eliminates one PCI register
  write per call to bge_start().
  
  A 1.8% speedup for UDP_RR test on my old box.
  
  Obtained from:  NetBSD(jonathan) via delphij
  
  Revision  Changes    Path
  1.108     +10 -4     src/sys/dev/bge/if_bge.c
  1.41      +1 -0      src/sys/dev/bge/if_bgereg.h

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 21:40:18 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7186C16A41F;
	Sun, 18 Dec 2005 21:40:18 +0000 (GMT) (envelope-from alc@cs.rice.edu)
Received: from cs.rice.edu (cs.rice.edu [128.42.1.30])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0A9F743D53;
	Sun, 18 Dec 2005 21:40:18 +0000 (GMT) (envelope-from alc@cs.rice.edu)
Received: from localhost (calypso.cs.rice.edu [128.42.1.127])
	by cs.rice.edu (Postfix) with ESMTP id 3F8E04A9AD;
	Sun, 18 Dec 2005 15:40:17 -0600 (CST)
Received: from cs.rice.edu ([128.42.1.30])
	by localhost (calypso.cs.rice.edu [128.42.1.127]) (amavisd-new,
	port 10024)
	with LMTP id 13149-01-100; Sun, 18 Dec 2005 15:40:16 -0600 (CST)
Received: by cs.rice.edu (Postfix, from userid 19572)
	id A38A64A9E4; Sun, 18 Dec 2005 15:40:16 -0600 (CST)
Date: Sun, 18 Dec 2005 15:40:16 -0600
From: Alan Cox <alc@cs.rice.edu>
To: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Message-ID: <20051218214016.GA10163@cs.rice.edu>
References: <200512161834.jBGIYEnv092676@repoman.freebsd.org>
	<20051218032053.GD80713@garage.freebsd.pl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20051218032053.GD80713@garage.freebsd.pl>
User-Agent: Mutt/1.4.2i
X-Virus-Scanned: by amavis-2.2.1 at cs.rice.edu
Cc: Alan Cox <alc@FreeBSD.org>, cvs-src@FreeBSD.org, src-committers@FreeBSD.org,
	cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/kern imgact_elf.c src/sys/vm vm_extern.h
	vm_glue.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 21:40:18 -0000

On Sun, Dec 18, 2005 at 04:20:53AM +0100, Pawel Jakub Dawidek wrote:
> On Fri, Dec 16, 2005 at 06:34:14PM +0000, Alan Cox wrote:
> +> alc         2005-12-16 18:34:14 UTC
> +> 
> +>   FreeBSD src repository
> +> 
> +>   Modified files:
> +>     sys/kern             imgact_elf.c 
> +>     sys/vm               vm_extern.h vm_glue.c 
> +>   Log:
> +>   Use sf_buf_alloc() instead of vm_map_find() on exec_map to create the
> +>   ephemeral mappings that are used as the source for three copy
> +>   operations from kernel space to user space.  There are two reasons for
> +>   making this change: (1) Under heavy load exec_map can fill up causing
> +>   vm_map_find() to fail.  When it fails, the nascent process is aborted
> +>   (SIGABRT).  Whereas, this reimplementation using sf_buf_alloc()
> +>   sleeps.  (2) Although it is possible to sleep on vm_map_find()'s
> +>   failure until address space becomes available (see kmem_alloc_wait()),
> +>   using sf_buf_alloc() is faster.  Furthermore, the reimplementation
> +>   uses a CPU private mapping, avoiding a TLB shootdown on
> +>   multiprocessors.
> 
> I got panic on boot with this change (maybe because I've DEBUG_VFS_LOCKS
> compiled into the kernel):
> 
> Trying to mount root from ufs:/dev/ad0s1a
> KDB: stack backtrace:
> vfs_badlock() at vfs_badlock+0x95
> assert_vop_locked() at assert_vop_locked+0x77
> VOP_GETPAGES_APV() at VOP_GETPAGES_APV+0x8a
> vnode_pager_getpages() at vnode_pager_getpages+0x92
> vm_imgact_map_page() at vm_imgact_map_page+0x84
> elf64_load_section() at elf64_load_section+0xe9
> exec_elf64_imgact() at exec_elf64_imgact+0x336
> kern_execve() at kern_execve+0x457
> execve() at execve+0x5d
> start_init() at start_init+0x249
> fork_exit() at fork_exit+0xbb
> fork_trampoline() at fork_trampoline+0xe
> --- trap 0, rip = 0, rsp = 0xffffffffb280dd40, rbp = 0 ---
> VOP_GETPAGES: 0xffffff0009848200 is not locked but should be
> KDB: enter: lock violation
> [thread pid 1 tid 100004 ]
> Stopped at      kdb_enter+0x2f: nop     
> 

Yes, DEBUG_VFS_LOCKS is showing that I need to update the VOP locking.
Thanks.

Alan
 

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 21:46:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 3FC2116A41F;
	Sun, 18 Dec 2005 21:46:48 +0000 (GMT) (envelope-from bde@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id B9CC743D55;
	Sun, 18 Dec 2005 21:46:47 +0000 (GMT) (envelope-from bde@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 jBILklj1022927;
	Sun, 18 Dec 2005 21:46:47 GMT (envelope-from bde@repoman.freebsd.org)
Received: (from bde@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBILklft022926;
	Sun, 18 Dec 2005 21:46:47 GMT (envelope-from bde)
Message-Id: <200512182146.jBILklft022926@repoman.freebsd.org>
From: Bruce Evans <bde@FreeBSD.org>
Date: Sun, 18 Dec 2005 21:46: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/lib/msun/src s_cbrt.c s_cbrtf.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 21:46:48 -0000

bde         2005-12-18 21:46:47 UTC

  FreeBSD src repository

  Modified files:
    lib/msun/src         s_cbrt.c s_cbrtf.c 
  Log:
  Fixed code to match comments and the algorithm:
  - in preparing for the third approximation, actually make t larger in
    magnitude than cbrt(x).  After chopping, t must be incremented by 2
    ulps to make it larger, not 1 ulp since chopping can reduce it by
    almost 1 ulp and it might already be up to half a different-sized-ulp
    smaller than cbrt(x).  I have not found any cases where this is
    essential, but the think-time error bound depends on it.  The relative
    smallness of the different-sized-ulp limited the bug.  If there are
    cases where this is essential, then the final error bound would be
    5/6+epsilon instead of of 4/6+epsilon ulps (still < 1).
  - in preparing for the third approximation, round more carefully (but
    still sloppily to avoid branches) so that the claimed error bound of
    0.667 ulps is satisfied in all cases tested for cbrt() and remains
    satisfied in all cases for cbrtf().  There isn't enough spare precision
    for very sloppy rounding to work:
    - in cbrt(), even with the inadequate increment, the actual error was
      0.6685 in some cases, and correcting the increment increased this
      a little.  The fix uses sloppy rounding to 25 bits instead of very
      sloppy rounding to 21 bits, and starts using uint64_t instead of 2
      words for bit manipulation so that rounding more bits is not much
      costly.
    - in cbrtf(), the 0.667 bound was already satisfied even with the
      inadequate increment, but change the code to almost match cbrt()
      anyway.  There is not enough spare precision in the Newton
      approximation to double the inadequate increment without exceeding
      the 0.667 bound, and no spare precision to avoid this problem as
      in cbrt().  The fix is to round using an increment of 2 smaller-ulps
      before chopping so that an increment of 1 ulp is enough.  In cbrt(),
      we essentially do the same, but move the chop point so that the
      increment of 1 is not needed.
  
  Fixed comments to match code:
  - in cbrt(), the second approximation is good to 25 bits, not quite 26 bits.
  - in cbrt(), don't claim that the second approximation may be implemented
    in single precision.  Single precision cannot handle the full exponent
    range without minor but pessimal changes to renormalize, and although
    single precision is enough, 25 bit precision is now claimed and used.
  
  Added comments about some of the magic for the error bound 4/6+epsilon.
  I still don't understand why it is 4/6+ and not 6/6+ ulps.
  
  Indent comments at the right of code more consistently.
  
  Revision  Changes    Path
  1.12      +27 -12    src/lib/msun/src/s_cbrt.c
  1.13      +16 -9     src/lib/msun/src/s_cbrtf.c

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 22:25:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E284716A41F;
	Sun, 18 Dec 2005 22:25:43 +0000 (GMT) (envelope-from flz@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9C8D343D49;
	Sun, 18 Dec 2005 22:25:43 +0000 (GMT) (envelope-from flz@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 jBIMPhDS025316;
	Sun, 18 Dec 2005 22:25:43 GMT (envelope-from flz@repoman.freebsd.org)
Received: (from flz@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBIMPhdD025315;
	Sun, 18 Dec 2005 22:25:43 GMT (envelope-from flz)
Message-Id: <200512182225.jBIMPhdD025315@repoman.freebsd.org>
From: Florent Thoumie <flz@FreeBSD.org>
Date: Sun, 18 Dec 2005 22:25: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/dev/usb usb_quirks.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 22:25:44 -0000

flz         2005-12-18 22:25:43 UTC

  FreeBSD src repository (ports committer)

  Modified files:
    sys/dev/usb          usb_quirks.c usbdevs 
  Log:
  - Add ProductID for the iPod Nano.
  
  Reported by:    Nathan Kay <mcnate@numenor.net>
  Approved by:    ssouhlal
  MFC after:      3 days
  
  Revision  Changes    Path
  1.44      +1 -0      src/sys/dev/usb/usb_quirks.c
  1.237     +1 -0      src/sys/dev/usb/usbdevs

From owner-cvs-src@FreeBSD.ORG  Sun Dec 18 23:52:10 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6721A16A41F;
	Sun, 18 Dec 2005 23:52:10 +0000 (GMT)
	(envelope-from marcel@xcllnt.net)
Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226])
	by mx1.FreeBSD.org (Postfix) with ESMTP id D8CEC43D5E;
	Sun, 18 Dec 2005 23:52:09 +0000 (GMT)
	(envelope-from marcel@xcllnt.net)
Received: from [192.168.4.250] (dhcp50.pn.xcllnt.net [192.168.4.250])
	by ns1.xcllnt.net (8.13.4/8.13.4) with ESMTP id jBINq7mE031672;
	Sun, 18 Dec 2005 15:52:08 -0800 (PST)
	(envelope-from marcel@xcllnt.net)
In-Reply-To: <200512181943.jBIJhYpg010376@repoman.freebsd.org>
References: <200512181943.jBIJhYpg010376@repoman.freebsd.org>
Mime-Version: 1.0 (Apple Message framework v746.2)
Content-Type: text/plain; charset=US-ASCII; format=flowed
Message-Id: <78F1C636-DB7C-4BCD-B784-A02FE9FFA48A@xcllnt.net>
Content-Transfer-Encoding: 7bit
From: Marcel Moolenaar <marcel@xcllnt.net>
Date: Sun, 18 Dec 2005 15:52:07 -0800
To: Alexander Kabaev <kan@FreeBSD.org>
X-Mailer: Apple Mail (2.746.2)
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/include dlfcn.h src/lib/libc/gen dlfcn.c
	src/libexec/rtld-elf map_object.c rtld.c rtld.h
	src/libexec/rtld-elf/alpha reloc.c src/libexec/rtld-elf/amd64
	reloc.c src/libexec/rtld-elf/arm reloc.c
	src/libexec/rtld-elf/i386 ...
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 18 Dec 2005 23:52:10 -0000

On Dec 18, 2005, at 11:43 AM, Alexander Kabaev wrote:

>   Log:
>   Implement ELF symbol versioning using GNU semantics.

Nice!

-- 
  Marcel Moolenaar         USPA: A-39004          marcel@xcllnt.net



From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 00:13:12 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8540C16A41F;
	Mon, 19 Dec 2005 00:13:12 +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 3AEB243D5E;
	Mon, 19 Dec 2005 00:13:12 +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 jBJ0DCu3031769;
	Mon, 19 Dec 2005 00:13:12 GMT
	(envelope-from marcel@repoman.freebsd.org)
Received: (from marcel@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ0DCc6031768;
	Mon, 19 Dec 2005 00:13:12 GMT (envelope-from marcel)
Message-Id: <200512190013.jBJ0DCc6031768@repoman.freebsd.org>
From: Marcel Moolenaar <marcel@FreeBSD.org>
Date: Mon, 19 Dec 2005 00:13: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/sys param.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 00:13:12 -0000

marcel      2005-12-19 00:13:11 UTC

  FreeBSD src repository

  Modified files:
    sys/sys              param.h 
  Log:
  Bump __FreeBSD_version to 700009 because:
  1. The ELF-64 typedefs are now standardized, so that the libelf port
     (devel/libelf) does not need to compensate for not having the
     Elf64_Xword and Elf64_Sxword types.
  2. ELF Symbol versioning support has been added. This also affects
     the libelf port (though configure should detect this correctly).
  
  Revision  Changes    Path
  1.257     +1 -1      src/sys/sys/param.h

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 00:22:04 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 274A116A41F;
	Mon, 19 Dec 2005 00:22:04 +0000 (GMT) (envelope-from bde@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9B48543D68;
	Mon, 19 Dec 2005 00:22:03 +0000 (GMT) (envelope-from bde@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 jBJ0M3n5032201;
	Mon, 19 Dec 2005 00:22:03 GMT (envelope-from bde@repoman.freebsd.org)
Received: (from bde@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ0M3gH032200;
	Mon, 19 Dec 2005 00:22:03 GMT (envelope-from bde)
Message-Id: <200512190022.jBJ0M3gH032200@repoman.freebsd.org>
From: Bruce Evans <bde@FreeBSD.org>
Date: Mon, 19 Dec 2005 00:22: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/lib/msun/src s_cbrt.c s_cbrtf.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 00:22:04 -0000

bde         2005-12-19 00:22:03 UTC

  FreeBSD src repository

  Modified files:
    lib/msun/src         s_cbrt.c s_cbrtf.c 
  Log:
  Use a minimax polynomial approximation instead of a Pade rational
  function approximation for the second step.  The polynomial has degree
  2 for cbrtf() and 4 for cbrt().  These degrees are minimal for the final
  accuracy to be essentially the same as before (slightly smaller).
  Adjust the rounding between steps 2 and 3 to match.  Unfortunately,
  for cbrt(), this breaks the claimed accuracy slightly although incorrect
  rounding doesn't.  Claim less accuracy since its not worth pessimizing
  the polynomial or relying on exhaustive testing to get insignificantly
  more accuracy.
  
  This saves about 30 cycles on Athlons (mainly by avoiding 2 divisions)
  so it gives an overall optimization in the 10-25% range (a larger
  percentage for float precision, especially in 32-bit mode, since other
  overheads are more dominant for double precision, surprisingly more
  in 32-bit mode).
  
  Revision  Changes    Path
  1.13      +21 -26    src/lib/msun/src/s_cbrt.c
  1.14      +9 -11     src/lib/msun/src/s_cbrtf.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 01:17:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id F1A8A16A41F
	for <cvs-src@freebsd.org>; Mon, 19 Dec 2005 01:17:21 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12])
	by mx1.FreeBSD.org (Postfix) with SMTP id 3F1D343D49
	for <cvs-src@freebsd.org>; Mon, 19 Dec 2005 01:17:21 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: (qmail 94506 invoked by uid 399); 19 Dec 2005 01:17:20 -0000
Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1)
	by localhost with SMTP; 19 Dec 2005 01:17:20 -0000
Message-ID: <43A60A1F.4090200@FreeBSD.org>
Date: Sun, 18 Dec 2005 17:17:19 -0800
From: Doug Barton <dougb@FreeBSD.org>
Organization: http://www.FreeBSD.org/
User-Agent: Thunderbird 1.5 (X11/20051203)
MIME-Version: 1.0
To: Alexander Leidinger <Alexander@Leidinger.net>
References: <200512102021.jBAKLk0v038487@repoman.freebsd.org>	<1134253112.61298.9.camel@S01060080c83f4fb0.su.shawcable.net>	<439B5E83.1090702@FreeBSD.org>
	<20051211165514.49001ea3@Magellan.Leidinger.net>
In-Reply-To: <20051211165514.49001ea3@Magellan.Leidinger.net>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Cc: cvs-src@freebsd.org, Adam Gregoire <ebola@psychoholics.org>
Subject: Re: cvs commit: src/etc rc src/etc/defaults rc.conf src/etc/rc.d
 devfs dumpon initrandom rcconf.sh resolv src/share/man/man5 rc.conf.5
 src/share/man/man8 diskless.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 01:17:22 -0000

Alexander Leidinger wrote:
> On Sat, 10 Dec 2005 15:02:27 -0800
> Doug Barton <dougb@freebsd.org> wrote:
> 
>> Adam Gregoire wrote:
>>
>>> A diff for the addition of rcconf.sh to Obsoletefiles.inc.
>> Thanks. I want to hold off on that till we're 100% sure it can go away. I'm 
>> about 95% sure now.
> 
> Just a little thing to think about: where do we want to handle this, in
> mergemaster, or in ObsoleteFiles.inc?

Sorry it took so long to get back to you on this. Including the files in the 
obsolete file list won't hurt anything, and could make mergemaster easier 
for those that use the obsolete file service.

Doug

-- 

     This .signature sanitized for your protection


From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 01:51:18 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5D06816A41F;
	Mon, 19 Dec 2005 01:51:18 +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 1576143D5C;
	Mon, 19 Dec 2005 01:51:18 +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 jBJ1pHm0042786;
	Mon, 19 Dec 2005 01:51:17 GMT
	(envelope-from marcel@repoman.freebsd.org)
Received: (from marcel@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ1pHqx042785;
	Mon, 19 Dec 2005 01:51:17 GMT (envelope-from marcel)
Message-Id: <200512190151.jBJ1pHqx042785@repoman.freebsd.org>
From: Marcel Moolenaar <marcel@FreeBSD.org>
Date: Mon, 19 Dec 2005 01:51: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/share/man/man5 elf.5
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 01:51:18 -0000

marcel      2005-12-19 01:51:17 UTC

  FreeBSD src repository

  Modified files:
    share/man/man5       elf.5 
  Log:
  Update the date. Forgotten in previous commit.
  
  Revision  Changes    Path
  1.33      +1 -1      src/share/man/man5/elf.5

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 01:58:30 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9F65016A41F
	for <cvs-src@freebsd.org>; Mon, 19 Dec 2005 01:58:30 +0000 (GMT)
	(envelope-from travellers.dream.hunter@gmail.com)
Received: from smtp104.rog.mail.re2.yahoo.com (smtp104.rog.mail.re2.yahoo.com
	[206.190.36.82]) by mx1.FreeBSD.org (Postfix) with SMTP id 0378143D49
	for <cvs-src@freebsd.org>; Mon, 19 Dec 2005 01:58:29 +0000 (GMT)
	(envelope-from travellers.dream.hunter@gmail.com)
Received: (qmail 55449 invoked from network); 19 Dec 2005 01:58:28 -0000
Received: from unknown (HELO SCOCHRANE1.americas.hpqcorp.net)
	(ddingn238@rogers.com@70.25.169.190 with plain)
	by smtp104.rog.mail.re2.yahoo.com with SMTP; 19 Dec 2005 01:58:28 -0000
To: cvs-src@freebsd.org
From: travellers.dream.hunter@gmail.com
Date: Sun, 18 Dec 2005 20:58:26 -0500
Message-ID: <20051219015826.948.32789@SCOCHRANE1.americas.hpqcorp.net>
Mime-version: 1.0
Content-type: Multipart/mixed; boundary="===============1748642019=="
Subject: Always get the lowest vacation, not a dream
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 01:58:30 -0000

Mime message

--===============1748642019==
Content-type: text/plain
Content-transfer-encoding: 7bit


To ensure your Hunter Service is delivered to your inbox, be sure to add travellers.dream.hunter@gmail.com to your email address book or contact list.

Travellers Dream Hunter (Xmas Sale Coupon: SAMX-74P3-ER)

How can I save bucks, moneys, $$,  for my dream trip?

When will be the best deal, the cheapest price, the lowest price to go to Vegas, Bahamas, Barbados, Caribbean, Europe, France, or wherever?

Expedia, Travelocity, Itravel2000, Priceline, Orbitz, Escapenow, Hotel.com. Who is offering the best deal? When are they offering the best deal?

I have a fixed vacation schedule,   when is the most suitable time to place my order?

I only want non-stop flight, but I still want the best deal, the cheapest price, the lowest price. How can I get it?

I only want to stay in 4-star hotel, but I still want the best deal, the cheapest price, the lowest price. How can I get it?

Your dream and your answer can be fulfilled by Travellers Dream Hunter, your best tools for your vacation, trip and travel planning. 

Grasp the Chances, Save the Bucks!!!

Want to know more details: http://www.google.ca/search?hl=en&q=%22traveller%27s+dream+hunter%22&btnG=Google+Search&meta=

Note: You received this email, only because you subscribed to Hunter service. To remove yourself from the mailing list, 

please simply sendmail email to travellers.dream.hunter@gmail.com, subject 'Unscribe'.


--===============1748642019==--


From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 02:26:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 23FFB16A41F
	for <cvs-src@freebsd.org>; Mon, 19 Dec 2005 02:26:48 +0000 (GMT)
	(envelope-from travellers.dream.hunter@gmail.com)
Received: from priv-edtnes46.telusplanet.net (defout.telus.net
	[199.185.220.240])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 6BF1043D66
	for <cvs-src@freebsd.org>; Mon, 19 Dec 2005 02:26:47 +0000 (GMT)
	(envelope-from travellers.dream.hunter@gmail.com)
Received: from [192.168.1.140] (really [207.219.37.163])
	by priv-edtnes46.telusplanet.net
	(InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id
	<20051219022646.TPCM11710.priv-edtnes46.telusplanet.net@[192.168.1.140]>
	for <cvs-src@freebsd.org>; Sun, 18 Dec 2005 19:26:46 -0700
To: cvs-src@freebsd.org
From: travellers.dream.hunter@gmail.com
Date: Sun, 18 Dec 2005 21:26:52 -0500
Message-ID: <20051219022652.1548.22680@suting>
Mime-version: 1.0
Content-type: Multipart/mixed; boundary="===============0957040824=="
Subject: Always get the lowest vacation, not a dream
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 02:26:48 -0000

Mime message

--===============0957040824==
Content-type: text/plain
Content-transfer-encoding: 7bit


To ensure your Hunter Service is delivered to your inbox, be sure to add travellers.dream.hunter@gmail.com to your email address book or contact list.

Travellers Dream Hunter (Xmas Sale Coupon: SAMX-74P3-ER)

How can I save bucks, moneys, $$,  for my dream trip?

When will be the best deal, the cheapest price, the lowest price to go to Vegas, Bahamas, Barbados, Caribbean, Europe, France, or wherever?

Expedia, Travelocity, Itravel2000, Priceline, Orbitz, Escapenow, Hotel.com. Who is offering the best deal? When are they offering the best deal?

I have a fixed vacation schedule,   when is the most suitable time to place my order?

I only want non-stop flight, but I still want the best deal, the cheapest price, the lowest price. How can I get it?

I only want to stay in 4-star hotel, but I still want the best deal, the cheapest price, the lowest price. How can I get it?

Your dream and your answer can be fulfilled by Travellers Dream Hunter, your best tools for your vacation, trip and travel planning. 

Grasp the Chances, Save the Bucks!!!

Want to know more details: http://www.google.ca/search?hl=en&q=%22traveller%27s+dream+hunter%22&btnG=Google+Search&meta=

Note: You received this email, only because you subscribed to Hunter service. To remove yourself from the mailing list, 

please simply sendmail email to travellers.dream.hunter@gmail.com, subject 'Unscribe'.


--===============0957040824==--

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 02:55:45 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B06B116A41F;
	Mon, 19 Dec 2005 02:55:45 +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 5D5C143D4C;
	Mon, 19 Dec 2005 02:55:45 +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 jBJ2tjLk045008;
	Mon, 19 Dec 2005 02:55:45 GMT
	(envelope-from jkoshy@repoman.freebsd.org)
Received: (from jkoshy@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ2tj9x045007;
	Mon, 19 Dec 2005 02:55:45 GMT (envelope-from jkoshy)
Message-Id: <200512190255.jBJ2tj9x045007@repoman.freebsd.org>
From: Joseph Koshy <jkoshy@FreeBSD.org>
Date: Mon, 19 Dec 2005 02:55: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/sbin/devd devd.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 02:55:45 -0000

jkoshy      2005-12-19 02:55:45 UTC

  FreeBSD src repository

  Modified files:
    sbin/devd            devd.8 
  Log:
  Rev 1.15 should have incremented the date on this manual page.
  
  Revision  Changes    Path
  1.16      +1 -1      src/sbin/devd/devd.8

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:02:55 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7E3D816A41F;
	Mon, 19 Dec 2005 03:02:55 +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 1348843D53;
	Mon, 19 Dec 2005 03:02:55 +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 jBJ32s50045418;
	Mon, 19 Dec 2005 03:02:54 GMT (envelope-from pjd@repoman.freebsd.org)
Received: (from pjd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ32sGS045417;
	Mon, 19 Dec 2005 03:02:54 GMT (envelope-from pjd)
Message-Id: <200512190302.jBJ32sGS045417@repoman.freebsd.org>
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:02: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/sys mount.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:02:55 -0000

pjd         2005-12-19 03:02:54 UTC

  FreeBSD src repository

  Modified files:
    sys/sys              mount.h 
  Log:
  - Document another spare flag (0x00000010).
  - Add a 'XXX' comment about MNT_ACLS and MNT_BYFSID flags collision and
    explain why it is harmless.
  - Add a colon after 'XXX' for consistency.
  
  Revision  Changes    Path
  1.203     +4 -1      src/sys/sys/mount.h

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:15:50 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id CA0DA16A41F;
	Mon, 19 Dec 2005 03:15:50 +0000 (GMT)
	(envelope-from obrien@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 79DD643D4C;
	Mon, 19 Dec 2005 03:15:50 +0000 (GMT)
	(envelope-from obrien@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 jBJ3FoFZ046160;
	Mon, 19 Dec 2005 03:15:50 GMT
	(envelope-from obrien@repoman.freebsd.org)
Received: (from obrien@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ3Fods046159;
	Mon, 19 Dec 2005 03:15:50 GMT (envelope-from obrien)
Message-Id: <200512190315.jBJ3Fods046159@repoman.freebsd.org>
From: "David E. O'Brien" <obrien@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:15: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 UPDATING
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:15:51 -0000

obrien      2005-12-19 03:15:50 UTC

  FreeBSD src repository

  Modified files:
    .                    UPDATING 
  Log:
  Note the device filename changes due to sys/dev/rp/rp.c rev 1.70.
  
  Revision  Changes    Path
  1.430     +4 -0      src/UPDATING

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:18:49 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0260616A41F;
	Mon, 19 Dec 2005 03:18:49 +0000 (GMT)
	(envelope-from obrien@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A8B7643D58;
	Mon, 19 Dec 2005 03:18:48 +0000 (GMT)
	(envelope-from obrien@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 jBJ3ImdJ046298;
	Mon, 19 Dec 2005 03:18:48 GMT
	(envelope-from obrien@repoman.freebsd.org)
Received: (from obrien@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ3ImkX046297;
	Mon, 19 Dec 2005 03:18:48 GMT (envelope-from obrien)
Message-Id: <200512190318.jBJ3ImkX046297@repoman.freebsd.org>
From: "David E. O'Brien" <obrien@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:18: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/share/man/man4 rp.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:18:49 -0000

obrien      2005-12-19 03:18:48 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       rp.4 
  Log:
  Catch up with device filename changes due to sys/dev/rp/rp.c rev 1.70.
  
  Revision  Changes    Path
  1.6       +2 -2      src/share/man/man4/rp.4

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:20:56 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 907C916A41F;
	Mon, 19 Dec 2005 03:20:56 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 21F9843D49;
	Mon, 19 Dec 2005 03:20:56 +0000 (GMT)
	(envelope-from davidxu@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 jBJ3Ku6g046556;
	Mon, 19 Dec 2005 03:20:56 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ3Kub4046555;
	Mon, 19 Dec 2005 03:20:56 GMT (envelope-from davidxu)
Message-Id: <200512190320.jBJ3Kub4046555@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:20: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/lib/libthr/thread thr_join.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:20:56 -0000

davidxu     2005-12-19 03:20:55 UTC

  FreeBSD src repository

  Modified files:
    lib/libthr/thread    thr_join.c 
  Log:
  Clear return code to zero if joiner successfully waited joinee.
  
  Bug reported by: jasone at connonware when using ports lang/onyx
  MFC after: 3 days
  
  Revision  Changes    Path
  1.20      +1 -0      src/lib/libthr/thread/thr_join.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:27:30 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0B04516A41F;
	Mon, 19 Dec 2005 03: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 3184943D66;
	Mon, 19 Dec 2005 03:27:29 +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 jBJ3RT6B046897;
	Mon, 19 Dec 2005 03:27:29 GMT (envelope-from pjd@repoman.freebsd.org)
Received: (from pjd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ3RTYA046896;
	Mon, 19 Dec 2005 03:27:29 GMT (envelope-from pjd)
Message-Id: <200512190327.jBJ3RTYA046896@repoman.freebsd.org>
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:27:29 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/share/man/man4 umass.4 src/sys/cam/scsi scsi_da.c
 src/sys/dev/usb umass.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:27:30 -0000

pjd         2005-12-19 03:27:28 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       umass.4 
    sys/cam/scsi         scsi_da.c 
    sys/dev/usb          umass.c usbdevs 
  Log:
  Allow to use TransFlash drive, which can be found in Motorola E398 Mobile Phone.
  
  PR:             usb/89889
  Submitted by:   Wojciech A. Koszek <dunstan@freebsd.czest.pl>
  MFC after:      1 week
  
  Revision  Changes    Path
  1.41      +2 -0      src/share/man/man4/umass.4
  1.182     +9 -0      src/sys/cam/scsi/scsi_da.c
  1.125     +4 -0      src/sys/dev/usb/umass.c
  1.238     +1 -0      src/sys/dev/usb/usbdevs

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:33:09 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id F1D9316A42A;
	Mon, 19 Dec 2005 03:33:08 +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 F18C643D73;
	Mon, 19 Dec 2005 03:33:05 +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 jBJ3X5Pj047263;
	Mon, 19 Dec 2005 03:33:05 GMT
	(envelope-from jkoshy@repoman.freebsd.org)
Received: (from jkoshy@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ3X53G047262;
	Mon, 19 Dec 2005 03:33:05 GMT (envelope-from jkoshy)
Message-Id: <200512190333.jBJ3X53G047262@repoman.freebsd.org>
From: Joseph Koshy <jkoshy@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:33:05 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sbin/devd devd.8 devd.cc
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:33:09 -0000

jkoshy      2005-12-19 03:33:05 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sbin/devd            devd.8 devd.cc 
  Log:
  MFC {devd.8 r1.15,1.16; devd.cc r1.29}
  
   "Add a -f configfile option to devd(8), based on a patch submitted by
    Wojciech A. Koszek."
  
  Revision  Changes    Path
  1.14.2.1  +27 -4     src/sbin/devd/devd.8
  1.22.2.5  +7 -2      src/sbin/devd/devd.cc

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:43:49 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id CFA6916A41F;
	Mon, 19 Dec 2005 03:43:49 +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 2E34A43D60;
	Mon, 19 Dec 2005 03:43:49 +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 jBJ3hnne047885;
	Mon, 19 Dec 2005 03:43:49 GMT (envelope-from pjd@repoman.freebsd.org)
Received: (from pjd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ3hnls047884;
	Mon, 19 Dec 2005 03:43:49 GMT (envelope-from pjd)
Message-Id: <200512190343.jBJ3hnls047884@repoman.freebsd.org>
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:43: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/cam/scsi scsi_da.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:43:50 -0000

pjd         2005-12-19 03:43:48 UTC

  FreeBSD src repository

  Modified files:
    sys/cam/scsi         scsi_da.c 
  Log:
  Style nit.
  
  Revision  Changes    Path
  1.183     +2 -2      src/sys/cam/scsi/scsi_da.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 03:49:15 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id ACC9316A41F;
	Mon, 19 Dec 2005 03:49:15 +0000 (GMT)
	(envelope-from obrien@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 4914943D46;
	Mon, 19 Dec 2005 03:49:15 +0000 (GMT)
	(envelope-from obrien@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 jBJ3nFC6048100;
	Mon, 19 Dec 2005 03:49:15 GMT
	(envelope-from obrien@repoman.freebsd.org)
Received: (from obrien@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ3nFBT048099;
	Mon, 19 Dec 2005 03:49:15 GMT (envelope-from obrien)
Message-Id: <200512190349.jBJ3nFBT048099@repoman.freebsd.org>
From: "David E. O'Brien" <obrien@FreeBSD.org>
Date: Mon, 19 Dec 2005 03:49: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/share/man/man4 rp.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 03:49:15 -0000

obrien      2005-12-19 03:49:15 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       rp.4 
  Log:
  Fix a benign typo in case it actually makes a difference to type setters.
  
  Noticed by:     pjd
  
  Revision  Changes    Path
  1.7       +1 -1      src/share/man/man4/rp.4

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 05:52:38 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DA29616A41F;
	Mon, 19 Dec 2005 05:52:38 +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 8784343D4C;
	Mon, 19 Dec 2005 05:52:38 +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 jBJ5qcll059703;
	Mon, 19 Dec 2005 05:52:38 GMT
	(envelope-from avatar@repoman.freebsd.org)
Received: (from avatar@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ5qc28059702;
	Mon, 19 Dec 2005 05:52:38 GMT (envelope-from avatar)
Message-Id: <200512190552.jBJ5qc28059702@repoman.freebsd.org>
From: Tai-hwa Liang <avatar@FreeBSD.org>
Date: Mon, 19 Dec 2005 05:52:38 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sbin/mount_cd9660 mount_cd9660.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 05:52:39 -0000

avatar      2005-12-19 05:52:38 UTC

  FreeBSD src repository

  Modified files:
    sbin/mount_cd9660    mount_cd9660.c 
  Log:
  Fixing multi-session disc mount by passing the correct "ssector" option
  to the kernel.
  
  Submitted by:   Enache Adrian <enache at rdslink dot ro>
  
  Revision  Changes    Path
  1.33      +1 -1      src/sbin/mount_cd9660/mount_cd9660.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 06:05:41 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9271716A41F;
	Mon, 19 Dec 2005 06:05: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 2E34A43D60;
	Mon, 19 Dec 2005 06:05:41 +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 jBJ65fuB060186;
	Mon, 19 Dec 2005 06:05:41 GMT (envelope-from pjd@repoman.freebsd.org)
Received: (from pjd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ65flu060185;
	Mon, 19 Dec 2005 06:05:41 GMT (envelope-from pjd)
Message-Id: <200512190605.jBJ65flu060185@repoman.freebsd.org>
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Date: Mon, 19 Dec 2005 06:05:40 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/geom/nop g_nop.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 06:05:41 -0000

pjd         2005-12-19 06:05:40 UTC

  FreeBSD src repository

  Modified files:
    sys/geom/nop         g_nop.c 
  Log:
  MFp4:   Typo fix (without it the XML GEOM tree wasn't consistent).
  
  Reported by:    Eric Anderson <anderson@centtech.com>
  
  Revision  Changes    Path
  1.14      +1 -1      src/sys/geom/nop/g_nop.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 07:02:11 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C05B416A41F;
	Mon, 19 Dec 2005 07:02:11 +0000 (GMT)
	(envelope-from Alexander@Leidinger.net)
Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246])
	by mx1.FreeBSD.org (Postfix) with ESMTP id E925B43D58;
	Mon, 19 Dec 2005 07:02:07 +0000 (GMT)
	(envelope-from Alexander@Leidinger.net)
Received: from Andro-Beta.Leidinger.net (p54A5D1D1.dip.t-dialin.net
	[84.165.209.209]) (authenticated bits=0)
	by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id
	jBJ71L49012973; Mon, 19 Dec 2005 08:01:22 +0100 (CET)
	(envelope-from Alexander@Leidinger.net)
Received: from localhost (localhost [127.0.0.1])
	by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id
	jBJ723q3084726; Mon, 19 Dec 2005 08:02:03 +0100 (CET)
	(envelope-from Alexander@Leidinger.net)
Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by
	webmail.leidinger.net (Horde MIME library) with HTTP; Mon, 19 Dec 2005
	08:02:02 +0100
Message-ID: <20051219080202.r66mwg2dq80g4wc0@netchild.homeip.net>
X-Priority: 3 (Normal)
Date: Mon, 19 Dec 2005 08:02:02 +0100
From: Alexander Leidinger <Alexander@Leidinger.net>
To: Doug Barton <dougb@FreeBSD.org>
References: <200512102021.jBAKLk0v038487@repoman.freebsd.org>
	<1134253112.61298.9.camel@S01060080c83f4fb0.su.shawcable.net>
	<439B5E83.1090702@FreeBSD.org>
	<20051211165514.49001ea3@Magellan.Leidinger.net>
	<43A60A1F.4090200@FreeBSD.org>
In-Reply-To: <43A60A1F.4090200@FreeBSD.org>
MIME-Version: 1.0
Content-Type: text/plain;
	charset=UTF-8;
	format="flowed"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11
X-Virus-Scanned: by amavisd-new
Cc: cvs-src@FreeBSD.org, Adam Gregoire <ebola@psychoholics.org>
Subject: Re: cvs commit: src/etc rc src/etc/defaults rc.conf src/etc/rc.d
	devfs dumpon initrandom rcconf.sh resolv src/share/man/man5 rc.conf.5
	src/share/man/man8 diskless.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 07:02:11 -0000

Doug Barton <dougb@FreeBSD.org> wrote:

> Alexander Leidinger wrote:
>> On Sat, 10 Dec 2005 15:02:27 -0800
>> Doug Barton <dougb@freebsd.org> wrote:
>>
>>> Adam Gregoire wrote:
>>>
>>>> A diff for the addition of rcconf.sh to Obsoletefiles.inc.
>>> Thanks. I want to hold off on that till we're 100% sure it can go 
>>> away. I'm about 95% sure now.
>>
>> Just a little thing to think about: where do we want to handle this, in
>> mergemaster, or in ObsoleteFiles.inc?
>
> Sorry it took so long to get back to you on this. Including the files 
> in the obsolete file list won't hurt anything, and could make 
> mergemaster easier for those that use the obsolete file service.

It could hurt people which use the obsolete file service, but don't use (or
forget to use) mergemaster. There are other ways to shoot into the own foot
(e.g. by not using mergemaster correctly), so should we care about this
situation, or is this a "please follow the documented procedures" case?

Bye,
Alexander.

-- 
http://www.Leidinger.net  Alexander @ Leidinger.net: PGP ID = B0063FE7
http://www.FreeBSD.org     netchild @ FreeBSD.org  : PGP ID = 72077137
The Tree of Learning bears the noblest fruit, but noble fruit tastes bad.



From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 07:35:45 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C267F16A41F
	for <cvs-src@FreeBSD.org>; Mon, 19 Dec 2005 07:35:45 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12])
	by mx1.FreeBSD.org (Postfix) with SMTP id 12B7F43D55
	for <cvs-src@FreeBSD.org>; Mon, 19 Dec 2005 07:35:44 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: (qmail 67534 invoked by uid 399); 19 Dec 2005 07:35:44 -0000
Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1)
	by localhost with SMTP; 19 Dec 2005 07:35:44 -0000
Message-ID: <43A662CE.7010802@FreeBSD.org>
Date: Sun, 18 Dec 2005 23:35:42 -0800
From: Doug Barton <dougb@FreeBSD.org>
Organization: http://www.FreeBSD.org/
User-Agent: Thunderbird 1.5 (X11/20051203)
MIME-Version: 1.0
To: Alexander Leidinger <Alexander@Leidinger.net>
References: <200512102021.jBAKLk0v038487@repoman.freebsd.org>	<1134253112.61298.9.camel@S01060080c83f4fb0.su.shawcable.net>	<439B5E83.1090702@FreeBSD.org>	<20051211165514.49001ea3@Magellan.Leidinger.net>	<43A60A1F.4090200@FreeBSD.org>
	<20051219080202.r66mwg2dq80g4wc0@netchild.homeip.net>
In-Reply-To: <20051219080202.r66mwg2dq80g4wc0@netchild.homeip.net>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Cc: cvs-src@FreeBSD.org, Adam Gregoire <ebola@psychoholics.org>
Subject: Re: cvs commit: src/etc rc src/etc/defaults rc.conf src/etc/rc.d
 devfs dumpon initrandom rcconf.sh resolv src/share/man/man5
 rc.conf.5	src/share/man/man8 diskless.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 07:35:45 -0000

Alexander Leidinger wrote:
> Doug Barton <dougb@FreeBSD.org> wrote:
> 
>> Alexander Leidinger wrote:
>>> On Sat, 10 Dec 2005 15:02:27 -0800
>>> Doug Barton <dougb@freebsd.org> wrote:
>>>
>>>> Adam Gregoire wrote:
>>>>
>>>>> A diff for the addition of rcconf.sh to Obsoletefiles.inc.
>>>> Thanks. I want to hold off on that till we're 100% sure it can go 
>>>> away. I'm about 95% sure now.
>>>
>>> Just a little thing to think about: where do we want to handle this, in
>>> mergemaster, or in ObsoleteFiles.inc?
>>
>> Sorry it took so long to get back to you on this. Including the files 
>> in the obsolete file list won't hurt anything, and could make 
>> mergemaster easier for those that use the obsolete file service.
> 
> It could hurt people which use the obsolete file service, but don't use (or
> forget to use) mergemaster. There are other ways to shoot into the own foot
> (e.g. by not using mergemaster correctly), so should we care about this
> situation, or is this a "please follow the documented procedures" case?

Not having a script in /etc/rc.d that you need will create an error that is 
noticeable, and very unlikely to be fatal to the boot. Having a stale script 
(possibly with the same stale settings in rc.conf[.local] that used to be 
pertinent), could lead to very messy results.

I don't see anything wrong with adding rc.d stuff to the obsolete file list, 
but it's your call.

Doug


-- 

     This .signature sanitized for your protection


From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 08:26:15 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id AFA6E16A41F;
	Mon, 19 Dec 2005 08:26:15 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9C8CD43D46;
	Mon, 19 Dec 2005 08:26:14 +0000 (GMT)
	(envelope-from davidxu@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 jBJ8QDUT068182;
	Mon, 19 Dec 2005 08:26:14 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ8QC5I068181;
	Mon, 19 Dec 2005 08:26:12 GMT (envelope-from davidxu)
Message-Id: <200512190826.jBJ8QC5I068181@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Mon, 19 Dec 2005 08:26:10 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/kern sched_ule.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 08:26:15 -0000

davidxu     2005-12-19 08:26:09 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             sched_ule.c 
  Log:
  Fix a bug in slice calculation code, current code uses hz but
  sched_clock() is called by state clock.
  
  Submitted by: taku at tackymt dot homeip dot net
  
  Revision  Changes    Path
  1.160     +31 -19    src/sys/kern/sched_ule.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 08:48:58 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C824916A41F;
	Mon, 19 Dec 2005 08:48:58 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 78EDD43D49;
	Mon, 19 Dec 2005 08:48:58 +0000 (GMT)
	(envelope-from dougb@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 jBJ8mwaq076354;
	Mon, 19 Dec 2005 08:48:58 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ8mw4f076353;
	Mon, 19 Dec 2005 08:48:58 GMT (envelope-from dougb)
Message-Id: <200512190848.jBJ8mw4f076353@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Mon, 19 Dec 2005 08:48: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/man8 rc.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 08:48:58 -0000

dougb       2005-12-19 08:48:57 UTC

  FreeBSD src repository

  Modified files:
    share/man/man8       rc.8 
  Log:
  Bring this page of the manual more in line with reality
  as to how things work currently.
  
  Delete a lot of stale references.
  
  Revision  Changes    Path
  1.30      +42 -59    src/share/man/man8/rc.8

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 08:54:37 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0709116A41F;
	Mon, 19 Dec 2005 08:54:37 +0000 (GMT)
	(envelope-from Alexander@Leidinger.net)
Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7E72A43D45;
	Mon, 19 Dec 2005 08:54:33 +0000 (GMT)
	(envelope-from Alexander@Leidinger.net)
Received: from Andro-Beta.Leidinger.net (p54A5D1D1.dip.t-dialin.net
	[84.165.209.209]) (authenticated bits=0)
	by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id
	jBJ8rk2x013385; Mon, 19 Dec 2005 09:53:48 +0100 (CET)
	(envelope-from Alexander@Leidinger.net)
Received: from localhost (localhost [127.0.0.1])
	by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id
	jBJ8sT2U000817; Mon, 19 Dec 2005 09:54:29 +0100 (CET)
	(envelope-from Alexander@Leidinger.net)
Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by
	webmail.leidinger.net (Horde MIME library) with HTTP; Mon, 19 Dec 2005
	09:54:29 +0100
Message-ID: <20051219095429.lvfzz6czcw04cso4@netchild.homeip.net>
X-Priority: 3 (Normal)
Date: Mon, 19 Dec 2005 09:54:29 +0100
From: Alexander Leidinger <Alexander@Leidinger.net>
To: Doug Barton <dougb@FreeBSD.org>
References: <200512102021.jBAKLk0v038487@repoman.freebsd.org>
	<1134253112.61298.9.camel@S01060080c83f4fb0.su.shawcable.net>
	<439B5E83.1090702@FreeBSD.org>
	<20051211165514.49001ea3@Magellan.Leidinger.net>
	<43A60A1F.4090200@FreeBSD.org>
	<20051219080202.r66mwg2dq80g4wc0@netchild.homeip.net>
	<43A662CE.7010802@FreeBSD.org>
In-Reply-To: <43A662CE.7010802@FreeBSD.org>
MIME-Version: 1.0
Content-Type: text/plain;
	charset=UTF-8;
	format="flowed"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11
X-Virus-Scanned: by amavisd-new
Cc: cvs-src@FreeBSD.org, Adam Gregoire <ebola@psychoholics.org>
Subject: Re: cvs commit: src/etc rc src/etc/defaults rc.conf src/etc/rc.d
	devfs dumpon initrandom rcconf.sh resolv src/share/man/man5 rc.conf.5
	src/share/man/man8 diskless.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 08:54:37 -0000

Doug Barton <dougb@FreeBSD.org> wrote:

> Not having a script in /etc/rc.d that you need will create an error 
> that is noticeable, and very unlikely to be fatal to the boot. Having 
> a stale script (possibly with the same stale settings in 
> rc.conf[.local] that used to be pertinent), could lead to very messy 
> results.
>
> I don't see anything wrong with adding rc.d stuff to the obsolete 
> file list, but it's your call.

I'm fine with this. I just wanted an unbiased opinion besides my own one.

Bye,
Alexander.

-- 
http://www.Leidinger.net  Alexander @ Leidinger.net: PGP ID = B0063FE7
http://www.FreeBSD.org     netchild @ FreeBSD.org  : PGP ID = 72077137
There is a natural hootchy-kootchy to a goldfish.
		-- Walt Disney



From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 09:00:12 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C6B5916A41F;
	Mon, 19 Dec 2005 09:00:12 +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 572E243D66;
	Mon, 19 Dec 2005 09:00:12 +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 jBJ90Cte076807;
	Mon, 19 Dec 2005 09:00:12 GMT
	(envelope-from sobomax@repoman.freebsd.org)
Received: (from sobomax@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ90B3k076806;
	Mon, 19 Dec 2005 09:00:11 GMT (envelope-from sobomax)
Message-Id: <200512190900.jBJ90B3k076806@repoman.freebsd.org>
From: Maxim Sobolev <sobomax@FreeBSD.org>
Date: Mon, 19 Dec 2005 09:00: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/boot/i386/libi386 Makefile biosdisk.c
 biospnp.c biossmap.c i386_copy.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 09:00:13 -0000

sobomax     2005-12-19 09:00:11 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/i386/libi386 Makefile biosdisk.c biospnp.c biossmap.c 
                          i386_copy.c 
  Log:
  Long-long time ago, when the trees were large and memory expensive amount of
  memory directly available to loader(8) and friends was limited to 640K on i386.
  Those times have passed long time ago and now loader(8) can directly access
  up to 4GB of RAM at least theoretically. At the same time, there are several
  places where it's assumed that malloc() will only allocate memory within
  first megabyte.
  
  Remove that assumption by allocating appropriate bounce buffers for BIOS
  calls on stack where necessary.
  
  This allows using memory above first megabyte for heap if necessary.
  
  Revision  Changes    Path
  1.39      +3 -0      src/sys/boot/i386/libi386/Makefile
  1.46      +10 -17    src/sys/boot/i386/libi386/biosdisk.c
  1.10      +1 -1      src/sys/boot/i386/libi386/biospnp.c
  1.4       +3 -2      src/sys/boot/i386/libi386/biossmap.c
  1.11      +6 -22     src/sys/boot/i386/libi386/i386_copy.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 09:26:44 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B786716A41F;
	Mon, 19 Dec 2005 09:26:44 +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 6A5F443D58;
	Mon, 19 Dec 2005 09:26:44 +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 jBJ9Qh6d078142;
	Mon, 19 Dec 2005 09:26:44 GMT
	(envelope-from sobomax@repoman.freebsd.org)
Received: (from sobomax@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJ9QhbD078141;
	Mon, 19 Dec 2005 09:26:43 GMT (envelope-from sobomax)
Message-Id: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
From: Maxim Sobolev <sobomax@FreeBSD.org>
Date: Mon, 19 Dec 2005 09:26: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/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 09:26:45 -0000

sobomax     2005-12-19 09:26:42 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/i386/loader main.c 
  Log:
  If LOADER_BZIP2_SUPPORT is defined allocate heap in the 1MB-4MB range to
  provide enough room for decompression (up to 2.5MB is necessary). This
  should be safe to do since we load i386 kernels after 8MB mark now, so
  that 16MB is the minimum amount of RAM necessary to even boot FreeBSD.
  
  This makes bzip2-support  practically useable.
  
  Revision  Changes    Path
  1.34      +13 -2     src/sys/boot/i386/loader/main.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 10:57:03 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 90C3716A41F;
	Mon, 19 Dec 2005 10:57:03 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 172F843D6B;
	Mon, 19 Dec 2005 10:57:02 +0000 (GMT)
	(envelope-from dougb@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 jBJAv1df082246;
	Mon, 19 Dec 2005 10:57:01 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJAv1Fb082245;
	Mon, 19 Dec 2005 10:57:01 GMT (envelope-from dougb)
Message-Id: <200512191057.jBJAv1Fb082245@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Mon, 19 Dec 2005 10:57: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/etc/defaults rc.conf src/etc/rc.d abi cleanvar
 cleartmp src/share/man/man5 rc.conf.5
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 10:57:03 -0000

dougb       2005-12-19 10:57:00 UTC

  FreeBSD src repository

  Modified files:
    etc/defaults         rc.conf 
    etc/rc.d             abi cleanvar cleartmp 
    share/man/man5       rc.conf.5 
  Log:
  Clear up problems with /etc/rc.d/{abi|cleanvar|cleartmp} brought
  to light by the PR.  Specifically, convert these three scripts
  into good rc.d citizens, making sure that their functionality
  is preserved, but the rc.d framework rules are not broken.
  
  Add support for cleanvar as a regular rc.d script in the
  default rc.conf, and document this in the man page.
  
  Add a descriptive comment to rc.conf that regarding the
  three emulation/compatibility services provided by abi
  so users will not be confused by these services not having
  their own startup scripts.
  
  PR:             conf/84574
  Submitted by:   Alexander Botero-Lowry
  
  Revision  Changes    Path
  1.268     +4 -0      src/etc/defaults/rc.conf
  1.5       +19 -20    src/etc/rc.d/abi
  1.11      +36 -16    src/etc/rc.d/cleanvar
  1.13      +12 -11    src/etc/rc.d/cleartmp
  1.274     +6 -1      src/share/man/man5/rc.conf.5

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 10:58:59 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 63A5916A41F;
	Mon, 19 Dec 2005 10:58:59 +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 1710643D46;
	Mon, 19 Dec 2005 10:58:59 +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 jBJAwwHC082411;
	Mon, 19 Dec 2005 10:58:58 GMT
	(envelope-from delphij@repoman.freebsd.org)
Received: (from delphij@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJAwwCp082410;
	Mon, 19 Dec 2005 10:58:58 GMT (envelope-from delphij)
Message-Id: <200512191058.jBJAwwCp082410@repoman.freebsd.org>
From: Xin LI <delphij@FreeBSD.org>
Date: Mon, 19 Dec 2005 10:58:58 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6_0
Cc: 
Subject: cvs commit: src UPDATING src/sys/conf newvers.sh src/sys/nfsclient
 nfs_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 10:58:59 -0000

delphij     2005-12-19 10:58:58 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6_0)
    .                    UPDATING 
    sys/conf             newvers.sh 
    sys/nfsclient        nfs_vnops.c 
  Log:
  Merge from RELENG_6 of src/sys/nfsclient/nfs_vnops.c rev 1.258.2.1:
    MFC 1.260 (by ps): Fixed a panic that can happen when nfs_lookup() hits
    an error.
  
  Work done by:   Mohan Srinivasan
  Approved by:    re (scottl), so (cperciva)
  Erratum:        FreeBSD-EN-05:04.nfs
  
  Revision       Changes    Path
  1.416.2.3.2.6  +5 -0      src/UPDATING
  1.69.2.8.2.2   +1 -1      src/sys/conf/newvers.sh
  1.258.4.1      +1 -1      src/sys/nfsclient/nfs_vnops.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 11:19:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 898B916A41F;
	Mon, 19 Dec 2005 11:19:27 +0000 (GMT)
	(envelope-from bruno@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 2886243D6B;
	Mon, 19 Dec 2005 11:19:27 +0000 (GMT)
	(envelope-from bruno@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 jBJBJQXX083336;
	Mon, 19 Dec 2005 11:19:27 GMT
	(envelope-from bruno@repoman.freebsd.org)
Received: (from bruno@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJBJQa2083335;
	Mon, 19 Dec 2005 11:19:26 GMT (envelope-from bruno)
Message-Id: <200512191119.jBJBJQa2083335@repoman.freebsd.org>
From: Bruno Ducrot <bruno@FreeBSD.org>
Date: Mon, 19 Dec 2005 11:19: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/dev/acpica acpi_perf.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 11:19:27 -0000

bruno       2005-12-19 11:19:26 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/dev/acpica       acpi_perf.c 
  Log:
  MFC: don't flood kernel logs with "invalid _PSS package" messages.
  
  Approved by:    njl, imp (mentor)
  
  Revision  Changes    Path
  1.21.2.2  +5 -1      src/sys/dev/acpica/acpi_perf.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 11:23:25 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 303DE16A41F;
	Mon, 19 Dec 2005 11:23:25 +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 CFD5443D75;
	Mon, 19 Dec 2005 11:23:19 +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 jBJBNH8L007932;
	Mon, 19 Dec 2005 13:23:17 +0200 (EET) (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 28774-02-2; Mon, 19 Dec 2005 13:23:14 +0200 (EET)
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 jBJBJKbY007789
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Mon, 19 Dec 2005 13:19:20 +0200 (EET) (envelope-from ru@ip.net.ua)
Received: (from ru@localhost)
	by heffalump.ip.net.ua (8.13.4/8.13.4) id jBJBJSfe083438;
	Mon, 19 Dec 2005 13:19:28 +0200 (EET) (envelope-from ru)
Date: Mon, 19 Dec 2005 13:19:28 +0200
From: Ruslan Ermilov <ru@FreeBSD.org>
To: "David E. O'Brien" <obrien@FreeBSD.org>
Message-ID: <20051219111928.GC82508@ip.net.ua>
References: <200512190349.jBJ3nFBT048099@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="0vzXIDBeUiKkjNJl"
Content-Disposition: inline
In-Reply-To: <200512190349.jBJ3nFBT048099@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/share/man/man4 rp.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 11:23:25 -0000


--0vzXIDBeUiKkjNJl
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Mon, Dec 19, 2005 at 03:49:15AM +0000, David E. O'Brien wrote:
> obrien      2005-12-19 03:49:15 UTC
>=20
>   FreeBSD src repository
>=20
>   Modified files:
>     share/man/man4       rp.4=20
>   Log:
>   Fix a benign typo in case it actually makes a difference to type setter=
s.
>  =20
>   Noticed by:     pjd
>  =20
>   Revision  Changes    Path
>   1.7       +1 -1      src/share/man/man4/rp.4
>=20
Well it does, for high-resolution output like PostScript, but I doubt
you'll be able to notice a difference without a microscope.  :-)


Cheers,
--=20
Ruslan Ermilov
ru@FreeBSD.org
FreeBSD committer

--0vzXIDBeUiKkjNJl
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQFDppdAqRfpzJluFF4RAoYHAJ4g1PZ/NXMZYhl8AYl1lG944O+zXQCbBC1i
TqkItZofwpkNkAYrp8T+ALI=
=aBVA
-----END PGP SIGNATURE-----

--0vzXIDBeUiKkjNJl--

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 14:53:31 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9180416A41F;
	Mon, 19 Dec 2005 14:53: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 3EA8B43D4C;
	Mon, 19 Dec 2005 14:53: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 jBJErVgn099150;
	Mon, 19 Dec 2005 14:53:31 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJErUa4099149;
	Mon, 19 Dec 2005 14:53:30 GMT (envelope-from glebius)
Message-Id: <200512191453.jBJErUa4099149@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Mon, 19 Dec 2005 14:53: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 UPDATING
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 14:53:31 -0000

glebius     2005-12-19 14:53:30 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    .                    UPDATING 
  Log:
  - In upgrade from 4.x paragraph prefer "5.x" instead of "-current". 5.x
    isn't CURRENT anymore.
  - In upgrade from 4.x paragraph notice that it is important to
    delete /sbin/mountd, otherwise it will be started instead of
    /usr/bin/mountd.
  
  Revision    Changes    Path
  1.342.2.33  +3 -2      src/UPDATING

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 14:54:39 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 3D28716A41F;
	Mon, 19 Dec 2005 14:54:39 +0000 (GMT)
	(envelope-from glebius@FreeBSD.org)
Received: from cell.sick.ru (cell.sick.ru [217.72.144.68])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 635FE43D5F;
	Mon, 19 Dec 2005 14:54:38 +0000 (GMT)
	(envelope-from glebius@FreeBSD.org)
Received: from cell.sick.ru (glebius@localhost [127.0.0.1])
	by cell.sick.ru (8.13.3/8.13.3) with ESMTP id jBJEsaNH071763
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Mon, 19 Dec 2005 17:54:37 +0300 (MSK)
	(envelope-from glebius@FreeBSD.org)
Received: (from glebius@localhost)
	by cell.sick.ru (8.13.3/8.13.1/Submit) id jBJEsadI071762;
	Mon, 19 Dec 2005 17:54:36 +0300 (MSK)
	(envelope-from glebius@FreeBSD.org)
X-Authentication-Warning: cell.sick.ru: glebius set sender to
	glebius@FreeBSD.org using -f
Date: Mon, 19 Dec 2005 17:54:36 +0300
From: Gleb Smirnoff <glebius@FreeBSD.org>
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Message-ID: <20051219145436.GZ41381@FreeBSD.org>
References: <200512191453.jBJErUa4099149@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=koi8-r
Content-Disposition: inline
In-Reply-To: <200512191453.jBJErUa4099149@repoman.freebsd.org>
User-Agent: Mutt/1.5.6i
Cc: 
Subject: Re: cvs commit: src UPDATING
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 14:54:39 -0000

On Mon, Dec 19, 2005 at 02:53:30PM +0000, Gleb Smirnoff wrote:
T>   Modified files:        (Branch: RELENG_5)
T>     .                    UPDATING 
T>   Log:
T>   - In upgrade from 4.x paragraph prefer "5.x" instead of "-current". 5.x
T>     isn't CURRENT anymore.

In general we need severe editing of this paragraph after every fork
of a new branch from HEAD.

-- 
Totus tuus, Glebius.
GLEBIUS-RIPN GLEB-RIPE

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 15:33:03 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0AA4416A41F;
	Mon, 19 Dec 2005 15:33:03 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 69C0E43D60;
	Mon, 19 Dec 2005 15:33:01 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (unverified [66.23.211.162]) 
	by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 4137114 
	for multiple; Mon, 19 Dec 2005 10:31:08 -0500
Received: from localhost (john@localhost [127.0.0.1])
	by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id jBJFWxXE067073;
	Mon, 19 Dec 2005 10:32:59 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin <jhb@freebsd.org>
To: Maxim Sobolev <sobomax@freebsd.org>
Date: Mon, 19 Dec 2005 10:33:31 -0500
User-Agent: KMail/1.8.2
References: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
In-Reply-To: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="iso-8859-6"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200512191033.33186.jhb@freebsd.org>
X-Virus-Scanned: ClamAV version 0.87.1,
	clamav-milter version 0.87 on server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-1.4 required=4.2 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx
X-Server: High Performance Mail Server - http://surgemail.com r=1653887525
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 15:33:03 -0000

On Monday 19 December 2005 04:26 am, Maxim Sobolev wrote:
> sobomax     2005-12-19 09:26:42 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     sys/boot/i386/loader main.c
>   Log:
>   If LOADER_BZIP2_SUPPORT is defined allocate heap in the 1MB-4MB range to
>   provide enough room for decompression (up to 2.5MB is necessary). This
>   should be safe to do since we load i386 kernels after 8MB mark now, so
>   that 16MB is the minimum amount of RAM necessary to even boot FreeBSD.

Err, I thought we loaded PAE kernels at 2MB and non-PAE kernels at 4MB to skip 
the first PSE page (PSE pages are 2MB on PAE).

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 15:33:03 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 20FE716A420;
	Mon, 19 Dec 2005 15:33:03 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 69BF043D62;
	Mon, 19 Dec 2005 15:33:01 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (unverified [66.23.211.162]) 
	by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 4137113 
	for multiple; Mon, 19 Dec 2005 10:31:08 -0500
Received: from localhost (john@localhost [127.0.0.1])
	by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id jBJFWxXD067073;
	Mon, 19 Dec 2005 10:32:59 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin <jhb@freebsd.org>
To: Nate Lawson <njl@freebsd.org>
Date: Mon, 19 Dec 2005 10:30:24 -0500
User-Agent: KMail/1.8.2
References: <200512181810.jBIIAvGj006047@repoman.freebsd.org>
In-Reply-To: <200512181810.jBIIAvGj006047@repoman.freebsd.org>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="iso-8859-6"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200512191030.26274.jhb@freebsd.org>
X-Virus-Scanned: ClamAV version 0.87.1,
	clamav-milter version 0.87 on server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-1.4 required=4.2 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx
X-Server: High Performance Mail Server - http://surgemail.com r=1653887525
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/kern kern_switch.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 15:33:03 -0000

On Sunday 18 December 2005 01:10 pm, Nate Lawson wrote:
> njl         2005-12-18 18:10:57 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     sys/kern             kern_switch.c
>   Log:
>   Restore KTR_CRITICAL but conditionally compile it in as KTR_SCHED.
>
>   Requested by:   scottl, jhb

Thanks.

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 16:27:15 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1328816A420;
	Mon, 19 Dec 2005 16:27: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 5565343D5D;
	Mon, 19 Dec 2005 16:27:14 +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 jBJGREut004214;
	Mon, 19 Dec 2005 16:27:14 GMT (envelope-from pjd@repoman.freebsd.org)
Received: (from pjd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJGREYH004213;
	Mon, 19 Dec 2005 16:27:14 GMT (envelope-from pjd)
Message-Id: <200512191627.jBJGREYH004213@repoman.freebsd.org>
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Date: Mon, 19 Dec 2005 16:27: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 16:27:15 -0000

pjd         2005-12-19 16:27:13 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             vfs_mount.c 
  Log:
  Use 'td' instead of 'curthread'.
  
  Revision  Changes    Path
  1.209     +1 -1      src/sys/kern/vfs_mount.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 17:07:07 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0F8FA16A420;
	Mon, 19 Dec 2005 17:07:07 +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 DBDA143D69;
	Mon, 19 Dec 2005 17:06:53 +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 jBJH6qXL013170;
	Mon, 19 Dec 2005 17:06:52 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJH6qDJ013169;
	Mon, 19 Dec 2005 17:06:52 GMT (envelope-from glebius)
Message-Id: <200512191706.jBJH6qDJ013169@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Mon, 19 Dec 2005 17:06:51 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sys/compat/linux linux_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 17:07:07 -0000

glebius     2005-12-19 17:06:51 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/compat/linux     linux_util.h 
  Log:
  MFC 1.26:
    Suppress logging about unimplemented syscalls to one time per process. This
    prevents hard flood of the system console.
  
    Reviewed by:  bde
  
  Revision  Changes    Path
  1.25.2.1  +7 -9      src/sys/compat/linux/linux_util.h

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 18:33:14 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.ORG
Delivered-To: cvs-src@FreeBSD.ORG
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DD4AF16A41F;
	Mon, 19 Dec 2005 18:33:14 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from bugor.portaone.com (bugor.portaone.com [65.61.200.232])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 32CB143D96;
	Mon, 19 Dec 2005 18:33:03 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from [192.168.1.2] (S0106000f3d63befd.vs.shawcable.net
	[70.71.19.119]) (authenticated bits=0)
	by bugor.portaone.com (8.13.4/8.13.4) with ESMTP id jBJIWvm2040266
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Mon, 19 Dec 2005 18:32:58 GMT (envelope-from sobomax@portaone.com)
Message-ID: <43A6FCD0.4030809@portaone.com>
Date: Mon, 19 Dec 2005 10:32:48 -0800
From: Maxim Sobolev <sobomax@portaone.com>
Organization: Porta Software Ltd
User-Agent: Thunderbird 1.5 (Windows/20051025)
MIME-Version: 1.0
To: John Baldwin <jhb@FreeBSD.ORG>
References: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
	<200512191033.33186.jhb@freebsd.org>
In-Reply-To: <200512191033.33186.jhb@freebsd.org>
Content-Type: text/plain; charset=KOI8-U; format=flowed
Content-Transfer-Encoding: 7bit
X-Virus-Scanned: ClamAV 0.87.1/1213/Mon Dec 19 14:48:34 2005 on
	bugor.portaone.com
X-Virus-Status: Clean
X-Spam-Status: No, score=0.7 required=5.0 tests=AWL,BAYES_00,
	RCVD_IN_SORBS_DUL,SPF_SOFTFAIL autolearn=no version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on bugor.portaone.com
Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject: Re: cvs commit: src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: Maxim.Sobolev@portaone.com
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 18:33:15 -0000

John Baldwin wrote:
> On Monday 19 December 2005 04:26 am, Maxim Sobolev wrote:
>> sobomax     2005-12-19 09:26:42 UTC
>>
>>   FreeBSD src repository
>>
>>   Modified files:
>>     sys/boot/i386/loader main.c
>>   Log:
>>   If LOADER_BZIP2_SUPPORT is defined allocate heap in the 1MB-4MB range to
>>   provide enough room for decompression (up to 2.5MB is necessary). This
>>   should be safe to do since we load i386 kernels after 8MB mark now, so
>>   that 16MB is the minimum amount of RAM necessary to even boot FreeBSD.
> 
> Err, I thought we loaded PAE kernels at 2MB and non-PAE kernels at 4MB to skip 
> the first PSE page (PSE pages are 2MB on PAE).

You are right, my mistake, sorry. In any case memory in the range 
1MB-4MB can be used by default.

-Maxim

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 18:39:02 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2474016A424;
	Mon, 19 Dec 2005 18:39: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 C7BE843D5A;
	Mon, 19 Dec 2005 18:39: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 jBJId1Mj019130;
	Mon, 19 Dec 2005 18:39:01 GMT
	(envelope-from sobomax@repoman.freebsd.org)
Received: (from sobomax@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJId1hQ019129;
	Mon, 19 Dec 2005 18:39:01 GMT (envelope-from sobomax)
Message-Id: <200512191839.jBJId1hQ019129@repoman.freebsd.org>
From: Maxim Sobolev <sobomax@FreeBSD.org>
Date: Mon, 19 Dec 2005 18:39: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/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 18:39:02 -0000

sobomax     2005-12-19 18:39:01 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/i386/loader main.c 
  Log:
  (forced)
  We loaded PAE kernels at 2MB and non-PAE kernels at 4MB to skip
  the first PSE page (PSE pages are 2MB on PAE), not at 8MB as it
  was incorrectly specified in the previous commit.
  
  Submitted by:   jhb
  
  Revision  Changes    Path
  1.35      +0 -0      src/sys/boot/i386/loader/main.c

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 18:39:03 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D936B16A425;
	Mon, 19 Dec 2005 18:39:03 +0000 (GMT)
	(envelope-from tataz@tataz.chchile.org)
Received: from smtp4-g19.free.fr (smtp4-g19.free.fr [212.27.42.30])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3050143D5D;
	Mon, 19 Dec 2005 18:39:03 +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 smtp4-g19.free.fr (Postfix) with ESMTP id A8DE54E9EE;
	Mon, 19 Dec 2005 19:39:01 +0100 (CET)
Received: from obiwan.tataz.chchile.org (unknown [192.168.1.25])
	by tatooine.tataz.chchile.org (Postfix) with ESMTP id 5DD999B6E7;
	Mon, 19 Dec 2005 18:38:36 +0000 (UTC)
Received: by obiwan.tataz.chchile.org (Postfix, from userid 1000)
	id 273C0405A; Mon, 19 Dec 2005 19:38:36 +0100 (CET)
Date: Mon, 19 Dec 2005 19:38:36 +0100
From: Jeremie Le Hen <jeremie@le-hen.org>
To: Jung-uk Kim <jkim@FreeBSD.org>
Message-ID: <20051219183835.GC3512@obiwan.tataz.chchile.org>
References: <200512060258.jB62wCnk084452@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200512060258.jB62wCnk084452@repoman.freebsd.org>
User-Agent: Mutt/1.5.11
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/amd64/amd64 bpf_jit_machdep.c
	bpf_jit_machdep.h src/sys/conf files files.amd64 files.i386
	options.amd64 options.i386 src/sys/i386/i386
	bpf_jit_machdep.c bpf_jit_machdep.h src/sys/net bpf.c
	bpf_jitter.c bpf_jitter.h bpfdesc.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 18:39:04 -0000

Hi, Jung-uk,

On Tue, Dec 06, 2005 at 02:58:12AM +0000, Jung-uk Kim wrote:
> jkim        2005-12-06 02:58:12 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/conf             files files.amd64 files.i386 
>                          options.amd64 options.i386 
>     sys/net              bpf.c bpfdesc.h 
>   Added files:
>     sys/amd64/amd64      bpf_jit_machdep.c bpf_jit_machdep.h 
>     sys/i386/i386        bpf_jit_machdep.c bpf_jit_machdep.h 
>     sys/net              bpf_jitter.c bpf_jitter.h 
>   Log:
>   Add experimental BPF Just-In-Time compiler for amd64 and i386.
>   
>   Use the following kernel configuration option to enable:
>   
>           options BPF_JITTER
>   
>   If you want to use bpf_filter() instead (e. g., debugging), do:
>   
>           sysctl net.bpf.jitter.enable=0
>   
>   to turn it off.
>   
>   Currently BIOCSETWF and bpf_mtap2() are unsupported, and bpf_mtap() is
>   partially supported because 1) no need, 2) avoid expensive m_copydata(9).
>   
>   Obtained from:  WinPcap 3.1 (for i386)

Though the name looks quite exciting, I don't really know what it is.
I tried to look on WinPcap's website as well as searching on Google,
but found nothing relevant.  Could you explain in a few words what
it is and the difference with the old bpf(4) behaviour, please ?
Does this change will lead to a new note in bpf(4) manual page once
it won't be experimental any more ?

Best regards,
-- 
Jeremie Le Hen
< jeremie at le-hen dot org >< ttz at chchile dot org >

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 19:14:38 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C079F16A41F;
	Mon, 19 Dec 2005 19:14:38 +0000 (GMT)
	(envelope-from jkim@FreeBSD.org)
Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A537043D53;
	Mon, 19 Dec 2005 19:14:35 +0000 (GMT)
	(envelope-from jkim@FreeBSD.org)
Received: from niksun.com (anuket [10.70.0.5])
	by anuket.mj.niksun.com (8.13.1/8.13.1) with ESMTP id jBJJQYZW044287;
	Mon, 19 Dec 2005 14:26:34 -0500 (EST)
	(envelope-from jkim@FreeBSD.org)
From: Jung-uk Kim <jkim@FreeBSD.org>
To: Jeremie Le Hen <jeremie@le-hen.org>
Date: Mon, 19 Dec 2005 14:13:46 -0500
User-Agent: KMail/1.6.2
References: <200512060258.jB62wCnk084452@repoman.freebsd.org>
	<20051219183835.GC3512@obiwan.tataz.chchile.org>
In-Reply-To: <20051219183835.GC3512@obiwan.tataz.chchile.org>
MIME-Version: 1.0
Content-Disposition: inline
Content-Type: text/plain;
  charset="euc-kr"
Content-Transfer-Encoding: 7bit
Message-Id: <200512191413.52731.jkim@FreeBSD.org>
X-Virus-Scanned: ClamAV devel-20050919/1213/Mon Dec 19 09:48:34 2005 on
	anuket.mj.niksun.com
X-Virus-Status: Clean
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/amd64/amd64 bpf_jit_machdep.c
	bpf_jit_machdep.h src/sys/conf files files.amd64 files.i386
	options.amd64 options.i386 src/sys/i386/i386
	bpf_jit_machdep.c bpf_jit_machdep.h src/sys/net bpf.c
	bpf_jitter.c bpf_jitter.h bpfdesc.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 19:14:38 -0000

On Monday 19 December 2005 01:38 pm, Jeremie Le Hen wrote:
> Hi, Jung-uk,
>
> On Tue, Dec 06, 2005 at 02:58:12AM +0000, Jung-uk Kim wrote:
> > jkim        2005-12-06 02:58:12 UTC
> >
> >   FreeBSD src repository
> >
> >   Modified files:
> >     sys/conf             files files.amd64 files.i386
> >                          options.amd64 options.i386
> >     sys/net              bpf.c bpfdesc.h
> >   Added files:
> >     sys/amd64/amd64      bpf_jit_machdep.c bpf_jit_machdep.h
> >     sys/i386/i386        bpf_jit_machdep.c bpf_jit_machdep.h
> >     sys/net              bpf_jitter.c bpf_jitter.h
> >   Log:
> >   Add experimental BPF Just-In-Time compiler for amd64 and i386.
> >
> >   Use the following kernel configuration option to enable:
> >
> >           options BPF_JITTER
> >
> >   If you want to use bpf_filter() instead (e. g., debugging), do:
> >
> >           sysctl net.bpf.jitter.enable=0
> >
> >   to turn it off.
> >
> >   Currently BIOCSETWF and bpf_mtap2() are unsupported, and
> > bpf_mtap() is partially supported because 1) no need, 2) avoid
> > expensive m_copydata(9).
> >
> >   Obtained from:  WinPcap 3.1 (for i386)
>
> Though the name looks quite exciting, I don't really know what it
> is. I tried to look on WinPcap's website as well as searching on
> Google, but found nothing relevant.  Could you explain in a few
> words what it is and the difference with the old bpf(4) behaviour,
> please ?

BPF JIT compiler converts BPF instructions into native machine code 
when BIOCSETF ioctl is issued, and then the native filter is used to 
filter packets instead of bpf_filter(), which is a simple virtual 
machine.

> Does this change will lead to a new note in bpf(4) manual 
> page once it won't be experimental any more ?

Yes.  Maybe bpf(9), too.

Jung-uk Kim

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 19:23:49 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EFCA816A41F;
	Mon, 19 Dec 2005 19:23:48 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 4A3E443D68;
	Mon, 19 Dec 2005 19:23:44 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (unverified [66.23.211.162]) 
	by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 4151702 
	for multiple; Mon, 19 Dec 2005 14:21:43 -0500
Received: from localhost (john@localhost [127.0.0.1])
	by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id jBJJNYOk068447;
	Mon, 19 Dec 2005 14:23:34 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin <jhb@freebsd.org>
To: Maxim.Sobolev@portaone.com
Date: Mon, 19 Dec 2005 14:20:02 -0500
User-Agent: KMail/1.8.2
References: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
	<200512191033.33186.jhb@freebsd.org>
	<43A6FCD0.4030809@portaone.com>
In-Reply-To: <43A6FCD0.4030809@portaone.com>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="koi8-u"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200512191420.03927.jhb@freebsd.org>
X-Virus-Scanned: ClamAV 0.87.1/1213/Mon Dec 19 09:48:34 2005 on
	server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-1.4 required=4.2 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx
X-Server: High Performance Mail Server - http://surgemail.com r=1653887525
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 19:23:49 -0000

On Monday 19 December 2005 01:32 pm, Maxim Sobolev wrote:
> John Baldwin wrote:
> > On Monday 19 December 2005 04:26 am, Maxim Sobolev wrote:
> >> sobomax     2005-12-19 09:26:42 UTC
> >>
> >>   FreeBSD src repository
> >>
> >>   Modified files:
> >>     sys/boot/i386/loader main.c
> >>   Log:
> >>   If LOADER_BZIP2_SUPPORT is defined allocate heap in the 1MB-4MB range
> >> to provide enough room for decompression (up to 2.5MB is necessary).
> >> This should be safe to do since we load i386 kernels after 8MB mark now,
> >> so that 16MB is the minimum amount of RAM necessary to even boot
> >> FreeBSD.
> >
> > Err, I thought we loaded PAE kernels at 2MB and non-PAE kernels at 4MB to
> > skip the first PSE page (PSE pages are 2MB on PAE).
>
> You are right, my mistake, sorry. In any case memory in the range
> 1MB-4MB can be used by default.

Errm, no it can't.  PAE kernels (and amd64 kernels I think) are both loaded at 
2MB, so that only leaves memory in the range 1MB-2MB.

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Mon Dec 19 20:20:37 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id BE1DA16A41F;
	Mon, 19 Dec 2005 20:20:37 +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 65A3143D68;
	Mon, 19 Dec 2005 20:20:37 +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 jBJKKbxx023648;
	Mon, 19 Dec 2005 20:20:37 GMT
	(envelope-from marcel@repoman.freebsd.org)
Received: (from marcel@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBJKKbOR023647;
	Mon, 19 Dec 2005 20:20:37 GMT (envelope-from marcel)
Message-Id: <200512192020.jBJKKbOR023647@repoman.freebsd.org>
From: Marcel Moolenaar <marcel@FreeBSD.org>
Date: Mon, 19 Dec 2005 20:20:37 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/sys elf_common.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 19 Dec 2005 20:20:38 -0000

marcel      2005-12-19 20:20:37 UTC

  FreeBSD src repository

  Modified files:
    sys/sys              elf_common.h 
  Log:
  o  Add the GNU symbol versioning section constants (SHT_GNU_verdef,
     SHT_GNU_verneed, SHT_GNU_versym),
  o  Fix the definition of DT_HIOS -- it was short an 'f'...
  
  Revision  Changes    Path
  1.18      +4 -1      src/sys/sys/elf_common.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 00:33:35 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 21AD616A41F;
	Tue, 20 Dec 2005 00:33:35 +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 E838243D77;
	Tue, 20 Dec 2005 00:33:33 +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 jBK0XXmr040313;
	Tue, 20 Dec 2005 00:33:33 GMT
	(envelope-from mlaier@repoman.freebsd.org)
Received: (from mlaier@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK0XXY5040312;
	Tue, 20 Dec 2005 00:33:33 GMT (envelope-from mlaier)
Message-Id: <200512200033.jBK0XXY5040312@repoman.freebsd.org>
From: Max Laier <mlaier@FreeBSD.org>
Date: Tue, 20 Dec 2005 00:33: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/contrib/pf/net pf.c pfvar.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 00:33:35 -0000

mlaier      2005-12-20 00:33:33 UTC

  FreeBSD src repository

  Modified files:
    sys/contrib/pf/net   pf.c pfvar.h 
  Log:
  Move PFSTATE_EXPIRING from sync_flags to a new local_flags.  sync_flags has
  special handling when zero.  This caused no PFSYNC_ACT_DEL message and thus
  disfunction of pfflowd and state synchronisation in general.
  
  Discovered by:  thompsa
  Good catch by:  thompsa
  MFC after:      7 days
  
  Revision  Changes    Path
  1.39      +2 -2      src/sys/contrib/pf/net/pf.c
  1.13      +4 -2      src/sys/contrib/pf/net/pfvar.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 00:43:52 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6A16A16A41F;
	Tue, 20 Dec 2005 00:43:52 +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 20A0643D45;
	Tue, 20 Dec 2005 00:43:52 +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 jBK0hqnG040875;
	Tue, 20 Dec 2005 00:43:52 GMT (envelope-from pjd@repoman.freebsd.org)
Received: (from pjd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK0hpnl040874;
	Tue, 20 Dec 2005 00:43:51 GMT (envelope-from pjd)
Message-Id: <200512200043.jBK0hpnl040874@repoman.freebsd.org>
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Date: Tue, 20 Dec 2005 00:43: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 00:43:52 -0000

pjd         2005-12-20 00:43:51 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             vfs_mount.c 
  Log:
  vfs_mount_alloc() always returns 0, but what we really want is newly
  allocated 'struct mount *' pointer, so simplify code a bit and return
  the pointer directly.
  
  Reviewed by:    ssouhlal
  
  Revision  Changes    Path
  1.210     +7 -15     src/sys/kern/vfs_mount.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 00:49:59 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C014116A41F;
	Tue, 20 Dec 2005 00:49:59 +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 73FF043D5E;
	Tue, 20 Dec 2005 00:49:59 +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 jBK0nxtd048442;
	Tue, 20 Dec 2005 00:49:59 GMT (envelope-from pjd@repoman.freebsd.org)
Received: (from pjd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK0nxil048441;
	Tue, 20 Dec 2005 00:49:59 GMT (envelope-from pjd)
Message-Id: <200512200049.jBK0nxil048441@repoman.freebsd.org>
From: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Date: Tue, 20 Dec 2005 00:49: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 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 00:49:59 -0000

pjd         2005-12-20 00:49:59 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             vfs_syscalls.c 
  Log:
  Reduce Giant scope a bit, as fdrop() is believed to be MPSAFE.
  The purpose of this change is consistency (not performance improvement:)),
  as it was hard to tell if fdrop() is MPSAFE or not when I saw it sometimes
  under the Giant and sometimes without it.
  
  Glanced at by:  ssouhlal, kan
  
  Revision  Changes    Path
  1.396     +7 -9      src/sys/kern/vfs_syscalls.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 01:21:31 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7149E16A41F;
	Tue, 20 Dec 2005 01:21:31 +0000 (GMT) (envelope-from bde@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0A9A043D58;
	Tue, 20 Dec 2005 01:21:31 +0000 (GMT) (envelope-from bde@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 jBK1LUBI050100;
	Tue, 20 Dec 2005 01:21:30 GMT (envelope-from bde@repoman.freebsd.org)
Received: (from bde@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK1LUTd050099;
	Tue, 20 Dec 2005 01:21:30 GMT (envelope-from bde)
Message-Id: <200512200121.jBK1LUTd050099@repoman.freebsd.org>
From: Bruce Evans <bde@FreeBSD.org>
Date: Tue, 20 Dec 2005 01:21:30 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/lib/msun/src s_cbrt.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 01:21:31 -0000

bde         2005-12-20 01:21:30 UTC

  FreeBSD src repository

  Modified files:
    lib/msun/src         s_cbrt.c 
  Log:
  Extract the high and low words together.  With gcc-3.4 on uniformly
  distributed non-large args, this saves about 14 of 134 cycles for
  Athlon64s and about 5 of 199 cycles for AthlonXPs.
  
  Moved the check for x == 0 inside the check for subnormals.  With
  gcc-3.4 on uniformly distributed non-large args, this saves another
  5 cycles on Athlon64s and loses 1 cycle on AthlonXPs.
  
  Use INSERT_WORDS() and not SET_HIGH_WORD() when converting the first
  approximation from bits to double.  With gcc-3.4 on uniformly distributed
  non-large args, this saves another 4 cycles on both Athlon64s and and
  AthlonXPs.
  
  Accessing doubles as 2 words may be an optimization on old CPUs, but on
  current CPUs it tends to cause extra operations and pipeline stalls,
  especially for writes, even when only 1 of the words needs to be accessed.
  
  Removed an unused variable.
  
  Revision  Changes    Path
  1.14      +6 -8      src/lib/msun/src/s_cbrt.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 01:28:19 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9A36C16A41F;
	Tue, 20 Dec 2005 01:28:19 +0000 (GMT)
	(envelope-from cognet@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A000543D67;
	Tue, 20 Dec 2005 01:28:18 +0000 (GMT)
	(envelope-from cognet@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 jBK1SHC2050350;
	Tue, 20 Dec 2005 01:28:17 GMT
	(envelope-from cognet@repoman.freebsd.org)
Received: (from cognet@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK1SH2s050349;
	Tue, 20 Dec 2005 01:28:17 GMT (envelope-from cognet)
Message-Id: <200512200128.jBK1SH2s050349@repoman.freebsd.org>
From: Olivier Houchard <cognet@FreeBSD.org>
Date: Tue, 20 Dec 2005 01:28: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/conf Makefile.arm src/sys/arm/arm
 elf_trampoline.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 01:28:19 -0000

cognet      2005-12-20 01:28:17 UTC

  FreeBSD src repository

  Modified files:
    sys/conf             Makefile.arm 
    sys/arm/arm          elf_trampoline.c 
  Log:
  Make the elf trampoline disable the MMU, and link it at physical address,
  to avoid bad surprises.
  
  Revision  Changes    Path
  1.4       +36 -4     src/sys/arm/arm/elf_trampoline.c
  1.23      +23 -14    src/sys/conf/Makefile.arm

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 01:29:18 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B441A16A41F;
	Tue, 20 Dec 2005 01:29:18 +0000 (GMT)
	(envelope-from cognet@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0ECBC43D66;
	Tue, 20 Dec 2005 01:29:18 +0000 (GMT)
	(envelope-from cognet@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 jBK1THTI050438;
	Tue, 20 Dec 2005 01:29:17 GMT
	(envelope-from cognet@repoman.freebsd.org)
Received: (from cognet@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK1THPw050437;
	Tue, 20 Dec 2005 01:29:17 GMT (envelope-from cognet)
Message-Id: <200512200129.jBK1THPw050437@repoman.freebsd.org>
From: Olivier Houchard <cognet@FreeBSD.org>
Date: Tue, 20 Dec 2005 01:29: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/arm/arm locore.S
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 01:29:19 -0000

cognet      2005-12-20 01:29:17 UTC

  FreeBSD src repository

  Modified files:
    sys/arm/arm          locore.S 
  Log:
  - Disable the instruction cache very early, until it's time to enable it again.
  - Revamp the code that jumps from physical to virtual address.
  
  Revision  Changes    Path
  1.12      +14 -23    src/sys/arm/arm/locore.S

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 03:27:24 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: by hub.freebsd.org (Postfix, from userid 1021)
	id D358716A420; Tue, 20 Dec 2005 03:27:24 +0000 (GMT)
Date: Tue, 20 Dec 2005 03:27:24 +0000
From: "Christian S.J. Peron" <csjp@FreeBSD.org>
To: Pawel Jakub Dawidek <pjd@FreeBSD.org>
Message-ID: <20051220032724.GA12119@hub.freebsd.org>
References: <200512200049.jBK0nxil048441@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200512200049.jBK0nxil048441@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_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 03:27:25 -0000

On Tue, Dec 20, 2005 at 12:49:59AM +0000, Pawel Jakub Dawidek wrote:
> pjd         2005-12-20 00:49:59 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/kern             vfs_syscalls.c 
>   Log:
>   Reduce Giant scope a bit, as fdrop() is believed to be MPSAFE.
>   The purpose of this change is consistency (not performance improvement:)),
>   as it was hard to tell if fdrop() is MPSAFE or not when I saw it sometimes
>   under the Giant and sometimes without it.
>   
>   Glanced at by:  ssouhlal, kan
>   
>   Revision  Changes    Path
>   1.396     +7 -9      src/sys/kern/vfs_syscalls.c

Did you check to make sure that all the fo_close() operations are MP safe? I
think we are safe in the common case, but we need to pay special attention
to edge cases like the ones in sys/opencrypto/cryptodev.c (cryptof_close()).
I am not sure that these operations are MP safe yet, in which case we might
run into problems without the Giant aquisition.

-- 
Christian S.J. Peron
csjp@FreeBSD.ORG
FreeBSD Committer
FreeBSD Security Team

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 04:06:56 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1796F16A41F;
	Tue, 20 Dec 2005 04:06:56 +0000 (GMT)
	(envelope-from cperciva@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A44E843D5F;
	Tue, 20 Dec 2005 04:06:55 +0000 (GMT)
	(envelope-from cperciva@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 jBK46t54056507;
	Tue, 20 Dec 2005 04:06:55 GMT
	(envelope-from cperciva@repoman.freebsd.org)
Received: (from cperciva@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK46txB056506;
	Tue, 20 Dec 2005 04:06:55 GMT (envelope-from cperciva)
Message-Id: <200512200406.jBK46txB056506@repoman.freebsd.org>
From: Colin Percival <cperciva@FreeBSD.org>
Date: Tue, 20 Dec 2005 04:06: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: CVSROOT approvers
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 04:06:56 -0000

cperciva    2005-12-20 04:06:55 UTC

  FreeBSD src repository

  Modified files:
    .                    approvers 
  Log:
  Claim ownership of RELENG_6_0.
  
  While I'm here, edit the comment about RELENG_5 to point out that
  RELENG_6 also needs a '$' to prevent matching against RELENG_6_*.
  
  Approved by:    re (scottl)
  
  Revision  Changes    Path
  1.28      +4 -3      CVSROOT/approvers

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 04:12:35 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E946316A41F
	for <cvs-src@freebsd.org>; Tue, 20 Dec 2005 04:12:35 +0000 (GMT)
	(envelope-from kabaev@gmail.com)
Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.195])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 65E9443D62
	for <cvs-src@freebsd.org>; Tue, 20 Dec 2005 04:12:32 +0000 (GMT)
	(envelope-from kabaev@gmail.com)
Received: by zproxy.gmail.com with SMTP id 8so1395997nzo
	for <cvs-src@freebsd.org>; Mon, 19 Dec 2005 20:12:31 -0800 (PST)
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com;
	h=received:date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding;
	b=lqip/pQ8ueqPYn/S3aOFN/ZWS+b4kXwS1nGFWIYR8TD5yuCxC1ab6YFdWqxdPoWOB8bFw3g9yKd8IJqY3tUN852arlWP432wXIDi/bVC8l2pFKyQjN3IWyiZS/h6VyWc+OIRjBifn7o9v9r40LT/MAScw1iW288evU1vcQdU5jI=
Received: by 10.36.222.77 with SMTP id u77mr1170462nzg;
	Mon, 19 Dec 2005 20:12:31 -0800 (PST)
Received: from kan.dnsalias.net ( [24.63.93.195])
	by mx.gmail.com with ESMTP id 40sm4714424nzf.2005.12.19.20.12.30;
	Mon, 19 Dec 2005 20:12:31 -0800 (PST)
Date: Mon, 19 Dec 2005 23:12:29 -0500
From: Alexander Kabaev <kabaev@gmail.com>
To: "Christian S.J. Peron" <csjp@FreeBSD.org>
Message-ID: <20051219231229.6d663308@kan.dnsalias.net>
In-Reply-To: <20051220032724.GA12119@hub.freebsd.org>
References: <200512200049.jBK0nxil048441@repoman.freebsd.org>
	<20051220032724.GA12119@hub.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
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org,
	Pawel Jakub Dawidek <pjd@FreeBSD.org>, cvs-all@FreeBSD.org
Subject: Re: 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 04:12:36 -0000

On Tue, 20 Dec 2005 03:27:24 +0000
"Christian S.J. Peron" <csjp@FreeBSD.org> wrote:

> On Tue, Dec 20, 2005 at 12:49:59AM +0000, Pawel Jakub Dawidek wrote:
> > pjd         2005-12-20 00:49:59 UTC
> > 
> >   FreeBSD src repository
> > 
> >   Modified files:
> >     sys/kern             vfs_syscalls.c 
> >   Log:
> >   Reduce Giant scope a bit, as fdrop() is believed to be MPSAFE.
> >   The purpose of this change is consistency (not performance
> > improvement:)), as it was hard to tell if fdrop() is MPSAFE or not
> > when I saw it sometimes under the Giant and sometimes without it.
> >   
> >   Glanced at by:  ssouhlal, kan
> >   
> >   Revision  Changes    Path
> >   1.396     +7 -9      src/sys/kern/vfs_syscalls.c
> 
> Did you check to make sure that all the fo_close() operations are MP
> safe? I think we are safe in the common case, but we need to pay
> special attention to edge cases like the ones in
> sys/opencrypto/cryptodev.c (cryptof_close()). I am not sure that
> these operations are MP safe yet, in which case we might run into
> problems without the Giant aquisition.
> 
> -- 
> Christian S.J. Peron
> csjp@FreeBSD.ORG
> FreeBSD Committer
> FreeBSD Security Team

As far as I can see, the code changes apply only to descriptors backed
by vnodes, and vn_closefile takes care of acquiring Giant before
calling into non-mpsafe FS VOPS. So cryptof_close() operation is not
affected by this patch.

-- 
Alexander Kabaev

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 04:32:44 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.ORG
Delivered-To: cvs-src@FreeBSD.ORG
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 3D44016A426;
	Tue, 20 Dec 2005 04:32:44 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from bugor.portaone.com (bugor.portaone.com [65.61.200.232])
	by mx1.FreeBSD.org (Postfix) with ESMTP id DE38343D5D;
	Tue, 20 Dec 2005 04:32:42 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from [192.168.1.2] (S0106000f3d63befd.vs.shawcable.net
	[70.71.19.119]) (authenticated bits=0)
	by bugor.portaone.com (8.13.4/8.13.4) with ESMTP id jBK4Wcku089622
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Tue, 20 Dec 2005 04:32:39 GMT (envelope-from sobomax@portaone.com)
Message-ID: <43A7895C.9060608@portaone.com>
Date: Mon, 19 Dec 2005 20:32:28 -0800
From: Maxim Sobolev <sobomax@portaone.com>
Organization: Porta Software Ltd
User-Agent: Thunderbird 1.5 (Windows/20051025)
MIME-Version: 1.0
To: John Baldwin <jhb@FreeBSD.ORG>
References: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
	<200512191033.33186.jhb@freebsd.org>
	<43A6FCD0.4030809@portaone.com>
	<200512191420.03927.jhb@freebsd.org>
In-Reply-To: <200512191420.03927.jhb@freebsd.org>
Content-Type: text/plain; charset=KOI8-U; format=flowed
Content-Transfer-Encoding: 7bit
X-Virus-Scanned: ClamAV 0.87.1/1213/Mon Dec 19 14:48:34 2005 on
	bugor.portaone.com
X-Virus-Status: Clean
X-Spam-Status: No, score=0.7 required=5.0 tests=AWL,BAYES_00,
	RCVD_IN_SORBS_DUL,SPF_SOFTFAIL autolearn=no version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on bugor.portaone.com
Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject: Re: cvs commit: src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: Maxim.Sobolev@portaone.com
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 04:32:44 -0000

John Baldwin wrote:
> On Monday 19 December 2005 01:32 pm, Maxim Sobolev wrote:
>> John Baldwin wrote:
>>> On Monday 19 December 2005 04:26 am, Maxim Sobolev wrote:
>>>> sobomax     2005-12-19 09:26:42 UTC
>>>>
>>>>   FreeBSD src repository
>>>>
>>>>   Modified files:
>>>>     sys/boot/i386/loader main.c
>>>>   Log:
>>>>   If LOADER_BZIP2_SUPPORT is defined allocate heap in the 1MB-4MB range
>>>> to provide enough room for decompression (up to 2.5MB is necessary).
>>>> This should be safe to do since we load i386 kernels after 8MB mark now,
>>>> so that 16MB is the minimum amount of RAM necessary to even boot
>>>> FreeBSD.
>>> Err, I thought we loaded PAE kernels at 2MB and non-PAE kernels at 4MB to
>>> skip the first PSE page (PSE pages are 2MB on PAE).
>> You are right, my mistake, sorry. In any case memory in the range
>> 1MB-4MB can be used by default.
> 
> Errm, no it can't.  PAE kernels (and amd64 kernels I think) are both loaded at 
> 2MB, so that only leaves memory in the range 1MB-2MB.

I see, did not know about amd64 (PAE is less a concern for me since it's 
not a default kernel). What do you think about the following patch:

http://www.pbxpress.com/~sobomax/loader.diff

It moves heap to the top of the extended memory and teaches 
i386_copyin() to avoid messing up this region, so that in low memory 
situation it will just fail, not trash heap.

-Maxim

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 08:54:39 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B1DD016A41F;
	Tue, 20 Dec 2005 08:54:39 +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 2C8EE43D86;
	Tue, 20 Dec 2005 08:54:31 +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 jBK8sULJ081597;
	Tue, 20 Dec 2005 08:54:30 GMT
	(envelope-from sobomax@repoman.freebsd.org)
Received: (from sobomax@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK8sUrk081596;
	Tue, 20 Dec 2005 08:54:30 GMT (envelope-from sobomax)
Message-Id: <200512200854.jBK8sUrk081596@repoman.freebsd.org>
From: Maxim Sobolev <sobomax@FreeBSD.org>
Date: Tue, 20 Dec 2005 08:54: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/boot/pc98/libpc98 Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 08:54:40 -0000

sobomax     2005-12-20 08:54:30 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/pc98/libpc98 Makefile 
  Log:
  Unbreak pc98 after my last changes to i386.
  
  Revision  Changes    Path
  1.23      +3 -0      src/sys/boot/pc98/libpc98/Makefile

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 09:24:05 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B395D16A420;
	Tue, 20 Dec 2005 09:24:05 +0000 (GMT) (envelope-from gnn@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 6590143D4C;
	Tue, 20 Dec 2005 09:24:05 +0000 (GMT) (envelope-from gnn@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 jBK9O5nl082861;
	Tue, 20 Dec 2005 09:24:05 GMT (envelope-from gnn@repoman.freebsd.org)
Received: (from gnn@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK9O5Z2082860;
	Tue, 20 Dec 2005 09:24:05 GMT (envelope-from gnn)
Message-Id: <200512200924.jBK9O5Z2082860@repoman.freebsd.org>
From: "George V. Neville-Neil" <gnn@FreeBSD.org>
Date: Tue, 20 Dec 2005 09:24: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/netinet in.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 09:24:05 -0000

gnn         2005-12-20 09:24:04 UTC

  FreeBSD src repository

  Modified files:
    sys/netinet          in.h 
  Log:
  Add protocol number for SCTP.
  
  Submitted by:   Randall Stewart rrs at cisco.com
  MFC after:      1 week
  
  Revision  Changes    Path
  1.94      +1 -0      src/sys/netinet/in.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 09:38:05 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 07BE816A41F;
	Tue, 20 Dec 2005 09:38:05 +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 8179E43D53;
	Tue, 20 Dec 2005 09:38:04 +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 jBK9c47m083426;
	Tue, 20 Dec 2005 09:38:04 GMT
	(envelope-from delphij@repoman.freebsd.org)
Received: (from delphij@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBK9c457083425;
	Tue, 20 Dec 2005 09:38:04 GMT (envelope-from delphij)
Message-Id: <200512200938.jBK9c457083425@repoman.freebsd.org>
From: Xin LI <delphij@FreeBSD.org>
Date: Tue, 20 Dec 2005 09:38: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/netinet in.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 09:38:05 -0000

delphij     2005-12-20 09:38:04 UTC

  FreeBSD src repository

  Modified files:
    sys/netinet          in.h 
  Log:
  Use consistent indent character as other IPPROTO_* lines did.
  
  Revision  Changes    Path
  1.95      +1 -1      src/sys/netinet/in.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 11:04:10 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C71C116A420;
	Tue, 20 Dec 2005 11:04:10 +0000 (GMT)
	(envelope-from ceri@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id CDD0E43D7E;
	Tue, 20 Dec 2005 11:04:02 +0000 (GMT)
	(envelope-from ceri@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 jBKB428d086370;
	Tue, 20 Dec 2005 11:04:02 GMT
	(envelope-from ceri@repoman.freebsd.org)
Received: (from ceri@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKB42Pt086369;
	Tue, 20 Dec 2005 11:04:02 GMT (envelope-from ceri)
Message-Id: <200512201104.jBKB42Pt086369@repoman.freebsd.org>
From: Ceri Davies <ceri@FreeBSD.org>
Date: Tue, 20 Dec 2005 11:04: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/usr.bin/calendar/calendars calendar.holiday
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 11:04:11 -0000

ceri        2005-12-20 11:04:02 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/calendar/calendars calendar.holiday 
  Log:
  Liberation Day is no longer celebrated in Romania; rather a national
  holiday is now celebrated on December 1st.  From the PR:
  
  December 1 was adopted as National Day in 1990, being the day of
  celebration of the Great Assembly of Alba Iulia which voted for the
  union of Transylvania with Romania and which symbolise the union of all
  Romanians within a single state and the achievement of the unity of
  Romanian national state. [1]
  
  [1] LAW Number 10 from July 31st, 1990
  Regarding the proclamation of the National Day of Romania
  http://www.1decembrie.ro/en/index.php?option=com_content&task=view&id=1&Itemid=4
  
  PR:                             docs/90673
  Submitted by:                   Ion-Mihai "IOnut" Tetcu
  Originally pointed out by:      Cornel Ilie <cornel dot c punkt ilie at gmail punkt com>
  
  Revision  Changes    Path
  1.30      +1 -1      src/usr.bin/calendar/calendars/calendar.holiday

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 12:23:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 09F7716A41F;
	Tue, 20 Dec 2005 12:23:27 +0000 (GMT)
	(envelope-from phk@critter.freebsd.dk)
Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 918D143D55;
	Tue, 20 Dec 2005 12:23:26 +0000 (GMT)
	(envelope-from phk@critter.freebsd.dk)
Received: from critter.freebsd.dk (unknown [192.168.48.2])
	by phk.freebsd.dk (Postfix) with ESMTP id E041BBC66;
	Tue, 20 Dec 2005 12:23:24 +0000 (UTC)
To: John-Mark Gurney <gurney_j@resnet.uoregon.edu>
From: "Poul-Henning Kamp" <phk@phk.freebsd.dk>
In-Reply-To: Your message of "Tue, 13 Dec 2005 10:42:18 PST."
	<20051213184218.GC55657@funkthat.com> 
Date: Tue, 20 Dec 2005 13:23:24 +0100
Message-ID: <9760.1135081404@critter.freebsd.dk>
Sender: phk@critter.freebsd.dk
Cc: Alexey Dokuchaev <danfe@FreeBSD.org>, src-committers@FreeBSD.org,
	Luigi Rizzo <rizzo@icir.org>, cvs-all@FreeBSD.org,
	Gleb Smirnoff <glebius@FreeBSD.org>, cvs-src@FreeBSD.org
Subject: Re: ipfw2 logs to bpf (was Re: cvs commit: src/sbin/ipfw
	ipfw2.c...) 
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 12:23:27 -0000

In message <20051213184218.GC55657@funkthat.com>, John-Mark Gurney writes:

>I have patches that teach tcpdump how to understand divert sockets...
>(I forget if I write the packets back to continue the chain or if you
>have to use tee..)  This has the advantage of preventing yet another
>device in the system.. though it does prevent normal users from being
>able to watch the traffic...
>
>Anyone interested?

I guess you can do the same thing with "ipfwpcap | tcpdump -r -" so
I wonder if it isn't wiser to leave tcpdumps sources alone, in particular
given that it is 3rd party software ?

-- 
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 Dec 20 12:28:01 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id ADCC516A41F;
	Tue, 20 Dec 2005 12:28:01 +0000 (GMT)
	(envelope-from tegge@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 63F0343D68;
	Tue, 20 Dec 2005 12:27:59 +0000 (GMT)
	(envelope-from tegge@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 jBKCRxSx089969;
	Tue, 20 Dec 2005 12:27:59 GMT
	(envelope-from tegge@repoman.freebsd.org)
Received: (from tegge@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKCRxEp089968;
	Tue, 20 Dec 2005 12:27:59 GMT (envelope-from tegge)
Message-Id: <200512201227.jBKCRxEp089968@repoman.freebsd.org>
From: Tor Egge <tegge@FreeBSD.org>
Date: Tue, 20 Dec 2005 12:27: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/vm vm_fault.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 12:28:02 -0000

tegge       2005-12-20 12:27:59 UTC

  FreeBSD src repository

  Modified files:
    sys/vm               vm_fault.c 
  Log:
  Don't access fs->first_object after dropping reference to it.
  The result could be a missed or extra giant unlock.
  
  Reviewed by:    alc
  
  Revision  Changes    Path
  1.210     +3 -1      src/sys/vm/vm_fault.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 14:27:03 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B6A1916A41F;
	Tue, 20 Dec 2005 14:27:03 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 1842443D77;
	Tue, 20 Dec 2005 14:26:50 +0000 (GMT) (envelope-from ru@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 jBKEQliQ001885;
	Tue, 20 Dec 2005 14:26:47 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKEQl5f001884;
	Tue, 20 Dec 2005 14:26:47 GMT (envelope-from ru)
Message-Id: <200512201426.jBKEQl5f001884@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Tue, 20 Dec 2005 14:26:47 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/smbus smb.c smbus.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 14:27:03 -0000

ru          2005-12-20 14:26:47 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/smbus        smb.c smbus.c 
  Log:
  Stop creating duplicate "smb" devices when unloading/loading smb.ko,
  using the protection mechanisms described in device_add_child(9).
  
  Revision  Changes    Path
  1.35      +3 -1      src/sys/dev/smbus/smb.c
  1.19      +1 -23     src/sys/dev/smbus/smbus.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 15:29:02 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id ED2DF16A420;
	Tue, 20 Dec 2005 15:29:02 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0F05843D58;
	Tue, 20 Dec 2005 15:29:01 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (unverified [66.23.211.162]) 
	by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 4212012 
	for multiple; Tue, 20 Dec 2005 10:27:05 -0500
Received: from localhost (john@localhost [127.0.0.1])
	by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id jBKFSsII006642;
	Tue, 20 Dec 2005 10:28:54 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin <jhb@freebsd.org>
To: Maxim.Sobolev@portaone.com
Date: Tue, 20 Dec 2005 09:59:15 -0500
User-Agent: KMail/1.8.2
References: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
	<200512191420.03927.jhb@freebsd.org>
	<43A7895C.9060608@portaone.com>
In-Reply-To: <43A7895C.9060608@portaone.com>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="koi8-u"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200512200959.16641.jhb@freebsd.org>
X-Virus-Scanned: ClamAV version 0.87.1,
	clamav-milter version 0.87 on server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-1.4 required=4.2 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx
X-Server: High Performance Mail Server - http://surgemail.com r=1653887525
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 15:29:03 -0000

On Monday 19 December 2005 11:32 pm, Maxim Sobolev wrote:
> John Baldwin wrote:
> > On Monday 19 December 2005 01:32 pm, Maxim Sobolev wrote:
> >> John Baldwin wrote:
> >>> On Monday 19 December 2005 04:26 am, Maxim Sobolev wrote:
> >>>> sobomax     2005-12-19 09:26:42 UTC
> >>>>
> >>>>   FreeBSD src repository
> >>>>
> >>>>   Modified files:
> >>>>     sys/boot/i386/loader main.c
> >>>>   Log:
> >>>>   If LOADER_BZIP2_SUPPORT is defined allocate heap in the 1MB-4MB
> >>>> range to provide enough room for decompression (up to 2.5MB is
> >>>> necessary). This should be safe to do since we load i386 kernels after
> >>>> 8MB mark now, so that 16MB is the minimum amount of RAM necessary to
> >>>> even boot FreeBSD.
> >>>
> >>> Err, I thought we loaded PAE kernels at 2MB and non-PAE kernels at 4MB
> >>> to skip the first PSE page (PSE pages are 2MB on PAE).
> >>
> >> You are right, my mistake, sorry. In any case memory in the range
> >> 1MB-4MB can be used by default.
> >
> > Errm, no it can't.  PAE kernels (and amd64 kernels I think) are both
> > loaded at 2MB, so that only leaves memory in the range 1MB-2MB.
>
> I see, did not know about amd64 (PAE is less a concern for me since it's
> not a default kernel). What do you think about the following patch:
>
> http://www.pbxpress.com/~sobomax/loader.diff
>
> It moves heap to the top of the extended memory and teaches
> i386_copyin() to avoid messing up this region, so that in low memory
> situation it will just fail, not trash heap.

So, if I understand correctly, you're now sticking the heap at the last 3MB of 
RAM.  FYI, as long as you have a PPro or newer you can test booting a PAE 
kernel.  You don't have to have > 4GB of RAM. So, you can test this locally 
to see if you can boot a PAE kernel (bzipped at that!) before committing.

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 16:21:18 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B5E1916A41F;
	Tue, 20 Dec 2005 16:21:18 +0000 (GMT) (envelope-from pav@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 6FA1D43D55;
	Tue, 20 Dec 2005 16:21:18 +0000 (GMT) (envelope-from pav@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 jBKGLI7L008084;
	Tue, 20 Dec 2005 16:21:18 GMT (envelope-from pav@repoman.freebsd.org)
Received: (from pav@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKGLIt2008083;
	Tue, 20 Dec 2005 16:21:18 GMT (envelope-from pav)
Message-Id: <200512201621.jBKGLIt2008083@repoman.freebsd.org>
From: Pav Lucistnik <pav@FreeBSD.org>
Date: Tue, 20 Dec 2005 16:21:18 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/usb umass.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 16:21:18 -0000

pav         2005-12-20 16:21:18 UTC

  FreeBSD src repository (doc,ports committer)

  Modified files:
    sys/dev/usb          umass.c usbdevs 
  Log:
  - Ignore incorrect CSW signatures on my PURE PocketDab 2000 player
  
  Approved by:    ssouhlal
  MFC after:      1 week
  
  Revision  Changes    Path
  1.126     +11 -3     src/sys/dev/usb/umass.c
  1.239     +4 -0      src/sys/dev/usb/usbdevs

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 18:18:38 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4CEEA16A420;
	Tue, 20 Dec 2005 18:18:38 +0000 (GMT)
	(envelope-from maxim@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 03C6843D46;
	Tue, 20 Dec 2005 18:18:38 +0000 (GMT)
	(envelope-from maxim@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 jBKIIbOb019976;
	Tue, 20 Dec 2005 18:18:37 GMT
	(envelope-from maxim@repoman.freebsd.org)
Received: (from maxim@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKIIb0L019975;
	Tue, 20 Dec 2005 18:18:37 GMT (envelope-from maxim)
Message-Id: <200512201818.jBKIIb0L019975@repoman.freebsd.org>
From: Maxim Konovalov <maxim@FreeBSD.org>
Date: Tue, 20 Dec 2005 18:18:37 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sbin/routed if.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 18:18:38 -0000

maxim       2005-12-20 18:18:37 UTC

  FreeBSD src repository

  Modified files:
    sbin/routed          if.c 
  Log:
  o Remove rev. 1.14 debug printf(3) leftovers.
  
  PR:             bin/90389
  Submitted by:   Gavin Atkinson
  OK'ed by:       phk
  
  Revision  Changes    Path
  1.16      +1 -6      src/sbin/routed/if.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 19:28:25 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 21BBC16A41F;
	Tue, 20 Dec 2005 19:28:25 +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 C7FA243D46;
	Tue, 20 Dec 2005 19:28:24 +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 jBKJSOGc022713;
	Tue, 20 Dec 2005 19:28:24 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKJSOI0022712;
	Tue, 20 Dec 2005 19:28:24 GMT (envelope-from jhb)
Message-Id: <200512201928.jBKJSOI0022712@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 19:28: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/kern kern_mutex.c kern_sx.c src/sys/sys lock.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 19:28:25 -0000

jhb         2005-12-20 19:28:24 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/kern             kern_mutex.c kern_sx.c 
    sys/sys              lock.h 
  Log:
  MFC: Add a new 'show lock' command to ddb that can dump information about
  mutexes and sx locks including current owners, etc.
  
  Revision   Changes    Path
  1.154.2.5  +73 -2     src/sys/kern/kern_mutex.c
  1.25.2.1   +37 -1     src/sys/kern/kern_sx.c
  1.52.2.1   +1 -0      src/sys/sys/lock.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 19:57:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9249916A41F;
	Tue, 20 Dec 2005 19:57:48 +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 546E443D53;
	Tue, 20 Dec 2005 19:57:48 +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 jBKJvmpM024068;
	Tue, 20 Dec 2005 19:57:48 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKJvmoM024067;
	Tue, 20 Dec 2005 19:57:48 GMT (envelope-from jhb)
Message-Id: <200512201957.jBKJvmoM024067@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 19:57:47 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/acpica acpi_pci.c src/sys/dev/pci pci.c
 pci_if.m pci_private.h pcireg.h pcivar.h src/sys/sparc64/pci
 ofw_pcibus.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 19:57:48 -0000

jhb         2005-12-20 19:57:47 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/acpica       acpi_pci.c 
    sys/dev/pci          pci.c pci_if.m pci_private.h pcireg.h 
                         pcivar.h 
    sys/sparc64/pci      ofw_pcibus.c 
  Log:
  Add a new method PCI_FIND_EXTCAP() to the pci bus interface that is used
  to search for a specific extended capability.  If the specified capability
  is found for the given device, then the function returns success and
  optionally returns the offset of that capability.  If the capability is
  not found, the function returns an error.
  
  Revision  Changes    Path
  1.28      +1 -0      src/sys/dev/acpica/acpi_pci.c
  1.305     +54 -2     src/sys/dev/pci/pci.c
  1.8       +7 -0      src/sys/dev/pci/pci_if.m
  1.15      +2 -0      src/sys/dev/pci/pci_private.h
  1.49      +5 -0      src/sys/dev/pci/pcireg.h
  1.68      +6 -0      src/sys/dev/pci/pcivar.h
  1.9       +1 -0      src/sys/sparc64/pci/ofw_pcibus.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 19:58:37 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id AD9BA16A41F;
	Tue, 20 Dec 2005 19:58:37 +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 D48EB43D6A;
	Tue, 20 Dec 2005 19:58:28 +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 jBKJwSwu024157;
	Tue, 20 Dec 2005 19:58:28 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKJwS4c024156;
	Tue, 20 Dec 2005 19:58:28 GMT (envelope-from jhb)
Message-Id: <200512201958.jBKJwS4c024156@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 19:58: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 agp.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 19:58:37 -0000

jhb         2005-12-20 19:58:28 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              agp.c 
  Log:
  Use pci_find_extcap() to search for AGP capabilities (PCIY_AGP).
  
  Revision  Changes    Path
  1.47      +4 -25     src/sys/pci/agp.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:03:16 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EFB7716A41F;
	Tue, 20 Dec 2005 20:03:16 +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 AA06943D53;
	Tue, 20 Dec 2005 20:03:16 +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 jBKK3GsN024416;
	Tue, 20 Dec 2005 20:03:16 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKK3G3L024415;
	Tue, 20 Dec 2005 20:03:16 GMT (envelope-from jhb)
Message-Id: <200512202003.jBKK3G3L024415@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 20:03:16 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/pci agp.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:03:17 -0000

jhb         2005-12-20 20:03:16 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              agp.c 
  Log:
  Destroy the /dev device before destroying the mutex or releasing resources
  rather than afterwards.
  
  MFC after:      1 week
  
  Revision  Changes    Path
  1.48      +2 -1      src/sys/pci/agp.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:05:22 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4FB1516A41F;
	Tue, 20 Dec 2005 20:05:22 +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 0591243D69;
	Tue, 20 Dec 2005 20:05:22 +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 jBKK5LEL024625;
	Tue, 20 Dec 2005 20:05:21 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKK5Ld7024624;
	Tue, 20 Dec 2005 20:05:21 GMT (envelope-from jhb)
Message-Id: <200512202005.jBKK5Ld7024624@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 20:05: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 agp.c agpvar.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:05:22 -0000

jhb         2005-12-20 20:05:21 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              agp.c agpvar.h 
  Log:
  Don't map the AGP aperture into contiguous KVA.  The various graphics
  drivers already map sections into KVA as needed anyway.  Note that this
  will probably break the nvidia driver, but I will coordinate to get that
  fixed.
  
  MFC after:      2 weeks
  
  Revision  Changes    Path
  1.49      +1 -3      src/sys/pci/agp.c
  1.3       +0 -1      src/sys/pci/agpvar.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:18:45 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id A03D116A420;
	Tue, 20 Dec 2005 20:18:45 +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 EC82143D5A;
	Tue, 20 Dec 2005 20:18:42 +0000 (GMT)
	(envelope-from scottl@samsco.org)
Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14])
	(authenticated bits=0)
	by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id jBKKIfir056659;
	Tue, 20 Dec 2005 13:18:41 -0700 (MST)
	(envelope-from scottl@samsco.org)
Message-ID: <43A86721.8010405@samsco.org>
Date: Tue, 20 Dec 2005 13:18:41 -0700
From: Scott Long <scottl@samsco.org>
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US;
	rv:1.7.7) Gecko/20050416
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: John Baldwin <jhb@FreeBSD.org>
References: <200512202005.jBKK5Ld7024624@repoman.freebsd.org>
In-Reply-To: <200512202005.jBKK5Ld7024624@repoman.freebsd.org>
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/pci agp.c agpvar.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:18:45 -0000

John Baldwin wrote:

> jhb         2005-12-20 20:05:21 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/pci              agp.c agpvar.h 
>   Log:
>   Don't map the AGP aperture into contiguous KVA.  The various graphics
>   drivers already map sections into KVA as needed anyway.  Note that this
>   will probably break the nvidia driver, but I will coordinate to get that
>   fixed.
>   
>   MFC after:      2 weeks
>   
>   Revision  Changes    Path
>   1.49      +1 -3      src/sys/pci/agp.c
>   1.3       +0 -1      src/sys/pci/agpvar.h

So this means no more panicing when using a card with 256 or 512MB of RAM?

Scott

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:32:30 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 02E5A16A41F;
	Tue, 20 Dec 2005 20:32:30 +0000 (GMT) (envelope-from eta@lclark.edu)
Received: from leguin.anholt.net (69-30-77-85.dq1sn.easystreet.com
	[69.30.77.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69F4C43D45;
	Tue, 20 Dec 2005 20:32:28 +0000 (GMT) (envelope-from eta@lclark.edu)
Received: from leguin.anholt.net (localhost [127.0.0.1])
	by leguin.anholt.net (8.13.4/8.13.1) with ESMTP id jBKKWReL020614;
	Tue, 20 Dec 2005 12:32:27 -0800 (PST) (envelope-from eta@lclark.edu)
Received: (from anholt@localhost)
	by leguin.anholt.net (8.13.4/8.13.1/Submit) id jBKKWJbc020612;
	Tue, 20 Dec 2005 12:32:19 -0800 (PST) (envelope-from eta@lclark.edu)
X-Authentication-Warning: leguin.anholt.net: anholt set sender to
	eta@lclark.edu using -f
From: Eric Anholt <eta@lclark.edu>
To: Scott Long <scottl@samsco.org>
In-Reply-To: <43A86721.8010405@samsco.org>
References: <200512202005.jBKK5Ld7024624@repoman.freebsd.org>
	<43A86721.8010405@samsco.org>
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature";
	boundary="=-vrOj3rXN6WE8mb5d4Roe"
Date: Tue, 20 Dec 2005 12:32:18 -0800
Message-Id: <1135110738.75547.39.camel@leguin>
Mime-Version: 1.0
X-Mailer: Evolution 2.4.2 FreeBSD GNOME Team Port 
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org,
	John Baldwin <jhb@FreeBSD.org>
Subject: Re: cvs commit: src/sys/pci agp.c agpvar.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:32:30 -0000


--=-vrOj3rXN6WE8mb5d4Roe
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable

On Tue, 2005-12-20 at 13:18 -0700, Scott Long wrote:
> John Baldwin wrote:
>=20
> > jhb         2005-12-20 20:05:21 UTC
> >=20
> >   FreeBSD src repository
> >=20
> >   Modified files:
> >     sys/pci              agp.c agpvar.h=20
> >   Log:
> >   Don't map the AGP aperture into contiguous KVA.  The various graphics
> >   drivers already map sections into KVA as needed anyway.  Note that th=
is
> >   will probably break the nvidia driver, but I will coordinate to get t=
hat
> >   fixed.
> >  =20
> >   MFC after:      2 weeks
> >  =20
> >   Revision  Changes    Path
> >   1.49      +1 -3      src/sys/pci/agp.c
> >   1.3       +0 -1      src/sys/pci/agpvar.h
>=20
> So this means no more panicing when using a card with 256 or 512MB of RAM=
?
>=20
> Scott

Your AGP aperture size is different from your card's framebuffer size.
The DRM was guilty for some time of needlessly mapping all of your
card's framebuffer, but that should have been fixed a few months ago.
Default AGP aperture size is chosen by the BIOS, on the other hand.

I'm really glad John's dealing with this, since it was likely a major
stability issue on newer hardware (i915 has either a 128MB or 256MB
aperture, for example).

--=20
Eric Anholt                                     eta@lclark.edu
http://people.freebsd.org/~anholt/              anholt@FreeBSD.org

--=-vrOj3rXN6WE8mb5d4Roe
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: This is a digitally signed message part

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQBDqGpSHUdvYGzw6vcRAg5bAJ4kxHZYhYPhFqndbKp8EED6uogDRwCfSU9l
m+2roSYgsnlbW2ePjmi5Eaw=
=fnU6
-----END PGP SIGNATURE-----

--=-vrOj3rXN6WE8mb5d4Roe--

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:36:50 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C2D7316A41F;
	Tue, 20 Dec 2005 20:36:50 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 105D243D60;
	Tue, 20 Dec 2005 20:36:49 +0000 (GMT)
	(envelope-from dougb@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 jBKKamFP025836;
	Tue, 20 Dec 2005 20:36:48 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKKamLv025835;
	Tue, 20 Dec 2005 20:36:48 GMT (envelope-from dougb)
Message-Id: <200512202036.jBKKamLv025835@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Tue, 20 Dec 2005 20:36: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/etc/defaults rc.conf src/etc/rc.d cleartmp
 src/share/man/man5 rc.conf.5
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:36:50 -0000

dougb       2005-12-20 20:36:48 UTC

  FreeBSD src repository

  Modified files:
    etc/defaults         rc.conf 
    etc/rc.d             cleartmp 
    share/man/man5       rc.conf.5 
  Log:
  Brooks pointed out a potential problem with disabling the X cleaning
  by default, so add a new knob that is on by default, and check that
  knob in start_precmd so that it can run even if cleaning /tmp is
  not enabled. This has the advantage of not violating POLA, while
  still allowing the user to disable this behavior if they wish (for
  example on a server that will never run X).
  
  Revision  Changes    Path
  1.269     +1 -0      src/etc/defaults/rc.conf
  1.14      +17 -10    src/etc/rc.d/cleartmp
  1.275     +9 -1      src/share/man/man5/rc.conf.5

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:47:24 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id F092C16A41F;
	Tue, 20 Dec 2005 20:47:24 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 6E4F343D83;
	Tue, 20 Dec 2005 20:46:48 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (unverified [66.23.211.162]) 
	by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 4237376 
	for multiple; Tue, 20 Dec 2005 15:46:42 -0500
Received: from localhost (john@localhost [127.0.0.1])
	by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id jBKKka2l008619;
	Tue, 20 Dec 2005 15:46:38 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin <jhb@freebsd.org>
To: Scott Long <scottl@samsco.org>
Date: Tue, 20 Dec 2005 15:46:42 -0500
User-Agent: KMail/1.8.2
References: <200512202005.jBKK5Ld7024624@repoman.freebsd.org>
	<43A86721.8010405@samsco.org>
In-Reply-To: <43A86721.8010405@samsco.org>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200512201546.45094.jhb@freebsd.org>
X-Virus-Scanned: ClamAV version 0.87.1,
	clamav-milter version 0.87 on server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-1.4 required=4.2 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx
X-Server: High Performance Mail Server - http://surgemail.com r=1653887525
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/pci agp.c agpvar.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:47:25 -0000

On Tuesday 20 December 2005 03:18 pm, Scott Long wrote:
> John Baldwin wrote:
> > jhb         2005-12-20 20:05:21 UTC
> >
> >   FreeBSD src repository
> >
> >   Modified files:
> >     sys/pci              agp.c agpvar.h
> >   Log:
> >   Don't map the AGP aperture into contiguous KVA.  The various graphics
> >   drivers already map sections into KVA as needed anyway.  Note that this
> >   will probably break the nvidia driver, but I will coordinate to get
> > that fixed.
> >
> >   MFC after:      2 weeks
> >
> >   Revision  Changes    Path
> >   1.49      +1 -3      src/sys/pci/agp.c
> >   1.3       +0 -1      src/sys/pci/agpvar.h
>
> So this means no more panicing when using a card with 256 or 512MB of RAM?

Well, more that it should mean no more panicing if you set your AGP aperture 
to 256 MB in your BIOS and then start up X11.  I need to verify that I can 
now do this before I MFC this to 6.x.  We are limited to an aperture of 128 
MB at work right now because we run out of KVA when starting X with the 
aperture set to 256.

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:56:22 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 3CFE916A420;
	Tue, 20 Dec 2005 20:56:22 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id E67F343D6A;
	Tue, 20 Dec 2005 20:56:21 +0000 (GMT)
	(envelope-from dougb@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 jBKKuLUE034592;
	Tue, 20 Dec 2005 20:56:21 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKKuLQO034591;
	Tue, 20 Dec 2005 20:56:21 GMT (envelope-from dougb)
Message-Id: <200512202056.jBKKuLQO034591@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Tue, 20 Dec 2005 20:56: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/etc/rc.d Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:56:22 -0000

dougb       2005-12-20 20:56:21 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    etc/rc.d             Makefile 
  Log:
  MFC 1.56, make install of sshd conditional on NO_OPENSSH
  
  Revision  Changes    Path
  1.53.2.4  +6 -1      src/etc/rc.d/Makefile

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 20:57:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4408816A41F;
	Tue, 20 Dec 2005 20:57:21 +0000 (GMT)
	(envelope-from cognet@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7698C43D69;
	Tue, 20 Dec 2005 20:57:20 +0000 (GMT)
	(envelope-from cognet@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 jBKKvK4d034643;
	Tue, 20 Dec 2005 20:57:20 GMT
	(envelope-from cognet@repoman.freebsd.org)
Received: (from cognet@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKKvKCR034642;
	Tue, 20 Dec 2005 20:57:20 GMT (envelope-from cognet)
Message-Id: <200512202057.jBKKvKCR034642@repoman.freebsd.org>
From: Olivier Houchard <cognet@FreeBSD.org>
Date: Tue, 20 Dec 2005 20:57: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/conf Makefile.arm
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 20:57:21 -0000

cognet      2005-12-20 20:57:20 UTC

  FreeBSD src repository

  Modified files:
    sys/conf             Makefile.arm 
  Log:
  Rather than appending it at the end of the kernel build process, give the
  ELF trampoline build its own target, "trampoline".
  It makes it possible to construct a bootable gzipped kernel without having
  to build in the same process.
  
  Revision  Changes    Path
  1.24      +20 -21    src/sys/conf/Makefile.arm

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:02:45 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D4EA616A41F;
	Tue, 20 Dec 2005 21:02:45 +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 BC31343D78;
	Tue, 20 Dec 2005 21:02:27 +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 jBKL2Mkq034933;
	Tue, 20 Dec 2005 21:02:22 GMT
	(envelope-from brooks@repoman.freebsd.org)
Received: (from brooks@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKL2MNW034932;
	Tue, 20 Dec 2005 21:02:22 GMT (envelope-from brooks)
Message-Id: <200512202102.jBKL2MNW034932@repoman.freebsd.org>
From: Brooks Davis <brooks@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:02:22 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:02:46 -0000

brooks      2005-12-20 21:02:22 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sbin/dhclient        dhclient.c 
  Log:
  MFC 1.12:
          When we get a bogus hostname in an option, drop the option
          rather than refusing the lease.  This allow obtaining leases
          on misadministered networks that use host names with
          underscores in them.
  
  Reminded by:    avatar
  
  Revision  Changes    Path
  1.6.2.3   +4 -1      src/sbin/dhclient/dhclient.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:06:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D76B716A41F;
	Tue, 20 Dec 2005 21:06: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 3A5BC43D5D;
	Tue, 20 Dec 2005 21:06:43 +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 jBKL6h1f035187;
	Tue, 20 Dec 2005 21:06:43 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKL6hNr035186;
	Tue, 20 Dec 2005 21:06:43 GMT (envelope-from jhb)
Message-Id: <200512202106.jBKL6hNr035186@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:06: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/pci agp.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:06:44 -0000

jhb         2005-12-20 21:06:43 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              agp.c 
  Log:
  Change the agp_find_device() to return the first agp device that has been
  attached to a driver rather than always returning agp0.
  
  Revision  Changes    Path
  1.50      +11 -2     src/sys/pci/agp.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:06:59 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B25CC16A4D8;
	Tue, 20 Dec 2005 21:06:58 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7D66C43D5F;
	Tue, 20 Dec 2005 21:06:57 +0000 (GMT) (envelope-from ru@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 jBKL6vep035224;
	Tue, 20 Dec 2005 21:06:57 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKL6vMR035223;
	Tue, 20 Dec 2005 21:06:57 GMT (envelope-from ru)
Message-Id: <200512202106.jBKL6vMR035223@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:06:57 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/smbus smb.c smbus.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:06:59 -0000

ru          2005-12-20 21:06:57 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/smbus        smb.c smbus.c 
  Log:
  Create "smb" device when "smbus" device is attached, so that it's
  possible to load/unload smb.ko and smbus-implementing driver in
  any order, and get expected results.
  
  Revision  Changes    Path
  1.36      +0 -10     src/sys/dev/smbus/smb.c
  1.20      +11 -1     src/sys/dev/smbus/smbus.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:09:02 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4D25B16A41F;
	Tue, 20 Dec 2005 21:09:02 +0000 (GMT)
	(envelope-from keramida@ceid.upatras.gr)
Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.95])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 4CFB743D67;
	Tue, 20 Dec 2005 21:09:00 +0000 (GMT)
	(envelope-from keramida@ceid.upatras.gr)
Received: from flame.pc (aris.bedc.ondsl.gr [62.103.39.226])
	by kane.otenet.gr (8.13.4/8.13.4/Debian-8) with SMTP id jBKL8va2019616; 
	Tue, 20 Dec 2005 23:08:58 +0200
Received: by flame.pc (Postfix, from userid 1001)
	id 7F145116B3; Tue, 20 Dec 2005 23:07:54 +0200 (EET)
Date: Tue, 20 Dec 2005 23:07:54 +0200
From: Giorgos Keramidas <keramida@ceid.upatras.gr>
To: Pav Lucistnik <pav@FreeBSD.org>
Message-ID: <20051220210754.GA52388@flame.pc>
References: <200512201621.jBKGLIt2008083@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200512201621.jBKGLIt2008083@repoman.freebsd.org>
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/dev/usb umass.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:09:02 -0000

On 2005-12-20 16:21, Pav Lucistnik <pav@FreeBSD.org> wrote:
> pav         2005-12-20 16:21:18 UTC
>
>   FreeBSD src repository (doc,ports committer)
>
>   Modified files:
>     sys/dev/usb          umass.c usbdevs
>   Log:
>   - Ignore incorrect CSW signatures on my PURE PocketDab 2000 player
>
>   Approved by:    ssouhlal
>   MFC after:      1 week
>
>   Revision  Changes    Path
>   1.126     +11 -3     src/sys/dev/usb/umass.c
>   1.239     +4 -0      src/sys/dev/usb/usbdevs

This doesn't build.

/home/build/src/sys/dev/usb/umass.c: In function `umass_bbb_state':
/home/build/src/sys/dev/usb/umass.c:1629: error: invalid initializer
/home/build/src/sys/dev/usb/umass.c:1630: warning: comparison between pointer and integer
/home/build/src/sys/dev/usb/umass.c:1631: warning: comparison between pointer and integer
*** Error code 1

     %%%
     Index: /usr/src/sys/dev/usb/umass.c
     ===================================================================
     RCS file: /home/ncvs/src/sys/dev/usb/umass.c,v
     retrieving revision 1.125
     retrieving revision 1.126
     diff -u -r1.125 -r1.126
     --- /usr/src/sys/dev/usb/umass.c        19 Dec 2005 03:27:28 -0000      1.125
     +++ /usr/src/sys/dev/usb/umass.c        20 Dec 2005 16:21:17 -0000      1.126
     @@ -1620,9 +1625,12 @@
1625                 DIF(UDMASS_BBB, umass_bbb_dump_csw(sc, &sc->csw));
1626
1627                 /* Translate weird command-status signatures. */
     -               if ((sc->quirks & WRONG_CSWSIG) &&
     -                   UGETDW(sc->csw.dCSWSignature) == CSWSIGNATURE_OLYMPUS_C1)
     -                       USETDW(sc->csw.dCSWSignature, CSWSIGNATURE);
1628 +               if (sc->quirks & WRONG_CSWSIG) {
1629 +                       uDWord dCSWSignature = UGETDW(sc->csw.dCSWSignature);
1630 +                       if (dCSWSignature == CSWSIGNATURE_OLYMPUS_C1 ||
1631 +                           dCSWSignature == CSWSIGNATURE_IMAGINATION_DBX1)
1632 +                               USETDW(sc->csw.dCSWSignature, CSWSIGNATURE);
1633 +               }
1634
1635                 int Residue;
1636                 Residue = UGETDW(sc->csw.dCSWDataResidue);
     %%%

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:09:45 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8CC6D16A41F;
	Tue, 20 Dec 2005 21:09:45 +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 568F143D45;
	Tue, 20 Dec 2005 21:09:45 +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 jBKL9jUF035391;
	Tue, 20 Dec 2005 21:09:45 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKL9jU8035390;
	Tue, 20 Dec 2005 21:09:45 GMT (envelope-from jhb)
Message-Id: <200512202109.jBKL9jU8035390@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:09:45 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/amd64/pci pci_bus.c src/sys/conf files
 src/sys/dev/pci hostb_pci.c src/sys/i386/pci pci_bus.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:09:45 -0000

jhb         2005-12-20 21:09:45 UTC

  FreeBSD src repository

  Modified files:
    sys/amd64/pci        pci_bus.c 
    sys/conf             files 
    sys/i386/pci         pci_bus.c 
  Added files:
    sys/dev/pci          hostb_pci.c 
  Log:
  Move the hostb driver out of the i386 and amd64 PCI code (where it was
  duplicated anyways) and into a single MI driver.  Extend the driver a bit
  to implement the bus and PCI kobj interfaces such that other drivers can
  attach to it and transparently act as if their parent device is the PCI
  bus (for the most part).
  
  Revision  Changes    Path
  1.115     +0 -58     src/sys/amd64/pci/pci_bus.c
  1.1077    +1 -0      src/sys/conf/files
  1.1       +249 -0    src/sys/dev/pci/hostb_pci.c (new)
  1.122     +0 -58     src/sys/i386/pci/pci_bus.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:11:17 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0450916A420;
	Tue, 20 Dec 2005 21:11: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 872E343D46;
	Tue, 20 Dec 2005 21:11: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 jBKLBGKf035591;
	Tue, 20 Dec 2005 21:11:16 GMT
	(envelope-from brooks@repoman.freebsd.org)
Received: (from brooks@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKLBGpZ035590;
	Tue, 20 Dec 2005 21:11:16 GMT (envelope-from brooks)
Message-Id: <200512202111.jBKLBGpZ035590@repoman.freebsd.org>
From: Brooks Davis <brooks@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:11:16 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sbin/dhclient bpf.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:11:17 -0000

brooks      2005-12-20 21:11:16 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sbin/dhclient        bpf.c 
  Log:
  MFC 1.5: we now support BPF write filters unconditionally.
  
  Revision  Changes    Path
  1.2.2.3   +0 -2      src/sbin/dhclient/bpf.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:12:26 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id CB97316A41F;
	Tue, 20 Dec 2005 21:12:26 +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 9150043D5E;
	Tue, 20 Dec 2005 21:12:26 +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 jBKLCQ7U035651;
	Tue, 20 Dec 2005 21:12:26 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKLCQa8035650;
	Tue, 20 Dec 2005 21:12:26 GMT (envelope-from jhb)
Message-Id: <200512202112.jBKLCQa8035650@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:12:26 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/pci agp_ali.c agp_amd.c agp_amd64.c agp_ati.c
 agp_intel.c agp_nvidia.c agp_sis.c agp_via.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:12:26 -0000

jhb         2005-12-20 21:12:26 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              agp_ali.c agp_amd.c agp_amd64.c agp_ati.c 
                         agp_intel.c agp_nvidia.c agp_sis.c 
                         agp_via.c 
  Log:
  Change the various AGP drivers that attach to the Host-PCI bridge device to
  attach to the hostb driver instead.  This means that agp can now be loaded
  at runtime (in theory at least).  Also, the drivers no longer have to
  explicity call device_verbose() to cancel out any earlier calls to
  device_quiet() by the hostb(4) driver (this shows a limitation in new-bus,
  drivers really shouldn't be doing device_quiet() until they know they are
  going to drive that device, i.e. in attach).
  
  Revision  Changes    Path
  1.18      +1 -2      src/sys/pci/agp_ali.c
  1.23      +1 -2      src/sys/pci/agp_amd.c
  1.10      +1 -2      src/sys/pci/agp_amd64.c
  1.2       +1 -2      src/sys/pci/agp_ati.c
  1.29      +1 -2      src/sys/pci/agp_intel.c
  1.11      +1 -2      src/sys/pci/agp_nvidia.c
  1.19      +1 -2      src/sys/pci/agp_sis.c
  1.23      +1 -2      src/sys/pci/agp_via.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:17:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2DF7516A41F;
	Tue, 20 Dec 2005 21:17:21 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id DC9D643D53;
	Tue, 20 Dec 2005 21:17:20 +0000 (GMT)
	(envelope-from dougb@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 jBKLHKhA036010;
	Tue, 20 Dec 2005 21:17:20 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKLHK4o036009;
	Tue, 20 Dec 2005 21:17:20 GMT (envelope-from dougb)
Message-Id: <200512202117.jBKLHK4o036009@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:17:20 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/etc rc.subr
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:17:21 -0000

dougb       2005-12-20 21:17:20 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    etc                  rc.subr 
  Log:
  MFC 1.38, 1.4[1-3], and 1.46; excellent work done by yar to clean
  up and improve this file.
  
  Revision  Changes    Path
  1.34.2.6  +15 -14    src/etc/rc.subr

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:40:26 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2AEC616A41F;
	Tue, 20 Dec 2005 21:40:26 +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 D50B143D5A;
	Tue, 20 Dec 2005 21:40:25 +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 jBKLePXH037048;
	Tue, 20 Dec 2005 21:40:25 GMT
	(envelope-from brueffer@repoman.freebsd.org)
Received: (from brueffer@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKLePhZ037047;
	Tue, 20 Dec 2005 21:40:25 GMT (envelope-from brueffer)
Message-Id: <200512202140.jBKLePhZ037047@repoman.freebsd.org>
From: Christian Brueffer <brueffer@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:40: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/man4 agp.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:40:26 -0000

brueffer    2005-12-20 21:40:25 UTC

  FreeBSD src repository (doc committer)

  Modified files:
    share/man/man4       agp.4 
  Log:
  First step in bringing this page up to speed:
  
  Update list of supported bridges and controllers, use markup similar to
  ata.4 to display them and replace an XFree86 xref with Xorg.
  
  MFC after:      1 week
  
  Revision  Changes    Path
  1.8       +22 -16    src/share/man/man4/agp.4

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 21:41:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 19EF116A41F;
	Tue, 20 Dec 2005 21:41:54 +0000 (GMT) (envelope-from ps@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 787C743D76;
	Tue, 20 Dec 2005 21:41:52 +0000 (GMT) (envelope-from ps@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 jBKLfqUg037131;
	Tue, 20 Dec 2005 21:41:52 GMT (envelope-from ps@repoman.freebsd.org)
Received: (from ps@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKLfqIi037130;
	Tue, 20 Dec 2005 21:41:52 GMT (envelope-from ps)
Message-Id: <200512202141.jBKLfqIi037130@repoman.freebsd.org>
From: Paul Saab <ps@FreeBSD.org>
Date: Tue, 20 Dec 2005 21:41:52 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/random nehemiah.c randomdev.c randomdev.h
 randomdev_soft.c randomdev_soft.h yarrow.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 21:41:54 -0000

ps          2005-12-20 21:41:52 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/random       nehemiah.c randomdev.c randomdev.h 
                         randomdev_soft.c randomdev_soft.h 
                         yarrow.c 
  Log:
  Remove GIANT from device random.
  
  Submitted by:   ups
  
  Revision  Changes    Path
  1.4       +15 -1     src/sys/dev/random/nehemiah.c
  1.60      +3 -11     src/sys/dev/random/randomdev.c
  1.7       +4 -0      src/sys/dev/random/randomdev.h
  1.12      +42 -0     src/sys/dev/random/randomdev_soft.c
  1.2       +1 -0      src/sys/dev/random/randomdev_soft.h
  1.46      +4 -4      src/sys/dev/random/yarrow.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 22:35:40 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0970116A41F;
	Tue, 20 Dec 2005 22:35:40 +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 B079343D5A;
	Tue, 20 Dec 2005 22:35:39 +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 jBKMZdec039907;
	Tue, 20 Dec 2005 22:35:39 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKMZdeh039906;
	Tue, 20 Dec 2005 22:35:39 GMT (envelope-from jhb)
Message-Id: <200512202235.jBKMZdeh039906@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 22:35: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/conf files
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 22:35:40 -0000

jhb         2005-12-20 22:35:39 UTC

  FreeBSD src repository

  Modified files:
    sys/conf             files 
  Log:
  Add a vgapci(4) stub device driver for VGA PCI devices.  This device serves
  as a bus so that other drivers such as drm(4), acpi_video(4), and agp(4)
  can attach to it thus allowing multiple drivers for the same device.  It
  also removes the need for the drmsub hack for the i8[13]0/i915 drm and agp
  drivers.
  
  Revision  Changes    Path
  1.1078    +1 -0      src/sys/conf/files

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 22:41:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DF28216A420;
	Tue, 20 Dec 2005 22:41:51 +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 A04DC43D66;
	Tue, 20 Dec 2005 22:41:36 +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 jBKMfXsg040235;
	Tue, 20 Dec 2005 22:41:33 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKMfX7a040234;
	Tue, 20 Dec 2005 22:41:33 GMT (envelope-from jhb)
Message-Id: <200512202241.jBKMfX7a040234@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 22:41: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/dev/pci vga_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 22:41:52 -0000

jhb         2005-12-20 22:41:33 UTC

  FreeBSD src repository

  Added files:
    sys/dev/pci          vga_pci.c 
  Log:
  Add a vgapci(4) stub device driver for VGA PCI devices.  This device serves
  as a bus so that other drivers such as drm(4), acpi_video(4), and agp(4)
  can attach to it thus allowing multiple drivers for the same device.  It
  also removes the need for the drmsub hack for the i8[13]0/i915 drm and agp
  drivers.
  
  Revision  Changes    Path
  1.3       +262 -0    src/sys/dev/pci/vga_pci.c (new)

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 22:42:25 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6F83316A41F;
	Tue, 20 Dec 2005 22:42:25 +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 83E1843D76;
	Tue, 20 Dec 2005 22:42:16 +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 jBKMgGRX040276;
	Tue, 20 Dec 2005 22:42:16 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKMgGgN040275;
	Tue, 20 Dec 2005 22:42:16 GMT (envelope-from jhb)
Message-Id: <200512202242.jBKMgGgN040275@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 22:42:16 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/acpica acpi_video.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 22:42:25 -0000

jhb         2005-12-20 22:42:16 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/acpica       acpi_video.c 
  Log:
  Attach to the vgapci device rather than pci.
  
  Revision  Changes    Path
  1.12      +11 -1     src/sys/dev/acpica/acpi_video.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 22:44:39 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1398416A41F;
	Tue, 20 Dec 2005 22:44:39 +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 A16BE43D67;
	Tue, 20 Dec 2005 22:44:36 +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 jBKMiac1040565;
	Tue, 20 Dec 2005 22:44:36 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKMiaHH040564;
	Tue, 20 Dec 2005 22:44:36 GMT (envelope-from jhb)
Message-Id: <200512202244.jBKMiaHH040564@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 2005 22:44:36 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/pci agp_i810.c src/sys/sys param.h
 src/sys/dev/drm drm_agpsupport.c drm_drv.c i915_drv.c mach64_drv.c
 mga_drv.c r128_drv.c radeon_drv.c savage_drv.c sis_drv.c tdfx_drv.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 22:44:39 -0000

jhb         2005-12-20 22:44:36 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              agp_i810.c 
    sys/sys              param.h 
    sys/dev/drm          drm_agpsupport.c drm_drv.c i915_drv.c 
                         mach64_drv.c mga_drv.c r128_drv.c 
                         radeon_drv.c savage_drv.c sis_drv.c 
                         tdfx_drv.c 
  Log:
  - Bump FreeBSD version for the hostb(4) and vgapci(4) drivers as well as
    the addition of pci_find_extcap().
  - Change the drm drivers to attach to vgapci.  This is #ifdef'd so the
    code can be shared across branches.
  - Use pci_find_extcap() to look for AGP and PCIE capabilities in drm.
  - GC all the drmsub stuff for i810/i830/i915.  The agp and drm devices are
    now both children of vgapci.
  
  Revision  Changes    Path
  1.4       +5 -0      src/sys/dev/drm/drm_agpsupport.c
  1.5       +9 -1      src/sys/dev/drm/drm_drv.c
  1.4       +8 -0      src/sys/dev/drm/i915_drv.c
  1.3       +4 -0      src/sys/dev/drm/mach64_drv.c
  1.11      +13 -2     src/sys/dev/drm/mga_drv.c
  1.11      +4 -0      src/sys/dev/drm/r128_drv.c
  1.14      +4 -0      src/sys/dev/drm/radeon_drv.c
  1.3       +4 -0      src/sys/dev/drm/savage_drv.c
  1.7       +4 -0      src/sys/dev/drm/sis_drv.c
  1.10      +4 -0      src/sys/dev/drm/tdfx_drv.c
  1.34      +4 -36     src/sys/pci/agp_i810.c
  1.258     +1 -1      src/sys/sys/param.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 22:45:25 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6ED5D16A41F;
	Tue, 20 Dec 2005 22:45:25 +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 2831443D5A;
	Tue, 20 Dec 2005 22:45:25 +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 jBKMjPB2040709;
	Tue, 20 Dec 2005 22:45:25 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKMjPuw040708;
	Tue, 20 Dec 2005 22:45:25 GMT (envelope-from jhb)
Message-Id: <200512202245.jBKMjPuw040708@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Tue, 20 Dec 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/sys/pci agpreg.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 22:45:25 -0000

jhb         2005-12-20 22:45:25 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              agpreg.h 
  Log:
  - Use PCIR_BAR() macro for the BAR for the aperture.
  - Axe macros used for walking PCI capabilities list.  We now ask the PCI
    bus to find caps for us rather than doing it in the drm and agp drivers.
  
  Revision  Changes    Path
  1.17      +1 -7      src/sys/pci/agpreg.h

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 22:47:42 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 77E7716A41F;
	Tue, 20 Dec 2005 22:47: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 19BA543D53;
	Tue, 20 Dec 2005 22:47:41 +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 jBKMln9e007541
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
	Tue, 20 Dec 2005 14:47:50 -0800
Message-ID: <43A88A00.9040407@root.org>
Date: Tue, 20 Dec 2005 14:47:28 -0800
From: Nate Lawson <nate@root.org>
User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: John Baldwin <jhb@FreeBSD.org>
References: <20051220224208.DB1B916A449@hub.freebsd.org>
In-Reply-To: <20051220224208.DB1B916A449@hub.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/pci vga_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 22:47:42 -0000

John Baldwin wrote:
> jhb         2005-12-20 22:41:33 UTC
> 
>   FreeBSD src repository
> 
>   Added files:
>     sys/dev/pci          vga_pci.c 
>   Log:
>   Add a vgapci(4) stub device driver for VGA PCI devices.  This device serves
>   as a bus so that other drivers such as drm(4), acpi_video(4), and agp(4)
>   can attach to it thus allowing multiple drivers for the same device.  It
>   also removes the need for the drmsub hack for the i8[13]0/i915 drm and agp
>   drivers.
>   
>   Revision  Changes    Path
>   1.3       +262 -0    src/sys/dev/pci/vga_pci.c (new)
> 
> 

All the methods seem to just be a straight-through mapping or a debug 
print + mapping.  For the ones you don't plan to do anything special in, 
can you just make the methods map directly to the generic versions?

> +static int
> +vga_pci_suspend(device_t dev)
> +{
> +
> +	return (bus_generic_suspend(dev));
> +}
> +
> +static int
> +vga_pci_resume(device_t dev)
> +{
> +
> +	return (bus_generic_resume(dev));
> +}
> +
> +/* Bus interface. */
> +
> +static int
> +vga_pci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
> +{
> +
> +	return (BUS_READ_IVAR(device_get_parent(dev), dev, which, result));
> +}
> +
> +static int
> +vga_pci_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
> +{
> +
> +	return (EINVAL);
> +}
> +
> +static struct resource *
> +vga_pci_alloc_resource(device_t dev, device_t child, int type, int *rid,
> +    u_long start, u_long end, u_long count, u_int flags)
> +{
> +
> +	return (bus_alloc_resource(dev, type, rid, start, end, count, flags));
> +}
> +
> +static int
> +vga_pci_release_resource(device_t dev, device_t child, int type, int rid,
> +    struct resource *r)
> +{
> +
> +	return (bus_release_resource(dev, type, rid, r));
> +}
> +
> +/* PCI interface. */
> +
> +static uint32_t
> +vga_pci_read_config(device_t dev, device_t child, int reg, int width)
> +{
> +
> +	return (pci_read_config(dev, reg, width));
> +}
> +
> +static void
> +vga_pci_write_config(device_t dev, device_t child, int reg, 
> +    uint32_t val, int width)
> +{
> +
> +	pci_write_config(dev, reg, val, width);
> +}
> +
> +static int
> +vga_pci_enable_busmaster(device_t dev, device_t child)
> +{
> +
> +	device_printf(dev, "child %s requested pci_enable_busmaster\n",
> +	    device_get_nameunit(child));
> +	return (pci_enable_busmaster(dev));
> +}
> +
> +static int
> +vga_pci_disable_busmaster(device_t dev, device_t child)
> +{
> +
> +	device_printf(dev, "child %s requested pci_disable_busmaster\n",
> +	    device_get_nameunit(child));
> +	return (pci_disable_busmaster(dev));
> +}
> +
> +static int
> +vga_pci_enable_io(device_t dev, device_t child, int space)
> +{
> +
> +	device_printf(dev, "child %s requested pci_enable_io\n",
> +	    device_get_nameunit(child));
> +	return (pci_enable_io(dev, space));
> +}
> +
> +static int
> +vga_pci_disable_io(device_t dev, device_t child, int space)
> +{
> +
> +	device_printf(dev, "child %s requested pci_disable_io\n",
> +	    device_get_nameunit(child));
> +	return (pci_disable_io(dev, space));
> +}
> +
> +static int
> +vga_pci_set_powerstate(device_t dev, device_t child, int state)
> +{
> +
> +	device_printf(dev, "child %s requested pci_set_powerstate\n",
> +	    device_get_nameunit(child));
> +	return (pci_set_powerstate(dev, state));
> +}
> +
> +static int
> +vga_pci_get_powerstate(device_t dev, device_t child)
> +{
> +
> +	device_printf(dev, "child %s requested pci_get_powerstate\n",
> +	    device_get_nameunit(child));
> +	return (pci_get_powerstate(dev));
> +}
> +
> +static int
> +vga_pci_assign_interrupt(device_t dev, device_t child)
> +{
> +
> +	device_printf(dev, "child %s requested pci_assign_interrupt\n",
> +	    device_get_nameunit(child));
> +	return (PCI_ASSIGN_INTERRUPT(device_get_parent(dev), dev));
> +}
> +
> +static int
> +vga_pci_find_extcap(device_t dev, device_t child, int capability,
> +    int *capreg)
> +{
> +
> +	return (pci_find_extcap(dev, capability, capreg));
> +}


-- 
Nate

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 23:00:12 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id A731416A420;
	Tue, 20 Dec 2005 23:00:12 +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 49BE743D62;
	Tue, 20 Dec 2005 23:00:12 +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 jBKN0CYd041539;
	Tue, 20 Dec 2005 23:00:12 GMT (envelope-from imp@repoman.freebsd.org)
Received: (from imp@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKN0CDX041538;
	Tue, 20 Dec 2005 23:00:12 GMT (envelope-from imp)
Message-Id: <200512202300.jBKN0CDX041538@repoman.freebsd.org>
From: Warner Losh <imp@FreeBSD.org>
Date: Tue, 20 Dec 2005 23:00: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/conf NOTES src/sys/i386/conf NOTES
 src/sys/pc98/conf NOTES
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 23:00:12 -0000

imp         2005-12-20 23:00:11 UTC

  FreeBSD src repository

  Modified files:
    sys/conf             NOTES 
    sys/i386/conf        NOTES 
    sys/pc98/conf        NOTES 
  Log:
  Move device 'cs' into i386/pc98 specific NOTES.  It is broken on ppc
  because it uses i386 specific calls.  Maybe it could be added to
  amd64, but I'm not so sure it would work there so I've not added it
  there.
  
  Revision  Changes    Path
  1.1338    +0 -4      src/sys/conf/NOTES
  1.1217    +4 -0      src/sys/i386/conf/NOTES
  1.69      +2 -0      src/sys/pc98/conf/NOTES

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 23:05:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 3A88A16A420;
	Tue, 20 Dec 2005 23:05:51 +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 E376A43D58;
	Tue, 20 Dec 2005 23:05:50 +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 jBKN5o0B041876;
	Tue, 20 Dec 2005 23:05:50 GMT (envelope-from imp@repoman.freebsd.org)
Received: (from imp@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKN5oOF041875;
	Tue, 20 Dec 2005 23:05:50 GMT (envelope-from imp)
Message-Id: <200512202305.jBKN5oOF041875@repoman.freebsd.org>
From: Warner Losh <imp@FreeBSD.org>
Date: Tue, 20 Dec 2005 23:05: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/share/man/man4/man4.i386 cs.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 23:05:51 -0000

imp         2005-12-20 23:05:50 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4/man4.i386 cs.4 
  Log:
  Mention PC Card support for the cs device
  
  Revision  Changes    Path
  1.21      +9 -0      src/share/man/man4/man4.i386/cs.4

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 23:07:38 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D6F2516A41F;
	Tue, 20 Dec 2005 23:07:38 +0000 (GMT) (envelope-from pav@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 643CA43D4C;
	Tue, 20 Dec 2005 23:07:38 +0000 (GMT) (envelope-from pav@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 jBKN7cjM041957;
	Tue, 20 Dec 2005 23:07:38 GMT (envelope-from pav@repoman.freebsd.org)
Received: (from pav@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKN7c2b041956;
	Tue, 20 Dec 2005 23:07:38 GMT (envelope-from pav)
Message-Id: <200512202307.jBKN7c2b041956@repoman.freebsd.org>
From: Pav Lucistnik <pav@FreeBSD.org>
Date: Tue, 20 Dec 2005 23:07:38 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/usb umass.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 23:07:39 -0000

pav         2005-12-20 23:07:38 UTC

  FreeBSD src repository (doc,ports committer)

  Modified files:
    sys/dev/usb          umass.c 
  Log:
  - Fix type in previous commit; unbreak build
  
  Approved by:    ssouhlal
  Pointy hat to:  pav
  
  Revision  Changes    Path
  1.127     +1 -1      src/sys/dev/usb/umass.c

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 23:08:52 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5893F16A41F;
	Tue, 20 Dec 2005 23:08:52 +0000 (GMT) (envelope-from pav@FreeBSD.org)
Received: from hood.oook.cz (hood.oook.cz [195.250.137.134])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A5BC643D5A;
	Tue, 20 Dec 2005 23:08:50 +0000 (GMT) (envelope-from pav@FreeBSD.org)
Received: from ikaros.oook.cz (localhost [127.0.0.1])
	by hood.oook.cz (8.13.4/8.13.4) with ESMTP id jBKN8gUm062818
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Wed, 21 Dec 2005 00:08:42 +0100 (CET) (envelope-from pav@FreeBSD.org)
Received: (from pav@localhost)
	by ikaros.oook.cz (8.13.4/8.13.4/Submit) id jBKN8fli062817;
	Wed, 21 Dec 2005 00:08:41 +0100 (CET) (envelope-from pav@FreeBSD.org)
X-Authentication-Warning: ikaros.oook.cz: pav set sender to pav@FreeBSD.org
	using -f
From: Pav Lucistnik <pav@FreeBSD.org>
To: Giorgos Keramidas <keramida@ceid.upatras.gr>
In-Reply-To: <20051220210754.GA52388@flame.pc>
References: <200512201621.jBKGLIt2008083@repoman.freebsd.org>
	<20051220210754.GA52388@flame.pc>
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature";
	boundary="=-73m3sAIylvLLrbNjrdWv"
Date: Wed, 21 Dec 2005 00:08:41 +0100
Message-Id: <1135120121.95330.10.camel@localhost>
Mime-Version: 1.0
X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port 
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/dev/usb umass.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: pav@FreeBSD.org
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 23:08:52 -0000


--=-73m3sAIylvLLrbNjrdWv
Content-Type: text/plain; charset=ISO-8859-2
Content-Transfer-Encoding: quoted-printable

Giorgos Keramidas p=ED=B9e v =FAt 20. 12. 2005 v 23:07 +0200:
> On 2005-12-20 16:21, Pav Lucistnik <pav@FreeBSD.org> wrote:
> > pav         2005-12-20 16:21:18 UTC
> >
> >   FreeBSD src repository (doc,ports committer)
> >
> >   Modified files:
> >     sys/dev/usb          umass.c usbdevs
> >   Log:
> >   - Ignore incorrect CSW signatures on my PURE PocketDab 2000 player
> >
> >   Approved by:    ssouhlal
> >   MFC after:      1 week
> >
> >   Revision  Changes    Path
> >   1.126     +11 -3     src/sys/dev/usb/umass.c
> >   1.239     +4 -0      src/sys/dev/usb/usbdevs
>=20
> This doesn't build.
>=20
> /home/build/src/sys/dev/usb/umass.c: In function `umass_bbb_state':
> /home/build/src/sys/dev/usb/umass.c:1629: error: invalid initializer
> /home/build/src/sys/dev/usb/umass.c:1630: warning: comparison between poi=
nter and integer
> /home/build/src/sys/dev/usb/umass.c:1631: warning: comparison between poi=
nter and integer

Should build now.

--=20
Pav Lucistnik <pav@oook.cz>
              <pav@FreeBSD.org>

And please, please, please add COMMENTS to your code. Reading
uncommented PERL is like chewing on chunks of broken glass,
only without the tasty blood sauce to go with it.
  -- John Rowan in rec.games.roguelike.adom

--=-73m3sAIylvLLrbNjrdWv
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?=
	=?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?=
	=?ISO-8859-1?Q?_zpr=E1vy?=

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQBDqI75ntdYP8FOsoIRAnwpAKCuOOYR2kpYIBGn9cpcojVYgBiiXgCeNako
Gh5+B9uPW7L1vNKILftHY78=
=9YB3
-----END PGP SIGNATURE-----

--=-73m3sAIylvLLrbNjrdWv--

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 23:22:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id BB11F16A41F;
	Tue, 20 Dec 2005 23:22:48 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id DF7BB43D69;
	Tue, 20 Dec 2005 23:22:47 +0000 (GMT)
	(envelope-from dougb@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 jBKNMlgW042548;
	Tue, 20 Dec 2005 23:22:47 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKNMljh042547;
	Tue, 20 Dec 2005 23:22:47 GMT (envelope-from dougb)
Message-Id: <200512202322.jBKNMljh042547@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Tue, 20 Dec 2005 23:22: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/etc/rc.d cleartmp
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 23:22:48 -0000

dougb       2005-12-20 23:22:47 UTC

  FreeBSD src repository

  Modified files:
    etc/rc.d             cleartmp 
  Log:
  Include a somewhat hackish way to make sure that we *always* test the
  new clear_tmp_X variable when start'ing.
  
  Revision  Changes    Path
  1.15      +6 -1      src/etc/rc.d/cleartmp

From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 23:29:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E783A16A41F;
	Tue, 20 Dec 2005 23:29:00 +0000 (GMT)
	(envelope-from keramida@ceid.upatras.gr)
Received: from rosebud.otenet.gr (rosebud.otenet.gr [195.170.0.94])
	by mx1.FreeBSD.org (Postfix) with ESMTP id D880543D5C;
	Tue, 20 Dec 2005 23:28:57 +0000 (GMT)
	(envelope-from keramida@ceid.upatras.gr)
Received: from flame.pc (aris.bedc.ondsl.gr [62.103.39.226])
	by rosebud.otenet.gr (8.13.4/8.13.4/Debian-8) with SMTP id
	jBKNStre016781; Wed, 21 Dec 2005 01:28:55 +0200
Received: by flame.pc (Postfix, from userid 1001)
	id 7B0B01157E; Wed, 21 Dec 2005 01:27:50 +0200 (EET)
Date: Wed, 21 Dec 2005 01:27:50 +0200
From: Giorgos Keramidas <keramida@ceid.upatras.gr>
To: Pav Lucistnik <pav@FreeBSD.org>
Message-ID: <20051220232750.GA2096@flame.pc>
References: <200512201621.jBKGLIt2008083@repoman.freebsd.org>
	<20051220210754.GA52388@flame.pc>
	<1135120121.95330.10.camel@localhost>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <1135120121.95330.10.camel@localhost>
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/dev/usb umass.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 23:29:01 -0000

On 2005-12-21 00:08, Pav Lucistnik <pav@FreeBSD.org> wrote:
> Giorgos Keramidas p??e v ?t 20. 12. 2005 v 23:07 +0200:
> > /home/build/src/sys/dev/usb/umass.c: In function `umass_bbb_state':
> > /home/build/src/sys/dev/usb/umass.c:1629: error: invalid initializer
> > /home/build/src/sys/dev/usb/umass.c:1630: warning: comparison between pointer and integer
> > /home/build/src/sys/dev/usb/umass.c:1631: warning: comparison between pointer and integer
>
> Should build now.

Very fast fix, thanks :)


From owner-cvs-src@FreeBSD.ORG  Tue Dec 20 23:42:19 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9919F16A41F;
	Tue, 20 Dec 2005 23:42:19 +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 7FB0E43D55;
	Tue, 20 Dec 2005 23:42:18 +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 jBKNgIlO043383;
	Tue, 20 Dec 2005 23:42:18 GMT (envelope-from alc@repoman.freebsd.org)
Received: (from alc@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKNgIiL043382;
	Tue, 20 Dec 2005 23:42:18 GMT (envelope-from alc)
Message-Id: <200512202342.jBKNgIiL043382@repoman.freebsd.org>
From: Alan Cox <alc@FreeBSD.org>
Date: Tue, 20 Dec 2005 23:42: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/kern imgact_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 20 Dec 2005 23:42:19 -0000

alc         2005-12-20 23:42:18 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             imgact_elf.c 
  Log:
  Eliminate an unneeded (vm_prot_t) parameter from two functions.  Eliminate
  unnecessary uses of a local variable.
  
  Reviewed by: tegge
  
  Revision  Changes    Path
  1.170     +10 -15    src/sys/kern/imgact_elf.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 00:09:11 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DB32116A41F;
	Wed, 21 Dec 2005 00:09:11 +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 9072543D53;
	Wed, 21 Dec 2005 00:09:11 +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 jBL09BWc044714;
	Wed, 21 Dec 2005 00:09:11 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL09B3U044713;
	Wed, 21 Dec 2005 00:09:11 GMT (envelope-from sam)
Message-Id: <200512210009.jBL09B3U044713@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Wed, 21 Dec 2005 00:09: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/ppbus immio.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 00:09:12 -0000

sam         2005-12-21 00:09:11 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/ppbus        immio.c 
  Log:
  bandaid assumption that char is signed
  
  MFC after:      1 week
  
  Revision  Changes    Path
  1.18      +1 -1      src/sys/dev/ppbus/immio.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 00:19:09 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9C75816A41F;
	Wed, 21 Dec 2005 00:19:09 +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 D95DE43D55;
	Wed, 21 Dec 2005 00:19:08 +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 jBL0J8fO045319;
	Wed, 21 Dec 2005 00:19:08 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL0J8Y8045318;
	Wed, 21 Dec 2005 00:19:08 GMT (envelope-from sam)
Message-Id: <200512210019.jBL0J8Y8045318@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Wed, 21 Dec 2005 00:19: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/netatm/uni unisig_encode.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 00:19:09 -0000

sam         2005-12-21 00:19:08 UTC

  FreeBSD src repository

  Modified files:
    sys/netatm/uni       unisig_encode.c 
  Log:
  don't assume char is signed
  
  MFC after:      1 week
  
  Revision  Changes    Path
  1.15      +1 -1      src/sys/netatm/uni/unisig_encode.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 01:19:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0E6F416A41F;
	Wed, 21 Dec 2005 01:19:21 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7DF4143D53;
	Wed, 21 Dec 2005 01:19:20 +0000 (GMT)
	(envelope-from dougb@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 jBL1JKp9054854;
	Wed, 21 Dec 2005 01:19:20 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL1JKHc054853;
	Wed, 21 Dec 2005 01:19:20 GMT (envelope-from dougb)
Message-Id: <200512210119.jBL1JKHc054853@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 01:19: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/etc/rc.d power_profile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 01:19:21 -0000

dougb       2005-12-21 01:19:20 UTC

  FreeBSD src repository

  Modified files:
    etc/rc.d             power_profile 
  Log:
  REQUIRE: syslogd and BEFORE: NETWORKING are now antithetical,
  and including both in this file had nasty side effects on the
  ordering of syslogd, as well as producing an error when running
  rcorder. Remove the more bogus of the two options, which restores
  proper ordering and removes the error.
  
  There is an open question as to whether scripts with the nostart
  KEYWORD should even have REQUIRE/BEFORE lines, and indeed, whether
  they should be in /etc/rc.d at all, but that's for another time.
  
  Revision  Changes    Path
  1.9       +0 -1      src/etc/rc.d/power_profile

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 02:03:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id ECABE16A41F;
	Wed, 21 Dec 2005 02:02:59 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from bugor.portaone.com (bugor.portaone.com [65.61.200.232])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 43CAB43D49;
	Wed, 21 Dec 2005 02:02:58 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from [192.168.0.96] ([70.68.0.213]) (authenticated bits=0)
	by bugor.portaone.com (8.13.4/8.13.4) with ESMTP id jBL22buo089639
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Wed, 21 Dec 2005 02:02:37 GMT (envelope-from sobomax@portaone.com)
Message-ID: <43A8B7B3.1070105@portaone.com>
Date: Tue, 20 Dec 2005 18:02:27 -0800
From: Maxim Sobolev <sobomax@portaone.com>
Organization: Porta Software Ltd
User-Agent: Thunderbird 1.5 (Windows/20051025)
MIME-Version: 1.0
To: John Baldwin <jhb@freebsd.org>
References: <200512190926.jBJ9QhbD078141@repoman.freebsd.org>
	<200512191420.03927.jhb@freebsd.org>
	<43A7895C.9060608@portaone.com>
	<200512200959.16641.jhb@freebsd.org>
In-Reply-To: <200512200959.16641.jhb@freebsd.org>
Content-Type: text/plain; charset=KOI8-U; format=flowed
Content-Transfer-Encoding: 7bit
X-Virus-Scanned: ClamAV 0.87.1/1213/Mon Dec 19 14:48:34 2005 on
	bugor.portaone.com
X-Virus-Status: Clean
X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,SPF_PASS 
	autolearn=ham version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on bugor.portaone.com
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: Maxim.Sobolev@portaone.com
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 02:03:00 -0000

OK, I was able to boot bzip2-compressed PAE kernel without any problems 
on 12MB system (VMWare of course) with those changes. Due to 
insufficient memory loader(8) whined about not being able to load 
symbols, but apparently this error is not fatal and kernel booted just fine.

-Maxim

John Baldwin wrote:
> On Monday 19 December 2005 11:32 pm, Maxim Sobolev wrote:
>> John Baldwin wrote:
>>> On Monday 19 December 2005 01:32 pm, Maxim Sobolev wrote:
>>>> John Baldwin wrote:
>>>>> On Monday 19 December 2005 04:26 am, Maxim Sobolev wrote:
>>>>>> sobomax     2005-12-19 09:26:42 UTC
>>>>>>
>>>>>>   FreeBSD src repository
>>>>>>
>>>>>>   Modified files:
>>>>>>     sys/boot/i386/loader main.c
>>>>>>   Log:
>>>>>>   If LOADER_BZIP2_SUPPORT is defined allocate heap in the 1MB-4MB
>>>>>> range to provide enough room for decompression (up to 2.5MB is
>>>>>> necessary). This should be safe to do since we load i386 kernels after
>>>>>> 8MB mark now, so that 16MB is the minimum amount of RAM necessary to
>>>>>> even boot FreeBSD.
>>>>> Err, I thought we loaded PAE kernels at 2MB and non-PAE kernels at 4MB
>>>>> to skip the first PSE page (PSE pages are 2MB on PAE).
>>>> You are right, my mistake, sorry. In any case memory in the range
>>>> 1MB-4MB can be used by default.
>>> Errm, no it can't.  PAE kernels (and amd64 kernels I think) are both
>>> loaded at 2MB, so that only leaves memory in the range 1MB-2MB.
>> I see, did not know about amd64 (PAE is less a concern for me since it's
>> not a default kernel). What do you think about the following patch:
>>
>> http://www.pbxpress.com/~sobomax/loader.diff
>>
>> It moves heap to the top of the extended memory and teaches
>> i386_copyin() to avoid messing up this region, so that in low memory
>> situation it will just fail, not trash heap.
> 
> So, if I understand correctly, you're now sticking the heap at the last 3MB of 
> RAM.  FYI, as long as you have a PPro or newer you can test booting a PAE 
> kernel.  You don't have to have > 4GB of RAM. So, you can test this locally 
> to see if you can boot a PAE kernel (bzipped at that!) before committing.
> 


From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 02:18:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0513016A41F;
	Wed, 21 Dec 2005 02:18:00 +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 6AE4E43D5F;
	Wed, 21 Dec 2005 02:17:59 +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 jBL2HxFh057046;
	Wed, 21 Dec 2005 02:17:59 GMT
	(envelope-from sobomax@repoman.freebsd.org)
Received: (from sobomax@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL2HxJn057045;
	Wed, 21 Dec 2005 02:17:59 GMT (envelope-from sobomax)
Message-Id: <200512210217.jBL2HxJn057045@repoman.freebsd.org>
From: Maxim Sobolev <sobomax@FreeBSD.org>
Date: Wed, 21 Dec 2005 02:17:59 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/boot/i386/libi386 biosmem.c i386_copy.c
 libi386.h src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 02:18:00 -0000

sobomax     2005-12-21 02:17:58 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/i386/libi386 biosmem.c i386_copy.c libi386.h 
    sys/boot/i386/loader main.c 
  Log:
  For the cases when loading bzip2-compressed kernels enabled use last
  3MB of physical memory for heap instead of range between 1MB and 4MB.
  This makes this feature working with PAE and amd64 kernels, which are
  loaded at 2MB. Teach i386_copyin() to avoid using range allocated by
  heap in such case, so that it won't trash heap in the low memory
  conditions.
  
  This should make loading bzip2-compressed kernels/modules/mfs images
  generally useable, so that re@ team is welcome to evaluate merits
  of using this feature in the installation CDs.
  
  Valuable suggestions by:        jhb
  
  Revision  Changes    Path
  1.8       +2 -2      src/sys/boot/i386/libi386/biosmem.c
  1.12      +1 -1      src/sys/boot/i386/libi386/i386_copy.c
  1.23      +4 -1      src/sys/boot/i386/libi386/libi386.h
  1.36      +3 -2      src/sys/boot/i386/loader/main.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 02:26:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 06E5216A41F;
	Wed, 21 Dec 2005 02:26:00 +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 B07FF43D7E;
	Wed, 21 Dec 2005 02:25:59 +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 jBL2Pxjh057391;
	Wed, 21 Dec 2005 02:25:59 GMT
	(envelope-from delphij@repoman.freebsd.org)
Received: (from delphij@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL2PxcD057390;
	Wed, 21 Dec 2005 02:25:59 GMT (envelope-from delphij)
Message-Id: <200512210225.jBL2PxcD057390@repoman.freebsd.org>
From: Xin LI <delphij@FreeBSD.org>
Date: Wed, 21 Dec 2005 02:25:59 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/usr.sbin/nfsd nfsd.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 02:26:00 -0000

delphij     2005-12-21 02:25:59 UTC

  FreeBSD src repository

  Modified files:
    usr.sbin/nfsd        nfsd.c 
  Log:
  Use size_t for length.
  
  Revision  Changes    Path
  1.33      +2 -1      src/usr.sbin/nfsd/nfsd.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 02:34:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9FE6A16A420;
	Wed, 21 Dec 2005 02:34:21 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 4195D43D5F;
	Wed, 21 Dec 2005 02:34:21 +0000 (GMT)
	(envelope-from davidxu@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 jBL2YLE7057751;
	Wed, 21 Dec 2005 02:34:21 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL2YLRM057750;
	Wed, 21 Dec 2005 02:34:21 GMT (envelope-from davidxu)
Message-Id: <200512210234.jBL2YLRM057750@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Wed, 21 Dec 2005 02:34: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/lib/libthr pthread.map
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 02:34:21 -0000

davidxu     2005-12-21 02:34:21 UTC

  FreeBSD src repository

  Modified files:
    lib/libthr           pthread.map 
  Log:
  Follow the mistake in libpthread, the first version name in libpthread
  is LIBTHREAD_1_0, but really it should be LIBPTHREAD_1_0.
  Fix it so libmap.conf works again (it was broken by recent versioning
  code in rtld_elf).
  
  Revision  Changes    Path
  1.11      +1 -1      src/lib/libthr/pthread.map

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 02:51:41 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D268816A41F;
	Wed, 21 Dec 2005 02:51:41 +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 86C8343D66;
	Wed, 21 Dec 2005 02:51:41 +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 jBL2pfvj058505;
	Wed, 21 Dec 2005 02:51:41 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL2pfYb058504;
	Wed, 21 Dec 2005 02:51:41 GMT (envelope-from sam)
Message-Id: <200512210251.jBL2pfYb058504@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Wed, 21 Dec 2005 02:51: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/powerpc/conf Makefile NOTES
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 02:51:42 -0000

sam         2005-12-21 02:51:41 UTC

  FreeBSD src repository

  Added files:
    sys/powerpc/conf     Makefile NOTES 
  Log:
  add LINT build
  
  Discussed with: grehan
  MFC after:      1 week
  
  Revision  Changes    Path
  1.1       +3 -0      src/sys/powerpc/conf/Makefile (new)
  1.1       +83 -0     src/sys/powerpc/conf/NOTES (new)

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 03:14:08 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D5BF416A41F;
	Wed, 21 Dec 2005 03:14:08 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id C568143D5E;
	Wed, 21 Dec 2005 03:14:06 +0000 (GMT)
	(envelope-from davidxu@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 jBL3E6Kk059712;
	Wed, 21 Dec 2005 03:14:06 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL3E6TP059711;
	Wed, 21 Dec 2005 03:14:06 GMT (envelope-from davidxu)
Message-Id: <200512210314.jBL3E6TP059711@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Wed, 21 Dec 2005 03:14:06 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/lib/libthr/thread thr_init.c thr_private.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 03:14:09 -0000

davidxu     2005-12-21 03:14:06 UTC

  FreeBSD src repository

  Modified files:
    lib/libthr/thread    thr_init.c thr_private.h 
  Log:
  1. Retire macro SCLASS, instead simply use language keyword and
     put variables in thr_init.c.
  2. Hide all global symbols which won't be exported.
  
  Revision  Changes    Path
  1.25      +52 -0     src/lib/libthr/thread/thr_init.c
  1.50      +72 -109   src/lib/libthr/thread/thr_private.h

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 03:53:30 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 609D916A41F;
	Wed, 21 Dec 2005 03:53:30 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id DBF0743D60;
	Wed, 21 Dec 2005 03:53:29 +0000 (GMT)
	(envelope-from davidxu@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 jBL3rTU0061190;
	Wed, 21 Dec 2005 03:53:29 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL3rTuc061189;
	Wed, 21 Dec 2005 03:53:29 GMT (envelope-from davidxu)
Message-Id: <200512210353.jBL3rTuc061189@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Wed, 21 Dec 2005 03:53:29 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/lib/libthr/thread thr_private.h thr_umtx.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 03:53:30 -0000

davidxu     2005-12-21 03:53:29 UTC

  FreeBSD src repository

  Modified files:
    lib/libthr/thread    thr_private.h thr_umtx.h 
  Log:
  Hide umtx API symbols as well.
  
  Revision  Changes    Path
  1.51      +4 -1      src/lib/libthr/thread/thr_private.h
  1.3       +5 -5      src/lib/libthr/thread/thr_umtx.h

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 04:46:23 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP id 29CF116A41F;
	Wed, 21 Dec 2005 04:46:23 +0000 (GMT)
	(envelope-from green@green.homeunix.org)
Received: from green.homeunix.org (green@localhost [127.0.0.1])
	by green.homeunix.org (8.13.4/8.13.1) with ESMTP id jBL4kMgJ051255;
	Tue, 20 Dec 2005 23:46:22 -0500 (EST)
	(envelope-from green@green.homeunix.org)
Received: (from green@localhost)
	by green.homeunix.org (8.13.4/8.13.1/Submit) id jBL4kMsY051254;
	Tue, 20 Dec 2005 23:46:22 -0500 (EST) (envelope-from green)
Date: Tue, 20 Dec 2005 23:46:22 -0500
From: Brian Fundakowski Feldman <green@FreeBSD.org>
To: Maxim Sobolev <sobomax@FreeBSD.org>
Message-ID: <20051221044622.GC35080@green.homeunix.org>
References: <200512210217.jBL2HxJn057045@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200512210217.jBL2HxJn057045@repoman.freebsd.org>
User-Agent: Mutt/1.5.11
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/sys/boot/i386/libi386 biosmem.c i386_copy.c
	libi386.h src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 04:46:23 -0000

On Wed, Dec 21, 2005 at 02:17:59AM +0000, Maxim Sobolev wrote:
> sobomax     2005-12-21 02:17:58 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/boot/i386/libi386 biosmem.c i386_copy.c libi386.h 
>     sys/boot/i386/loader main.c 
>   Log:
>   For the cases when loading bzip2-compressed kernels enabled use last
>   3MB of physical memory for heap instead of range between 1MB and 4MB.
>   This makes this feature working with PAE and amd64 kernels, which are
>   loaded at 2MB. Teach i386_copyin() to avoid using range allocated by
>   heap in such case, so that it won't trash heap in the low memory
>   conditions.
>   
>   This should make loading bzip2-compressed kernels/modules/mfs images
>   generally useable, so that re@ team is welcome to evaluate merits
>   of using this feature in the installation CDs.
>   
>   Valuable suggestions by:        jhb

Should probably just be using 7-zip instead, though.

-- 
Brian Fundakowski Feldman                           \'[ FreeBSD ]''''''''''\
  <> green@FreeBSD.org                               \  The Power to Serve! \
 Opinions expressed are my own.                       \,,,,,,,,,,,,,,,,,,,,,,\

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 05:14:08 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5B81716A41F;
	Wed, 21 Dec 2005 05:14:08 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id E351943D55;
	Wed, 21 Dec 2005 05:14:07 +0000 (GMT)
	(envelope-from davidxu@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 jBL5E7B2072318;
	Wed, 21 Dec 2005 05:14:07 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL5E7IJ072317;
	Wed, 21 Dec 2005 05:14:07 GMT (envelope-from davidxu)
Message-Id: <200512210514.jBL5E7IJ072317@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Wed, 21 Dec 2005 05:14:07 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/lib/libthr/thread thr_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 05:14:08 -0000

davidxu     2005-12-21 05:14:07 UTC

  FreeBSD src repository

  Modified files:
    lib/libthr/thread    thr_mutex.c 
  Log:
  Let _mutex_cv_lock call internal functiona mutex_lock_common.
  
  Revision  Changes    Path
  1.36      +2 -1      src/lib/libthr/thread/thr_mutex.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 06:01:32 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1D6C516A41F;
	Wed, 21 Dec 2005 06:01:32 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id C331243D53;
	Wed, 21 Dec 2005 06:01:31 +0000 (GMT)
	(envelope-from dougb@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 jBL61VT5074325;
	Wed, 21 Dec 2005 06:01:31 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL61VVP074324;
	Wed, 21 Dec 2005 06:01:31 GMT (envelope-from dougb)
Message-Id: <200512210601.jBL61VVP074324@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 06:01: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/share/man/man8 diskless.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 06:01:32 -0000

dougb       2005-12-21 06:01:31 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    share/man/man8       diskless.8 
  Log:
  MFC 1.27, s#/etc/make.conf#make.conf(5)#
  
  Revision  Changes    Path
  1.26.2.1  +2 -1      src/share/man/man8/diskless.8

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 06:03:31 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EC15F16A41F;
	Wed, 21 Dec 2005 06:03:31 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A160A43D58;
	Wed, 21 Dec 2005 06:03:31 +0000 (GMT)
	(envelope-from dougb@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 jBL63Vvb074472;
	Wed, 21 Dec 2005 06:03:31 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL63VHk074471;
	Wed, 21 Dec 2005 06:03:31 GMT (envelope-from dougb)
Message-Id: <200512210603.jBL63VHk074471@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 06:03: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/share/man/man8 diskless.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 06:03:32 -0000

dougb       2005-12-21 06:03:31 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    share/man/man8       diskless.8 
  Log:
  MFC of 1.28, -mdoc sweep
  
  Revision  Changes    Path
  1.26.2.2  +1 -1      src/share/man/man8/diskless.8

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 06:09:10 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E64E316A41F;
	Wed, 21 Dec 2005 06:09:10 +0000 (GMT)
	(envelope-from nyan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7011B43D46;
	Wed, 21 Dec 2005 06:09:10 +0000 (GMT)
	(envelope-from nyan@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 jBL69AEE074717;
	Wed, 21 Dec 2005 06:09:10 GMT
	(envelope-from nyan@repoman.freebsd.org)
Received: (from nyan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL69Axm074716;
	Wed, 21 Dec 2005 06:09:10 GMT (envelope-from nyan)
Message-Id: <200512210609.jBL69Axm074716@repoman.freebsd.org>
From: Takahashi Yoshihiro <nyan@FreeBSD.org>
Date: Wed, 21 Dec 2005 06:09:09 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/boot/pc98/libpc98 biosdisk.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 06:09:11 -0000

nyan        2005-12-21 06:09:09 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/pc98/libpc98 biosdisk.c 
  Log:
  MFi386: revision 1.46.
  
  Revision  Changes    Path
  1.33      +10 -15    src/sys/boot/pc98/libpc98/biosdisk.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 06:09:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 82D3A16A41F;
	Wed, 21 Dec 2005 06:09:48 +0000 (GMT)
	(envelope-from nyan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3322343D46;
	Wed, 21 Dec 2005 06:09:48 +0000 (GMT)
	(envelope-from nyan@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 jBL69m71074757;
	Wed, 21 Dec 2005 06:09:48 GMT
	(envelope-from nyan@repoman.freebsd.org)
Received: (from nyan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL69mdj074756;
	Wed, 21 Dec 2005 06:09:48 GMT (envelope-from nyan)
Message-Id: <200512210609.jBL69mdj074756@repoman.freebsd.org>
From: Takahashi Yoshihiro <nyan@FreeBSD.org>
Date: Wed, 21 Dec 2005 06:09: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/boot/pc98/libpc98 biosmem.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 06:09:48 -0000

nyan        2005-12-21 06:09:48 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/pc98/libpc98 biosmem.c 
  Log:
  MFi386: revision 1.8.
  
  Revision  Changes    Path
  1.8       +2 -2      src/sys/boot/pc98/libpc98/biosmem.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 06:10:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2B9AF16A41F;
	Wed, 21 Dec 2005 06:10:43 +0000 (GMT)
	(envelope-from nyan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7E0C543D5D;
	Wed, 21 Dec 2005 06:10:42 +0000 (GMT)
	(envelope-from nyan@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 jBL6Agqh074855;
	Wed, 21 Dec 2005 06:10:42 GMT
	(envelope-from nyan@repoman.freebsd.org)
Received: (from nyan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL6Aglc074854;
	Wed, 21 Dec 2005 06:10:42 GMT (envelope-from nyan)
Message-Id: <200512210610.jBL6Aglc074854@repoman.freebsd.org>
From: Takahashi Yoshihiro <nyan@FreeBSD.org>
Date: Wed, 21 Dec 2005 06:10: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/boot/pc98/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 06:10:43 -0000

nyan        2005-12-21 06:10:42 UTC

  FreeBSD src repository

  Modified files:
    sys/boot/pc98/loader main.c 
  Log:
  MFi386: revisions 1.34 and 1.36.
  
  Revision  Changes    Path
  1.22      +14 -2     src/sys/boot/pc98/loader/main.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 07:11:37 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 69E8E16A41F;
	Wed, 21 Dec 2005 07:11:37 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 1ECF743D49;
	Wed, 21 Dec 2005 07:11:37 +0000 (GMT)
	(envelope-from dougb@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 jBL7Ba4M077302;
	Wed, 21 Dec 2005 07:11:36 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL7Bauv077301;
	Wed, 21 Dec 2005 07:11:36 GMT (envelope-from dougb)
Message-Id: <200512210711.jBL7Bauv077301@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 07:11: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 UPDATING src/etc rc rc.shutdown rc.subr
 src/etc/defaults rc.conf src/etc/rc.d Makefile devfs dumpon
 initrandom localpkg rcconf.sh resolv src/share/man/man5 rc.conf.5
 src/share/man/man8 diskless.8 rc.8 src/sys/sys param.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 07:11:37 -0000

dougb       2005-12-21 07:11:35 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    .                    UPDATING 
    etc                  rc rc.shutdown rc.subr 
    etc/defaults         rc.conf 
    etc/rc.d             Makefile devfs dumpon initrandom localpkg 
                         resolv 
    share/man/man5       rc.conf.5 
    share/man/man8       diskless.8 rc.8 
    sys/sys              param.h 
  Removed files:         (Branch: RELENG_6)
    etc/rc.d             rcconf.sh 
  Log:
  MFC the inclusion of scripts from the local_startup directories
  into the base rcorder, and related changes.
  
  Revision    Changes    Path
  1.416.2.10  +10 -0     src/UPDATING
  1.252.2.10  +5 -0      src/etc/defaults/rc.conf
  1.336.2.1   +40 -6     src/etc/rc
  1.53.2.5    +1 -1      src/etc/rc.d/Makefile
  1.10.2.1    +1 -1      src/etc/rc.d/devfs
  1.9.2.2     +0 -1      src/etc/rc.d/dumpon
  1.5.2.1     +0 -1      src/etc/rc.d/initrandom
  1.5.2.2     +5 -32     src/etc/rc.d/localpkg
  1.4.2.1     +0 -12     src/etc/rc.d/rcconf.sh (dead)
  1.35.2.1    +0 -1      src/etc/rc.d/resolv
  1.30.2.1    +7 -1      src/etc/rc.shutdown
  1.34.2.7    +40 -2     src/etc/rc.subr
  1.256.2.8   +27 -0     src/share/man/man5/rc.conf.5
  1.26.2.3    +13 -1     src/share/man/man8/diskless.8
  1.29.2.1    +42 -59    src/share/man/man8/rc.8
  1.244.2.4   +1 -1      src/sys/sys/param.h

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 08:12:29 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7027116A41F;
	Wed, 21 Dec 2005 08:12:29 +0000 (GMT)
	(envelope-from maxim@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 2566D43D45;
	Wed, 21 Dec 2005 08:12:29 +0000 (GMT)
	(envelope-from maxim@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 jBL8CTUi079705;
	Wed, 21 Dec 2005 08:12:29 GMT
	(envelope-from maxim@repoman.freebsd.org)
Received: (from maxim@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL8CShd079704;
	Wed, 21 Dec 2005 08:12:28 GMT (envelope-from maxim)
Message-Id: <200512210812.jBL8CShd079704@repoman.freebsd.org>
From: Maxim Konovalov <maxim@FreeBSD.org>
Date: Wed, 21 Dec 2005 08:12: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/sbin/atacontrol atacontrol.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 08:12:29 -0000

maxim       2005-12-21 08:12:28 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sbin/atacontrol      atacontrol.c 
  Log:
  MFC rev. 1.38: fix usage().
  
  Revision  Changes    Path
  1.36.2.2  +1 -1      src/sbin/atacontrol/atacontrol.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 08:15:47 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4B31D16A41F;
	Wed, 21 Dec 2005 08:15:47 +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 9321D43D79;
	Wed, 21 Dec 2005 08:15:40 +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 jBL8FcIH004747;
	Wed, 21 Dec 2005 10:15:38 +0200 (EET) (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 64513-01; Wed, 21 Dec 2005 10:15:36 +0200 (EET)
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 jBL88bGd004597
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Wed, 21 Dec 2005 10:08:37 +0200 (EET) (envelope-from ru@ip.net.ua)
Received: (from ru@localhost)
	by heffalump.ip.net.ua (8.13.4/8.13.4) id jBL88k6I055211;
	Wed, 21 Dec 2005 10:08:46 +0200 (EET) (envelope-from ru)
Date: Wed, 21 Dec 2005 10:08:46 +0200
From: Ruslan Ermilov <ru@FreeBSD.org>
To: Doug Barton <dougb@FreeBSD.org>
Message-ID: <20051221080846.GA55142@ip.net.ua>
References: <200512202056.jBKKuLQO034591@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="u3/rZRmxL6MmkK24"
Content-Disposition: inline
In-Reply-To: <200512202056.jBKKuLQO034591@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/etc/rc.d Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 08:15:47 -0000


--u3/rZRmxL6MmkK24
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Tue, Dec 20, 2005 at 08:56:21PM +0000, Doug Barton wrote:
> dougb       2005-12-20 20:56:21 UTC
>=20
>   FreeBSD src repository
>=20
>   Modified files:        (Branch: RELENG_6)
>     etc/rc.d             Makefile=20
>   Log:
>   MFC 1.56, make install of sshd conditional on NO_OPENSSH
>  =20
>   Revision  Changes    Path
>   1.53.2.4  +6 -1      src/etc/rc.d/Makefile
>=20
The full condition, to match the sources, would be:

=2Eif !defined(NO_CRYPT) && !defined(NO_OPENSSL) && !defined(NO_OPENSSH)

That's how we get to compile secure/usr.sbin/sshd/.


Cheers,
--=20
Ruslan Ermilov
ru@FreeBSD.org
FreeBSD committer

--u3/rZRmxL6MmkK24
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQFDqQ2OqRfpzJluFF4RAhPPAJ91J1qAvgbmgAf+By81Qf9VasCGzgCgm3+E
Tz37pyPk0n/ZBnb1bTdNmDc=
=8qVr
-----END PGP SIGNATURE-----

--u3/rZRmxL6MmkK24--

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 08:23:05 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B409C16A41F;
	Wed, 21 Dec 2005 08:23:05 +0000 (GMT)
	(envelope-from maxim@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0515F43D53;
	Wed, 21 Dec 2005 08:23:04 +0000 (GMT)
	(envelope-from maxim@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 jBL8N4nQ080133;
	Wed, 21 Dec 2005 08:23:04 GMT
	(envelope-from maxim@repoman.freebsd.org)
Received: (from maxim@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL8N44h080132;
	Wed, 21 Dec 2005 08:23:04 GMT (envelope-from maxim)
Message-Id: <200512210823.jBL8N44h080132@repoman.freebsd.org>
From: Maxim Konovalov <maxim@FreeBSD.org>
Date: Wed, 21 Dec 2005 08:23:04 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/share/man/man4 unix.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 08:23:05 -0000

maxim       2005-12-21 08:23:04 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       unix.4 
  Log:
  o Fix typo: id_t -> uid_t.
  o Use align aware CMSG_LEN() macro for cmsg_len computation.
  
  PR:             docs/90731
  Submitted by:   Andrey Simonenko
  Reviewed by:    mdodd
  MFC after:      1 week
  
  Revision  Changes    Path
  1.13      +2 -2      src/share/man/man4/unix.4

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 08:58:35 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B7EE516A41F
	for <cvs-src@FreeBSD.org>; Wed, 21 Dec 2005 08:58:35 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12])
	by mx1.FreeBSD.org (Postfix) with SMTP id 018F143D73
	for <cvs-src@FreeBSD.org>; Wed, 21 Dec 2005 08:58:32 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: (qmail 83877 invoked by uid 399); 21 Dec 2005 08:32:53 -0000
Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1)
	by localhost with SMTP; 21 Dec 2005 08:32:53 -0000
Message-ID: <43A91330.2000704@FreeBSD.org>
Date: Wed, 21 Dec 2005 00:32:48 -0800
From: Doug Barton <dougb@FreeBSD.org>
Organization: http://www.FreeBSD.org/
User-Agent: Thunderbird 1.5 (X11/20051203)
MIME-Version: 1.0
To: Ruslan Ermilov <ru@FreeBSD.org>
References: <200512202056.jBKKuLQO034591@repoman.freebsd.org>
	<20051221080846.GA55142@ip.net.ua>
In-Reply-To: <20051221080846.GA55142@ip.net.ua>
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/etc/rc.d Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 08:58:35 -0000

Ruslan Ermilov wrote:
> On Tue, Dec 20, 2005 at 08:56:21PM +0000, Doug Barton wrote:
>> dougb       2005-12-20 20:56:21 UTC
>>
>>   FreeBSD src repository
>>
>>   Modified files:        (Branch: RELENG_6)
>>     etc/rc.d             Makefile 
>>   Log:
>>   MFC 1.56, make install of sshd conditional on NO_OPENSSH
>>   
>>   Revision  Changes    Path
>>   1.53.2.4  +6 -1      src/etc/rc.d/Makefile
>>
> The full condition, to match the sources, would be:
> 
> .if !defined(NO_CRYPT) && !defined(NO_OPENSSL) && !defined(NO_OPENSSH)
> 
> That's how we get to compile secure/usr.sbin/sshd/.

Well, I wondered about that, but I didn't make the original change, so I 
just MFC'ed what was there. If you want to update the Makefile in HEAD I've 
no objection, or if you think it's really important, I'll be glad to do it 
as well.

Personally, while I remember the support problems that not having all those 
tests caused back in the day, I always thought that it was providing too big 
a crutch. However, that's just grousing, and I've no objection to updating 
rc.d/Makefile if you think we need to.

Doug


-- 

     This .signature sanitized for your protection


From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 08:59:23 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 82B9D16A41F;
	Wed, 21 Dec 2005 08:59:23 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3426443D4C;
	Wed, 21 Dec 2005 08:59:23 +0000 (GMT)
	(envelope-from dougb@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 jBL8xNsX089260;
	Wed, 21 Dec 2005 08:59:23 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL8xMjd089259;
	Wed, 21 Dec 2005 08:59:22 GMT (envelope-from dougb)
Message-Id: <200512210859.jBL8xMjd089259@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 08:59: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/usr.sbin/mergemaster mergemaster.sh
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 08:59:23 -0000

dougb       2005-12-21 08:59:22 UTC

  FreeBSD src repository

  Modified files:
    usr.sbin/mergemaster mergemaster.sh 
  Log:
  Change the default for deleting stale files from yes (which violates
  the general principle that mm should do nothing by default) to no.
  
  PR:             bin/85449
  Submitted by:   Kevin Oberman <oberman@es.net>
  
  Revision  Changes    Path
  1.52      +5 -5      src/usr.sbin/mergemaster/mergemaster.sh

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 09:03:24 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1B5BD16A41F;
	Wed, 21 Dec 2005 09:03:24 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9A25A43D6B;
	Wed, 21 Dec 2005 09:03:23 +0000 (GMT)
	(envelope-from dougb@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 jBL93NZ3089445;
	Wed, 21 Dec 2005 09:03:23 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL93NqF089444;
	Wed, 21 Dec 2005 09:03:23 GMT (envelope-from dougb)
Message-Id: <200512210903.jBL93NqF089444@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 09:03: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/usr.sbin/mergemaster mergemaster.sh
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 09:03:24 -0000

dougb       2005-12-21 09:03:23 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    usr.sbin/mergemaster mergemaster.sh 
  Log:
  MFC 1.52, do not delete stale /etc/rc.d files by default
  
  Revision  Changes    Path
  1.51.8.1  +5 -5      src/usr.sbin/mergemaster/mergemaster.sh

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 09:04:26 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 74FD016A41F;
	Wed, 21 Dec 2005 09:04:26 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id DD59843D79;
	Wed, 21 Dec 2005 09:04:24 +0000 (GMT)
	(envelope-from dougb@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 jBL94OtO089521;
	Wed, 21 Dec 2005 09:04:24 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL94O5A089520;
	Wed, 21 Dec 2005 09:04:24 GMT (envelope-from dougb)
Message-Id: <200512210904.jBL94O5A089520@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 09:04:24 +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/mergemaster mergemaster.sh
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 09:04:26 -0000

dougb       2005-12-21 09:04:24 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    usr.sbin/mergemaster mergemaster.sh 
  Log:
  MFC 1.52, do not delete stale /etc/rc.d files by default
  
  Revision  Changes    Path
  1.51.2.1  +5 -5      src/usr.sbin/mergemaster/mergemaster.sh

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 09:16:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 74A8416A420;
	Wed, 21 Dec 2005 09:16:43 +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 5209B43D92;
	Wed, 21 Dec 2005 09:16:27 +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 jBL9GQFA006634;
	Wed, 21 Dec 2005 11:16:26 +0200 (EET) (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 64998-03-3; Wed, 21 Dec 2005 11:16:25 +0200 (EET)
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 jBL9FTCt006584
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Wed, 21 Dec 2005 11:15:29 +0200 (EET) (envelope-from ru@ip.net.ua)
Received: (from ru@localhost)
	by heffalump.ip.net.ua (8.13.4/8.13.4) id jBL9FcIN055588;
	Wed, 21 Dec 2005 11:15:38 +0200 (EET) (envelope-from ru)
Date: Wed, 21 Dec 2005 11:15:38 +0200
From: Ruslan Ermilov <ru@FreeBSD.org>
To: Doug Barton <dougb@FreeBSD.org>
Message-ID: <20051221091538.GC55142@ip.net.ua>
References: <200512202056.jBKKuLQO034591@repoman.freebsd.org>
	<20051221080846.GA55142@ip.net.ua> <43A91330.2000704@FreeBSD.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="8X7/QrJGcKSMr1RN"
Content-Disposition: inline
In-Reply-To: <43A91330.2000704@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/etc/rc.d Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 09:16:43 -0000


--8X7/QrJGcKSMr1RN
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Wed, Dec 21, 2005 at 12:32:48AM -0800, Doug Barton wrote:
> Ruslan Ermilov wrote:
> >On Tue, Dec 20, 2005 at 08:56:21PM +0000, Doug Barton wrote:
> >>dougb       2005-12-20 20:56:21 UTC
> >>
> >>  FreeBSD src repository
> >>
> >>  Modified files:        (Branch: RELENG_6)
> >>    etc/rc.d             Makefile=20
> >>  Log:
> >>  MFC 1.56, make install of sshd conditional on NO_OPENSSH
> >> =20
> >>  Revision  Changes    Path
> >>  1.53.2.4  +6 -1      src/etc/rc.d/Makefile
> >>
> >The full condition, to match the sources, would be:
> >
> >.if !defined(NO_CRYPT) && !defined(NO_OPENSSL) && !defined(NO_OPENSSH)
> >
> >That's how we get to compile secure/usr.sbin/sshd/.
>=20
> Well, I wondered about that, but I didn't make the original change, so I=
=20
> just MFC'ed what was there. If you want to update the Makefile in HEAD I'=
ve=20
> no objection, or if you think it's really important, I'll be glad to do i=
t=20
> as well.
>=20
Please do it while you're at it.

> Personally, while I remember the support problems that not having all tho=
se=20
> tests caused back in the day, I always thought that it was providing too=
=20
> big a crutch. However, that's just grousing, and I've no objection to=20
> updating rc.d/Makefile if you think we need to.
>=20
Well, if the installation is conditional, the condition should be
correct.  Otherwise, it should be made unconditional.  :-)


Cheers,
--=20
Ruslan Ermilov
ru@FreeBSD.org
FreeBSD committer

--8X7/QrJGcKSMr1RN
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQFDqR06qRfpzJluFF4RAhZhAJoD4YODiSPeVq/O9Ap+UNGNvskFQQCfUCBB
xupjBOIo5MaYAG3VI7uwYds=
=o1uf
-----END PGP SIGNATURE-----

--8X7/QrJGcKSMr1RN--

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 09:40:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7433216A41F;
	Wed, 21 Dec 2005 09:40:00 +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 28E1C43D46;
	Wed, 21 Dec 2005 09:40:00 +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 jBL9e02P090980;
	Wed, 21 Dec 2005 09:40:00 GMT
	(envelope-from thompsa@repoman.freebsd.org)
Received: (from thompsa@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL9dxYo090979;
	Wed, 21 Dec 2005 09:39:59 GMT (envelope-from thompsa)
Message-Id: <200512210939.jBL9dxYo090979@repoman.freebsd.org>
From: Andrew Thompson <thompsa@FreeBSD.org>
Date: Wed, 21 Dec 2005 09:39: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 09:40:00 -0000

thompsa     2005-12-21 09:39:59 UTC

  FreeBSD src repository

  Modified files:
    sys/net              if_bridge.c 
  Log:
  As of r1.21 all broadcast packets are reprocessed by ether_input as arriving on
  the bridge, this caused these packets to show up twice via bpf. Do not process
  them twice with BPF_TAP.
  
  MFC after:      3 days
  
  Revision  Changes    Path
  1.41      +6 -2      src/sys/net/if_bridge.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 09:48:42 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9BE9A16A41F;
	Wed, 21 Dec 2005 09:48:42 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 516B043D5D;
	Wed, 21 Dec 2005 09:48:42 +0000 (GMT)
	(envelope-from dougb@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 jBL9mg9i091477;
	Wed, 21 Dec 2005 09:48:42 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL9mgV1091476;
	Wed, 21 Dec 2005 09:48:42 GMT (envelope-from dougb)
Message-Id: <200512210948.jBL9mgV1091476@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 09:48: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/etc/rc.d ntpd ntpdate
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 09:48:42 -0000

dougb       2005-12-21 09:48:41 UTC

  FreeBSD src repository

  Modified files:
    etc/rc.d             ntpd ntpdate 
  Log:
  Several users have commented (via filing PRs) that having ntp* depend
  on devfs is useful so that a hardware time device can start with its
  necessary device nodes already in place. While this ordering happens
  as a side effect currently in HEAD, and the PRs were generally fixed
  via upgrades, etc; it's better to make it explicit.
  
  While I'm here, ntpd should REQUIRE ntpdate, rather than ntpdate
  using BEFORE: ntpd.
  
  Revision  Changes    Path
  1.12      +1 -2      src/etc/rc.d/ntpd
  1.14      +0 -2      src/etc/rc.d/ntpdate

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 09:54:16 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9318116A41F;
	Wed, 21 Dec 2005 09:54:16 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id EEFF743D5E;
	Wed, 21 Dec 2005 09:54:15 +0000 (GMT)
	(envelope-from dougb@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 jBL9sFdE091883;
	Wed, 21 Dec 2005 09:54:15 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBL9sFIc091882;
	Wed, 21 Dec 2005 09:54:15 GMT (envelope-from dougb)
Message-Id: <200512210954.jBL9sFIc091882@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Wed, 21 Dec 2005 09:54: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/etc/rc.d newsyslog syslogd
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 09:54:16 -0000

dougb       2005-12-21 09:54:15 UTC

  FreeBSD src repository

  Modified files:
    etc/rc.d             newsyslog syslogd 
  Log:
  syslogd should REQUIRE newsyslog, rather than newsyslog using
  BEFORE: syslogd. This does not produce any change in the
  ordering at the moment, but is cleaner style for the long term.
  
  Revision  Changes    Path
  1.5       +0 -1      src/etc/rc.d/newsyslog
  1.11      +1 -1      src/etc/rc.d/syslogd

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 10:12:12 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5FF5F16A41F;
	Wed, 21 Dec 2005 10:12:12 +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 ED95B43D92;
	Wed, 21 Dec 2005 10:12:09 +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 jBLAC6sS092868;
	Wed, 21 Dec 2005 10:12:06 GMT
	(envelope-from delphij@repoman.freebsd.org)
Received: (from delphij@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLAC5Vf092866;
	Wed, 21 Dec 2005 10:12:05 GMT (envelope-from delphij)
Message-Id: <200512211012.jBLAC5Vf092866@repoman.freebsd.org>
From: Xin LI <delphij@FreeBSD.org>
Date: Wed, 21 Dec 2005 10:12: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.sbin/nfsd nfsd.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 10:12:12 -0000

delphij     2005-12-21 10:12:05 UTC

  FreeBSD src repository

  Modified files:
    usr.sbin/nfsd        nfsd.c 
  Log:
  Previous revision was broken on SPARC, fix it by using more appropriate type.
  
  Reported by:    tindebox
  Pointy hat to:  delphij
  
  Revision  Changes    Path
  1.34      +1 -1      src/usr.sbin/nfsd/nfsd.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 10:54:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 3AA5B16A41F;
	Wed, 21 Dec 2005 10:54:48 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id E64E043D5F;
	Wed, 21 Dec 2005 10:54:47 +0000 (GMT) (envelope-from ru@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 jBLAsl2R094898;
	Wed, 21 Dec 2005 10:54:47 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLAsl8G094897;
	Wed, 21 Dec 2005 10:54:47 GMT (envelope-from ru)
Message-Id: <200512211054.jBLAsl8G094897@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Wed, 21 Dec 2005 10:54:47 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/ppbus if_plip.c lpbb.c lpt.c ppi.c pps.c
 src/sys/dev/ppc ppc.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 10:54:48 -0000

ru          2005-12-21 10:54:47 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/ppbus        if_plip.c lpbb.c lpt.c ppi.c pps.c 
    sys/dev/ppc          ppc.c 
  Log:
  Add missing MODULE_DEPEND() so that ppbus.ko and these .ko's can be
  loaded dynamically.
  
  Revision  Changes    Path
  1.39      +1 -0      src/sys/dev/ppbus/if_plip.c
  1.19      +1 -0      src/sys/dev/ppbus/lpbb.c
  1.37      +1 -0      src/sys/dev/ppbus/lpt.c
  1.39      +1 -0      src/sys/dev/ppbus/ppi.c
  1.51      +1 -0      src/sys/dev/ppbus/pps.c
  1.47      +1 -0      src/sys/dev/ppc/ppc.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 11:00:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 677E316A41F;
	Wed, 21 Dec 2005 11:00:54 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9AF0F43D5A;
	Wed, 21 Dec 2005 11:00:53 +0000 (GMT) (envelope-from ru@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 jBLB0rZH095238;
	Wed, 21 Dec 2005 11:00:53 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLB0rQV095237;
	Wed, 21 Dec 2005 11:00:53 GMT (envelope-from ru)
Message-Id: <200512211100.jBLB0rQV095237@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Wed, 21 Dec 2005 11:00: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/pci amdpm.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 11:00:54 -0000

ru          2005-12-21 11:00:53 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/pci              amdpm.c 
  Log:
  MFC: 1.17: Fix PCI ID of the AMD-8111 System Management controller
  that provides SMBus 1.0 function that this driver supports.
  
  Revision  Changes    Path
  1.15.2.1  +1 -1      src/sys/pci/amdpm.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 12:15:53 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D8ED216A41F;
	Wed, 21 Dec 2005 12:15:53 +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 6494D43D5F;
	Wed, 21 Dec 2005 12:15:53 +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 jBLCFr7c098885;
	Wed, 21 Dec 2005 12:15:53 GMT (envelope-from des@repoman.freebsd.org)
Received: (from des@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLCFrru098884;
	Wed, 21 Dec 2005 12:15:53 GMT (envelope-from des)
Message-Id: <200512211215.jBLCFrru098884@repoman.freebsd.org>
From: Dag-Erling Smorgrav <des@FreeBSD.org>
Date: Wed, 21 Dec 2005 12:15:53 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/usr.bin/xargs xargs.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 12:15:54 -0000

des         2005-12-21 12:15:52 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    usr.bin/xargs        xargs.c 
  Log:
  MFC: (1.58) add -r option for GNU compatibility
  
  Revision  Changes    Path
  1.57.2.1  +4 -1      src/usr.bin/xargs/xargs.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 12:16:44 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2CD2616A41F;
	Wed, 21 Dec 2005 12:16:44 +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 5B61743D6D;
	Wed, 21 Dec 2005 12:16:39 +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 jBLCGdvB099020;
	Wed, 21 Dec 2005 12:16:39 GMT (envelope-from des@repoman.freebsd.org)
Received: (from des@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLCGdSI099019;
	Wed, 21 Dec 2005 12:16:39 GMT (envelope-from des)
Message-Id: <200512211216.jBLCGdSI099019@repoman.freebsd.org>
From: Dag-Erling Smorgrav <des@FreeBSD.org>
Date: Wed, 21 Dec 2005 12:16: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/usr.bin/xargs xargs.1
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 12:16:44 -0000

des         2005-12-21 12:16:39 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    usr.bin/xargs        xargs.1 
  Log:
  MFC: (1.35) wording tweaks
  
  Revision  Changes    Path
  1.34.2.1  +2 -3      src/usr.bin/xargs/xargs.1

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 12:17:50 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 12B8C16A41F;
	Wed, 21 Dec 2005 12:17:50 +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 B2B9843D5C;
	Wed, 21 Dec 2005 12:17:49 +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 jBLCHnRK099180;
	Wed, 21 Dec 2005 12:17:49 GMT (envelope-from des@repoman.freebsd.org)
Received: (from des@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLCHnLk099179;
	Wed, 21 Dec 2005 12:17:49 GMT (envelope-from des)
Message-Id: <200512211217.jBLCHnLk099179@repoman.freebsd.org>
From: Dag-Erling Smorgrav <des@FreeBSD.org>
Date: Wed, 21 Dec 2005 12:17:49 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/usr.bin/locate/locate fastfind.c locate.1 locate.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 12:17:50 -0000

des         2005-12-21 12:17:49 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    usr.bin/locate/locate fastfind.c locate.1 locate.c 
  Log:
  MFC: add a -0 option for interoperability with xargs -0
  
  Revision   Changes    Path
  1.13.14.1  +4 -3      src/usr.bin/locate/locate/fastfind.c
  1.30.2.1   +6 -1      src/usr.bin/locate/locate/locate.1
  1.15.14.1  +5 -1      src/usr.bin/locate/locate/locate.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 15:01:49 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E2DBA16A41F;
	Wed, 21 Dec 2005 15:01:49 +0000 (GMT)
	(envelope-from cognet@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9081443D5D;
	Wed, 21 Dec 2005 15:01:49 +0000 (GMT)
	(envelope-from cognet@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 jBLF1n33014622;
	Wed, 21 Dec 2005 15:01:49 GMT
	(envelope-from cognet@repoman.freebsd.org)
Received: (from cognet@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLF1nQB014621;
	Wed, 21 Dec 2005 15:01:49 GMT (envelope-from cognet)
Message-Id: <200512211501.jBLF1nQB014621@repoman.freebsd.org>
From: Olivier Houchard <cognet@FreeBSD.org>
Date: Wed, 21 Dec 2005 15:01: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/arm/xscale/i80321 iq31244_machdep.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 15:01:50 -0000

cognet      2005-12-21 15:01:49 UTC

  FreeBSD src repository

  Modified files:
    sys/arm/xscale/i80321 iq31244_machdep.c 
  Log:
  Remove #undef DDB I shouldn't have committed.
  
  Revision  Changes    Path
  1.18      +0 -1      src/sys/arm/xscale/i80321/iq31244_machdep.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 15:02:31 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D14BE16A41F;
	Wed, 21 Dec 2005 15:02:31 +0000 (GMT)
	(envelope-from cognet@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 5CA5243D4C;
	Wed, 21 Dec 2005 15:02:31 +0000 (GMT)
	(envelope-from cognet@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 jBLF2VeI014669;
	Wed, 21 Dec 2005 15:02:31 GMT
	(envelope-from cognet@repoman.freebsd.org)
Received: (from cognet@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLF2Vnl014668;
	Wed, 21 Dec 2005 15:02:31 GMT (envelope-from cognet)
Message-Id: <200512211502.jBLF2Vnl014668@repoman.freebsd.org>
From: Olivier Houchard <cognet@FreeBSD.org>
Date: Wed, 21 Dec 2005 15:02: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/arm/arm locore.S
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 15:02:32 -0000

cognet      2005-12-21 15:02:31 UTC

  FreeBSD src repository

  Modified files:
    sys/arm/arm          locore.S 
  Log:
  Ooops, I removed the wrong bits.
  This unbreak boot from a VA which is different from the PA.
  
  Revision  Changes    Path
  1.13      +3 -2      src/sys/arm/arm/locore.S

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 15:15:44 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id A92B016A41F;
	Wed, 21 Dec 2005 15:15:44 +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 530CD43D58;
	Wed, 21 Dec 2005 15:15:44 +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 jBLFFiOC015218;
	Wed, 21 Dec 2005 15:15:44 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLFFiBT015217;
	Wed, 21 Dec 2005 15:15:44 GMT (envelope-from jhb)
Message-Id: <200512211515.jBLFFiBT015217@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Wed, 21 Dec 2005 15:15: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/pci if_devar.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 15:15:44 -0000

jhb         2005-12-21 15:15:43 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              if_devar.h 
  Log:
  Use ETHER_ADDR_LEN rather than hardcoding 6.
  
  Revision  Changes    Path
  1.42      +1 -1      src/sys/pci/if_devar.h

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 15:35:29 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 23F1216A41F;
	Wed, 21 Dec 2005 15:35:29 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219])
	by mx1.FreeBSD.org (Postfix) with ESMTP id AF13D43D53;
	Wed, 21 Dec 2005 15:35:27 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (unverified [66.23.211.162]) 
	by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 4293189 
	for multiple; Wed, 21 Dec 2005 10:36:31 -0500
Received: from localhost (john@localhost [127.0.0.1])
	by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id jBLFYp8I014889;
	Wed, 21 Dec 2005 10:34:52 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin <jhb@freebsd.org>
To: Nate Lawson <nate@root.org>
Date: Wed, 21 Dec 2005 10:35:26 -0500
User-Agent: KMail/1.8.2
References: <20051220224208.DB1B916A449@hub.freebsd.org>
	<43A88A00.9040407@root.org>
In-Reply-To: <43A88A00.9040407@root.org>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200512211035.28006.jhb@freebsd.org>
X-Virus-Scanned: ClamAV version 0.87.1,
	clamav-milter version 0.87 on server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-1.4 required=4.2 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx
X-Server: High Performance Mail Server - http://surgemail.com r=1653887525
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/dev/pci vga_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 15:35:29 -0000

On Tuesday 20 December 2005 05:47 pm, Nate Lawson wrote:
> John Baldwin wrote:
> > jhb         2005-12-20 22:41:33 UTC
> >
> >   FreeBSD src repository
> >
> >   Added files:
> >     sys/dev/pci          vga_pci.c
> >   Log:
> >   Add a vgapci(4) stub device driver for VGA PCI devices.  This device
> > serves as a bus so that other drivers such as drm(4), acpi_video(4), and
> > agp(4) can attach to it thus allowing multiple drivers for the same
> > device.  It also removes the need for the drmsub hack for the
> > i8[13]0/i915 drm and agp drivers.
> >
> >   Revision  Changes    Path
> >   1.3       +262 -0    src/sys/dev/pci/vga_pci.c (new)
>
> All the methods seem to just be a straight-through mapping or a debug
> print + mapping.  For the ones you don't plan to do anything special in,
> can you just make the methods map directly to the generic versions?

The ones that do map, yes.  I was mostly paranoid to see if functions whose 
stubs weren't really right were getting called or not.  There is room for 
cleaning.

> > +static int
> > +vga_pci_suspend(device_t dev)
> > +{
> > +
> > +	return (bus_generic_suspend(dev));
> > +}
> > +
> > +static int
> > +vga_pci_resume(device_t dev)
> > +{
> > +
> > +	return (bus_generic_resume(dev));
> > +}

These are generics and could just use bus_generic_foo().

> > +
> > +/* Bus interface. */
> > +
> > +static int
> > +vga_pci_read_ivar(device_t dev, device_t child, int which, uintptr_t
> > *result) +{
> > +
> > +	return (BUS_READ_IVAR(device_get_parent(dev), dev, which, result));
> > +}
> > +
> > +static int
> > +vga_pci_write_ivar(device_t dev, device_t child, int which, uintptr_t
> > value) +{
> > +
> > +	return (EINVAL);
> > +}

These are not generics.  The generic would pass child as the second arg rather 
than dev.

> > +static struct resource *
> > +vga_pci_alloc_resource(device_t dev, device_t child, int type, int *rid,
> > +    u_long start, u_long end, u_long count, u_int flags)
> > +{
> > +
> > +	return (bus_alloc_resource(dev, type, rid, start, end, count, flags));
> > +}
> > +
> > +static int
> > +vga_pci_release_resource(device_t dev, device_t child, int type, int
> > rid, +    struct resource *r)
> > +{
> > +
> > +	return (bus_release_resource(dev, type, rid, r));
> > +}

Same with these two.

> > +
> > +/* PCI interface. */
> > +
> > +static uint32_t
> > +vga_pci_read_config(device_t dev, device_t child, int reg, int width)
> > +{
> > +
> > +	return (pci_read_config(dev, reg, width));
> > +}
> > +
> > +static void
> > +vga_pci_write_config(device_t dev, device_t child, int reg,
> > +    uint32_t val, int width)
> > +{
> > +
> > +	pci_write_config(dev, reg, val, width);
> > +}

And all of the PCI ones including these and the others you quoted.  The 
different is subtle, but important.

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 15:49:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B2C4016A41F;
	Wed, 21 Dec 2005 15:49:51 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 746CC43D49;
	Wed, 21 Dec 2005 15:49:51 +0000 (GMT) (envelope-from ru@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 jBLFnpt4017222;
	Wed, 21 Dec 2005 15:49:51 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLFnpRO017221;
	Wed, 21 Dec 2005 15:49:51 GMT (envelope-from ru)
Message-Id: <200512211549.jBLFnpRO017221@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Wed, 21 Dec 2005 15:49: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/conf NOTES files src/sys/pci amdsmb.c nfsmb.c
 src/sys/dev/smbus smbus.c src/sys/modules/i2c/controllers Makefile
 src/sys/modules/i2c/controllers/amdsmb Makefile
 src/sys/modules/i2c/controllers/nfsmb Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 15:49:51 -0000

ru          2005-12-21 15:49:51 UTC

  FreeBSD src repository

  Modified files:
    sys/conf             NOTES files 
    sys/dev/smbus        smbus.c 
    sys/modules/i2c/controllers Makefile 
  Added files:
    sys/pci              amdsmb.c nfsmb.c 
    sys/modules/i2c/controllers/amdsmb Makefile 
    sys/modules/i2c/controllers/nfsmb Makefile 
  Log:
  Drivers for AMD-8111 and NVIDIA nForce2/3/4 SMBus 2.0 controllers.
  
  Revision  Changes    Path
  1.1339    +5 -1      src/sys/conf/NOTES
  1.1079    +2 -0      src/sys/conf/files
  1.21      +2 -0      src/sys/dev/smbus/smbus.c
  1.5       +1 -1      src/sys/modules/i2c/controllers/Makefile
  1.1       +9 -0      src/sys/modules/i2c/controllers/amdsmb/Makefile (new)
  1.1       +9 -0      src/sys/modules/i2c/controllers/nfsmb/Makefile (new)
  1.1       +524 -0    src/sys/pci/amdsmb.c (new)
  1.1       +553 -0    src/sys/pci/nfsmb.c (new)

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 15:55:18 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 491F616A420;
	Wed, 21 Dec 2005 15:55:18 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A6C0243D64;
	Wed, 21 Dec 2005 15:55:17 +0000 (GMT) (envelope-from ru@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 jBLFtHF3017518;
	Wed, 21 Dec 2005 15:55:17 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLFtHjJ017517;
	Wed, 21 Dec 2005 15:55:17 GMT (envelope-from ru)
Message-Id: <200512211555.jBLFtHjJ017517@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Wed, 21 Dec 2005 15:55: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 Makefile.inc1
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 15:55:18 -0000

ru          2005-12-21 15:55:17 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    .                    Makefile.inc1 
  Log:
  MFC: 1.523: Don't create a hierarchy before installing a kernel.
  
  Revision   Changes    Path
  1.499.2.6  +0 -6      src/Makefile.inc1

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 16:02:30 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7D2EF16A41F;
	Wed, 21 Dec 2005 16:02:30 +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 DE3F143D67;
	Wed, 21 Dec 2005 16:02:22 +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 jBLG2JIp019935;
	Wed, 21 Dec 2005 18:02:19 +0200 (EET) (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 68942-07-3; Wed, 21 Dec 2005 18:02:18 +0200 (EET)
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 jBLFxUOx019818
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Wed, 21 Dec 2005 17:59:30 +0200 (EET) (envelope-from ru@ip.net.ua)
Received: (from ru@localhost)
	by heffalump.ip.net.ua (8.13.4/8.13.4) id jBLFxd9d057897;
	Wed, 21 Dec 2005 17:59:39 +0200 (EET) (envelope-from ru)
Date: Wed, 21 Dec 2005 17:59:39 +0200
From: Ruslan Ermilov <ru@FreeBSD.org>
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Message-ID: <20051221155939.GG55142@ip.net.ua>
References: <200512211549.jBLFnpRO017221@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="OFj+1YLvsEfSXdCH"
Content-Disposition: inline
In-Reply-To: <200512211549.jBLFnpRO017221@repoman.freebsd.org>
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: by amavisd-new at ip.net.ua
Cc: 
Subject: Re: cvs commit: src/sys/conf NOTES files src/sys/pci amdsmb.c
	nfsmb.c src/sys/dev/smbus smbus.c
	src/sys/modules/i2c/controllers Makefile
	src/sys/modules/i2c/controllers/amdsmb Makefile
	src/sys/modules/i2c/controllers/nfsmb Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 16:02:30 -0000


--OFj+1YLvsEfSXdCH
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Wed, Dec 21, 2005 at 03:49:51PM +0000, Ruslan Ermilov wrote:
> ru          2005-12-21 15:49:51 UTC
>=20
>   FreeBSD src repository
>=20
>   Modified files:
>     sys/conf             NOTES files=20
>     sys/dev/smbus        smbus.c=20
>     sys/modules/i2c/controllers Makefile=20
>   Added files:
>     sys/pci              amdsmb.c nfsmb.c=20
>     sys/modules/i2c/controllers/amdsmb Makefile=20
>     sys/modules/i2c/controllers/nfsmb Makefile=20
>   Log:
>   Drivers for AMD-8111 and NVIDIA nForce2/3/4 SMBus 2.0 controllers.
>  =20
>   Revision  Changes    Path
>   1.1339    +5 -1      src/sys/conf/NOTES
>   1.1079    +2 -0      src/sys/conf/files
>   1.21      +2 -0      src/sys/dev/smbus/smbus.c
>   1.5       +1 -1      src/sys/modules/i2c/controllers/Makefile
>   1.1       +9 -0      src/sys/modules/i2c/controllers/amdsmb/Makefile (n=
ew)
>   1.1       +9 -0      src/sys/modules/i2c/controllers/nfsmb/Makefile (ne=
w)
>   1.1       +524 -0    src/sys/pci/amdsmb.c (new)
>   1.1       +553 -0    src/sys/pci/nfsmb.c (new)
>=20
No PEC support because it's missing from smb(4) API.  :-)


Cheers,
--=20
Ruslan Ermilov
ru@FreeBSD.org
FreeBSD committer

--OFj+1YLvsEfSXdCH
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQFDqXvrqRfpzJluFF4RArTgAJ4+ncQC8xvytZfG3zgR/TlDEPpVSQCeK8jQ
kk1CAAmr1W1JiW2nsLYilPg=
=3zGT
-----END PGP SIGNATURE-----

--OFj+1YLvsEfSXdCH--

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 17:31:19 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.ORG
Delivered-To: cvs-src@FreeBSD.ORG
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9F69616A41F;
	Wed, 21 Dec 2005 17:31:19 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from bugor.portaone.com (bugor.portaone.com [65.61.200.232])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3513543D64;
	Wed, 21 Dec 2005 17:30:58 +0000 (GMT)
	(envelope-from sobomax@portaone.com)
Received: from [192.168.1.2] (S0106000f3d63befd.vs.shawcable.net
	[70.71.19.119]) (authenticated bits=0)
	by bugor.portaone.com (8.13.4/8.13.4) with ESMTP id jBLHUqo7010083
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Wed, 21 Dec 2005 17:30:53 GMT (envelope-from sobomax@portaone.com)
Message-ID: <43A9913F.3040106@portaone.com>
Date: Wed, 21 Dec 2005 09:30:39 -0800
From: Maxim Sobolev <sobomax@portaone.com>
Organization: Porta Software Ltd
User-Agent: Thunderbird 1.5 (Windows/20051025)
MIME-Version: 1.0
To: Brian Fundakowski Feldman <green@FreeBSD.ORG>
References: <200512210217.jBL2HxJn057045@repoman.freebsd.org>
	<20051221044622.GC35080@green.homeunix.org>
In-Reply-To: <20051221044622.GC35080@green.homeunix.org>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-Virus-Scanned: ClamAV 0.87.1/1213/Mon Dec 19 14:48:34 2005 on
	bugor.portaone.com
X-Virus-Status: Clean
X-Spam-Status: No, score=-0.3 required=5.0 tests=AWL,BAYES_00,SPF_SOFTFAIL 
	autolearn=no version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on bugor.portaone.com
Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject: Re: cvs commit: src/sys/boot/i386/libi386 biosmem.c i386_copy.c
 libi386.h src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: Maxim.Sobolev@portaone.com
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 17:31:19 -0000

Brian Fundakowski Feldman wrote:
> On Wed, Dec 21, 2005 at 02:17:59AM +0000, Maxim Sobolev wrote:
>> sobomax     2005-12-21 02:17:58 UTC
>>
>>   FreeBSD src repository
>>
>>   Modified files:
>>     sys/boot/i386/libi386 biosmem.c i386_copy.c libi386.h 
>>     sys/boot/i386/loader main.c 
>>   Log:
>>   For the cases when loading bzip2-compressed kernels enabled use last
>>   3MB of physical memory for heap instead of range between 1MB and 4MB.
>>   This makes this feature working with PAE and amd64 kernels, which are
>>   loaded at 2MB. Teach i386_copyin() to avoid using range allocated by
>>   heap in such case, so that it won't trash heap in the low memory
>>   conditions.
>>   
>>   This should make loading bzip2-compressed kernels/modules/mfs images
>>   generally useable, so that re@ team is welcome to evaluate merits
>>   of using this feature in the installation CDs.
>>   
>>   Valuable suggestions by:        jhb
> 
> Should probably just be using 7-zip instead, though.

Huh? Are you going to add appropriate loader(8) support? Besides, 7-zip 
apparently even more memory hungry than bzip2:

   d{N}:   Sets Dictionary size - [0, 28], default: 23 (8MB)
           The maximum value for dictionary size is 256 MB = 2^28 bytes.
           Dictionary size is calculated as DictionarySize = 2^N bytes.
           For decompressing file compressed by LZMA method with dictionary
           size D = 2^N you need about D bytes of memory (RAM).

sobomax@bugor$ lzma e /tmp/kernel /tmp/kernel.lzma

LZMA 4.17 Copyright (c) 1999-2004 Igor Pavlov  2005-04-18
sobomax@bugor$ ls -l /tmp/kernel.lzma
-rw-r--r--  1 sobomax  wheel  1289963 21 дек 08:05 /tmp/kernel.lzma
sobomax@bugor$ bzip2 -9 /tmp/kernel
sobomax@bugor$ ls -l /tmp/kernel.bz2
-r-xr-xr-x  1 sobomax  wheel  1514551 21 дек 08:04 /tmp/kernel.bz2
sobomax@bugor$ sudo bunzip2 /tmp/kernel.bz2
sobomax@bugor$ lzma e /tmp/kernel /tmp/kernel.lzma -d11

LZMA 4.17 Copyright (c) 1999-2004 Igor Pavlov  2005-04-18
sobomax@bugor$ ls -l /tmp/kernel.lzma
-rw-r--r--  1 sobomax  wheel  1550520 21 дек 08:10 /tmp/kernel.lzma

As you can see, when memory size available for decompression is a 
concern (roughly 2MB in this example) bzip2 provides comparable compression.

-Maxim

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 18:05:37 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DA1C416A41F;
	Wed, 21 Dec 2005 18:05:37 +0000 (GMT)
	(envelope-from markm@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 92FC243D5A;
	Wed, 21 Dec 2005 18:05:37 +0000 (GMT)
	(envelope-from markm@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 jBLI5btK030441;
	Wed, 21 Dec 2005 18:05:37 GMT
	(envelope-from markm@repoman.freebsd.org)
Received: (from markm@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLI5bxU030440;
	Wed, 21 Dec 2005 18:05:37 GMT (envelope-from markm)
Message-Id: <200512211805.jBLI5bxU030440@repoman.freebsd.org>
From: Mark Murray <markm@FreeBSD.org>
Date: Wed, 21 Dec 2005 18:05:37 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: CVSROOT access
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 18:05:38 -0000

markm       2005-12-21 18:05:37 UTC

  FreeBSD src repository

  Modified files:
    .                    access 
  Log:
  Welcome back Jasone Evans (jasone@). I am mentoring.
  
  Jason says -
  As always, I am particularly interested in multi-threaded application
  development, and want to work on various aspects of the OS that relate
  to correctness and performance of the threading support.
  
  Approved by:     core
  
  Revision  Changes    Path
  1.729     +1 -0      CVSROOT/access

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 18:58:58 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5711216A41F;
	Wed, 21 Dec 2005 18:58:50 +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 B4F6A43DA3;
	Wed, 21 Dec 2005 18:58:43 +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 jBLIweUa032342;
	Wed, 21 Dec 2005 18:58:40 GMT (envelope-from alc@repoman.freebsd.org)
Received: (from alc@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLIwe2H032341;
	Wed, 21 Dec 2005 18:58:40 GMT (envelope-from alc)
Message-Id: <200512211858.jBLIwe2H032341@repoman.freebsd.org>
From: Alan Cox <alc@FreeBSD.org>
Date: Wed, 21 Dec 2005 18:58:40 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/kern imgact_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 18:58:58 -0000

alc         2005-12-21 18:58:40 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             imgact_elf.c 
  Log:
  Maintain the vnode lock throughout elfN_load_file() rather than releasing
  it and reacquiring it in vrele().  Consequently, there is no reason to
  increase the reference count on the vm object caching the file's pages.
  Reviewed by: tegge
  
  Eliminate unused parameters to elfN_load_file().
  
  Revision  Changes    Path
  1.171     +13 -21    src/sys/kern/imgact_elf.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 20:43:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 04CBA16A422;
	Wed, 21 Dec 2005 20:43:54 +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 5EEE143D83;
	Wed, 21 Dec 2005 20:43:28 +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 jBLKhROO027652;
	Wed, 21 Dec 2005 22:43:27 +0200 (EET) (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 71615-06; Wed, 21 Dec 2005 22:43:24 +0200 (EET)
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 jBLKdCg6027519
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Wed, 21 Dec 2005 22:39:13 +0200 (EET) (envelope-from ru@ip.net.ua)
Received: (from ru@localhost)
	by heffalump.ip.net.ua (8.13.4/8.13.4) id jBLKdMgU092645;
	Wed, 21 Dec 2005 22:39:22 +0200 (EET) (envelope-from ru)
Date: Wed, 21 Dec 2005 22:39:22 +0200
From: Ruslan Ermilov <ru@FreeBSD.org>
To: jasone@FreeBSD.org
Message-ID: <20051221203922.GC58180@ip.net.ua>
References: <200512211805.jBLI5bxU030440@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="S1BNGpv0yoYahz37"
Content-Disposition: inline
In-Reply-To: <200512211805.jBLI5bxU030440@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: CVSROOT access
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 20:43:54 -0000


--S1BNGpv0yoYahz37
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Wed, Dec 21, 2005 at 06:05:37PM +0000, Mark Murray wrote:
> markm       2005-12-21 18:05:37 UTC
>=20
>   FreeBSD src repository
>=20
>   Modified files:
>     .                    access=20
>   Log:
>   Welcome back Jasone Evans (jasone@). I am mentoring.
>  =20
>   Jason says -
>   As always, I am particularly interested in multi-threaded application
>   development, and want to work on various aspects of the OS that relate
>   to correctness and performance of the threading support.
>  =20
>   Approved by:     core
>  =20
>   Revision  Changes    Path
>   1.729     +1 -0      CVSROOT/access
>=20
Your vacation was too long.  Welcome back, Jason!  :-)


Cheers,
--=20
Ruslan Ermilov
ru@FreeBSD.org
FreeBSD committer

--S1BNGpv0yoYahz37
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQFDqb16qRfpzJluFF4RAivGAKCDWT+hUlCwawc+cYj2xUz3VZL5uQCglynN
x0b5HlsXuk60QZsttVbFPro=
=diO8
-----END PGP SIGNATURE-----

--S1BNGpv0yoYahz37--

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 20:50:23 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id ABCFE16A41F;
	Wed, 21 Dec 2005 20:50:23 +0000 (GMT)
	(envelope-from deischen@freebsd.org)
Received: from mail.ntplx.net (mail.ntplx.net [204.213.176.10])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 15B0243D46;
	Wed, 21 Dec 2005 20:50:22 +0000 (GMT)
	(envelope-from deischen@freebsd.org)
Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11])
	by mail.ntplx.net (8.13.5/8.13.5/NETPLEX) with ESMTP id jBLKoLxq007511; 
	Wed, 21 Dec 2005 15:50:22 -0500 (EST)
Date: Wed, 21 Dec 2005 15:50:21 -0500 (EST)
From: Daniel Eischen <deischen@freebsd.org>
X-X-Sender: eischen@sea.ntplx.net
To: Mark Murray <markm@freebsd.org>
In-Reply-To: <200512211805.jBLI5bxU030440@repoman.freebsd.org>
Message-ID: <Pine.GSO.4.43.0512211549360.18777-100000@sea.ntplx.net>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.ntplx.net)
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: CVSROOT access
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: Daniel Eischen <deischen@freebsd.org>
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 20:50:24 -0000

On Wed, 21 Dec 2005, Mark Murray wrote:

> markm       2005-12-21 18:05:37 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     .                    access
>   Log:
>   Welcome back Jasone Evans (jasone@). I am mentoring.

Since he's been here before, does he need a mentor?

>   Jason says -
>   As always, I am particularly interested in multi-threaded application
>   development, and want to work on various aspects of the OS that relate
>   to correctness and performance of the threading support.

Cool, welcome back!

-- 
DE


From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 21:06:01 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.ORG
Delivered-To: cvs-src@FreeBSD.ORG
Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP id 8F79516A41F;
	Wed, 21 Dec 2005 21:06:01 +0000 (GMT)
	(envelope-from green@green.homeunix.org)
Received: from green.homeunix.org (green@localhost [127.0.0.1])
	by green.homeunix.org (8.13.4/8.13.1) with ESMTP id jBLL60A1076049;
	Wed, 21 Dec 2005 16:06:00 -0500 (EST)
	(envelope-from green@green.homeunix.org)
Received: (from green@localhost)
	by green.homeunix.org (8.13.4/8.13.1/Submit) id jBLL60oH076047;
	Wed, 21 Dec 2005 16:06:00 -0500 (EST) (envelope-from green)
Date: Wed, 21 Dec 2005 16:05:59 -0500
From: Brian Fundakowski Feldman <green@FreeBSD.ORG>
To: Maxim.Sobolev@portaone.com
Message-ID: <20051221210559.GD35080@green.homeunix.org>
References: <200512210217.jBL2HxJn057045@repoman.freebsd.org>
	<20051221044622.GC35080@green.homeunix.org>
	<43A9913F.3040106@portaone.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <43A9913F.3040106@portaone.com>
User-Agent: Mutt/1.5.11
Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject: Re: cvs commit: src/sys/boot/i386/libi386 biosmem.c i386_copy.c
	libi386.h src/sys/boot/i386/loader main.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 21:06:01 -0000

On Wed, Dec 21, 2005 at 09:30:39AM -0800, Maxim Sobolev wrote:
> Brian Fundakowski Feldman wrote:
> >On Wed, Dec 21, 2005 at 02:17:59AM +0000, Maxim Sobolev wrote:
> >>sobomax     2005-12-21 02:17:58 UTC
> >>
> >>  FreeBSD src repository
> >>
> >>  Modified files:
> >>    sys/boot/i386/libi386 biosmem.c i386_copy.c libi386.h 
> >>    sys/boot/i386/loader main.c 
> >>  Log:
> >>  For the cases when loading bzip2-compressed kernels enabled use last
> >>  3MB of physical memory for heap instead of range between 1MB and 4MB.
> >>  This makes this feature working with PAE and amd64 kernels, which are
> >>  loaded at 2MB. Teach i386_copyin() to avoid using range allocated by
> >>  heap in such case, so that it won't trash heap in the low memory
> >>  conditions.
> >>  
> >>  This should make loading bzip2-compressed kernels/modules/mfs images
> >>  generally useable, so that re@ team is welcome to evaluate merits
> >>  of using this feature in the installation CDs.
> >>  
> >>  Valuable suggestions by:        jhb
> >
> >Should probably just be using 7-zip instead, though.
> 
> Huh? Are you going to add appropriate loader(8) support? Besides, 7-zip 
> apparently even more memory hungry than bzip2:
> 
>   d{N}:   Sets Dictionary size - [0, 28], default: 23 (8MB)
>           The maximum value for dictionary size is 256 MB = 2^28 bytes.
>           Dictionary size is calculated as DictionarySize = 2^N bytes.
>           For decompressing file compressed by LZMA method with dictionary
>           size D = 2^N you need about D bytes of memory (RAM).
> 
> sobomax@bugor$ lzma e /tmp/kernel /tmp/kernel.lzma
> 
> LZMA 4.17 Copyright (c) 1999-2004 Igor Pavlov  2005-04-18
> sobomax@bugor$ ls -l /tmp/kernel.lzma
> -rw-r--r--  1 sobomax  wheel  1289963 21 ?????? 08:05 /tmp/kernel.lzma
> sobomax@bugor$ bzip2 -9 /tmp/kernel
> sobomax@bugor$ ls -l /tmp/kernel.bz2
> -r-xr-xr-x  1 sobomax  wheel  1514551 21 ?????? 08:04 /tmp/kernel.bz2
> sobomax@bugor$ sudo bunzip2 /tmp/kernel.bz2
> sobomax@bugor$ lzma e /tmp/kernel /tmp/kernel.lzma -d11
> 
> LZMA 4.17 Copyright (c) 1999-2004 Igor Pavlov  2005-04-18
> sobomax@bugor$ ls -l /tmp/kernel.lzma
> -rw-r--r--  1 sobomax  wheel  1550520 21 ?????? 08:10 /tmp/kernel.lzma
> 
> As you can see, when memory size available for decompression is a 
> concern (roughly 2MB in this example) bzip2 provides comparable compression.

5.2 Single-call Decompressing with input stream callback
--------------------------------------------------------
When to use: File->RAM or Flash->RAM decompressing.
Compile files: LzmaDecode.h, LzmaDecode.c
Compile defines: _LZMA_IN_CB
Memory Requirements:
  - Buffer for input stream: any size (for example, 16 KB)
  - Output buffer: uncompressed size
  - LZMA Internal Structures (~16 KB for default settings)

So adding up the dictionary sizes and limiting it to 2MB, using
compression that optimizes x86 executable storage, LZMA instead of
bzip2, solid archiving, we get:

{"/home/green" green@green}$ du -sk kernel.*
5328    kernel.7z
8070    kernel.bzip2-4ed
8038    kernel.bzip2-8ed
19406   kernel.straight

I would see those as considerable savings.

-- 
Brian Fundakowski Feldman                           \'[ FreeBSD ]''''''''''\
  <> green@FreeBSD.org                               \  The Power to Serve! \
 Opinions expressed are my own.                       \,,,,,,,,,,,,,,,,,,,,,,\

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 21:29:46 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 45FD516A41F;
	Wed, 21 Dec 2005 21:29:46 +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 0B70243D5E;
	Wed, 21 Dec 2005 21:29:46 +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 jBLLTjfb046222;
	Wed, 21 Dec 2005 21:29:45 GMT
	(envelope-from thompsa@repoman.freebsd.org)
Received: (from thompsa@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLLTjRH046221;
	Wed, 21 Dec 2005 21:29:45 GMT (envelope-from thompsa)
Message-Id: <200512212129.jBLLTjRH046221@repoman.freebsd.org>
From: Andrew Thompson <thompsa@FreeBSD.org>
Date: Wed, 21 Dec 2005 21:29: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/share/man/man4 if_bridge.4 src/sys/net if_bridge.c
 if_gif.c if_gif.h src/sys/netinet in_gif.c in_proto.c
 src/sys/netinet6 in6_gif.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 21:29:46 -0000

thompsa     2005-12-21 21:29:45 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       if_bridge.4 
    sys/net              if_bridge.c if_gif.c if_gif.h 
    sys/netinet          in_gif.c in_proto.c 
    sys/netinet6         in6_gif.c 
  Log:
  Add RFC 3378 EtherIP support. This change makes it possible to add gif
  interfaces to bridges, which will then send and receive IP protocol 97 packets.
  Packets are Ethernet frames with an EtherIP header prepended.
  
  Obtained from:  NetBSD
  MFC after:      2 weeks
  
  Revision  Changes    Path
  1.9       +17 -0     src/share/man/man4/if_bridge.4
  1.42      +20 -6     src/sys/net/if_bridge.c
  1.57      +67 -4     src/sys/net/if_gif.c
  1.18      +8 -0      src/sys/net/if_gif.h
  1.33      +19 -0     src/sys/netinet/in_gif.c
  1.81      +10 -0     src/sys/netinet/in_proto.c
  1.23      +19 -0     src/sys/netinet6/in6_gif.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 21:35:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4D09916A41F;
	Wed, 21 Dec 2005 21:35:48 +0000 (GMT)
	(envelope-from thompsa@freebsd.org)
Received: from dbmail-mx2.orcon.net.nz (loadbalancer1.orcon.net.nz
	[219.88.242.3])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9CE0243D79;
	Wed, 21 Dec 2005 21:35:41 +0000 (GMT)
	(envelope-from thompsa@freebsd.org)
Received: from heff.fud.org.nz (60-234-149-201.bitstream.orcon.net.nz
	[60.234.149.201])
	by dbmail-mx2.orcon.net.nz (8.13.2/8.13.2/Debian-1) with ESMTP id
	jBLLdN2h013582; Thu, 22 Dec 2005 10:39:24 +1300
Received: by heff.fud.org.nz (Postfix, from userid 1001)
	id D62B12845A; Thu, 22 Dec 2005 10:35:37 +1300 (NZDT)
Date: Thu, 22 Dec 2005 10:35:37 +1300
From: Andrew Thompson <thompsa@freebsd.org>
To: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org
Message-ID: <20051221213537.GA33888@heff.fud.org.nz>
References: <200512212129.jBLLTjRH046221@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200512212129.jBLLTjRH046221@repoman.freebsd.org>
User-Agent: Mutt/1.5.11
X-Virus-Scanned: ClamAV version 0.87.1,
	clamav-milter version 0.87 on dbmail-mx2.orcon.net.nz
X-Virus-Status: Clean
Cc: 
Subject: Re: cvs commit: src/share/man/man4 if_bridge.4 src/sys/net
	if_bridge.c if_gif.c if_gif.h src/sys/netinet in_gif.c
	in_proto.c src/sys/netinet6 in6_gif.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 21:35:48 -0000

On Wed, Dec 21, 2005 at 09:29:45PM +0000, Andrew Thompson wrote:
> thompsa     2005-12-21 21:29:45 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     share/man/man4       if_bridge.4 
>     sys/net              if_bridge.c if_gif.c if_gif.h 
>     sys/netinet          in_gif.c in_proto.c 
>     sys/netinet6         in6_gif.c 
>   Log:
>   Add RFC 3378 EtherIP support. This change makes it possible to add gif
>   interfaces to bridges, which will then send and receive IP protocol 97 packets.
>   Packets are Ethernet frames with an EtherIP header prepended.
>   

You can now play legacy networked games that only use IPX for LAN
communication with your friends over the Internet. Anyone for Doom?


Andrew


From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 22:16:06 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1634816A41F;
	Wed, 21 Dec 2005 22:16:06 +0000 (GMT)
	(envelope-from jasone@canonware.com)
Received: from lh.synack.net (lh.synack.net [204.152.188.37])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9F05B43D4C;
	Wed, 21 Dec 2005 22:16:05 +0000 (GMT)
	(envelope-from jasone@canonware.com)
Received: by lh.synack.net (Postfix, from userid 100)
	id 3DCF85E48DA; Wed, 21 Dec 2005 14:16:05 -0800 (PST)
Received: from [192.168.168.203]
	(moscow-cuda-gen2-68-64-60-20.losaca.adelphia.net [68.64.60.20])
	(using TLSv1 with cipher RC4-SHA (128/128 bits))
	(No client certificate requested)
	by lh.synack.net (Postfix) with ESMTP id 3C3D85E4893;
	Wed, 21 Dec 2005 14:16:03 -0800 (PST)
In-Reply-To: <Pine.GSO.4.43.0512211549360.18777-100000@sea.ntplx.net>
References: <Pine.GSO.4.43.0512211549360.18777-100000@sea.ntplx.net>
Mime-Version: 1.0 (Apple Message framework v746.2)
Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
Message-Id: <7A7456F6-D36C-4C07-AD18-F64F5F3BBEDB@canonware.com>
Content-Transfer-Encoding: 7bit
From: Jason Evans <jasone@canonware.com>
Date: Wed, 21 Dec 2005 14:15:56 -0800
To: Daniel Eischen <deischen@freebsd.org>
X-Mailer: Apple Mail (2.746.2)
X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on lh.synack.net
X-Spam-Level: *
X-Spam-Status: No, score=1.8 required=5.0 tests=RCVD_IN_NJABL_DUL,
	RCVD_IN_SORBS_DUL autolearn=no version=3.0.4
Cc: cvs-src@freebsd.org, src-committers@freebsd.org,
	Mark Murray <markm@freebsd.org>, cvs-all@freebsd.org
Subject: Re: cvs commit: CVSROOT access
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 22:16:06 -0000

On Dec 21, 2005, at 12:50 PM, Daniel Eischen wrote:
> On Wed, 21 Dec 2005, Mark Murray wrote:
>
>>   Welcome back Jasone Evans (jasone@). I am mentoring.
>
> Since he's been here before, does he need a mentor?

Mark is mainly going to help me observe any procedural changes that  
have been made since the last time I committed.  He has already been  
helpful in this regard.

> Cool, welcome back!

Thanks, I'm excited to be back.

Jason

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 22:52:19 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id ED9EF16A41F;
	Wed, 21 Dec 2005 22:52:19 +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 961CA43D45;
	Wed, 21 Dec 2005 22:52:19 +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 jBLMqJbV049458;
	Wed, 21 Dec 2005 22:52:19 GMT
	(envelope-from thompsa@repoman.freebsd.org)
Received: (from thompsa@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLMqJl2049457;
	Wed, 21 Dec 2005 22:52:19 GMT (envelope-from thompsa)
Message-Id: <200512212252.jBLMqJl2049457@repoman.freebsd.org>
From: Andrew Thompson <thompsa@FreeBSD.org>
Date: Wed, 21 Dec 2005 22:52:19 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sys/net 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 22:52:20 -0000

thompsa     2005-12-21 22:52:19 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net              if_bridge.c 
  Log:
  MFC r1.37: use m_dup rather than m_copypacket
  
  Revision   Changes    Path
  1.11.2.18  +6 -1      src/sys/net/if_bridge.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 22:52:49 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B520716A41F;
	Wed, 21 Dec 2005 22:52:49 +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 72E4143D5D;
	Wed, 21 Dec 2005 22:52:48 +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 jBLMqmJd049496;
	Wed, 21 Dec 2005 22:52:48 GMT
	(envelope-from thompsa@repoman.freebsd.org)
Received: (from thompsa@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLMqmV9049495;
	Wed, 21 Dec 2005 22:52:48 GMT (envelope-from thompsa)
Message-Id: <200512212252.jBLMqmV9049495@repoman.freebsd.org>
From: Andrew Thompson <thompsa@FreeBSD.org>
Date: Wed, 21 Dec 2005 22:52:48 +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_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 22:52:50 -0000

thompsa     2005-12-21 22:52:48 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    sys/net              if_bridge.c 
  Log:
  MFC r1.37: use m_dup rather than m_copypacket
  
  Revision  Changes    Path
  1.23.2.4  +6 -1      src/sys/net/if_bridge.c

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 23:03:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.ORG
Delivered-To: cvs-src@FreeBSD.ORG
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5BA3D16A41F;
	Wed, 21 Dec 2005 23:03:43 +0000 (GMT)
	(envelope-from wb@freebie.xs4all.nl)
Received: from smtp-vbr4.xs4all.nl (smtp-vbr4.xs4all.nl [194.109.24.24])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0BDBC43D5C;
	Wed, 21 Dec 2005 23:03:39 +0000 (GMT)
	(envelope-from wb@freebie.xs4all.nl)
Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253])
	by smtp-vbr4.xs4all.nl (8.13.3/8.13.3) with ESMTP id jBLN3cBA025201;
	Thu, 22 Dec 2005 00:03:38 +0100 (CET)
	(envelope-from wb@freebie.xs4all.nl)
Received: from freebie.xs4all.nl (localhost [127.0.0.1])
	by freebie.xs4all.nl (8.13.4/8.13.3) with ESMTP id jBLN3b4u014624;
	Thu, 22 Dec 2005 00:03:37 +0100 (CET)
	(envelope-from wb@freebie.xs4all.nl)
Received: (from wb@localhost)
	by freebie.xs4all.nl (8.13.4/8.13.1/Submit) id jBLN3bEO014623;
	Thu, 22 Dec 2005 00:03:37 +0100 (CET) (envelope-from wb)
Date: Thu, 22 Dec 2005 00:03:37 +0100
From: Wilko Bulte <wb@freebie.xs4all.nl>
To: Andrew Thompson <thompsa@FreeBSD.ORG>
Message-ID: <20051221230337.GA14608@freebie.xs4all.nl>
References: <200512212129.jBLLTjRH046221@repoman.freebsd.org>
	<20051221213537.GA33888@heff.fud.org.nz>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20051221213537.GA33888@heff.fud.org.nz>
X-OS: FreeBSD 6.0-STABLE
User-Agent: Mutt/1.5.11
X-Virus-Scanned: by XS4ALL Virus Scanner
Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject: Re: cvs commit: src/share/man/man4 if_bridge.4 src/sys/net
	if_bridge.c if_gif.c if_gif.h src/sys/netinet in_gif.c
	in_proto.c src/sys/netinet6 in6_gif.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 23:03:43 -0000

On Thu, Dec 22, 2005 at 10:35:37AM +1300, Andrew Thompson wrote..
> On Wed, Dec 21, 2005 at 09:29:45PM +0000, Andrew Thompson wrote:
> > thompsa     2005-12-21 21:29:45 UTC
> > 
> >   FreeBSD src repository
> > 
> >   Modified files:
> >     share/man/man4       if_bridge.4 
> >     sys/net              if_bridge.c if_gif.c if_gif.h 
> >     sys/netinet          in_gif.c in_proto.c 
> >     sys/netinet6         in6_gif.c 
> >   Log:
> >   Add RFC 3378 EtherIP support. This change makes it possible to add gif
> >   interfaces to bridges, which will then send and receive IP protocol 97 packets.
> >   Packets are Ethernet frames with an EtherIP header prepended.
> >   
> 
> You can now play legacy networked games that only use IPX for LAN
> communication with your friends over the Internet. Anyone for Doom?
> 
> Andrew

Or Xerox-net to an Alto? :-)

-- 
Wilko Bulte				wilko@FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 23:09:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5083E16A41F;
	Wed, 21 Dec 2005 23:09:54 +0000 (GMT) (envelope-from flz@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id BFB7643D5D;
	Wed, 21 Dec 2005 23:09:53 +0000 (GMT) (envelope-from flz@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 jBLN9r1M050125;
	Wed, 21 Dec 2005 23:09:53 GMT (envelope-from flz@repoman.freebsd.org)
Received: (from flz@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLN9r7A050124;
	Wed, 21 Dec 2005 23:09:53 GMT (envelope-from flz)
Message-Id: <200512212309.jBLN9r7A050124@repoman.freebsd.org>
From: Florent Thoumie <flz@FreeBSD.org>
Date: Wed, 21 Dec 2005 23:09:53 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_5
Cc: 
Subject: cvs commit: src/sys/dev/usb usb_quirks.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 23:09:54 -0000

flz         2005-12-21 23:09:53 UTC

  FreeBSD src repository (ports committer)

  Modified files:        (Branch: RELENG_5)
    sys/dev/usb          usb_quirks.c usbdevs 
  Log:
  MFC: Add ProductID for the iPod Nano.
  
          usb_quirks.c:   1.44
          usbdevs:        1.237
  
  Approved by:    ssouhlal
  
  Revision    Changes    Path
  1.38.2.4    +1 -0      src/sys/dev/usb/usb_quirks.c
  1.195.2.15  +1 -0      src/sys/dev/usb/usbdevs

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 23:11:24 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 3725316A41F;
	Wed, 21 Dec 2005 23:11:24 +0000 (GMT) (envelope-from flz@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 66E1E43D75;
	Wed, 21 Dec 2005 23:11:15 +0000 (GMT) (envelope-from flz@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 jBLNBEpj050285;
	Wed, 21 Dec 2005 23:11:14 GMT (envelope-from flz@repoman.freebsd.org)
Received: (from flz@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBLNBEsY050284;
	Wed, 21 Dec 2005 23:11:14 GMT (envelope-from flz)
Message-Id: <200512212311.jBLNBEsY050284@repoman.freebsd.org>
From: Florent Thoumie <flz@FreeBSD.org>
Date: Wed, 21 Dec 2005 23:11:14 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sys/dev/usb usb_quirks.c usbdevs
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 23:11:24 -0000

flz         2005-12-21 23:11:14 UTC

  FreeBSD src repository (ports committer)

  Modified files:        (Branch: RELENG_6)
    sys/dev/usb          usb_quirks.c usbdevs 
  Log:
  MFC: Add ProductID for the iPod Nano.
  
          usb_quirks.c:   1.44
          usbdevs:        1.237
  
  Approved by:    ssouhlal
  
  Revision   Changes    Path
  1.41.2.2   +1 -0      src/sys/dev/usb/usb_quirks.c
  1.232.2.4  +1 -0      src/sys/dev/usb/usbdevs

From owner-cvs-src@FreeBSD.ORG  Wed Dec 21 23:20:48 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 12AEB16A41F;
	Wed, 21 Dec 2005 23:20:48 +0000 (GMT)
	(envelope-from markm@FreeBSD.org)
Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 912CF43D73;
	Wed, 21 Dec 2005 23:20:17 +0000 (GMT)
	(envelope-from markm@FreeBSD.org)
Received: from storm.uk.FreeBSD.org (uucp@localhost [127.0.0.1])
	by storm.uk.FreeBSD.org (8.13.4/8.13.4) with ESMTP id jBLNK79s008401;
	Wed, 21 Dec 2005 23:20:07 GMT (envelope-from markm@FreeBSD.org)
Received: (from uucp@localhost)
	by storm.uk.FreeBSD.org (8.13.4/8.12.11/Submit) with UUCP id
	jBLNK7uv008400; Wed, 21 Dec 2005 23:20:07 GMT
	(envelope-from markm@FreeBSD.org)
Received: from grondar.org (localhost [127.0.0.1])
	by grunt.grondar.org (8.13.4/8.13.4) with ESMTP id jBLNGoWF026560;
	Wed, 21 Dec 2005 23:16:50 GMT (envelope-from markm@FreeBSD.org)
Message-Id: <200512212316.jBLNGoWF026560@grunt.grondar.org>
To: Daniel Eischen <deischen@FreeBSD.org>
From: Mark Murray <markm@FreeBSD.org>
Date: Wed, 21 Dec 2005 23:16:50 +0000
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org,
	Mark Murray <markm@FreeBSD.org>, cvs-all@FreeBSD.org
Subject: Re: cvs commit: CVSROOT access 
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 21 Dec 2005 23:20:48 -0000

Daniel Eischen writes:
> >   Welcome back Jasone Evans (jasone@). I am mentoring.
> 
> Since he's been here before, does he need a mentor?

Yeah. Its more a courtesy thing, as lots of things change over time.
I expect this to be a really short mentorship :-)

> Cool, welcome back!

Yeah :-)

M
--
Mark R V Murray
What is the most interesting question you have asked?
What, if any, was the answer?

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 00:34:56 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C04E116A41F;
	Thu, 22 Dec 2005 00:34:56 +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 333DF43D7E;
	Thu, 22 Dec 2005 00:34:49 +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 jBM0Yn2b053277;
	Thu, 22 Dec 2005 00:34:49 GMT
	(envelope-from brooks@repoman.freebsd.org)
Received: (from brooks@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM0Yn6T053276;
	Thu, 22 Dec 2005 00:34:49 GMT (envelope-from brooks)
Message-Id: <200512220034.jBM0Yn6T053276@repoman.freebsd.org>
From: Brooks Davis <brooks@FreeBSD.org>
Date: Thu, 22 Dec 2005 00:34:49 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/lib/libutil trimdomain.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 00:34:56 -0000

brooks      2005-12-22 00:34:49 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    lib/libutil          trimdomain.c 
  Log:
  MFC rev 1.6:
          When removing the local domain, only do so when the result
          will be a host name.  This is matches the documented behaviro.
          The previous behavior would remove the domain name even if
          the result retained a dot.
  
          This fixes rsh connections from a.example.com to example.com.
  
  This is also reported to fix rsh connections from host xxx to
  yyy.example.com.
  
  PR:             88301
  
  Revision  Changes    Path
  1.5.10.1  +1 -3      src/lib/libutil/trimdomain.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 00:43:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2152816A41F;
	Thu, 22 Dec 2005 00:43:21 +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 B531643D68;
	Thu, 22 Dec 2005 00:43:20 +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 jBM0hKD7053681;
	Thu, 22 Dec 2005 00:43:20 GMT
	(envelope-from brooks@repoman.freebsd.org)
Received: (from brooks@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM0hKgD053680;
	Thu, 22 Dec 2005 00:43:20 GMT (envelope-from brooks)
Message-Id: <200512220043.jBM0hKgD053680@repoman.freebsd.org>
From: Brooks Davis <brooks@FreeBSD.org>
Date: Thu, 22 Dec 2005 00:43: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 UPDATING
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 00:43:21 -0000

brooks      2005-12-22 00:43:19 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    .                    UPDATING 
  Log:
  Note that an MFC of a fix to trimdomain(3) may result in changes to host
  names in log files under certain circumstances.
  
  Revision    Changes    Path
  1.416.2.11  +5 -0      src/UPDATING

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 01:44:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B45A016A41F;
	Thu, 22 Dec 2005 01:44:27 +0000 (GMT)
	(envelope-from yongari@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7560043D66;
	Thu, 22 Dec 2005 01:44:27 +0000 (GMT)
	(envelope-from yongari@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 jBM1iRl8063409;
	Thu, 22 Dec 2005 01:44:27 GMT
	(envelope-from yongari@repoman.freebsd.org)
Received: (from yongari@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM1iRgI063408;
	Thu, 22 Dec 2005 01:44:27 GMT (envelope-from yongari)
Message-Id: <200512220144.jBM1iRgI063408@repoman.freebsd.org>
From: Pyun YongHyeon <yongari@FreeBSD.org>
Date: Thu, 22 Dec 2005 01:44: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/dev/bge if_bge.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 01:44:27 -0000

yongari     2005-12-22 01:44:27 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/bge          if_bge.c 
  Log:
  Add bge(4) support for big-endian architectures(part 2/2).
   - removed unused funtion bge_handle_events().
   - removed bus_dmamap_destroy(9) calls for DMA maps created by
     bus_dmamem_alloc(9). This should fix panics seen on sparc64
     in device detach.
   - added check for parent DMA tag creation.
   - switched to use __NO_STRICT_ALIGNMENT as bge(4) supports all
     architectures.
   - added missing bus_dmamap_sync(9) in bge_txeof().
   - added missing bus_dmamap_sync(9) in bge_encap().
   - corrected memory synchronization operation on status block.
     As the driver just read status block that was DMAed by NIC it
     should use BUS_DMASYNC_POSTREAD. Likewise the driver does not
     need to write status block back, so remove unnecessary
     bus_dmamap_sync(9) calls in bge_intr().
   - corrected memory synchronization operation on RX return ring.
     The driver only read the block so remove unnecessary
     bus_dmamap_sync(9) in bge_rxeof().
   - force bus_dmamap_sync(9) for only modified descriptors. Blindly
     synching all desciptor rings would reduce performance.
   - call bus_dmamap_sync(9) for DMA maps that were modified in bge_rxeof().
  
  Reviewed by:    jkim(initial version)
  Tested by:      glebius(i386), jkim(amd64 initial version)
  
  Revision  Changes    Path
  1.109     +75 -92    src/sys/dev/bge/if_bge.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 01:46:36 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 25C2A16A422;
	Thu, 22 Dec 2005 01:46:36 +0000 (GMT)
	(envelope-from yongari@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3D76643D5D;
	Thu, 22 Dec 2005 01:46:28 +0000 (GMT)
	(envelope-from yongari@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 jBM1kStR063570;
	Thu, 22 Dec 2005 01:46:28 GMT
	(envelope-from yongari@repoman.freebsd.org)
Received: (from yongari@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM1kSGI063569;
	Thu, 22 Dec 2005 01:46:28 GMT (envelope-from yongari)
Message-Id: <200512220146.jBM1kSGI063569@repoman.freebsd.org>
From: Pyun YongHyeon <yongari@FreeBSD.org>
Date: Thu, 22 Dec 2005 01:46: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/sparc64/conf GENERIC
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 01:46:36 -0000

yongari     2005-12-22 01:46:28 UTC

  FreeBSD src repository

  Modified files:
    sys/sparc64/conf     GENERIC 
  Log:
  Uncomment bge(4) as it's now working.
  
  Revision  Changes    Path
  1.102     +1 -1      src/sys/sparc64/conf/GENERIC

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 01:50:45 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 261B416A422;
	Thu, 22 Dec 2005 01:50:45 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 8F4FA43D55;
	Thu, 22 Dec 2005 01:50:44 +0000 (GMT)
	(envelope-from davidxu@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 jBM1oiXP063760;
	Thu, 22 Dec 2005 01:50:44 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM1oi3K063759;
	Thu, 22 Dec 2005 01:50:44 GMT (envelope-from davidxu)
Message-Id: <200512220150.jBM1oi3K063759@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Thu, 22 Dec 2005 01:50: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/lib/libthr/thread thr_join.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 01:50:45 -0000

davidxu     2005-12-22 01:50:44 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    lib/libthr/thread    thr_join.c 
  Log:
  MFC revision 1.20:
          Clear return code to zero if joiner successfully waited joinee.
  
  Revision  Changes    Path
  1.16.2.2  +1 -0      src/lib/libthr/thread/thr_join.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 02:03:58 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2EC0216A41F;
	Thu, 22 Dec 2005 02:03:58 +0000 (GMT)
	(envelope-from yongari@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id D72D243D58;
	Thu, 22 Dec 2005 02:03:57 +0000 (GMT)
	(envelope-from yongari@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 jBM23vBj064253;
	Thu, 22 Dec 2005 02:03:57 GMT
	(envelope-from yongari@repoman.freebsd.org)
Received: (from yongari@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM23vdu064252;
	Thu, 22 Dec 2005 02:03:57 GMT (envelope-from yongari)
Message-Id: <200512220203.jBM23vdu064252@repoman.freebsd.org>
From: Pyun YongHyeon <yongari@FreeBSD.org>
Date: Thu, 22 Dec 2005 02:03:57 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/bge if_bge.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 02:03:58 -0000

yongari     2005-12-22 02:03:57 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/bge          if_bge.c 
  Log:
  Fix bge_eeprom_getbyte() to return 1 when timeout happens.
  Previously it always returned 0 which means success regardless of
  EEPROM status.
  
  While here, add a check whether EEPROM read is successful.
  
  Submitted by:   jkim
  
  Revision  Changes    Path
  1.110     +8 -3      src/sys/dev/bge/if_bge.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 03:47:05 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EEB9516A41F;
	Thu, 22 Dec 2005 03:47:05 +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 B008B43D58;
	Thu, 22 Dec 2005 03:47:05 +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 jBM3l5hu068217;
	Thu, 22 Dec 2005 03:47:05 GMT
	(envelope-from brooks@repoman.freebsd.org)
Received: (from brooks@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM3l5sS068216;
	Thu, 22 Dec 2005 03:47:05 GMT (envelope-from brooks)
Message-Id: <200512220347.jBM3l5sS068216@repoman.freebsd.org>
From: Brooks Davis <brooks@FreeBSD.org>
Date: Thu, 22 Dec 2005 03:47:05 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/tools/regression/lib/libutil Makefile
 test-trimdomain-nodomain.c
 test-trimdomain-nodomain.t test-trimdomain.c test-trimdomain.t
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 03:47:06 -0000

brooks      2005-12-22 03:47:05 UTC

  FreeBSD src repository

  Added files:           (Branch: RELENG_6)
    tools/regression/lib/libutil Makefile 
                                 test-trimdomain-nodomain.c 
                                 test-trimdomain-nodomain.t 
                                 test-trimdomain.c 
                                 test-trimdomain.t 
  Log:
  MFC trimdomain(3) regression tests.
  
  Revision  Changes    Path
  1.1.2.1   +12 -0     src/tools/regression/lib/libutil/Makefile (new)
  1.1.2.1   +90 -0     src/tools/regression/lib/libutil/test-trimdomain-nodomain.c (new)
  1.1.2.1   +10 -0     src/tools/regression/lib/libutil/test-trimdomain-nodomain.t (new)
  1.1.2.1   +90 -0     src/tools/regression/lib/libutil/test-trimdomain.c (new)
  1.1.2.1   +10 -0     src/tools/regression/lib/libutil/test-trimdomain.t (new)

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 04:23:11 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C2A2E16A41F;
	Thu, 22 Dec 2005 04:23:11 +0000 (GMT)
	(envelope-from emaste@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7844A43D5C;
	Thu, 22 Dec 2005 04:23:11 +0000 (GMT)
	(envelope-from emaste@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 jBM4NBBT069423;
	Thu, 22 Dec 2005 04:23:11 GMT
	(envelope-from emaste@repoman.freebsd.org)
Received: (from emaste@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM4NBN4069422;
	Thu, 22 Dec 2005 04:23:11 GMT (envelope-from emaste)
Message-Id: <200512220423.jBM4NBN4069422@repoman.freebsd.org>
From: Ed Maste <emaste@FreeBSD.org>
Date: Thu, 22 Dec 2005 04:23:11 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sys/kern 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 04:23:11 -0000

emaste      2005-12-22 04:23:11 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/kern             uipc_mbuf.c 
  Log:
  MFC r1.160:
    When using m_dup(9) to copy more than MHLEN bytes of data, don't
    create an mbuf chain that starts with a cluster containing just MHLEN
    bytes.  This happened because m_dup called m_get or m_getcl depending
    on the amount of data to copy, but then always set the size available
    in the first mbuf to MHLEN.
  
  Approved by:    jmg
  Silence from:   rwatson (mentor)
  
  Revision   Changes    Path
  1.148.2.2  +2 -1      src/sys/kern/uipc_mbuf.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 04:29:04 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1377316A41F;
	Thu, 22 Dec 2005 04:29:04 +0000 (GMT)
	(envelope-from emaste@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9794543D67;
	Thu, 22 Dec 2005 04:29:03 +0000 (GMT)
	(envelope-from emaste@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 jBM4T3cf069676;
	Thu, 22 Dec 2005 04:29:03 GMT
	(envelope-from emaste@repoman.freebsd.org)
Received: (from emaste@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM4T3j5069675;
	Thu, 22 Dec 2005 04:29:03 GMT (envelope-from emaste)
Message-Id: <200512220429.jBM4T3j5069675@repoman.freebsd.org>
From: Ed Maste <emaste@FreeBSD.org>
Date: Thu, 22 Dec 2005 04:29: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 04:29:04 -0000

emaste      2005-12-22 04:29:03 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    sys/kern             uipc_mbuf.c 
  Log:
  MFC r1.160:
    When using m_dup(9) to copy more than MHLEN bytes of data, don't
    create an mbuf chain that starts with a cluster containing just MHLEN
    bytes.  This happened because m_dup called m_get or m_getcl depending
    on the amount of data to copy, but then always set the size available
    in the first mbuf to MHLEN.
  
  Approved by:    jmg
  Silence from:   rwatson (mentor)
  
  Revision   Changes    Path
  1.135.2.7  +2 -1      src/sys/kern/uipc_mbuf.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 05:05:04 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6520216A41F;
	Thu, 22 Dec 2005 05:05:04 +0000 (GMT)
	(envelope-from emaste@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A6B2C43D4C;
	Thu, 22 Dec 2005 05:05:00 +0000 (GMT)
	(envelope-from emaste@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 jBM550xK078231;
	Thu, 22 Dec 2005 05:05:00 GMT
	(envelope-from emaste@repoman.freebsd.org)
Received: (from emaste@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM550VI078230;
	Thu, 22 Dec 2005 05:05:00 GMT (envelope-from emaste)
Message-Id: <200512220505.jBM550VI078230@repoman.freebsd.org>
From: Ed Maste <emaste@FreeBSD.org>
Date: Thu, 22 Dec 2005 05:05: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/net if.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 05:05:04 -0000

emaste      2005-12-22 05:05:00 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    sys/net              if.c 
  Log:
  MFC r1.235, r1.237, r1.238:
  
    (1.235)
    - Introduce a helper function if_setflag() containing the code common
      to ifpromisc() and if_allmulti() instead of duplicating the code poorly,
      with different bugs.
    - Call ifp->if_ioctl() in a consistent way: always use more compatible C
      syntax and check whether ifp->if_ioctl is not NULL prior to the call.
  
    (1.237)
    Rename equal() macro to sa_equal(), which matches the definitions
    of sa_equal() in other files, and makes it more clear what equal()
    is comparing.
  
    (1.238)
    In multicast routines:
  
    Compare pointers with NULL rather than treating them as booleans.
  
    Compare pointers with NULL rather than 0 to make it more clear
    they are pointers.
  
    Assign pointers value of NULL rather than 0 to make it more clear
    they are pointers.
  
  Approved by:    scottl
  Silence from:   rwatson (mentor)
  
  Revision    Changes    Path
  1.199.2.19  +127 -100  src/sys/net/if.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 09:00:42 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 516F216A41F;
	Thu, 22 Dec 2005 09:00:42 +0000 (GMT)
	(envelope-from glebius@FreeBSD.org)
Received: from cell.sick.ru (cell.sick.ru [217.72.144.68])
	by mx1.FreeBSD.org (Postfix) with ESMTP id E3B1F43D58;
	Thu, 22 Dec 2005 09:00:40 +0000 (GMT)
	(envelope-from glebius@FreeBSD.org)
Received: from cell.sick.ru (glebius@localhost [127.0.0.1])
	by cell.sick.ru (8.13.3/8.13.3) with ESMTP id jBM90dQg016772
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Thu, 22 Dec 2005 12:00:39 +0300 (MSK)
	(envelope-from glebius@FreeBSD.org)
Received: (from glebius@localhost)
	by cell.sick.ru (8.13.3/8.13.1/Submit) id jBM90dHm016771;
	Thu, 22 Dec 2005 12:00:39 +0300 (MSK)
	(envelope-from glebius@FreeBSD.org)
X-Authentication-Warning: cell.sick.ru: glebius set sender to
	glebius@FreeBSD.org using -f
Date: Thu, 22 Dec 2005 12:00:38 +0300
From: Gleb Smirnoff <glebius@FreeBSD.org>
To: Andrew Thompson <thompsa@FreeBSD.org>
Message-ID: <20051222090038.GW41381@FreeBSD.org>
References: <200512212129.jBLLTjRH046221@repoman.freebsd.org>
	<20051221213537.GA33888@heff.fud.org.nz>
Mime-Version: 1.0
Content-Type: text/plain; charset=koi8-r
Content-Disposition: inline
In-Reply-To: <20051221213537.GA33888@heff.fud.org.nz>
User-Agent: Mutt/1.5.6i
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/share/man/man4 if_bridge.4 src/sys/net
	if_bridge.c if_gif.c if_gif.h src/sys/netinet in_gif.c
	in_proto.c src/sys/netinet6 in6_gif.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 09:00:43 -0000

On Thu, Dec 22, 2005 at 10:35:37AM +1300, Andrew Thompson wrote:
A> On Wed, Dec 21, 2005 at 09:29:45PM +0000, Andrew Thompson wrote:
A> > thompsa     2005-12-21 21:29:45 UTC
A> > 
A> >   FreeBSD src repository
A> > 
A> >   Modified files:
A> >     share/man/man4       if_bridge.4 
A> >     sys/net              if_bridge.c if_gif.c if_gif.h 
A> >     sys/netinet          in_gif.c in_proto.c 
A> >     sys/netinet6         in6_gif.c 
A> >   Log:
A> >   Add RFC 3378 EtherIP support. This change makes it possible to add gif
A> >   interfaces to bridges, which will then send and receive IP protocol 97 packets.
A> >   Packets are Ethernet frames with an EtherIP header prepended.

Nice. Thanks!

A> You can now play legacy networked games that only use IPX for LAN
A> communication with your friends over the Internet. Anyone for Doom?

We could play Doom with help of ng_bridge + ng_ksocket before :)

-- 
Totus tuus, Glebius.
GLEBIUS-RIPN GLEB-RIPE

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 09:06:08 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C6C2116A41F;
	Thu, 22 Dec 2005 09:06:08 +0000 (GMT)
	(envelope-from dougb@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7C6FB43D49;
	Thu, 22 Dec 2005 09:06:08 +0000 (GMT)
	(envelope-from dougb@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 jBM968ln093745;
	Thu, 22 Dec 2005 09:06:08 GMT
	(envelope-from dougb@repoman.freebsd.org)
Received: (from dougb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM967PO093744;
	Thu, 22 Dec 2005 09:06:08 GMT (envelope-from dougb)
Message-Id: <200512220906.jBM967PO093744@repoman.freebsd.org>
From: Doug Barton <dougb@FreeBSD.org>
Date: Thu, 22 Dec 2005 09:06:07 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/etc/rc.d ppp-user
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 09:06:08 -0000

dougb       2005-12-22 09:06:07 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    etc/rc.d             ppp-user 
  Log:
  The new rc.subr requires explicit declaration of the command, and this
  was fixed in the new ppp script, but I did not merge the ppp-user -> ppp
  change, so this got missed. Mea culpa.
  
  Submitted by:   Greg Rivers <gcr+freebsd-stable@tharned.org>
  
  Revision  Changes    Path
  1.7.2.1   +1 -0      src/etc/rc.d/ppp-user

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 09:09:40 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 947CB16A41F;
	Thu, 22 Dec 2005 09:09:40 +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 3477643D5E;
	Thu, 22 Dec 2005 09:09:40 +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 jBM99dMJ094000;
	Thu, 22 Dec 2005 09:09:40 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBM99dpZ093999;
	Thu, 22 Dec 2005 09:09:39 GMT (envelope-from glebius)
Message-Id: <200512220909.jBM99dpZ093999@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Thu, 22 Dec 2005 09:09:39 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/em if_em.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 09:09:40 -0000

glebius     2005-12-22 09:09:39 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/em           if_em.c 
  Log:
  Add a quirk to fix resume on some laptops.
  
  Reported by:    joe
  Reported by:    Huang wen hui <huang gddsn.org.cn>
  Reported by:    Jacques Garrigue <garrigue math.nagoya-u.ac.jp>
  PR:             kern/89825
  
  Revision  Changes    Path
  1.94      +9 -0      src/sys/dev/em/if_em.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 10:32:16 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EBA3516A41F;
	Thu, 22 Dec 2005 10:32:16 +0000 (GMT) (envelope-from dd@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 19C7F43D76;
	Thu, 22 Dec 2005 10:32:12 +0000 (GMT) (envelope-from dd@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 jBMAWBM9097947;
	Thu, 22 Dec 2005 10:32:11 GMT (envelope-from dd@repoman.freebsd.org)
Received: (from dd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMAWBHG097946;
	Thu, 22 Dec 2005 10:32:11 GMT (envelope-from dd)
Message-Id: <200512221032.jBMAWBHG097946@repoman.freebsd.org>
From: Dima Dorfman <dd@FreeBSD.org>
Date: Thu, 22 Dec 2005 10:32: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 10:32:17 -0000

dd          2005-12-22 10:32:11 UTC

  FreeBSD src repository

  Modified files:
    sbin/mdconfig        mdconfig.c 
  Log:
  Sort the list results by the unit number. The list returned by the
  kernel is in the order the devices were made, which is not useful to
  the user. Also, remove the "%d more" test since the kernel does not
  return the complete count in md_pad[0] (maybe it should?).
  
  Submitted by:   Wojciech A. Koszek
  
  Revision  Changes    Path
  1.46      +13 -3     src/sbin/mdconfig/mdconfig.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 10:36:59 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DF4C116A41F;
	Thu, 22 Dec 2005 10:36:59 +0000 (GMT) (envelope-from dd@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 95D9643D5D;
	Thu, 22 Dec 2005 10:36:59 +0000 (GMT) (envelope-from dd@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 jBMAaxCF098157;
	Thu, 22 Dec 2005 10:36:59 GMT (envelope-from dd@repoman.freebsd.org)
Received: (from dd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMAax2u098156;
	Thu, 22 Dec 2005 10:36:59 GMT (envelope-from dd)
Message-Id: <200512221036.jBMAax2u098156@repoman.freebsd.org>
From: Dima Dorfman <dd@FreeBSD.org>
Date: Thu, 22 Dec 2005 10:36:59 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sbin/mdmfs mdmfs.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 10:37:00 -0000

dd          2005-12-22 10:36:59 UTC

  FreeBSD src repository

  Modified files:
    sbin/mdmfs           mdmfs.c 
  Log:
  If we're operating without running external programs (-N) and
  autonumbering is requested, set the unit to 0 instead of -1. This
  option is just for output, and "/dev/md-1" looks disconcerting.
  
  Submitted by:   Wojciech A. Koszek
  
  Revision  Changes    Path
  1.25      +1 -1      src/sbin/mdmfs/mdmfs.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 10:49:17 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C4A8316A41F;
	Thu, 22 Dec 2005 10:49:17 +0000 (GMT) (envelope-from dd@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id AF8DA43D62;
	Thu, 22 Dec 2005 10:48:46 +0000 (GMT) (envelope-from dd@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 jBMAmgAg098609;
	Thu, 22 Dec 2005 10:48:42 GMT (envelope-from dd@repoman.freebsd.org)
Received: (from dd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMAmgNo098608;
	Thu, 22 Dec 2005 10:48:42 GMT (envelope-from dd)
Message-Id: <200512221048.jBMAmgNo098608@repoman.freebsd.org>
From: Dima Dorfman <dd@FreeBSD.org>
Date: Thu, 22 Dec 2005 10:48:42 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/usr.sbin/traceroute6 traceroute6.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 10:49:18 -0000

dd          2005-12-22 10:48:42 UTC

  FreeBSD src repository

  Modified files:
    usr.sbin/traceroute6 traceroute6.8 
  Log:
  Copy the description for the -r option from the traceroute(8) man
  page. I'm pretty sure that this description applies the same way to
  ipv6, and at least mentioning SO_DONTROUTE is better than having no
  description at all.
  
  Revision  Changes    Path
  1.15      +10 -0     src/usr.sbin/traceroute6/traceroute6.8

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 10:51:58 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id AD19D16A41F;
	Thu, 22 Dec 2005 10:51:58 +0000 (GMT) (envelope-from dd@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 0087A43D73;
	Thu, 22 Dec 2005 10:51:48 +0000 (GMT) (envelope-from dd@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 jBMApFBZ098827;
	Thu, 22 Dec 2005 10:51:15 GMT (envelope-from dd@repoman.freebsd.org)
Received: (from dd@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMApFVV098826;
	Thu, 22 Dec 2005 10:51:15 GMT (envelope-from dd)
Message-Id: <200512221051.jBMApFVV098826@repoman.freebsd.org>
From: Dima Dorfman <dd@FreeBSD.org>
Date: Thu, 22 Dec 2005 10:51:14 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/share/man/man4 usb.4
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 10:51:58 -0000

dd          2005-12-22 10:51:14 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       usb.4 
  Log:
  Fix typo
  
  Revision  Changes    Path
  1.34      +1 -1      src/share/man/man4/usb.4

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 12:16:21 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C5BFC16A41F;
	Thu, 22 Dec 2005 12:16:21 +0000 (GMT)
	(envelope-from oleg@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 79C9243D49;
	Thu, 22 Dec 2005 12:16:21 +0000 (GMT)
	(envelope-from oleg@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 jBMCGLRR002428;
	Thu, 22 Dec 2005 12:16:21 GMT
	(envelope-from oleg@repoman.freebsd.org)
Received: (from oleg@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMCGKtC002427;
	Thu, 22 Dec 2005 12:16:20 GMT (envelope-from oleg)
Message-Id: <200512221216.jBMCGKtC002427@repoman.freebsd.org>
From: Oleg Bulyzhin <oleg@FreeBSD.org>
Date: Thu, 22 Dec 2005 12:16: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 12:16:22 -0000

oleg        2005-12-22 12:16:20 UTC

  FreeBSD src repository

  Modified files:
    sys/net              if_ethersubr.c 
  Log:
  1) remove useless check of loop_copy - corresponding code was removed in
     rev. 1.70 five years ago.
  2) convert loop_copy to "non-negative" flag
  
  Approved by:    glebius (mentor)
  MFC after:      2 weeks
  
  Revision  Changes    Path
  1.211     +5 -5      src/sys/net/if_ethersubr.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 12:39:33 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: by hub.freebsd.org (Postfix, from userid 1033)
	id 75EC416A420; Thu, 22 Dec 2005 12:39:33 +0000 (GMT)
Date: Thu, 22 Dec 2005 12:39:33 +0000
From: Alexey Dokuchaev <danfe@FreeBSD.org>
To: Andrew Thompson <thompsa@freebsd.org>
Message-ID: <20051222123933.GA15844@FreeBSD.org>
References: <200512212129.jBLLTjRH046221@repoman.freebsd.org>
	<20051221213537.GA33888@heff.fud.org.nz>
Mime-Version: 1.0
Content-Type: text/plain; charset=koi8-r
Content-Disposition: inline
In-Reply-To: <20051221213537.GA33888@heff.fud.org.nz>
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/share/man/man4 if_bridge.4 src/sys/net
	if_bridge.c if_gif.c if_gif.h src/sys/netinet in_gif.c
	in_proto.c src/sys/netinet6 in6_gif.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 12:39:33 -0000

On Thu, Dec 22, 2005 at 10:35:37AM +1300, Andrew Thompson wrote:
> On Wed, Dec 21, 2005 at 09:29:45PM +0000, Andrew Thompson wrote:
> > thompsa     2005-12-21 21:29:45 UTC
> > 
> >   FreeBSD src repository
> > 
> >   Modified files:
> >     share/man/man4       if_bridge.4 
> >     sys/net              if_bridge.c if_gif.c if_gif.h 
> >     sys/netinet          in_gif.c in_proto.c 
> >     sys/netinet6         in6_gif.c 
> >   Log:
> >   Add RFC 3378 EtherIP support. This change makes it possible to add gif
> >   interfaces to bridges, which will then send and receive IP protocol 97 packets.
> >   Packets are Ethernet frames with an EtherIP header prepended.
> >   
> 
> You can now play legacy networked games that only use IPX for LAN
> communication with your friends over the Internet. Anyone for Doom?

Wow, this is totally cool!

Thanks!

./danfe

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 14:23:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DE45C16A41F;
	Thu, 22 Dec 2005 14:23:54 +0000 (GMT)
	(envelope-from cognet@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 7046343D5D;
	Thu, 22 Dec 2005 14:23:54 +0000 (GMT)
	(envelope-from cognet@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 jBMENsvT018645;
	Thu, 22 Dec 2005 14:23:54 GMT
	(envelope-from cognet@repoman.freebsd.org)
Received: (from cognet@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMENsKN018644;
	Thu, 22 Dec 2005 14:23:54 GMT (envelope-from cognet)
Message-Id: <200512221423.jBMENsKN018644@repoman.freebsd.org>
From: Olivier Houchard <cognet@FreeBSD.org>
Date: Thu, 22 Dec 2005 14:23:54 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/lib/libc/stdio xprintf_int.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 14:23:55 -0000

cognet      2005-12-22 14:23:54 UTC

  FreeBSD src repository

  Modified files:
    lib/libc/stdio       xprintf_int.c 
  Log:
  Explicitely use a "signed char" instead of a "char", for those archs where
  char defaults to unsigned.
  
  Revision  Changes    Path
  1.2       +2 -2      src/lib/libc/stdio/xprintf_int.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 15:14:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id BEBA216A41F;
	Thu, 22 Dec 2005 15:14:43 +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 4E40F43D4C;
	Thu, 22 Dec 2005 15:14:43 +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 jBMFEgah020786;
	Thu, 22 Dec 2005 15:14:43 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMFEgxo020785;
	Thu, 22 Dec 2005 15:14:42 GMT (envelope-from glebius)
Message-Id: <200512221514.jBMFEgxo020785@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Thu, 22 Dec 2005 15:14:42 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/dev/bge if_bge.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 15:14:43 -0000

glebius     2005-12-22 15:14:42 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/bge          if_bge.c 
  Log:
  - All bge(4) supported hardware is known to support RX/TX checksum offloading,
    except for BGE_CHIPID_BCM5700_B0, which is buggy.
  - All bge(4) supported hardware, has a bug that produces incorrect checksums
    on Ethernet runts. However, in case of a transmitted packet, the latter can
    be padded with zeroes, and the checksum would be correct. (Probably chip
    includes the pad data into checksum). In case of receive, we just don't
    trust checksum data in received runts.
  
  Obtained from:  NetBSD (jonathan) via Mihail Balikov
  
  Revision  Changes    Path
  1.111     +69 -10    src/sys/dev/bge/if_bge.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 16:16:44 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2A85D16A41F;
	Thu, 22 Dec 2005 16:16:44 +0000 (GMT)
	(envelope-from nyan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id CF97B43D58;
	Thu, 22 Dec 2005 16:16:43 +0000 (GMT)
	(envelope-from nyan@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 jBMGGhlS024009;
	Thu, 22 Dec 2005 16:16:43 GMT
	(envelope-from nyan@repoman.freebsd.org)
Received: (from nyan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMGGh0D024008;
	Thu, 22 Dec 2005 16:16:43 GMT (envelope-from nyan)
Message-Id: <200512221616.jBMGGh0D024008@repoman.freebsd.org>
From: Takahashi Yoshihiro <nyan@FreeBSD.org>
Date: Thu, 22 Dec 2005 16:16: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/pc98/conf NOTES src/sys/modules Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 16:16:44 -0000

nyan        2005-12-22 16:16:43 UTC

  FreeBSD src repository

  Modified files:
    sys/pc98/conf        NOTES 
    sys/modules          Makefile 
  Log:
  Enable the cs and disable the amdsmb and nfsmb on pc98.
  
  Revision  Changes    Path
  1.467     +1 -1      src/sys/modules/Makefile
  1.70      +2 -1      src/sys/pc98/conf/NOTES

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 16:18:24 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0FEDF16A41F;
	Thu, 22 Dec 2005 16:18:24 +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 A098F43D46;
	Thu, 22 Dec 2005 16:18:23 +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 jBMGINVY024072;
	Thu, 22 Dec 2005 16:18:23 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMGINcr024071;
	Thu, 22 Dec 2005 16:18:23 GMT (envelope-from jhb)
Message-Id: <200512221618.jBMGINcr024071@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Thu, 22 Dec 2005 16:18: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/pci if_de.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 16:18:24 -0000

jhb         2005-12-22 16:18:23 UTC

  FreeBSD src repository

  Modified files:
    sys/pci              if_de.c 
  Log:
  Use the copy of the card's MAC address saved in tulip_enaddr() in the softc
  if we need a valid MAC address (for probing the media for example) before
  ether_ifattach() has been called since IF_LLADDR() is NULL then.
  
  Tested by:      tisco
  
  Revision  Changes    Path
  1.178     +12 -3     src/sys/pci/if_de.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 16:23:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EA5C116A41F;
	Thu, 22 Dec 2005 16:23:27 +0000 (GMT)
	(envelope-from emaste@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 27F5A43D55;
	Thu, 22 Dec 2005 16:23:27 +0000 (GMT)
	(envelope-from emaste@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 jBMGNRNR024383;
	Thu, 22 Dec 2005 16:23:27 GMT
	(envelope-from emaste@repoman.freebsd.org)
Received: (from emaste@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMGNRVO024382;
	Thu, 22 Dec 2005 16:23:27 GMT (envelope-from emaste)
Message-Id: <200512221623.jBMGNRVO024382@repoman.freebsd.org>
From: Ed Maste <emaste@FreeBSD.org>
Date: Thu, 22 Dec 2005 16:23:27 +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_arcsubr.c if_ethersubr.c if_fddisubr.c
 if_iso88025subr.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 16:23:28 -0000

emaste      2005-12-22 16:23:27 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    sys/net              if_arcsubr.c if_ethersubr.c if_fddisubr.c 
                         if_iso88025subr.c 
  Log:
  Merge if_arcsubr.c:1.26, if_ethersubr.c:1.195, if_fddisubr.c:1.99,
  if_iso88025subr.c:1.68 from HEAD to RELENG_5:
  
    When allocating link layer ifnet address list entries in
    ifp->if_resolvemulti(), do so with M_NOWAIT rather than M_WAITOK, so
    that a mutex can be held over the call.  In the FDDI code, add a
    missing M_ZERO.  Consumers are already aware that if_resolvemulti()
    can fail.
  
  Approved by:    scottl
  Silcence from:  rwatson (mentor)
  
  Revision   Changes    Path
  1.22.2.2   +6 -2      src/sys/net/if_arcsubr.c
  1.177.2.9  +6 -2      src/sys/net/if_ethersubr.c
  1.95.2.2   +6 -2      src/sys/net/if_fddisubr.c
  1.65.2.3   +6 -2      src/sys/net/if_iso88025subr.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 16:25:22 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B9E7416A484;
	Thu, 22 Dec 2005 16:25:22 +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 4655943D6D;
	Thu, 22 Dec 2005 16:25:22 +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 jBMGPMig024580;
	Thu, 22 Dec 2005 16:25:22 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMGPMoZ024579;
	Thu, 22 Dec 2005 16:25:22 GMT (envelope-from jhb)
Message-Id: <200512221625.jBMGPMoZ024579@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Thu, 22 Dec 2005 16: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/sys/dev/pci vga_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 16:25:23 -0000

jhb         2005-12-22 16:25:22 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/pci          vga_pci.c 
  Log:
  Return BUS_PROBE_GENERIC rather than 0 in the probe routine.
  
  Requested by:   marius
  
  Revision  Changes    Path
  1.4       +1 -1      src/sys/dev/pci/vga_pci.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 16:31:08 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1A4A216A41F;
	Thu, 22 Dec 2005 16:31:08 +0000 (GMT)
	(envelope-from emaste@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id C434A43D62;
	Thu, 22 Dec 2005 16:31:07 +0000 (GMT)
	(envelope-from emaste@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 jBMGV74o024813;
	Thu, 22 Dec 2005 16:31:07 GMT
	(envelope-from emaste@repoman.freebsd.org)
Received: (from emaste@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMGV73r024812;
	Thu, 22 Dec 2005 16:31:07 GMT (envelope-from emaste)
Message-Id: <200512221631.jBMGV73r024812@repoman.freebsd.org>
From: Ed Maste <emaste@FreeBSD.org>
Date: Thu, 22 Dec 2005 16:31:07 +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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 16:31:08 -0000

emaste      2005-12-22 16:31:07 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    sys/netinet          in.c 
  Log:
  MFC r1.84:
    ifma_protospec is a pointer. Use NULL when assigning or comparing it.
  
  Approved by:    scottl
  Silence from:   rwatson (mentor)
  
  Revision  Changes    Path
  1.77.2.6  +2 -2      src/sys/netinet/in.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 16:42:39 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 390D416A41F;
	Thu, 22 Dec 2005 16:42:39 +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 D718043D53;
	Thu, 22 Dec 2005 16:42:38 +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 jBMGgcLP025309;
	Thu, 22 Dec 2005 16:42:38 GMT (envelope-from kan@repoman.freebsd.org)
Received: (from kan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMGgcOc025308;
	Thu, 22 Dec 2005 16:42:38 GMT (envelope-from kan)
Message-Id: <200512221642.jBMGgcOc025308@repoman.freebsd.org>
From: Alexander Kabaev <kan@FreeBSD.org>
Date: Thu, 22 Dec 2005 16:42:38 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/libexec/rtld-elf 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 16:42:39 -0000

kan         2005-12-22 16:42:38 UTC

  FreeBSD src repository

  Modified files:
    libexec/rtld-elf     rtld.c 
  Log:
  Initialize object dagmembers list before checking version dependencies.
  
  Revision  Changes    Path
  1.110     +2 -4      src/libexec/rtld-elf/rtld.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 18:22:16 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B43A216A41F;
	Thu, 22 Dec 2005 18:22: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 498A443D53;
	Thu, 22 Dec 2005 18:22:16 +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 jBMIMGOo036910;
	Thu, 22 Dec 2005 18:22:16 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMIMG2f036909;
	Thu, 22 Dec 2005 18:22:16 GMT (envelope-from sam)
Message-Id: <200512221822.jBMIMG2f036909@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 18:22:16 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sys/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 18:22:16 -0000

sam         2005-12-22 18:22:16 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_ioctl.c 
  Log:
  MFC 1.37: correct parameter check when retrieving the current channel list
  
  Revision  Changes    Path
  1.25.2.4  +1 -1      src/sys/net80211/ieee80211_ioctl.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 18:25:13 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 52E3A16A41F;
	Thu, 22 Dec 2005 18:25:13 +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 D277443D78;
	Thu, 22 Dec 2005 18:25:11 +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 jBMIPAAp037084;
	Thu, 22 Dec 2005 18:25:10 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMIPAVu037083;
	Thu, 22 Dec 2005 18:25:10 GMT (envelope-from sam)
Message-Id: <200512221825.jBMIPAVu037083@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 18:25:10 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sys/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 18:25:13 -0000

sam         2005-12-22 18:25:10 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_ioctl.c 
  Log:
  MFC 1.38: change malloc when setting an optional ie to use M_NOWAIT
  
  Revision  Changes    Path
  1.25.2.5  +1 -2      src/sys/net80211/ieee80211_ioctl.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 18:45:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7846116A41F;
	Thu, 22 Dec 2005 18:45:00 +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 3011343D53;
	Thu, 22 Dec 2005 18:45:00 +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 jBMIj0Qu037804;
	Thu, 22 Dec 2005 18:45:00 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMIixUH037803;
	Thu, 22 Dec 2005 18:44:59 GMT (envelope-from sam)
Message-Id: <200512221844.jBMIixUH037803@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 18:44: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/net80211 ieee80211_node.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 18:45:00 -0000

sam         2005-12-22 18:44:58 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_node.c 
  Log:
  MFC 1.67: Bandaid ieee80211_set_chan to handle a channel parameter of "any"
  
  Revision  Changes    Path
  1.48.2.4  +3 -1      src/sys/net80211/ieee80211_node.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 18:45:41 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 61BDB16A453;
	Thu, 22 Dec 2005 18:45:41 +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 1931343D49;
	Thu, 22 Dec 2005 18:45:41 +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 jBMIjeYI037937;
	Thu, 22 Dec 2005 18:45:40 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMIje5w037936;
	Thu, 22 Dec 2005 18:45:40 GMT (envelope-from sam)
Message-Id: <200512221845.jBMIje5w037936@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 18:45: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/net80211 ieee80211.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 18:45:41 -0000

sam         2005-12-22 18:45:40 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211.c 
  Log:
  MFC 1.24:
    o correct auto mode logic for avoiding turbo channels
    o correct assumption that a static turbo channel is also
        usable in 11a; the opposite is true
  
  Revision  Changes    Path
  1.19.2.3  +9 -9      src/sys/net80211/ieee80211.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:02:08 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B062D16A41F;
	Thu, 22 Dec 2005 19:02:08 +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 6316443D55;
	Thu, 22 Dec 2005 19:02:08 +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 jBMJ28vu038699;
	Thu, 22 Dec 2005 19:02:08 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJ28mg038698;
	Thu, 22 Dec 2005 19:02:08 GMT (envelope-from sam)
Message-Id: <200512221902.jBMJ28mg038698@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:02:08 +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_crypto_ccmp.c
 ieee80211_crypto_tkip.c ieee80211_crypto_wep.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:02:08 -0000

sam         2005-12-22 19:02:08 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_crypto_ccmp.c 
                         ieee80211_crypto_tkip.c 
                         ieee80211_crypto_wep.c 
  Log:
  MFC: disallow module unload when there are dynamic references
  
  Revision  Changes    Path
  1.7.2.1   +14 -1     src/sys/net80211/ieee80211_crypto_ccmp.c
  1.9.2.2   +14 -1     src/sys/net80211/ieee80211_crypto_tkip.c
  1.7.2.1   +14 -1     src/sys/net80211/ieee80211_crypto_wep.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:05:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 99B6916A41F;
	Thu, 22 Dec 2005 19:05:54 +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 E938943D5A;
	Thu, 22 Dec 2005 19:05:53 +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 jBMJ5r7w038922;
	Thu, 22 Dec 2005 19:05:53 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJ5rxP038921;
	Thu, 22 Dec 2005 19:05:53 GMT (envelope-from sam)
Message-Id: <200512221905.jBMJ5rxP038921@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:05: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/net80211 ieee80211_ioctl.c ieee80211_ioctl.h
 ieee80211_proto.c ieee80211_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:05:54 -0000

sam         2005-12-22 19:05:53 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_ioctl.c ieee80211_ioctl.h 
                         ieee80211_proto.c ieee80211_var.h 
  Log:
  MFC: add fixed rate for sending multicast frames
  
  Revision  Changes    Path
  1.25.2.6  +6 -0      src/sys/net80211/ieee80211_ioctl.c
  1.10.2.3  +1 -0      src/sys/net80211/ieee80211_ioctl.h
  1.17.2.3  +1 -0      src/sys/net80211/ieee80211_proto.c
  1.22.2.3  +2 -0      src/sys/net80211/ieee80211_var.h

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:08:39 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E46F916A41F;
	Thu, 22 Dec 2005 19:08:39 +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 9CD8343D5F;
	Thu, 22 Dec 2005 19:08:39 +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 jBMJ8dE1039128;
	Thu, 22 Dec 2005 19:08:39 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJ8d56039127;
	Thu, 22 Dec 2005 19:08:39 GMT (envelope-from sam)
Message-Id: <200512221908.jBMJ8d56039127@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:08: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/sys/net80211 ieee80211_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:08:40 -0000

sam         2005-12-22 19:08:39 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_output.c 
  Log:
  MFC 1.36: correct handling of dtim for periods > 1
  
  Revision  Changes    Path
  1.26.2.3  +1 -1      src/sys/net80211/ieee80211_output.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:10:58 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id ADDE716A41F;
	Thu, 22 Dec 2005 19:10:58 +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 47CB043D55;
	Thu, 22 Dec 2005 19:10:58 +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 jBMJAwVo039304;
	Thu, 22 Dec 2005 19:10:58 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJAwLw039303;
	Thu, 22 Dec 2005 19:10:58 GMT (envelope-from sam)
Message-Id: <200512221910.jBMJAwLw039303@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:10: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:10:58 -0000

sam         2005-12-22 19:10:58 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_ioctl.c 
  Log:
  MFC: 1.40: allow setting the bssid in any mode
  
  Revision  Changes    Path
  1.25.2.7  +0 -3      src/sys/net80211/ieee80211_ioctl.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:12:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7FFFC16A420;
	Thu, 22 Dec 2005 19:12:51 +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 E465843D5D;
	Thu, 22 Dec 2005 19:12:50 +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 jBMJCok3039381;
	Thu, 22 Dec 2005 19:12:50 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJCoft039380;
	Thu, 22 Dec 2005 19:12:50 GMT (envelope-from sam)
Message-Id: <200512221912.jBMJCoft039380@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:12: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/net80211 ieee80211_node.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:12:51 -0000

sam         2005-12-22 19:12:50 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_node.c 
  Log:
  MFC: 1.69: when creating an ahdemo bss use any requested bssid; otherwise use zero
  
  Revision  Changes    Path
  1.48.2.5  +5 -0      src/sys/net80211/ieee80211_node.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:14:47 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 472AC16A420;
	Thu, 22 Dec 2005 19:14:47 +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 CB32043D5F;
	Thu, 22 Dec 2005 19:14:46 +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 jBMJEkMw039533;
	Thu, 22 Dec 2005 19:14:46 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJEkA5039532;
	Thu, 22 Dec 2005 19:14:46 GMT (envelope-from sam)
Message-Id: <200512221914.jBMJEkA5039532@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:14: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/net80211 ieee80211_node.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:14:47 -0000

sam         2005-12-22 19:14:46 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_node.c 
  Log:
  MFC 1.70: apply local settings when creating neighbor entries in ahdemo mode
  
  Revision  Changes    Path
  1.48.2.6  +9 -0      src/sys/net80211/ieee80211_node.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:18:29 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6E1C316A420;
	Thu, 22 Dec 2005 19:18:29 +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 8AA0C43D83;
	Thu, 22 Dec 2005 19:18:23 +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 jBMJIN1K039861;
	Thu, 22 Dec 2005 19:18:23 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJINMH039860;
	Thu, 22 Dec 2005 19:18:23 GMT (envelope-from sam)
Message-Id: <200512221918.jBMJINMH039860@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:18: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/net80211 ieee80211.c ieee80211_ioctl.c
 ieee80211_ioctl.h ieee80211_proto.c ieee80211_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:18:29 -0000

sam         2005-12-22 19:18:23 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211.c ieee80211_ioctl.c 
                         ieee80211_ioctl.h ieee80211_proto.c 
                         ieee80211_var.h 
  Log:
  MFC: make packet bursting configurable (default to on if device is capable)
  
  Revision  Changes    Path
  1.19.2.4  +2 -0      src/sys/net80211/ieee80211.c
  1.25.2.8  +12 -0     src/sys/net80211/ieee80211_ioctl.c
  1.10.2.4  +1 -0      src/sys/net80211/ieee80211_ioctl.h
  1.17.2.4  +1 -1      src/sys/net80211/ieee80211_proto.c
  1.22.2.4  +1 -0      src/sys/net80211/ieee80211_var.h

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:22:52 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8EBF716A41F;
	Thu, 22 Dec 2005 19:22:52 +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 3E2E643D62;
	Thu, 22 Dec 2005 19:22:52 +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 jBMJMq3Z040105;
	Thu, 22 Dec 2005 19:22:52 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJMqN8040104;
	Thu, 22 Dec 2005 19:22:52 GMT (envelope-from sam)
Message-Id: <200512221922.jBMJMqN8040104@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:22:52 +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_freebsd.c ieee80211_input.c
 ieee80211_proto.c ieee80211_proto.h ieee80211_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:22:52 -0000

sam         2005-12-22 19:22:52 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net80211         ieee80211_freebsd.c ieee80211_input.c 
                         ieee80211_proto.c ieee80211_proto.h 
                         ieee80211_var.h 
  Log:
  MFC: 802.11 layer sta mode beacon miss handling
  
  Revision  Changes    Path
  1.7.2.2   +3 -0      src/sys/net80211/ieee80211_freebsd.c
  1.62.2.5  +1 -0      src/sys/net80211/ieee80211_input.c
  1.17.2.5  +38 -0     src/sys/net80211/ieee80211_proto.c
  1.11.2.3  +1 -0      src/sys/net80211/ieee80211_proto.h
  1.22.2.5  +4 -0      src/sys/net80211/ieee80211_var.h

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 19:32:12 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7999516A41F;
	Thu, 22 Dec 2005 19:32:12 +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 01C1D43D5F;
	Thu, 22 Dec 2005 19:32:12 +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 jBMJWBec040525;
	Thu, 22 Dec 2005 19:32:11 GMT (envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMJWBAj040524;
	Thu, 22 Dec 2005 19:32:11 GMT (envelope-from sam)
Message-Id: <200512221932.jBMJWBAj040524@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Thu, 22 Dec 2005 19:32: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/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 19:32:12 -0000

sam         2005-12-22 19:32:11 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sbin/ifconfig        ifconfig.8 ifieee80211.c 
  Log:
  MFC: add multicast rate support
       display a bssid that's zero with the -v option
       add control for packet bursting
  
  Revision  Changes    Path
  1.95.2.8  +20 -1     src/sbin/ifconfig/ifconfig.8
  1.18.2.6  +17 -1     src/sbin/ifconfig/ifieee80211.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 20:24:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 85CF616A420;
	Thu, 22 Dec 2005 20:24:51 +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 ADF6C43D68;
	Thu, 22 Dec 2005 20:24:49 +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 jBMKOlLD075739;
	Thu, 22 Dec 2005 22:24:47 +0200 (EET) (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 02272-01-7; Thu, 22 Dec 2005 22:24:44 +0200 (EET)
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 jBMGbj25071046
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Thu, 22 Dec 2005 18:37:45 +0200 (EET) (envelope-from ru@ip.net.ua)
Received: (from ru@localhost)
	by heffalump.ip.net.ua (8.13.4/8.13.4) id jBMGbtTo046557;
	Thu, 22 Dec 2005 18:37:55 +0200 (EET) (envelope-from ru)
Date: Thu, 22 Dec 2005 18:37:54 +0200
From: Ruslan Ermilov <ru@FreeBSD.org>
To: John Baldwin <jhb@FreeBSD.org>
Message-ID: <20051222163754.GG58180@ip.net.ua>
References: <200512221618.jBMGINcr024071@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="kjpMrWxdCilgNbo1"
Content-Disposition: inline
In-Reply-To: <200512221618.jBMGINcr024071@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/pci if_de.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 20:24:51 -0000


--kjpMrWxdCilgNbo1
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Thu, Dec 22, 2005 at 04:18:23PM +0000, John Baldwin wrote:
> jhb         2005-12-22 16:18:23 UTC
>=20
>   FreeBSD src repository
>=20
>   Modified files:
>     sys/pci              if_de.c=20
>   Log:
>   Use the copy of the card's MAC address saved in tulip_enaddr() in the s=
oftc
>   if we need a valid MAC address (for probing the media for example) befo=
re
>   ether_ifattach() has been called since IF_LLADDR() is NULL then.
>  =20
>   Tested by:      tisco
>  =20
>   Revision  Changes    Path
>   1.178     +12 -3     src/sys/pci/if_de.c
>=20
Thanks!


Cheers,
--=20
Ruslan Ermilov
ru@FreeBSD.org
FreeBSD committer

--kjpMrWxdCilgNbo1
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (FreeBSD)

iD8DBQFDqtZiqRfpzJluFF4RAqUVAJ4+WEFtZOyqOXmKxzTk19PnAWpDpgCfRgvj
kDu4GP9EP3gViTTM/a+EAvk=
=g65t
-----END PGP SIGNATURE-----

--kjpMrWxdCilgNbo1--

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 21:16:06 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DCF6C16A41F;
	Thu, 22 Dec 2005 21:16:06 +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 975C543D53;
	Thu, 22 Dec 2005 21:16:06 +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 jBMLG6Do052179;
	Thu, 22 Dec 2005 21:16:06 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMLG6lv052178;
	Thu, 22 Dec 2005 21:16:06 GMT (envelope-from jhb)
Message-Id: <200512222116.jBMLG6lv052178@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Thu, 22 Dec 2005 21:16:06 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src ObsoleteFiles.inc
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 21:16:07 -0000

jhb         2005-12-22 21:16:06 UTC

  FreeBSD src repository

  Modified files:
    .                    ObsoleteFiles.inc 
  Log:
  Add entry for /rescue/nextboot.sh since it was renamed to /rescue/nextboot.
  
  Revision  Changes    Path
  1.23      +2 -0      src/ObsoleteFiles.inc

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 21:17:13 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1321416A420;
	Thu, 22 Dec 2005 21:17:13 +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 BEEAE43D49;
	Thu, 22 Dec 2005 21:17:12 +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 jBMLHC8T052231;
	Thu, 22 Dec 2005 21:17:12 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMLHCLa052230;
	Thu, 22 Dec 2005 21:17:12 GMT (envelope-from jhb)
Message-Id: <200512222117.jBMLHCLa052230@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Thu, 22 Dec 2005 21:17: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/rescue/rescue Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 21:17:13 -0000

jhb         2005-12-22 21:17:12 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    rescue/rescue        Makefile 
  Log:
  MFC: Install nextboot in /rescue as /rescue/nextboot rather than
  /rescue/nextboot.sh to match the name in /sbin.
  
  Revision  Changes    Path
  1.45.2.1  +1 -1      src/rescue/rescue/Makefile

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 21:25:28 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 1CB2F16A429;
	Thu, 22 Dec 2005 21:25:28 +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 D3A2D43D91;
	Thu, 22 Dec 2005 21:25:22 +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 jBMLPK7e052641;
	Thu, 22 Dec 2005 21:25:20 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMLPKGS052640;
	Thu, 22 Dec 2005 21:25:20 GMT (envelope-from jhb)
Message-Id: <200512222125.jBMLPKGS052640@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Thu, 22 Dec 2005 21:25:20 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/sys/alpha/linux linux_sysvec.c src/sys/amd64/linux32
 linux32_sysvec.c src/sys/compat/linux linux_mib.c linux_mib.h
 src/sys/i386/linux linux_sysvec.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 21:25:28 -0000

jhb         2005-12-22 21:25:20 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/alpha/linux      linux_sysvec.c 
    sys/amd64/linux32    linux32_sysvec.c 
    sys/compat/linux     linux_mib.c linux_mib.h 
    sys/i386/linux       linux_sysvec.c 
  Log:
  MFC: Remove linux_mib_destroy() since MTX_SYSINIT's gaining of a SYSUNINIT
  that called mtx_destroy() made it obsolete.
  
  Revision   Changes    Path
  1.94.2.1   +0 -1      src/sys/alpha/linux/linux_sysvec.c
  1.7.2.2    +0 -1      src/sys/amd64/linux32/linux32_sysvec.c
  1.23.2.1   +0 -7      src/sys/compat/linux/linux_mib.c
  1.8.12.1   +0 -2      src/sys/compat/linux/linux_mib.h
  1.137.2.1  +0 -1      src/sys/i386/linux/linux_sysvec.c

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 21:46:56 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4362A16A42F;
	Thu, 22 Dec 2005 21:46:56 +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 BA7AA43DBC;
	Thu, 22 Dec 2005 21:46:10 +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 jBMLk5PM053452;
	Thu, 22 Dec 2005 21:46:05 GMT
	(envelope-from brueffer@repoman.freebsd.org)
Received: (from brueffer@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMLk5Tx053451;
	Thu, 22 Dec 2005 21:46:05 GMT (envelope-from brueffer)
Message-Id: <200512222146.jBMLk5Tx053451@repoman.freebsd.org>
From: Christian Brueffer <brueffer@FreeBSD.org>
Date: Thu, 22 Dec 2005 21: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/release/doc/share/misc dev.archlist.txt
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 21:46:56 -0000

brueffer    2005-12-22 21:46:05 UTC

  FreeBSD src repository (doc committer)

  Modified files:
    release/doc/share/misc dev.archlist.txt 
  Log:
  bge(4) is working on sparc64 now.
  
  Revision  Changes    Path
  1.73      +1 -1      src/release/doc/share/misc/dev.archlist.txt

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 22:16:10 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2C3DC16A41F;
	Thu, 22 Dec 2005 22:16:10 +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 D39D943D6B;
	Thu, 22 Dec 2005 22:16:09 +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 jBMMG9wh055122;
	Thu, 22 Dec 2005 22:16:09 GMT (envelope-from jhb@repoman.freebsd.org)
Received: (from jhb@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMMG9bA055121;
	Thu, 22 Dec 2005 22:16:09 GMT (envelope-from jhb)
Message-Id: <200512222216.jBMMG9bA055121@repoman.freebsd.org>
From: John Baldwin <jhb@FreeBSD.org>
Date: Thu, 22 Dec 2005 22:16:09 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/alpha/alpha clock.c interrupt.c
 src/sys/alpha/include cpu.h cpuconf.h src/sys/amd64/amd64
 local_apic.c mp_machdep.c src/sys/amd64/include apicvar.h clock.h
 cpu.h frame.h smp.h src/sys/amd64/isa clock.c src/sys/arm/arm ...
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 22:16:10 -0000

jhb         2005-12-22 22:16:09 UTC

  FreeBSD src repository

  Modified files:
    sys/alpha/alpha      clock.c interrupt.c 
    sys/alpha/include    cpu.h cpuconf.h 
    sys/amd64/amd64      local_apic.c mp_machdep.c 
    sys/amd64/include    apicvar.h clock.h cpu.h frame.h smp.h 
    sys/amd64/isa        clock.c 
    sys/arm/arm          intr.c 
    sys/arm/include      cpu.h frame.h 
    sys/arm/sa11x0       sa11x0_ost.c 
    sys/arm/xscale/i80321 i80321_timer.c 
    sys/i386/i386        local_apic.c mp_machdep.c 
    sys/i386/include     apicvar.h clock.h cpu.h frame.h smp.h 
    sys/i386/isa         clock.c 
    sys/ia64/ia64        interrupt.c 
    sys/ia64/include     cpu.h 
    sys/kern             kern_clock.c 
    sys/pc98/cbus        clock.c 
    sys/powerpc/include  clock.h cpu.h frame.h 
    sys/powerpc/powerpc  clock.c interrupt.c 
    sys/sparc64/include  cpu.h frame.h 
    sys/sparc64/sparc64  tick.c 
    sys/sys              systm.h 
  Log:
  Tweak how the MD code calls the fooclock() methods some.  Instead of
  passing a pointer to an opaque clockframe structure and requiring the
  MD code to supply CLKF_FOO() macros to extract needed values out of the
  opaque structure, just pass the needed values directly.  In practice this
  means passing the pair (usermode, pc) to hardclock() and profclock() and
  passing the boolean (usermode) to hardclock_cpu() and hardclock_process().
  Other details:
  - Axe clockframe and CLKF_FOO() macros on all architectures.  Basically,
    all the archs were taking a trapframe and converting it into a clockframe
    one way or another.  Now they can just extract the PC and usermode values
    directly out of the trapframe and pass it to fooclock().
  - Renamed hardclock_process() to hardclock_cpu() as the latter is more
    accurate.
  - On Alpha, we now run profclock() at hz (profhz == hz) rather than at
    the slower stathz.
  - On Alpha, for the TurboLaser machines that don't have an 8254
    timecounter, call hardclock() directly.  This removes an extra
    conditional check from every clock interrupt on Alpha on the BSP.
    There is probably room for even further pruning here by changing Alpha
    to use the simplified timecounter we use on x86 with the lapic timer
    since we don't get interrupts from the 8254 on Alpha anyway.
  - On x86, clkintr() shouldn't ever be called now unless using_lapic_timer
    is false, so add a KASSERT() to that affect and remove a condition
    to slightly optimize the non-lapic case.
  - Change prototypeof  arm_handler_execute() so that it's first arg is a
    trapframe pointer rather than a void pointer for clarity.
  - Use KCOUNT macro in profclock() to lookup the kernel profiling bucket.
  
  Tested on:      alpha, amd64, arm, i386, ia64, sparc64
  Reviewed by:    bde (mostly)
  
  Revision  Changes    Path
  1.42      +20 -23    src/sys/alpha/alpha/clock.c
  1.89      +13 -15    src/sys/alpha/alpha/interrupt.c
  1.43      +0 -11     src/sys/alpha/include/cpu.h
  1.15      +1 -1      src/sys/alpha/include/cpuconf.h
  1.23      +6 -5      src/sys/amd64/amd64/local_apic.c
  1.267     +1 -1      src/sys/amd64/amd64/mp_machdep.c
  1.16      +1 -1      src/sys/amd64/include/apicvar.h
  1.51      +0 -1      src/sys/amd64/include/clock.h
  1.75      +0 -4      src/sys/amd64/include/cpu.h
  1.30      +0 -30     src/sys/amd64/include/frame.h
  1.87      +1 -1      src/sys/amd64/include/smp.h
  1.224     +7 -6      src/sys/amd64/isa/clock.c
  1.12      +2 -2      src/sys/arm/arm/intr.c
  1.5       +0 -3      src/sys/arm/include/cpu.h
  1.4       +0 -22     src/sys/arm/include/frame.h
  1.4       +6 -4      src/sys/arm/sa11x0/sa11x0_ost.c
  1.9       +4 -2      src/sys/arm/xscale/i80321/i80321_timer.c
  1.25      +6 -5      src/sys/i386/i386/local_apic.c
  1.261     +1 -1      src/sys/i386/i386/mp_machdep.c
  1.16      +1 -1      src/sys/i386/include/apicvar.h
  1.53      +0 -1      src/sys/i386/include/clock.h
  1.75      +0 -4      src/sys/i386/include/cpu.h
  1.27      +0 -25     src/sys/i386/include/frame.h
  1.86      +1 -1      src/sys/i386/include/smp.h
  1.226     +7 -6      src/sys/i386/isa/clock.c
  1.54      +4 -4      src/sys/ia64/ia64/interrupt.c
  1.47      +0 -11     src/sys/ia64/include/cpu.h
  1.185     +15 -22    src/sys/kern/kern_clock.c
  1.150     +3 -3      src/sys/pc98/cbus/clock.c
  1.11      +1 -1      src/sys/powerpc/include/clock.h
  1.19      +0 -5      src/sys/powerpc/include/cpu.h
  1.12      +0 -7      src/sys/powerpc/include/frame.h
  1.21      +3 -3      src/sys/powerpc/powerpc/clock.c
  1.5       +2 -5      src/sys/powerpc/powerpc/interrupt.c
  1.16      +0 -3      src/sys/sparc64/include/cpu.h
  1.16      +0 -4      src/sys/sparc64/include/frame.h
  1.18      +10 -10    src/sys/sparc64/sparc64/tick.c
  1.236     +4 -5      src/sys/sys/systm.h

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 23:34:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id A8FE516A41F;
	Thu, 22 Dec 2005 23:34:51 +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 7557943D5E;
	Thu, 22 Dec 2005 23:34:51 +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 jBMNYpnQ058134;
	Thu, 22 Dec 2005 23:34:51 GMT
	(envelope-from wollman@repoman.freebsd.org)
Received: (from wollman@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMNYpxY058133;
	Thu, 22 Dec 2005 23:34:51 GMT (envelope-from wollman)
Message-Id: <200512222334.jBMNYpxY058133@repoman.freebsd.org>
From: Garrett Wollman <wollman@FreeBSD.org>
Date: Thu, 22 Dec 2005 23:34:51 +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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 23:34:51 -0000

wollman     2005-12-22 23:34:51 UTC

  FreeBSD src repository

  src/share/zoneinfo - Imported sources
  Update of /home/ncvs/src/share/zoneinfo
  In directory repoman.freebsd.org:/tmp/cvs-serv58106
  
  Log Message:
  Indiana still hasn't sorted itself out, and probably won't before the
  end of the year, so import what I hope to be the last database update
  for 2005.
  
  Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2005q.tar.gz
  
  Status:
  
  Vendor Tag:	ADO
  Release Tags:	tzdata2005q
  		
  U src/share/zoneinfo/africa
  U src/share/zoneinfo/antarctica
  C src/share/zoneinfo/asia
  C src/share/zoneinfo/australasia
  U src/share/zoneinfo/europe
  C src/share/zoneinfo/northamerica
  C 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
  
  4 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  Thu Dec 22 23:40:23 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7230716A420;
	Thu, 22 Dec 2005 23:40:23 +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 9913C43D60;
	Thu, 22 Dec 2005 23:40:21 +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 jBMNeLUT058488;
	Thu, 22 Dec 2005 23:40:21 GMT
	(envelope-from wollman@repoman.freebsd.org)
Received: (from wollman@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMNeLPO058487;
	Thu, 22 Dec 2005 23:40:21 GMT (envelope-from wollman)
Message-Id: <200512222340.jBMNeLPO058487@repoman.freebsd.org>
From: Garrett Wollman <wollman@FreeBSD.org>
Date: Thu, 22 Dec 2005 23:40: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/share/zoneinfo asia australasia northamerica
 southamerica
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 23:40:23 -0000

wollman     2005-12-22 23:40:21 UTC

  FreeBSD src repository

  Modified files:
    share/zoneinfo       asia australasia northamerica 
                         southamerica 
  Log:
  Merge tzdata2005q from vendor branch.  Data changes for the following
  locales: Azerbaijan, Brazil, Cuba, Gaza, Georgia, Jordan, Kirgizstan,
  Nicaragua, Uruguay.
  
  Revision  Changes    Path
  1.28      +42 -12    src/share/zoneinfo/asia
  1.27      +27 -22    src/share/zoneinfo/australasia
  1.28      +24 -4     src/share/zoneinfo/northamerica
  1.26      +11 -10    src/share/zoneinfo/southamerica

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 23:47:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D278316A41F;
	Thu, 22 Dec 2005 23:47: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 994A643D4C;
	Thu, 22 Dec 2005 23:47: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 jBMNlRK3058823;
	Thu, 22 Dec 2005 23:47:27 GMT
	(envelope-from wollman@repoman.freebsd.org)
Received: (from wollman@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMNlRLh058822;
	Thu, 22 Dec 2005 23:47:27 GMT (envelope-from wollman)
Message-Id: <200512222347.jBMNlRLh058822@repoman.freebsd.org>
From: Garrett Wollman <wollman@FreeBSD.org>
Date: Thu, 22 Dec 2005 23:47:27 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/share/zoneinfo africa antarctica asia australasia
 backward etcetera europe leapseconds northamerica southamerica
 systemv yearistype.sh zone.tab
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 23:47:28 -0000

wollman     2005-12-22 23:47:27 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    share/zoneinfo       africa antarctica asia australasia 
                         backward etcetera europe leapseconds 
                         northamerica southamerica systemv 
                         yearistype.sh zone.tab 
  Log:
  Merge tzdata2005l, tzdata2005m, and tzdata2005q from vendor branch.
  Too many zones change to summarize here.
  
  Revision       Changes    Path
  1.14.14.1      +24 -8     src/share/zoneinfo/africa
  1.1.2.10.12.1  +24 -26    src/share/zoneinfo/antarctica
  1.25.2.1       +246 -100  src/share/zoneinfo/asia
  1.25.10.1      +107 -46   src/share/zoneinfo/australasia
  1.1.2.11.2.1   +27 -14    src/share/zoneinfo/backward
  1.1.2.5.14.1   +4 -3      src/share/zoneinfo/etcetera
  1.29.2.1       +124 -79   src/share/zoneinfo/europe
  1.13.2.1       +37 -44    src/share/zoneinfo/leapseconds
  1.25.2.1       +212 -77   src/share/zoneinfo/northamerica
  1.24.2.1       +37 -39    src/share/zoneinfo/southamerica
  1.1.2.2.14.1   +11 -25    src/share/zoneinfo/systemv
  1.1.2.5.14.1   +4 -4      src/share/zoneinfo/yearistype.sh
  1.17.2.1       +14 -16    src/share/zoneinfo/zone.tab

From owner-cvs-src@FreeBSD.ORG  Thu Dec 22 23:52:14 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B61A116A420;
	Thu, 22 Dec 2005 23:52:14 +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 3581C43D6B;
	Thu, 22 Dec 2005 23:51:57 +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 jBMNpuRE059042;
	Thu, 22 Dec 2005 23:51:56 GMT
	(envelope-from wollman@repoman.freebsd.org)
Received: (from wollman@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBMNpuxZ059041;
	Thu, 22 Dec 2005 23:51:56 GMT (envelope-from wollman)
Message-Id: <200512222351.jBMNpuxZ059041@repoman.freebsd.org>
From: Garrett Wollman <wollman@FreeBSD.org>
Date: Thu, 22 Dec 2005 23:51:56 +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 antarctica asia australasia
 northamerica southamerica systemv
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 22 Dec 2005 23:52:14 -0000

wollman     2005-12-22 23:51:56 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    share/zoneinfo       antarctica asia australasia northamerica 
                         southamerica systemv 
  Log:
  Merge tzdata2005q from vendor branch.  List of territories affected is
  the same as for HEAD.
  
  Revision      Changes    Path
  1.1.2.10.6.2  +7 -10     src/share/zoneinfo/antarctica
  1.24.4.4      +42 -12    src/share/zoneinfo/asia
  1.25.4.2      +27 -22    src/share/zoneinfo/australasia
  1.23.4.5      +24 -4     src/share/zoneinfo/northamerica
  1.22.4.4      +11 -10    src/share/zoneinfo/southamerica
  1.1.2.2.8.1   +11 -25    src/share/zoneinfo/systemv

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 02:04:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0FA3216A41F;
	Fri, 23 Dec 2005 02:04:43 +0000 (GMT)
	(envelope-from yongari@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 31AA443D5C;
	Fri, 23 Dec 2005 02:04:42 +0000 (GMT)
	(envelope-from yongari@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 jBN24gDP071450;
	Fri, 23 Dec 2005 02:04:42 GMT
	(envelope-from yongari@repoman.freebsd.org)
Received: (from yongari@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBN24gR0071449;
	Fri, 23 Dec 2005 02:04:42 GMT (envelope-from yongari)
Message-Id: <200512230204.jBN24gR0071449@repoman.freebsd.org>
From: Pyun YongHyeon <yongari@FreeBSD.org>
Date: Fri, 23 Dec 2005 02:04: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/dev/bge if_bge.c if_bgereg.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 02:04:43 -0000

yongari     2005-12-23 02:04:41 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/bge          if_bge.c if_bgereg.h 
  Log:
  Use device_printf() and if_printf() rather than printf() and axe
  bge_unit from the softc.
  
  Requested by:   marius
  
  Revision  Changes    Path
  1.112     +51 -52    src/sys/dev/bge/if_bge.c
  1.42      +0 -1      src/sys/dev/bge/if_bgereg.h

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 02:18:02 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4E9C016A420;
	Fri, 23 Dec 2005 02:18:02 +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 A834B43D46;
	Fri, 23 Dec 2005 02:18:01 +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 jBN2I1Mk072121;
	Fri, 23 Dec 2005 02:18:01 GMT (envelope-from imp@repoman.freebsd.org)
Received: (from imp@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBN2I1l0072120;
	Fri, 23 Dec 2005 02:18:01 GMT (envelope-from imp)
Message-Id: <200512230218.jBN2I1l0072120@repoman.freebsd.org>
From: Warner Losh <imp@FreeBSD.org>
Date: Fri, 23 Dec 2005 02:18: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/sbin/dump dump.8
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 02:18:02 -0000

imp         2005-12-23 02:18:01 UTC

  FreeBSD src repository

  Modified files:
    sbin/dump            dump.8 
  Log:
  Add the example that green@ used in his commit log for the dump to a
  pipe functionality.  I've done a cvs log main.c about a dozen times
  now.  Maybe others will find this useful.
  
  Revision  Changes    Path
  1.72      +8 -1      src/sbin/dump/dump.8

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 03:16:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7FC9616A41F;
	Fri, 23 Dec 2005 03:16:54 +0000 (GMT)
	(envelope-from keramida@FreeBSD.org)
Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.95])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 19D9343D5C;
	Fri, 23 Dec 2005 03:16:52 +0000 (GMT)
	(envelope-from keramida@FreeBSD.org)
Received: from flame.pc (patr530-a115.otenet.gr [212.205.215.115])
	by kane.otenet.gr (8.13.4/8.13.4/Debian-8) with ESMTP id jBN3GolL012945;
	Fri, 23 Dec 2005 05:16:50 +0200
Received: by flame.pc (Postfix, from userid 1001)
	id 6C19E115D7; Fri, 23 Dec 2005 05:15:42 +0200 (EET)
Date: Fri, 23 Dec 2005 05:15:42 +0200
From: Giorgos Keramidas <keramida@FreeBSD.org>
To: Doug Barton <dougb@FreeBSD.org>
Message-ID: <20051223031542.GA1580@flame.pc>
References: <200512202322.jBKNMljh042547@repoman.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200512202322.jBKNMljh042547@repoman.freebsd.org>
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/etc/rc.d cleartmp
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 03:16:54 -0000

On 2005-12-20 23:22, Doug Barton <dougb@FreeBSD.org> wrote:
> dougb       2005-12-20 23:22:47 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     etc/rc.d             cleartmp
>   Log:
>   Include a somewhat hackish way to make sure that we *always* test the
>   new clear_tmp_X variable when start'ing.
>
>   Revision  Changes    Path
>   1.15      +6 -1      src/etc/rc.d/cleartmp

This doesn't seem to work too well though.  Revision 1.12 of cleartmp
correctly creates .ICE-unix and the other X11 socket dirs in /tmp in my
mfs /tmp filesystem.  Newer revisions fail to do this, for two reasons:

    The cleartmp_prestart() function runs only when the script runs with
    $1 set to 'start', but the boot process calls the script with
    'faststart'.

    Even when I change cleartmp to recognise faststart, onestart, start
    and forcestart, the cleartmp_prestart() function runs before
    cleartmp_start(), creates the directories, only to have them deleted
    immediately by cleartmp_start() when run_rc_command is called.

I'm not sure if there's a good way to modify cleartmp to do both things
correctly, at least without something equally hackish like:

    run_rc_command "$@" || exit $?

    case $1 in
    start|faststart|forcestart|onestart)
        clear_tmp_prestart
        ;;
    esac

or if it's better to make two cleartmp scripts :-/


From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 06:07:44 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B7B6716A41F;
	Fri, 23 Dec 2005 06:07:44 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 21DD443D4C;
	Fri, 23 Dec 2005 06:07:44 +0000 (GMT)
	(envelope-from davidxu@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 jBN67hGU087738;
	Fri, 23 Dec 2005 06:07:43 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBN67hdt087737;
	Fri, 23 Dec 2005 06:07:43 GMT (envelope-from davidxu)
Message-Id: <200512230607.jBN67hdt087737@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Fri, 23 Dec 2005 06:07: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/lib/libc/stdio fread.c local.h vfscanf.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 06:07:44 -0000

davidxu     2005-12-23 06:07:43 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    lib/libc/stdio       fread.c local.h vfscanf.c 
  Log:
  MFC following revisions to fix mutex memory leak for threaded program:
          local.h         revision 1.28
          fread.c         revision 1.13
          vfscanf.c       revision 1.39
  
  Revision   Changes    Path
  1.12.14.1  +16 -7     src/lib/libc/stdio/fread.c
  1.26.8.1   +2 -1      src/lib/libc/stdio/local.h
  1.38.2.1   +1 -1      src/lib/libc/stdio/vfscanf.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 06:18:33 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D562416A41F;
	Fri, 23 Dec 2005 06:18:33 +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 86F0B43D45;
	Fri, 23 Dec 2005 06:18:33 +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 jBN6IXcf088198;
	Fri, 23 Dec 2005 06:18:33 GMT
	(envelope-from scottl@repoman.freebsd.org)
Received: (from scottl@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBN6IXj4088197;
	Fri, 23 Dec 2005 06:18:33 GMT (envelope-from scottl)
Message-Id: <200512230618.jBN6IXj4088197@repoman.freebsd.org>
From: Scott Long <scottl@FreeBSD.org>
Date: Fri, 23 Dec 2005 06:18: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 subr_taskqueue.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 06:18:34 -0000

scottl      2005-12-23 06:18:33 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             subr_taskqueue.c 
  Log:
  Create the taskqueue_fast handler with INTR_MPSAFE so that it doesn't run
  with Giant.
  
  MFC After: 3 days
  
  Revision  Changes    Path
  1.31      +1 -1      src/sys/kern/subr_taskqueue.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 07:09:40 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4635F16A41F;
	Fri, 23 Dec 2005 07:09:40 +0000 (GMT) (envelope-from gnn@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id F1A5243D4C;
	Fri, 23 Dec 2005 07:09:39 +0000 (GMT) (envelope-from gnn@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 jBN79dbh090193;
	Fri, 23 Dec 2005 07:09:39 GMT (envelope-from gnn@repoman.freebsd.org)
Received: (from gnn@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBN79dam090192;
	Fri, 23 Dec 2005 07:09:39 GMT (envelope-from gnn)
Message-Id: <200512230709.jBN79dam090192@repoman.freebsd.org>
From: "George V. Neville-Neil" <gnn@FreeBSD.org>
Date: Fri, 23 Dec 2005 07:09: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/sys/netinet6 icmp6.c in6_src.c ip6_fw.c 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 07:09:40 -0000

gnn         2005-12-23 07:09:39 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    sys/netinet6         icmp6.c in6_src.c ip6_fw.c ip6_output.c 
  Log:
  MFC of coverity fixes against IPv6.
  
  Revision  Changes    Path
  1.53.2.6  +4 -2      src/sys/netinet6/icmp6.c
  1.28.2.3  +1 -1      src/sys/netinet6/in6_src.c
  1.32.2.2  +1 -1      src/sys/netinet6/ip6_fw.c
  1.82.2.9  +1 -1      src/sys/netinet6/ip6_output.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 11:49:55 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7EDF316A41F;
	Fri, 23 Dec 2005 11:49:55 +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 955D143D6B;
	Fri, 23 Dec 2005 11:49:53 +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 jBNBnrTJ006969;
	Fri, 23 Dec 2005 11:49:53 GMT (envelope-from phk@repoman.freebsd.org)
Received: (from phk@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNBnr00006968;
	Fri, 23 Dec 2005 11:49:53 GMT (envelope-from phk)
Message-Id: <200512231149.jBNBnr00006968@repoman.freebsd.org>
From: Poul-Henning Kamp <phk@FreeBSD.org>
Date: Fri, 23 Dec 2005 11:49:53 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/share/man/man9 sbuf.9 src/sys/kern subr_sbuf.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 11:49:55 -0000

phk         2005-12-23 11:49:53 UTC

  FreeBSD src repository

  Modified files:
    share/man/man9       sbuf.9 
    sys/kern             subr_sbuf.c 
  Log:
  Make sbuf_copyin() return the number of bytes copied on success.
  
  Submitted by:   "Wojciech A. Koszek" <dunstan@freebsd.czest.pl>
  
  Revision  Changes    Path
  1.25      +4 -0      src/share/man/man9/sbuf.9
  1.30      +1 -1      src/sys/kern/subr_sbuf.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 11:54:13 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0974216A41F;
	Fri, 23 Dec 2005 11:54:13 +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 B2CFE43D45;
	Fri, 23 Dec 2005 11:54:12 +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 jBNBsC3U007245;
	Fri, 23 Dec 2005 11:54:12 GMT (envelope-from phk@repoman.freebsd.org)
Received: (from phk@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNBsCt3007244;
	Fri, 23 Dec 2005 11:54:12 GMT (envelope-from phk)
Message-Id: <200512231154.jBNBsCt3007244@repoman.freebsd.org>
From: Poul-Henning Kamp <phk@FreeBSD.org>
Date: Fri, 23 Dec 2005 11:54: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 syscalls.master src/sys/compat/freebsd32
 syscalls.master
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 11:54:13 -0000

phk         2005-12-23 11:54:11 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             syscalls.master 
    sys/compat/freebsd32 syscalls.master 
  Log:
  Add abort2() systemcall.
  
  Revision  Changes    Path
  1.59      +1 -0      src/sys/compat/freebsd32/syscalls.master
  1.206     +1 -0      src/sys/kern/syscalls.master

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 11:56:40 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8B4EA16A41F;
	Fri, 23 Dec 2005 11:56:40 +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 3F5CA43D55;
	Fri, 23 Dec 2005 11:56:40 +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 jBNBuejn007360;
	Fri, 23 Dec 2005 11:56:40 GMT (envelope-from phk@repoman.freebsd.org)
Received: (from phk@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNBueBY007359;
	Fri, 23 Dec 2005 11:56:40 GMT (envelope-from phk)
Message-Id: <200512231156.jBNBueBY007359@repoman.freebsd.org>
From: Poul-Henning Kamp <phk@FreeBSD.org>
Date: Fri, 23 Dec 2005 11:56: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/compat/freebsd32 syscalls.master
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 11:56:40 -0000

phk         2005-12-23 11:56:39 UTC

  FreeBSD src repository

  Modified files:
    sys/compat/freebsd32 syscalls.master 
  Log:
  Add missing 455-462 syscalls as unimplemented
  
  Revision  Changes    Path
  1.60      +8 -0      src/sys/compat/freebsd32/syscalls.master

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 11:58:43 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 28DBB16A41F;
	Fri, 23 Dec 2005 11:58:43 +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 DC99143D4C;
	Fri, 23 Dec 2005 11:58:42 +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 jBNBwgpn007557;
	Fri, 23 Dec 2005 11:58:42 GMT (envelope-from phk@repoman.freebsd.org)
Received: (from phk@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNBwgiL007556;
	Fri, 23 Dec 2005 11:58:42 GMT (envelope-from phk)
Message-Id: <200512231158.jBNBwgiL007556@repoman.freebsd.org>
From: Poul-Henning Kamp <phk@FreeBSD.org>
Date: Fri, 23 Dec 2005 11:58: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 init_sysent.c kern_exit.c syscalls.c
 src/sys/sys syscall.h syscall.mk sysproto.h
 src/sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h
 freebsd32_syscalls.c freebsd32_sysent.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 11:58:43 -0000

phk         2005-12-23 11:58:42 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             init_sysent.c kern_exit.c syscalls.c 
    sys/sys              syscall.h syscall.mk sysproto.h 
    sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h 
                         freebsd32_syscalls.c freebsd32_sysent.c 
  Log:
  Regenerate sysent with new abort2 system call.
  
  Implement abort2(const char *reason, int narg, void **args);
  
  Submitted by:   "Wojciech A. Koszek" <dunstan@freebsd.czest.pl>
  
  Revision  Changes    Path
  1.47      +7 -1      src/sys/compat/freebsd32/freebsd32_proto.h
  1.47      +3 -2      src/sys/compat/freebsd32/freebsd32_syscall.h
  1.38      +10 -1     src/sys/compat/freebsd32/freebsd32_syscalls.c
  1.48      +10 -1     src/sys/compat/freebsd32/freebsd32_sysent.c
  1.204     +2 -1      src/sys/kern/init_sysent.c
  1.275     +83 -0     src/sys/kern/kern_exit.c
  1.188     +2 -1      src/sys/kern/syscalls.c
  1.185     +3 -2      src/sys/sys/syscall.h
  1.140     +3 -2      src/sys/sys/syscall.mk
  1.185     +7 -1      src/sys/sys/sysproto.h

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 12:14:56 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9AF8516A41F;
	Fri, 23 Dec 2005 12:14:56 +0000 (GMT)
	(envelope-from nyan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 2550543D6B;
	Fri, 23 Dec 2005 12:14:56 +0000 (GMT)
	(envelope-from nyan@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 jBNCEtBs008300;
	Fri, 23 Dec 2005 12:14:55 GMT
	(envelope-from nyan@repoman.freebsd.org)
Received: (from nyan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNCEtMS008299;
	Fri, 23 Dec 2005 12:14:55 GMT (envelope-from nyan)
Message-Id: <200512231214.jBNCEtMS008299@repoman.freebsd.org>
From: Takahashi Yoshihiro <nyan@FreeBSD.org>
Date: Fri, 23 Dec 2005 12:14: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/pc98/cbus clock.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 12:14:56 -0000

nyan        2005-12-23 12:14:55 UTC

  FreeBSD src repository

  Modified files:
    sys/pc98/cbus        clock.c 
  Log:
  Fix build error.
  
  Revision  Changes    Path
  1.151     +1 -0      src/sys/pc98/cbus/clock.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 12:27:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0981216A41F;
	Fri, 23 Dec 2005 12:27:51 +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 75B9643D8E;
	Fri, 23 Dec 2005 12:27:43 +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 jBNCRhwF008851;
	Fri, 23 Dec 2005 12:27:43 GMT (envelope-from phk@repoman.freebsd.org)
Received: (from phk@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNCRgKq008850;
	Fri, 23 Dec 2005 12:27:42 GMT (envelope-from phk)
Message-Id: <200512231227.jBNCRgKq008850@repoman.freebsd.org>
From: Poul-Henning Kamp <phk@FreeBSD.org>
Date: Fri, 23 Dec 2005 12:27: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/libc/sys Makefile.inc abort2.2
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 12:27:51 -0000

phk         2005-12-23 12:27:42 UTC

  FreeBSD src repository

  Modified files:
    lib/libc/sys         Makefile.inc 
  Added files:
    lib/libc/sys         abort2.2 
  Log:
  Add abort2 manual page.
  
  Submitted by:   "Wojciech A. Koszek" <dunstan@freebsd.czest.pl>
  Edited by:      phk
  
  Revision  Changes    Path
  1.119     +1 -1      src/lib/libc/sys/Makefile.inc
  1.1       +99 -0     src/lib/libc/sys/abort2.2 (new)

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 12:28:12 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8909516A41F;
	Fri, 23 Dec 2005 12:28:12 +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 F0B1343D64;
	Fri, 23 Dec 2005 12:28:10 +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 jBNCSAKs008893;
	Fri, 23 Dec 2005 12:28:10 GMT (envelope-from phk@repoman.freebsd.org)
Received: (from phk@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNCSAXd008892;
	Fri, 23 Dec 2005 12:28:10 GMT (envelope-from phk)
Message-Id: <200512231228.jBNCSAXd008892@repoman.freebsd.org>
From: Poul-Henning Kamp <phk@FreeBSD.org>
Date: Fri, 23 Dec 2005 12:28: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/include stdlib.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 12:28:12 -0000

phk         2005-12-23 12:28:10 UTC

  FreeBSD src repository

  Modified files:
    include              stdlib.h 
  Log:
  Add abort2() prototype
  
  Revision  Changes    Path
  1.59      +1 -0      src/include/stdlib.h

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 13:05:30 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6C51716A41F;
	Fri, 23 Dec 2005 13:05:30 +0000 (GMT)
	(envelope-from grehan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A195243D45;
	Fri, 23 Dec 2005 13:05:29 +0000 (GMT)
	(envelope-from grehan@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 jBND5SHG017731;
	Fri, 23 Dec 2005 13:05:28 GMT
	(envelope-from grehan@repoman.freebsd.org)
Received: (from grehan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBND5Sx4017730;
	Fri, 23 Dec 2005 13:05:28 GMT (envelope-from grehan)
Message-Id: <200512231305.jBND5Sx4017730@repoman.freebsd.org>
From: Peter Grehan <grehan@FreeBSD.org>
Date: Fri, 23 Dec 2005 13:05: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/powerpc/powerpc db_trace.c trap_subr.S
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 13:05:30 -0000

grehan      2005-12-23 13:05:28 UTC

  FreeBSD src repository

  Modified files:
    sys/powerpc/powerpc  db_trace.c trap_subr.S 
  Log:
  Mark the return address of the call to ast() in the generic trap
  handling code so the stack trace unwinders don't start trying to
  go into user-space.
  
  Found by trying to create core dumps with a KTR_COMPILE/KTR_GEOM
  kernel, which results in a stack_save() call in the ast() coredump
  path - this created a panic, and then calling 'trace' in ddb resulted
  in the black screen of death after printing out most of the backtrace.
  
  Revision  Changes    Path
  1.12      +9 -5      src/sys/powerpc/powerpc/db_trace.c
  1.16      +2 -0      src/sys/powerpc/powerpc/trap_subr.S

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 13:53:49 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@freebsd.org
Delivered-To: cvs-src@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 783A216A41F;
	Fri, 23 Dec 2005 13:53:49 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219])
	by mx1.FreeBSD.org (Postfix) with ESMTP id C238943D76;
	Fri, 23 Dec 2005 13:53:46 +0000 (GMT) (envelope-from jhb@freebsd.org)
Received: from server.baldwin.cx (unverified [66.23.211.162]) 
	by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 4424120 
	for multiple; Fri, 23 Dec 2005 08:55:27 -0500
Received: from zion.baldwin.cx (zion.baldwin.cx [192.168.0.7])
	(authenticated bits=0)
	by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id jBNDrieJ042551;
	Fri, 23 Dec 2005 08:53:44 -0500 (EST) (envelope-from jhb@freebsd.org)
From: John Baldwin <jhb@freebsd.org>
To: Takahashi Yoshihiro <nyan@freebsd.org>
Date: Fri, 23 Dec 2005 08:46:34 -0500
User-Agent: KMail/1.8.3
References: <200512231214.jBNCEtMS008299@repoman.freebsd.org>
In-Reply-To: <200512231214.jBNCEtMS008299@repoman.freebsd.org>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="iso-8859-15"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
Message-Id: <200512230846.35832.jhb@freebsd.org>
X-Virus-Scanned: ClamAV version 0.87.1,
	clamav-milter version 0.87 on server.baldwin.cx
X-Virus-Status: Clean
X-Spam-Status: No, score=-1.4 required=4.2 tests=ALL_TRUSTED autolearn=failed 
	version=3.1.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx
X-Server: High Performance Mail Server - http://surgemail.com r=1653887525
Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org
Subject: Re: cvs commit: src/sys/pc98/cbus clock.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 13:53:49 -0000

On Friday 23 December 2005 07:14 am, Takahashi Yoshihiro wrote:
> nyan        2005-12-23 12:14:55 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     sys/pc98/cbus        clock.c
>   Log:
>   Fix build error.

Sorry. :-(

=2D-=20
John Baldwin <jhb@FreeBSD.org> =A0<>< =A0http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve" =A0=3D =A0http://www.FreeBSD.org

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 15:30:54 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8D4DF16A41F;
	Fri, 23 Dec 2005 15:30:54 +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 B97FB43D5D;
	Fri, 23 Dec 2005 15:30:53 +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 jBNFUrtw024815;
	Fri, 23 Dec 2005 15:30:53 GMT (envelope-from kan@repoman.freebsd.org)
Received: (from kan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNFUrr9024814;
	Fri, 23 Dec 2005 15:30:53 GMT (envelope-from kan)
Message-Id: <200512231530.jBNFUrr9024814@repoman.freebsd.org>
From: Alexander Kabaev <kan@FreeBSD.org>
Date: Fri, 23 Dec 2005 15:30:53 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/libexec/rtld-elf 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 15:30:54 -0000

kan         2005-12-23 15:30:53 UTC

  FreeBSD src repository

  Modified files:
    libexec/rtld-elf     rtld.c 
  Log:
  Remove debugging statement that slipped into lone of the previous commits
  unintentionally.
  
  Revision  Changes    Path
  1.111     +0 -1      src/libexec/rtld-elf/rtld.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 15:31:38 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4F4E416A41F;
	Fri, 23 Dec 2005 15:31:38 +0000 (GMT)
	(envelope-from ceri@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 1AB0A43D58;
	Fri, 23 Dec 2005 15:31:38 +0000 (GMT)
	(envelope-from ceri@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 jBNFVbQk024851;
	Fri, 23 Dec 2005 15:31:37 GMT
	(envelope-from ceri@repoman.freebsd.org)
Received: (from ceri@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNFVbhS024850;
	Fri, 23 Dec 2005 15:31:37 GMT (envelope-from ceri)
Message-Id: <200512231531.jBNFVbhS024850@repoman.freebsd.org>
From: Ceri Davies <ceri@FreeBSD.org>
Date: Fri, 23 Dec 2005 15:31:37 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/usr.sbin/crunch/crunchgen crunchgen.1 crunchgen.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 15:31:38 -0000

ceri        2005-12-23 15:31:37 UTC

  FreeBSD src repository

  Modified files:
    usr.sbin/crunch/crunchgen crunchgen.1 crunchgen.c 
  Log:
  Commands like gmirror, graid3, ... and others which use dlopen() to load
  classes from say, /lib/geom, cannot be statically linked completely.
  Moreover, those shared objects may require other shared objects (i.e.
   for geom, libraries like -lmd, -lcrypto).
  
  The libs_so extension to crunchgen fixes this by allowing some libraries
  to be linked in dynamically.  This requires that a copy of rtld and the
  shared libraries be made available to the crunched binary, and so is not
  suitable for all environments.  Crunchgen configurations which do not
  use the 'libs_so' keyword are unaffected and produce identical binaries
  with and without this commit.
  
  Approved by:            murray (mentor, in spirit), jhb
  In collaboration with:  Adrian Steinmann <ast at marabu dot ch>
  MFC After:              6 weeks
  
  Revision  Changes    Path
  1.29      +30 -2     src/usr.sbin/crunch/crunchgen/crunchgen.1
  1.36      +65 -2     src/usr.sbin/crunch/crunchgen/crunchgen.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 15:33:35 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8410516A41F;
	Fri, 23 Dec 2005 15:33:35 +0000 (GMT)
	(envelope-from ceri@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 1096043D7F;
	Fri, 23 Dec 2005 15:33:32 +0000 (GMT)
	(envelope-from ceri@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 jBNFXV47024911;
	Fri, 23 Dec 2005 15:33:31 GMT
	(envelope-from ceri@repoman.freebsd.org)
Received: (from ceri@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNFXVvq024910;
	Fri, 23 Dec 2005 15:33:31 GMT (envelope-from ceri)
Message-Id: <200512231533.jBNFXVvq024910@repoman.freebsd.org>
From: Ceri Davies <ceri@FreeBSD.org>
Date: Fri, 23 Dec 2005 15:33:31 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/usr.sbin/crunch/crunchgen crunchgen.1
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 15:33:35 -0000

ceri        2005-12-23 15:33:31 UTC

  FreeBSD src repository

  Modified files:
    usr.sbin/crunch/crunchgen crunchgen.1 
  Log:
  Bump .Dd before I get told off.
  
  Revision  Changes    Path
  1.30      +1 -1      src/usr.sbin/crunch/crunchgen/crunchgen.1

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 15:51:09 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D783E16A41F;
	Fri, 23 Dec 2005 15:51:09 +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 4B02F43D4C;
	Fri, 23 Dec 2005 15:51:01 +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 jBNFowdO025772;
	Fri, 23 Dec 2005 15:50:58 GMT
	(envelope-from delphij@repoman.freebsd.org)
Received: (from delphij@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNFowML025771;
	Fri, 23 Dec 2005 15:50:58 GMT (envelope-from delphij)
Message-Id: <200512231550.jBNFowML025771@repoman.freebsd.org>
From: Xin LI <delphij@FreeBSD.org>
Date: Fri, 23 Dec 2005 15:50:57 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 15:51:10 -0000

delphij     2005-12-23 15:50:57 UTC

  FreeBSD src repository

  Modified files:
    sys/ufs/ffs          ffs_softdep.c 
  Log:
  Typo.
  
  Revision  Changes    Path
  1.186     +1 -1      src/sys/ufs/ffs/ffs_softdep.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 19:14:39 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6E89316A41F;
	Fri, 23 Dec 2005 19:14:39 +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 1075D43D4C;
	Fri, 23 Dec 2005 19:14:39 +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 jBNJEcnM041048;
	Fri, 23 Dec 2005 19:14:38 GMT
	(envelope-from glebius@repoman.freebsd.org)
Received: (from glebius@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNJEc5R041047;
	Fri, 23 Dec 2005 19:14:38 GMT (envelope-from glebius)
Message-Id: <200512231914.jBNJEc5R041047@repoman.freebsd.org>
From: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Fri, 23 Dec 2005 19:14:38 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/share/man/man4 ng_source.4 src/sys/netgraph
 ng_source.c ng_source.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 19:14:39 -0000

glebius     2005-12-23 19:14:38 UTC

  FreeBSD src repository

  Modified files:
    share/man/man4       ng_source.4 
    sys/netgraph         ng_source.c ng_source.h 
  Log:
  Implement an upper limit for packets per second sent by node.
  
  Revision  Changes    Path
  1.11      +6 -1      src/share/man/man4/ng_source.4
  1.26      +38 -0     src/sys/netgraph/ng_source.c
  1.7       +9 -4      src/sys/netgraph/ng_source.h

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 20:06:16 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8A5CE16A41F;
	Fri, 23 Dec 2005 20:06:16 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3A72243D60;
	Fri, 23 Dec 2005 20:06:16 +0000 (GMT) (envelope-from ru@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 jBNK6G4O046555;
	Fri, 23 Dec 2005 20:06:16 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNK6Fob046543;
	Fri, 23 Dec 2005 20:06:15 GMT (envelope-from ru)
Message-Id: <200512232006.jBNK6Fob046543@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Fri, 23 Dec 2005 20:06: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/compat/freebsd32 syscalls.master
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 20:06:16 -0000

ru          2005-12-23 20:06:15 UTC

  FreeBSD src repository

  Modified files:
    sys/compat/freebsd32 syscalls.master 
  Log:
  Fix build.
  
  Revision  Changes    Path
  1.61      +1 -1      src/sys/compat/freebsd32/syscalls.master

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 20:06:52 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7BE1F16A41F;
	Fri, 23 Dec 2005 20:06:52 +0000 (GMT) (envelope-from ru@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9497B43D49;
	Fri, 23 Dec 2005 20:06:51 +0000 (GMT) (envelope-from ru@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 jBNK6ose046979;
	Fri, 23 Dec 2005 20:06:50 GMT (envelope-from ru@repoman.freebsd.org)
Received: (from ru@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNK6oio046978;
	Fri, 23 Dec 2005 20:06:50 GMT (envelope-from ru)
Message-Id: <200512232006.jBNK6oio046978@repoman.freebsd.org>
From: Ruslan Ermilov <ru@FreeBSD.org>
Date: Fri, 23 Dec 2005 20:06: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/compat/freebsd32 freebsd32_proto.h
 freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 20:06:52 -0000

ru          2005-12-23 20:06:50 UTC

  FreeBSD src repository

  Modified files:
    sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h 
                         freebsd32_syscalls.c freebsd32_sysent.c 
  Log:
  Regen.
  
  Revision  Changes    Path
  1.48      +1 -7      src/sys/compat/freebsd32/freebsd32_proto.h
  1.48      +1 -1      src/sys/compat/freebsd32/freebsd32_syscall.h
  1.39      +1 -1      src/sys/compat/freebsd32/freebsd32_syscalls.c
  1.49      +1 -1      src/sys/compat/freebsd32/freebsd32_sysent.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 21:32:40 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DFED516A41F;
	Fri, 23 Dec 2005 21:32:40 +0000 (GMT)
	(envelope-from jeff@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9200843D46;
	Fri, 23 Dec 2005 21:32:40 +0000 (GMT)
	(envelope-from jeff@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 jBNLWew6057460;
	Fri, 23 Dec 2005 21:32:40 GMT
	(envelope-from jeff@repoman.freebsd.org)
Received: (from jeff@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNLWeoF057459;
	Fri, 23 Dec 2005 21:32:40 GMT (envelope-from jeff)
Message-Id: <200512232132.jBNLWeoF057459@repoman.freebsd.org>
From: Jeff Roberson <jeff@FreeBSD.org>
Date: Fri, 23 Dec 2005 21:32:40 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 21:32:41 -0000

jeff        2005-12-23 21:32:40 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             kern_lock.c 
  Log:
   - Remove and unused include.
  
  Submitted by:   Antoine Brodin <antoine.brodin@laposte.net>
  
  Revision  Changes    Path
  1.96      +0 -1      src/sys/kern/kern_lock.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 21:33:56 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6543C16A420;
	Fri, 23 Dec 2005 21:33:56 +0000 (GMT)
	(envelope-from jeff@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id C308943D5A;
	Fri, 23 Dec 2005 21:33:55 +0000 (GMT)
	(envelope-from jeff@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 jBNLXtgN057533;
	Fri, 23 Dec 2005 21:33:55 GMT
	(envelope-from jeff@repoman.freebsd.org)
Received: (from jeff@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNLXtFA057532;
	Fri, 23 Dec 2005 21:33:55 GMT (envelope-from jeff)
Message-Id: <200512232133.jBNLXtFA057532@repoman.freebsd.org>
From: Jeff Roberson <jeff@FreeBSD.org>
Date: Fri, 23 Dec 2005 21:33: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/i386/i386 db_trace.c src/sys/amd64/amd64
 db_trace.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 21:33:56 -0000

jeff        2005-12-23 21:33:55 UTC

  FreeBSD src repository

  Modified files:
    sys/i386/i386        db_trace.c 
    sys/amd64/amd64      db_trace.c 
  Log:
   - Improve the INKERNEL macro such that it can no longer give false positives.
     This fixes the stack(9) functionality.
  
  Submitted by:   Antoine Brodin <antoine.brodin@laposte.net>
  
  Revision  Changes    Path
  1.72      +5 -1      src/sys/amd64/amd64/db_trace.c
  1.70      +6 -1      src/sys/i386/i386/db_trace.c

From owner-cvs-src@FreeBSD.ORG  Fri Dec 23 21:54:57 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 77A5216A41F;
	Fri, 23 Dec 2005 21:54:57 +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 277E043D49;
	Fri, 23 Dec 2005 21:54:57 +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 jBNLsuPN058280;
	Fri, 23 Dec 2005 21:54:57 GMT (envelope-from imp@repoman.freebsd.org)
Received: (from imp@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBNLsuCm058279;
	Fri, 23 Dec 2005 21:54:56 GMT (envelope-from imp)
Message-Id: <200512232154.jBNLsuCm058279@repoman.freebsd.org>
From: Warner Losh <imp@FreeBSD.org>
Date: Fri, 23 Dec 2005 21:54: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/modules Makefile
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 23 Dec 2005 21:54:57 -0000

imp         2005-12-23 21:54:56 UTC

  FreeBSD src repository

  Modified files:
    sys/modules          Makefile 
  Log:
  Build ed on amd64.  The pci attachment works with qemu on amd64.
  
  I'm holding off on building on sparc64 and others because I don't know
  if this driver has had all the inb/outb removed (I think it has).  Nor
  do I know if there are byte ordering issues.  There are very few word
  operations on an NE2000, but I've not had time to audit them all.
  
  Suggested by: Daniel O'Connor
  
  Revision  Changes    Path
  1.468     +1 -0      src/sys/modules/Makefile

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 01:12:19 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8E11216A41F;
	Sat, 24 Dec 2005 01:12:19 +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 8A8F443D73;
	Sat, 24 Dec 2005 01:12:18 +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 jBO1CITg072425;
	Sat, 24 Dec 2005 01:12:18 GMT
	(envelope-from thompsa@repoman.freebsd.org)
Received: (from thompsa@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBO1CIl6072424;
	Sat, 24 Dec 2005 01:12:18 GMT (envelope-from thompsa)
Message-Id: <200512240112.jBO1CIl6072424@repoman.freebsd.org>
From: Andrew Thompson <thompsa@FreeBSD.org>
Date: Sat, 24 Dec 2005 01:12:18 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 01:12:19 -0000

thompsa     2005-12-24 01:12:18 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/net              if_bridge.c 
  Log:
  MFC r1.41, do not BPF_MTAP the packet twice
  
  Revision   Changes    Path
  1.11.2.19  +6 -2      src/sys/net/if_bridge.c

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 01:13:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 509A316A422;
	Sat, 24 Dec 2005 01:13:27 +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 7861743D7C;
	Sat, 24 Dec 2005 01:13:17 +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 jBO1DHYs072500;
	Sat, 24 Dec 2005 01:13:17 GMT
	(envelope-from thompsa@repoman.freebsd.org)
Received: (from thompsa@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBO1DHop072499;
	Sat, 24 Dec 2005 01:13:17 GMT (envelope-from thompsa)
Message-Id: <200512240113.jBO1DHop072499@repoman.freebsd.org>
From: Andrew Thompson <thompsa@FreeBSD.org>
Date: Sat, 24 Dec 2005 01:13:17 +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_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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 01:13:27 -0000

thompsa     2005-12-24 01:13:17 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    sys/net              if_bridge.c 
  Log:
  MFC r1.41, do not BPF_MTAP the packet twice
  
  Revision  Changes    Path
  1.23.2.5  +6 -2      src/sys/net/if_bridge.c

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 02:59:30 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 73E5B16A41F;
	Sat, 24 Dec 2005 02:59:30 +0000 (GMT)
	(envelope-from davidxu@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 239BA43D46;
	Sat, 24 Dec 2005 02:59:30 +0000 (GMT)
	(envelope-from davidxu@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 jBO2xURs076743;
	Sat, 24 Dec 2005 02:59:30 GMT
	(envelope-from davidxu@repoman.freebsd.org)
Received: (from davidxu@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBO2xUsJ076742;
	Sat, 24 Dec 2005 02:59:30 GMT (envelope-from davidxu)
Message-Id: <200512240259.jBO2xUsJ076742@repoman.freebsd.org>
From: David Xu <davidxu@FreeBSD.org>
Date: Sat, 24 Dec 2005 02:59: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/kern kern_sig.c sys_process.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 02:59:30 -0000

davidxu     2005-12-24 02:59:30 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             kern_sig.c sys_process.c 
  Log:
  Avoid kernel panic when attaching a process which may not be stopped
  by debugger, e.g process is dumping core. Only access p_xthread if
  P_STOPPED_TRACE is set, this means thread is ready to exchange signal
  with debugger, print a warning if P_STOPPED_TRACE is not set due to
  some bugs in other code, if there is.
  
  The patch has been tested by Anish Mistry mistry.7 at osu dot edu, and
  is slightly adjusted.
  
  Revision  Changes    Path
  1.319     +0 -2      src/sys/kern/kern_sig.c
  1.134     +30 -26    src/sys/kern/sys_process.c

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 04:57:50 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DBC2B16A41F;
	Sat, 24 Dec 2005 04:57:50 +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 8D1F243D46;
	Sat, 24 Dec 2005 04:57:50 +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 jBO4vojl088660;
	Sat, 24 Dec 2005 04:57:50 GMT (envelope-from alc@repoman.freebsd.org)
Received: (from alc@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBO4vocX088659;
	Sat, 24 Dec 2005 04:57:50 GMT (envelope-from alc)
Message-Id: <200512240457.jBO4vocX088659@repoman.freebsd.org>
From: Alan Cox <alc@FreeBSD.org>
Date: Sat, 24 Dec 2005 04:57: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 imgact_aout.c imgact_elf.c imgact_gzip.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 04:57:51 -0000

alc         2005-12-24 04:57:50 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             imgact_aout.c imgact_elf.c imgact_gzip.c 
  Log:
  Maintain the lock on the vnode for most of exec_elfN_imgact().
  Specifically, it is required for the I/O that may be performed by
  elfN_load_section().
  
  Avoid an obscure deadlock in the a.out, elf, and gzip image
  activators.  Add a comment describing why the deadlock does not occur
  in the common case and how it might occur in less usual circumstances.
  
  Eliminate an unused variable from exec_aout_imgact().
  
  In collaboration with: tegge
  
  Revision  Changes    Path
  1.100     +13 -2     src/sys/kern/imgact_aout.c
  1.172     +35 -32    src/sys/kern/imgact_elf.c
  1.55      +13 -0     src/sys/kern/imgact_gzip.c

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 07:30:28 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6F4B716A41F;
	Sat, 24 Dec 2005 07:30:28 +0000 (GMT)
	(envelope-from maxim@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id E662343D62;
	Sat, 24 Dec 2005 07:30:27 +0000 (GMT)
	(envelope-from maxim@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 jBO7URsp094303;
	Sat, 24 Dec 2005 07:30:27 GMT
	(envelope-from maxim@repoman.freebsd.org)
Received: (from maxim@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBO7UR3V094302;
	Sat, 24 Dec 2005 07:30:27 GMT (envelope-from maxim)
Message-Id: <200512240730.jBO7UR3V094302@repoman.freebsd.org>
From: Maxim Konovalov <maxim@FreeBSD.org>
Date: Sat, 24 Dec 2005 07:30:27 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/share/misc bsd-family-tree
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 07:30:28 -0000

maxim       2005-12-24 07:30:27 UTC

  FreeBSD src repository

  Modified files:
    share/misc           bsd-family-tree 
  Log:
  o NetBSD 3.0 added.
  
  Revision  Changes    Path
  1.99      +3 -0      src/share/misc/bsd-family-tree

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 08:25:16 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 426FD16A41F;
	Sat, 24 Dec 2005 08:25:16 +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 EA53743D46;
	Sat, 24 Dec 2005 08:25:15 +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 jBO8PFSp096263;
	Sat, 24 Dec 2005 08:25:15 GMT
	(envelope-from rwatson@repoman.freebsd.org)
Received: (from rwatson@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBO8PFfJ096262;
	Sat, 24 Dec 2005 08:25:15 GMT (envelope-from rwatson)
Message-Id: <200512240825.jBO8PFfJ096262@repoman.freebsd.org>
From: Robert Watson <rwatson@FreeBSD.org>
Date: Sat, 24 Dec 2005 08:25: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/share/man/man9 VFS_LOCK_GIANT.9
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 08:25:16 -0000

rwatson     2005-12-24 08:25:15 UTC

  FreeBSD src repository

  Modified files:
    share/man/man9       VFS_LOCK_GIANT.9 
  Log:
  Add missing mount.h include to VFS_LOCK_GIANT() man page.
  
  Submitted by:   Wojciech A. Koszek <dunstan at freebsd dot czest dot pl>
  MFC after:      3 days
  
  Revision  Changes    Path
  1.4       +1 -0      src/share/man/man9/VFS_LOCK_GIANT.9

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 08:27:45 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D80C816A41F;
	Sat, 24 Dec 2005 08:27:45 +0000 (GMT)
	(envelope-from grehan@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 66E8643D80;
	Sat, 24 Dec 2005 08:27:45 +0000 (GMT)
	(envelope-from grehan@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 jBO8RjQK096349;
	Sat, 24 Dec 2005 08:27:45 GMT
	(envelope-from grehan@repoman.freebsd.org)
Received: (from grehan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBO8Rj46096348;
	Sat, 24 Dec 2005 08:27:45 GMT (envelope-from grehan)
Message-Id: <200512240827.jBO8Rj46096348@repoman.freebsd.org>
From: Peter Grehan <grehan@FreeBSD.org>
Date: Sat, 24 Dec 2005 08:27:45 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/powerpc/include clock.h
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 08:27:46 -0000

grehan      2005-12-24 08:27:45 UTC

  FreeBSD src repository

  Modified files:
    sys/powerpc/include  clock.h 
  Log:
  Forward-declare struct trapframe to allow the aic module to compile.
  
  Revision  Changes    Path
  1.12      +2 -0      src/sys/powerpc/include/clock.h

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 08:28:35 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4A85816A41F;
	Sat, 24 Dec 2005 08:28:35 +0000 (GMT)
	(envelope-from grehan@freebsd.org)
Received: from cayenne.onthenet.com.au (cayenne.OntheNet.com.au
	[203.22.124.29])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A5A7843D53;
	Sat, 24 Dec 2005 08:28:34 +0000 (GMT)
	(envelope-from grehan@freebsd.org)
Received: from [203.144.18.208] (CPE-18-208.dsl.OntheNet.net [203.144.18.208])
	by cayenne.onthenet.com.au (Postfix) with ESMTP id 6F4A275912F;
	Sat, 24 Dec 2005 18:28:33 +1000 (EST)
Message-ID: <43AD06B1.9020609@freebsd.org>
Date: Sat, 24 Dec 2005 18:28:33 +1000
From: Peter Grehan <grehan@freebsd.org>
User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20041016
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: John Baldwin <jhb@FreeBSD.org>
References: <200512222216.jBMMG9bA055121@repoman.freebsd.org>
In-Reply-To: <200512222216.jBMMG9bA055121@repoman.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/alpha/alpha clock.c interrupt.c
 src/sys/alpha/include
 cpu.h cpuconf.h src/sys/amd64/amd64 local_apic.c mp_machdep.c
 src/sys/amd64/include
 apicvar.h clock.h cpu.h frame.h smp.h src/sys/amd64/isa clock.c
 src/sys/arm/arm ...
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 08:28:35 -0000

>   Tested on:      alpha, amd64, arm, i386, ia64, sparc64

  Belatedly tested on ppc .. works fine.

later,

Peter.

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 10:22:51 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C52EF16A41F;
	Sat, 24 Dec 2005 10:22:51 +0000 (GMT) (envelope-from gnn@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 617C343D46;
	Sat, 24 Dec 2005 10:22:51 +0000 (GMT) (envelope-from gnn@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 jBOAMpsY008208;
	Sat, 24 Dec 2005 10:22:51 GMT (envelope-from gnn@repoman.freebsd.org)
Received: (from gnn@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOAMome008207;
	Sat, 24 Dec 2005 10:22:50 GMT (envelope-from gnn)
Message-Id: <200512241022.jBOAMome008207@repoman.freebsd.org>
From: "George V. Neville-Neil" <gnn@FreeBSD.org>
Date: Sat, 24 Dec 2005 10:22:50 +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/net getaddrinfo.c name6.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 10:22:51 -0000

gnn         2005-12-24 10:22:50 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    lib/libc/net         getaddrinfo.c name6.c 
  Log:
  MFC of fixes from Kame that didn't make the 5 STABLE branch.
  
  Revision   Changes    Path
  1.52.2.13  +2 -2      src/lib/libc/net/getaddrinfo.c
  1.39.2.10  +2 -2      src/lib/libc/net/name6.c

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 15:37:33 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id BA47016A41F;
	Sat, 24 Dec 2005 15:37:33 +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 2826E43D55;
	Sat, 24 Dec 2005 15:37:33 +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 jBOFbUhD026677;
	Sat, 24 Dec 2005 15:37:30 GMT (envelope-from kan@repoman.freebsd.org)
Received: (from kan@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOFbU21026676;
	Sat, 24 Dec 2005 15:37:30 GMT (envelope-from kan)
Message-Id: <200512241537.jBOFbU21026676@repoman.freebsd.org>
From: Alexander Kabaev <kan@FreeBSD.org>
Date: Sat, 24 Dec 2005 15:37: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/libexec/rtld-elf 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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 15:37:33 -0000

kan         2005-12-24 15:37:30 UTC

  FreeBSD src repository

  Modified files:
    libexec/rtld-elf     rtld.c 
  Log:
  Make lookups for relocations from old unversioned binaries return
  oldest versioned symbol available. Do not accept hidden symbols for
  all other versions.
  
  Use "<obj->path>: <error message>" for all error messages in new
  functions to make them more consistent.
  
  Revision  Changes    Path
  1.112     +32 -17    src/libexec/rtld-elf/rtld.c

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 17:00:40 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 77A2D16A41F;
	Sat, 24 Dec 2005 17:00:40 +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 5F0E343D5F;
	Sat, 24 Dec 2005 17:00:33 +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 jBOH0Xki037346;
	Sat, 24 Dec 2005 17:00:33 GMT
	(envelope-from jkoshy@repoman.freebsd.org)
Received: (from jkoshy@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOH0XKC037345;
	Sat, 24 Dec 2005 17:00:33 GMT (envelope-from jkoshy)
Message-Id: <200512241700.jBOH0XKC037345@repoman.freebsd.org>
From: Joseph Koshy <jkoshy@FreeBSD.org>
Date: Sat, 24 Dec 2005 17:00:33 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/usr.sbin/pmcstat pmcstat.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 17:00:40 -0000

jkoshy      2005-12-24 17:00:33 UTC

  FreeBSD src repository

  Modified files:
    usr.sbin/pmcstat     pmcstat.c 
  Log:
  - Don't print an errno string when reporting dropped samples.
  - Prevent an unsuccessful exec() of a target program from triggering
    a false 'dropped samples' message.
  
  Revision  Changes    Path
  1.11      +4 -3      src/usr.sbin/pmcstat/pmcstat.c

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 17:50:46 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E565616A41F;
	Sat, 24 Dec 2005 17:50:46 +0000 (GMT)
	(envelope-from wilko@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 4908B43D60;
	Sat, 24 Dec 2005 17:50:46 +0000 (GMT)
	(envelope-from wilko@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 jBOHokXW039060;
	Sat, 24 Dec 2005 17:50:46 GMT
	(envelope-from wilko@repoman.freebsd.org)
Received: (from wilko@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOHokZD039059;
	Sat, 24 Dec 2005 17:50:46 GMT (envelope-from wilko)
Message-Id: <200512241750.jBOHokZD039059@repoman.freebsd.org>
From: Wilko Bulte <wilko@FreeBSD.org>
Date: Sat, 24 Dec 2005 17:50: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/games/fortune/datfiles fortunes
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 17:50:47 -0000

wilko       2005-12-24 17:50:45 UTC

  FreeBSD src repository

  Modified files:
    games/fortune/datfiles fortunes 
  Log:
  "A life lived in fear is a life half lived"
  
  Revision  Changes    Path
  1.201     +2 -0      src/games/fortune/datfiles/fortunes

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 17:53:20 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 03B6C16A41F;
	Sat, 24 Dec 2005 17:53:20 +0000 (GMT)
	(envelope-from wilko@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 36F5943D49;
	Sat, 24 Dec 2005 17:53:19 +0000 (GMT)
	(envelope-from wilko@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 jBOHrJ0X039139;
	Sat, 24 Dec 2005 17:53:19 GMT
	(envelope-from wilko@repoman.freebsd.org)
Received: (from wilko@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOHrJ5n039138;
	Sat, 24 Dec 2005 17:53:19 GMT (envelope-from wilko)
Message-Id: <200512241753.jBOHrJ5n039138@repoman.freebsd.org>
From: Wilko Bulte <wilko@FreeBSD.org>
Date: Sat, 24 Dec 2005 17:53:18 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: RELENG_6
Cc: 
Subject: cvs commit: src/games/fortune/datfiles fortunes
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 17:53:20 -0000

wilko       2005-12-24 17:53:18 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    games/fortune/datfiles fortunes 
  Log:
  "A life lived in fear is a life half lived"
  
  Revision   Changes    Path
  1.179.2.3  +2 -0      src/games/fortune/datfiles/fortunes

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 17:55:34 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id A17CD16A41F;
	Sat, 24 Dec 2005 17:55:34 +0000 (GMT)
	(envelope-from wilko@FreeBSD.org)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 594D643D49;
	Sat, 24 Dec 2005 17:55:34 +0000 (GMT)
	(envelope-from wilko@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 jBOHtYG7039282;
	Sat, 24 Dec 2005 17:55:34 GMT
	(envelope-from wilko@repoman.freebsd.org)
Received: (from wilko@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOHtYx1039281;
	Sat, 24 Dec 2005 17:55:34 GMT (envelope-from wilko)
Message-Id: <200512241755.jBOHtYx1039281@repoman.freebsd.org>
From: Wilko Bulte <wilko@FreeBSD.org>
Date: Sat, 24 Dec 2005 17:55:34 +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/games/fortune/datfiles fortunes
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 17:55:34 -0000

wilko       2005-12-24 17:55:34 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    games/fortune/datfiles fortunes 
  Log:
  "A life lived in fear is a life half lived"
  
  Revision   Changes    Path
  1.141.2.9  +2 -0      src/games/fortune/datfiles/fortunes

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 19:07:25 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 962E516A41F;
	Sat, 24 Dec 2005 19:07:25 +0000 (GMT) (envelope-from des@des.no)
Received: from tim.des.no (tim.des.no [194.63.250.121])
	by mx1.FreeBSD.org (Postfix) with ESMTP id F32FC43D4C;
	Sat, 24 Dec 2005 19:07:24 +0000 (GMT) (envelope-from des@des.no)
Received: from tim.des.no (localhost [127.0.0.1])
	by spam.des.no (Postfix) with ESMTP id 85C5420AB;
	Sat, 24 Dec 2005 20:07:20 +0100 (CET)
X-Spam-Tests: AWL,BAYES_00,FORGED_RCVD_HELO
X-Spam-Learn: ham
X-Spam-Score: -3.2/3.0
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no
Received: from xps.des.no (des.no [80.203.243.180])
	by tim.des.no (Postfix) with ESMTP id 77D6620A9;
	Sat, 24 Dec 2005 20:07:20 +0100 (CET)
Received: by xps.des.no (Postfix, from userid 1001)
	id 1701333C3E; Sat, 24 Dec 2005 20:07:20 +0100 (CET)
To: Garrett Wollman <wollman@FreeBSD.org>
References: <200512222334.jBMNYpxY058133@repoman.freebsd.org>
From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=)
Date: Sat, 24 Dec 2005 20:07:20 +0100
In-Reply-To: <200512222334.jBMNYpxY058133@repoman.freebsd.org> (Garrett
	Wollman's message of "Thu, 22 Dec 2005 23:34:51 +0000 (UTC)")
Message-ID: <86ek42s49j.fsf@xps.des.no>
User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (berkeley-unix)
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/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 <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 19:07:25 -0000

Garrett Wollman <wollman@FreeBSD.org> writes:
>   Log Message:
>   Indiana still hasn't sorted itself out, and probably won't before the
>   end of the year, so import what I hope to be the last database update
>   for 2005.

I wonder if we should make a habit of merging these to security /
errata branches.

DES
--=20
Dag-Erling Sm=F8rgrav - des@des.no


From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 22:22:27 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 78D2C16A428;
	Sat, 24 Dec 2005 22:22:27 +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 3365843D7C;
	Sat, 24 Dec 2005 22:22:21 +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 jBOMMHC6056614;
	Sat, 24 Dec 2005 22:22:17 GMT
	(envelope-from trhodes@repoman.freebsd.org)
Received: (from trhodes@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOMMHRA056613;
	Sat, 24 Dec 2005 22:22:17 GMT (envelope-from trhodes)
Message-Id: <200512242222.jBOMMHRA056613@repoman.freebsd.org>
From: Tom Rhodes <trhodes@FreeBSD.org>
Date: Sat, 24 Dec 2005 22:22:17 +0000 (UTC)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Cc: 
Subject: cvs commit: src/sys/sys _timeval.h src/sys/fs/procfs
 procfs_status.c src/libexec/bootpd bootpd.c src/sys/dev/acpica/Osd
 OsdSynch.c src/sys/dev/firewire sbp.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 22:22:27 -0000

trhodes     2005-12-24 22:22:17 UTC

  FreeBSD src repository

  Modified files:
    sys/sys              _timeval.h 
    sys/fs/procfs        procfs_status.c 
    libexec/bootpd       bootpd.c 
    sys/dev/acpica/Osd   OsdSynch.c 
    sys/dev/firewire     sbp.c 
  Log:
  Make tv_sec a time_t on all platforms but alpha.  Brings us more in line with
  POSIX.  This also makes the struct correct we ever implement an i386-time64
  architecture.  Not that we need too.
  
  Reviewed by:    imp, brooks
  Approved by:    njl (acpica), des (no objects, touches procfs)
  Tested with:    make universe
  
  Revision  Changes    Path
  1.24      +3 -2      src/libexec/bootpd/bootpd.c
  1.26      +2 -2      src/sys/dev/acpica/Osd/OsdSynch.c
  1.82      +2 -2      src/sys/dev/firewire/sbp.c
  1.57      +4 -4      src/sys/fs/procfs/procfs_status.c
  1.2       +5 -1      src/sys/sys/_timeval.h

From owner-cvs-src@FreeBSD.ORG  Sat Dec 24 22:38:00 2005
Return-Path: <owner-cvs-src@FreeBSD.ORG>
X-Original-To: cvs-src@FreeBSD.org
Delivered-To: cvs-src@FreeBSD.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id C4F8716A41F;
	Sat, 24 Dec 2005 22:38:00 +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 2DD0943D5F;
	Sat, 24 Dec 2005 22:38:00 +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 jBOMc0NT057330;
	Sat, 24 Dec 2005 22:38:00 GMT
	(envelope-from trhodes@repoman.freebsd.org)
Received: (from trhodes@localhost)
	by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBOMc0ni057329;
	Sat, 24 Dec 2005 22:38:00 GMT (envelope-from trhodes)
Message-Id: <200512242238.jBOMc0ni057329@repoman.freebsd.org>
From: Tom Rhodes <trhodes@FreeBSD.org>
Date: Sat, 24 Dec 2005 22:37: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/include stdlib.h src/lib/libc/stdlib Makefile.inc
 a64l.3 a64l.c l64a.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 24 Dec 2005 22:38:01 -0000

trhodes     2005-12-24 22:37:59 UTC

  FreeBSD src repository

  Modified files:
    include              stdlib.h 
    lib/libc/stdlib      Makefile.inc 
  Added files:
    lib/libc/stdlib      a64l.3 a64l.c l64a.c 
  Log:
  Add a64l(), l64a(), and l64a_r() XSI extentions.  These functions convert
  between a 32-bit integer and a radix-64 ASCII string.  The l64a_r() function
  is a NetBSD addition.
  
  PR:             51209 (based on submission, but very different)
  Reviewed by:    bde, ru
  
  Revision  Changes    Path
  1.60      +3 -2      src/include/stdlib.h
  1.49      +6 -5      src/lib/libc/stdlib/Makefile.inc
  1.1       +186 -0    src/lib/libc/stdlib/a64l.3 (new)
  1.1       +46 -0     src/lib/libc/stdlib/a64l.c (new)
  1.1       +52 -0     src/lib/libc/stdlib/l64a.c (new)