svn commit: r219898 - head/sys/modules

2011-03-23 Thread Jeff Roberson
Author: jeff Date: Wed Mar 23 08:27:57 2011 New Revision: 219898 URL: http://svn.freebsd.org/changeset/base/219898 Log: - Move ofed modules into the i386 and amd64 specific sections to fix universe on other architectures. Modified: head/sys/modules/Makefile Modified:

svn commit: r219899 - head/sbin/dumpfs

2011-03-23 Thread Juli Mallett
Author: jmallett Date: Wed Mar 23 08:33:12 2011 New Revision: 219899 URL: http://svn.freebsd.org/changeset/base/219899 Log: Add support for displaying newfs flags for SU+J and TRIM. Modified: head/sbin/dumpfs/dumpfs.c Modified: head/sbin/dumpfs/dumpfs.c

svn commit: r219900 - head/sbin/hastd

2011-03-23 Thread Pawel Jakub Dawidek
Author: pjd Date: Wed Mar 23 11:09:04 2011 New Revision: 219900 URL: http://svn.freebsd.org/changeset/base/219900 Log: Don't create socketpair for connection forwarding between parent and secondary. Secondary doesn't need to connect anywhere. MFC after:1 week Modified:

svn commit: r219901 - head/tools/tools/ath/ath_ee_v14_print

2011-03-23 Thread Adrian Chadd
Author: adrian Date: Wed Mar 23 11:16:06 2011 New Revision: 219901 URL: http://svn.freebsd.org/changeset/base/219901 Log: Oops, fix badness i must've introduced earlier. Modified: head/tools/tools/ath/ath_ee_v14_print/ath_ee_v14_print.c Modified:

svn commit: r219902 - in head/sys: dev/ae dev/age dev/agp dev/aic7xxx dev/alc dev/ale dev/bce dev/bge dev/bwn dev/bxe dev/cxgb dev/drm dev/e1000 dev/et dev/fxp dev/iwn dev/ixgbe dev/jme dev/malo de...

2011-03-23 Thread John Baldwin
Author: jhb Date: Wed Mar 23 13:10:15 2011 New Revision: 219902 URL: http://svn.freebsd.org/changeset/base/219902 Log: Do a sweep of the tree replacing calls to pci_find_extcap() with calls to pci_find_cap() instead. Modified: head/sys/dev/ae/if_ae.c head/sys/dev/age/if_age.c

svn commit: r219903 - head/usr.sbin/bsdinstall/scripts

2011-03-23 Thread Nathan Whitehorn
Author: nwhitehorn Date: Wed Mar 23 13:43:56 2011 New Revision: 219903 URL: http://svn.freebsd.org/changeset/base/219903 Log: Mark any distfiles with no checksum entries in the manifest Skipped instead of Passed. Modified: head/usr.sbin/bsdinstall/scripts/checksum Modified:

svn commit: r219904 - head/sbin/mount_unionfs

2011-03-23 Thread Gleb Smirnoff
Author: glebius Date: Wed Mar 23 13:44:09 2011 New Revision: 219904 URL: http://svn.freebsd.org/changeset/base/219904 Log: Fix SYNOPSIS. Modified: head/sbin/mount_unionfs/mount_unionfs.8 Modified: head/sbin/mount_unionfs/mount_unionfs.8

svn commit: r219905 - head/sys/kern

2011-03-23 Thread John Baldwin
Author: jhb Date: Wed Mar 23 13:44:32 2011 New Revision: 219905 URL: http://svn.freebsd.org/changeset/base/219905 Log: Small style fix. Modified: head/sys/kern/kern_sig.c Modified: head/sys/kern/kern_sig.c == ---

Re: svn commit: r219700 - head/sys/x86/x86

2011-03-23 Thread John Baldwin
On Thursday, March 17, 2011 5:06:09 pm Jung-uk Kim wrote: On Thursday 17 March 2011 04:01 pm, Peter Jeremy wrote: On 2011-Mar-16 16:44:08 +, Jung-uk Kim j...@freebsd.org wrote: Log: Revert r219676. Thanks also. For extra kudos, how about adding a similar function to allow the

Re: svn commit: r219788 - head/release

2011-03-23 Thread John Baldwin
On Saturday, March 19, 2011 7:10:40 pm Garrett Cooper wrote: On Sat, Mar 19, 2011 at 4:06 PM, Nathan Whitehorn nwhiteh...@freebsd.org wrote: Author: nwhitehorn Date: Sat Mar 19 23:06:17 2011 New Revision: 219788 URL: http://svn.freebsd.org/changeset/base/219788 Log: Add support

