Re: svn commit: r224903 - head/lib/libusb

2011-08-19 Thread Sean C. Farley
On Tue, 16 Aug 2011, Hans Petter Selasky wrote: Author: hselasky Date: Tue Aug 16 08:34:16 2011 New Revision: 224903 URL: http://svn.freebsd.org/changeset/base/224903 Log: Add missing function to get device speed to the LibUSB v1.0 API. MFC after: 1 week Approved by: re (kib) Modifie

svn commit: r225018 - head/sbin/camcontrol

2011-08-19 Thread Alexander Motin
Author: mav Date: Fri Aug 19 21:33:46 2011 New Revision: 225018 URL: http://svn.freebsd.org/changeset/base/225018 Log: Fix WWN printing in `camcontrol identify` output. Approved by: re (kib) MFC after:1 week Modified: head/sbin/camcontrol/camcontrol.c Modified: head/sbin/camcontr

svn commit: r225017 - head/gnu/usr.bin/gdb/kgdb

2011-08-19 Thread John Baldwin
Author: jhb Date: Fri Aug 19 21:28:40 2011 New Revision: 225017 URL: http://svn.freebsd.org/changeset/base/225017 Log: Walk the zombproc list as well as the allproc list when enumerating threads and processes in a kernel image. This allows examination of threads that have exited or are in t

svn commit: r225015 - head/sys/dev/gem

2011-08-19 Thread Marius Strobl
Author: marius Date: Fri Aug 19 19:13:31 2011 New Revision: 225015 URL: http://svn.freebsd.org/changeset/base/225015 Log: Revert r224157, re-enabling r222135. The underlying problem keeping the latter from working as expected was fixed in r225014. MFC after:3 days Approved by: re (

svn commit: r225014 - head/sys/dev/mii

2011-08-19 Thread Marius Strobl
Author: marius Date: Fri Aug 19 19:12:58 2011 New Revision: 225014 URL: http://svn.freebsd.org/changeset/base/225014 Log: r221812 reveals that at least some Broadcom PHYs default to being not only isolated but also powered down after a reset and while they just work fine [sic] when both is t

svn commit: r225013 - head/sys/net80211

2011-08-19 Thread Adrian Chadd
Author: adrian Date: Fri Aug 19 15:21:13 2011 New Revision: 225013 URL: http://svn.freebsd.org/changeset/base/225013 Log: Correctly handle BAR TX failures. On a TX failure, ic_raw_xmit will still call ieee80211_node_free(). There's no need to call it here. Submitted by: moonlightak..

Re: svn commit: r225003 - head/sbin/geom/class/part

2011-08-19 Thread Nathan Whitehorn
On 08/19/11 05:12, Andrey V. Elsukov wrote: Author: ae Date: Fri Aug 19 10:12:02 2011 New Revision: 225003 URL: http://svn.freebsd.org/changeset/base/225003 Log: Add new section "BOOTSTRAPPING" to the gpart(8), that describes bootstrap code images used to boot from MBR, GPT, BSD and VTOC8

svn commit: r225011 - stable/8/sys/netipsec

2011-08-19 Thread VANHULLEBUS Yvan
Author: vanhu Date: Fri Aug 19 13:41:00 2011 New Revision: 225011 URL: http://svn.freebsd.org/changeset/base/225011 Log: MFC: fixed two race conditions when inserting/removing SAs via PFKey, which can both lead to a kernel panic when adding/removing quickly a lot of SAs. Obtained from

svn commit: r225009 - head/sys/dev/coretemp

2011-08-19 Thread Attilio Rao
Author: attilio Date: Fri Aug 19 13:31:48 2011 New Revision: 225009 URL: http://svn.freebsd.org/changeset/base/225009 Log: Bump the maximum coretemp limit (for CPU temperature) to 110. Several cores with temp in the range 101-105 have been found in the past. Sponsored by: Sandvine Incorpo

Re: svn commit: r204202 - head/usr.bin/netstat

2011-08-19 Thread Slawa Olhovchenkov
On Mon, Feb 22, 2010 at 03:57:36PM +, Robert Watson wrote: > Author: rwatson > Date: Mon Feb 22 15:57:36 2010 > New Revision: 204202 > URL: http://svn.freebsd.org/changeset/base/204202 > > Log: > Teach netstat(1) to print out netisr statistics when given the -Q argument. > Currently suppo

svn commit: r225007 - head/sbin/fdisk

2011-08-19 Thread Andrey V. Elsukov
Author: ae Date: Fri Aug 19 12:48:06 2011 New Revision: 225007 URL: http://svn.freebsd.org/changeset/base/225007 Log: The decimal() function was changed in r217808 to take the maximum value instead of number of bits. But for case when limitation is not needed it erroneously skips conversion

svn commit: r225006 - stable/7/release

2011-08-19 Thread Takahashi Yoshihiro
Author: nyan Date: Fri Aug 19 12:08:54 2011 New Revision: 225006 URL: http://svn.freebsd.org/changeset/base/225006 Log: MFC: revision 224780 Allow to build a release for stable/[78] on a current box and vise versa. Modified: stable/7/release/Makefile Directory Properties: stable/7/re

svn commit: r225005 - in stable/8/release: . picobsd/floppy.tree/sbin

2011-08-19 Thread Takahashi Yoshihiro
Author: nyan Date: Fri Aug 19 12:08:15 2011 New Revision: 225005 URL: http://svn.freebsd.org/changeset/base/225005 Log: MFC: revision 224780 Allow to build a release for stable/[78] on a current box and vise versa. Modified: stable/8/release/Makefile Directory Properties: stable/8/re

svn commit: r225003 - head/sbin/geom/class/part

2011-08-19 Thread Andrey V. Elsukov
Author: ae Date: Fri Aug 19 10:12:02 2011 New Revision: 225003 URL: http://svn.freebsd.org/changeset/base/225003 Log: Add new section "BOOTSTRAPPING" to the gpart(8), that describes bootstrap code images used to boot from MBR, GPT, BSD and VTOC8 schemes. Reviewed by: marius (previous v

svn commit: r225001 - stable/8/sys/netipsec

2011-08-19 Thread VANHULLEBUS Yvan
Author: vanhu Date: Fri Aug 19 09:06:00 2011 New Revision: 225001 URL: http://svn.freebsd.org/changeset/base/225001 Log: MFC: Release SP's refcount in key_get_spdbyid(). PR: 156676 Submitted by: Tobias Brunner (tob...@strongswan.org) Modified: stable/8/sys/netipsec/key.c Directory Prop

svn commit: r225000 - head/sys/dev/usb

2011-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Fri Aug 19 09:01:34 2011 New Revision: 225000 URL: http://svn.freebsd.org/changeset/base/225000 Log: Add sysctl to not reset the device on clear stall failures, to temporarily mitigate problems with VMs. Approved by:re (kib) MFC after: 1 week Modified:

svn commit: r224999 - head/sys/kern

2011-08-19 Thread Robert Watson
Author: rwatson Date: Fri Aug 19 08:29:10 2011 New Revision: 224999 URL: http://svn.freebsd.org/changeset/base/224999 Log: r222015 introduced a new assertion that the size of a fixed-length sbuf buffer is greater than 1. This triggered panics in at least one spot in the kernel (the MAC Fram