Re: svn commit: r219727 - head/sys/vm

2011-03-23 Thread John Baldwin
On Friday, March 18, 2011 4:40:34 am Julian Elischer wrote: On 3/17/11 11:47 PM, Edward Tomasz Napierala wrote: Author: trasz Date: Fri Mar 18 06:47:23 2011 New Revision: 219727 URL: http://svn.freebsd.org/changeset/base/219727 Log: In vm_daemon(), when iterating over all

svn commit: r219906 - head/sys/sys

2011-03-23 Thread John Baldwin
Author: jhb Date: Wed Mar 23 13:46:17 2011 New Revision: 219906 URL: http://svn.freebsd.org/changeset/base/219906 Log: Update a comment. The kernel stopped using the S* process state constants a long time ago. Modified: head/sys/sys/proc.h Modified: head/sys/sys/proc.h

svn commit: r219920 - in head/sys: i386/include kern sys

2011-03-23 Thread Alan Cox
Author: alc Date: Wed Mar 23 16:38:29 2011 New Revision: 219920 URL: http://svn.freebsd.org/changeset/base/219920 Log: Modestly increase the maximum allowed size of the kmem map on i386. Also, express this new maximum as a fraction of the kernel's address space size rather than a constant

svn commit: r219939 - head/lib/libutil

2011-03-23 Thread Xin LI
Author: delphij Date: Wed Mar 23 22:08:01 2011 New Revision: 219939 URL: http://svn.freebsd.org/changeset/base/219939 Log: humanize_number(3) multiply the input number by 100, which could cause an integer overflow when the input is very large (for example, 100 Pi would become about 10 Ei

svn commit: r219942 - in head/sys/dev/ath: . ath_hal ath_hal/ar5416

2011-03-23 Thread Adrian Chadd
Author: adrian Date: Wed Mar 23 23:48:44 2011 New Revision: 219942 URL: http://svn.freebsd.org/changeset/base/219942 Log: Make the ar2133ForceBias() call controllable at runtime. At least one AR5416 user has reported measurable throughput drops with this option. For now, disable it and

Re: svn commit: r219939 - head/lib/libutil

2011-03-23 Thread Alexander Best
On Wed Mar 23 11, Xin LI wrote: Author: delphij Date: Wed Mar 23 22:08:01 2011 New Revision: 219939 URL: http://svn.freebsd.org/changeset/base/219939 Log: humanize_number(3) multiply the input number by 100, which could cause an integer overflow when the input is very large (for

svn commit: r219944 - head/sys/dev/cxgbe

2011-03-23 Thread Navdeep Parhar
Author: np Date: Thu Mar 24 01:03:01 2011 New Revision: 219944 URL: http://svn.freebsd.org/changeset/base/219944 Log: Do not over-allocate MSI interrupts for the case where each ingress queue has its own interrupt. If the exact number that we need is not a power of 2 and we're using MSI,

svn commit: r219945 - head/sys/dev/cxgb/common

2011-03-23 Thread Navdeep Parhar
Author: np Date: Thu Mar 24 01:13:28 2011 New Revision: 219945 URL: http://svn.freebsd.org/changeset/base/219945 Log: T3C initialization should setup the parity fence too. MFC after:1 week Modified: head/sys/dev/cxgb/common/cxgb_t3_hw.c Modified:

svn commit: r219946 - head/sys/dev/cxgb

2011-03-23 Thread Navdeep Parhar
Author: np Date: Thu Mar 24 01:16:48 2011 New Revision: 219946 URL: http://svn.freebsd.org/changeset/base/219946 Log: t3_free_sge_resources should be given the number of qsets it needs to free. MFC after:1 week Modified: head/sys/dev/cxgb/cxgb_adapter.h

Re: svn commit: r219939 - head/lib/libutil

2011-03-23 Thread Xin LI
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi, On 03/23/11 17:29, Alexander Best wrote: On Wed Mar 23 11, Xin LI wrote: Author: delphij Date: Wed Mar 23 22:08:01 2011 New Revision: 219939 URL: http://svn.freebsd.org/changeset/base/219939 Log: humanize_number(3) multiply the input

svn commit: r219948 - head/sys/dev/ath

2011-03-23 Thread Adrian Chadd
Author: adrian Date: Thu Mar 24 04:57:35 2011 New Revision: 219948 URL: http://svn.freebsd.org/changeset/base/219948 Log: Fix a completely wrong variable reference. Modified: head/sys/dev/ath/ah_osdep.c Modified: head/sys/dev/ath/ah_osdep.c