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

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Tue Oct 18 03:32:18 2011 New Revision: 226491 URL: http://svn.freebsd.org/changeset/base/226491 Log: Add in a currently-disabled WAR for PCI NICs. Some earlier series (~AR5212?) play badly with BIOSes. In these instances, they may require a forced reset (by transit

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

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Tue Oct 18 03:24:17 2011 New Revision: 226490 URL: http://svn.freebsd.org/changeset/base/226490 Log: Add a WAR from the reference code - clear the PCI error status upon detach. Obtained from:Atheros Modified: head/sys/dev/ath/if_ath_pci.c Modified: head/sy

svn commit: r226489 - head/sys/dev/ath/ath_hal/ar5212

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Tue Oct 18 03:17:06 2011 New Revision: 226489 URL: http://svn.freebsd.org/changeset/base/226489 Log: Port over some missing code from the ar5212 reference driver reset path. The final missing bit here is enabling the PCI configuration register read, but there's curren

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

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Tue Oct 18 03:01:41 2011 New Revision: 226488 URL: http://svn.freebsd.org/changeset/base/226488 Log: Implement the first part of the BB read workaround. The AR5008/AR9001 series NICs have a bug where BB register reads will occasionally be corrupted. This could cause i

svn commit: r226487 - head/sys/dev/ath/ath_hal

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Tue Oct 18 02:46:26 2011 New Revision: 226487 URL: http://svn.freebsd.org/changeset/base/226487 Log: Add in OS_REG_BIT_SET, a macro which does what it says it does. This will be used in an upcoming commit to the ar5212 HAL. Modified: head/sys/dev/ath/ath_hal/ah_inter

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

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Tue Oct 18 02:43:59 2011 New Revision: 226486 URL: http://svn.freebsd.org/changeset/base/226486 Log: Include opt_ah.h when compiling the driver. There are HAL methods which are actually direct register access, rather than simply HAL calls. Because of this, these reg

Re: svn commit: r226475 - head/lib/clang

2011-10-17 Thread Nali Toja
Dimitry Andric writes: > Log: > Update llvm/clang's target triple (confusingly named LLVM_HOSTTRIPLE) to > $arch-unknown-freebsd10.0. > > Modified: > head/lib/clang/clang.build.mk > > Modified: head/lib/clang/clang.build.mk > =

svn commit: r226483 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2011-10-17 Thread Xin LI
Author: delphij Date: Mon Oct 17 22:23:27 2011 New Revision: 226483 URL: http://svn.freebsd.org/changeset/base/226483 Log: Fix a bug in sa_find_sizes() which could lead to panic: When calculating space needed for SA_BONUS buffers, hdrsize is always rounded up to next 8-aligned boundary.

svn commit: r226482 - head/usr.sbin/makefs

2011-10-17 Thread Eitan Adler
Author: eadler (ports committer) Date: Mon Oct 17 21:31:03 2011 New Revision: 226482 URL: http://svn.freebsd.org/changeset/base/226482 Log: - remove device keyword from makefs manpage PR: docs/144408 Submitted by: gcooper Approved by: gjb Approved by: sahil (mentor) MFC

svn commit: r226481 - head/sys/dev/et

2011-10-17 Thread Pyun YongHyeon
Author: yongari Date: Mon Oct 17 20:03:38 2011 New Revision: 226481 URL: http://svn.freebsd.org/changeset/base/226481 Log: Make sure to report media change status to caller. Previously it always reported success. Modified: head/sys/dev/et/if_et.c Modified: head/sys/dev/et/if_et.c =

svn commit: r226480 - head/sys/dev/et

2011-10-17 Thread Pyun YongHyeon
Author: yongari Date: Mon Oct 17 19:58:34 2011 New Revision: 226480 URL: http://svn.freebsd.org/changeset/base/226480 Log: Add missing driver lock in media status handler. Modified: head/sys/dev/et/if_et.c Modified: head/sys/dev/et/if_et.c

svn commit: r226479 - head/sys/dev/usb/net

2011-10-17 Thread Pyun YongHyeon
Author: yongari Date: Mon Oct 17 19:51:38 2011 New Revision: 226479 URL: http://svn.freebsd.org/changeset/base/226479 Log: Close a race where SIOCGIFMEDIA ioctl get inconsistent link status. Because driver is accessing a common MII structure in mii_pollstat(), updating user supplied structur

svn commit: r226478 - in head/sys: dev/age dev/alc dev/ale dev/lge dev/msk dev/nfe dev/nge dev/nve dev/re dev/sge dev/sis dev/vge dev/vr dev/vte mips/atheros mips/idt pci

2011-10-17 Thread Pyun YongHyeon
Author: yongari Date: Mon Oct 17 19:49:00 2011 New Revision: 226478 URL: http://svn.freebsd.org/changeset/base/226478 Log: Close a race where SIOCGIFMEDIA ioctl get inconsistent link status. Because driver is accessing a common MII structure in mii_pollstat(), updating user supplied structur

svn commit: r226477 - head/sys/sys

2011-10-17 Thread Ed Schouten
Author: ed Date: Mon Oct 17 19:40:26 2011 New Revision: 226477 URL: http://svn.freebsd.org/changeset/base/226477 Log: Fix whitespace. Modified: head/sys/sys/conf.h Modified: head/sys/sys/conf.h == --- head/sys/sys/co

svn commit: r226476 - head/sys/dev/tws

2011-10-17 Thread Xin LI
Author: delphij Date: Mon Oct 17 19:21:42 2011 New Revision: 226476 URL: http://svn.freebsd.org/changeset/base/226476 Log: Return BUS_PROBE_DEFAULT instead of 0 (BUS_PROBE_SPECIFIC), allowing vendor provided driver to override in kernel driver. MFC after:3 days Modified: head/sys/d

svn commit: r226475 - head/lib/clang

2011-10-17 Thread Dimitry Andric
Author: dim Date: Mon Oct 17 18:30:18 2011 New Revision: 226475 URL: http://svn.freebsd.org/changeset/base/226475 Log: Update llvm/clang's target triple (confusingly named LLVM_HOSTTRIPLE) to $arch-unknown-freebsd10.0. Modified: head/lib/clang/clang.build.mk Modified: head/lib/clang/clang.

Re: svn commit: r226436 - in head: . gnu/usr.bin/binutils/objcopy gnu/usr.bin/binutils/strip lib/libc/gen lib/libelf lib/libipsec lib/libpmc lib/msun/man libexec/rtld-elf/amd64 libexec/rtld-elf/i386 s

2011-10-17 Thread John Baldwin
On Sunday, October 16, 2011 10:30:29 am Eitan Adler wrote: > Author: eadler (ports committer) > Date: Sun Oct 16 14:30:28 2011 > New Revision: 226436 > URL: http://svn.freebsd.org/changeset/base/226436 > > Log: > - change "is is" to "is" or "it is" > - change "the the" to "the" > > Approv

Re: svn commit: r226470 - head/etc/periodic/daily

2011-10-17 Thread Doug Barton
On 10/17/2011 07:33, Stefan Esser wrote: > Author: se > Date: Mon Oct 17 14:33:41 2011 > New Revision: 226470 > URL: http://svn.freebsd.org/changeset/base/226470 > > Log: > Fix error message in case the backup storage directory does not exist and > cannot be created ($daily_backup_pkgdb_dbdir

svn commit: r226474 - head/usr.sbin/usbdump

2011-10-17 Thread Hans Petter Selasky
Author: hselasky Date: Mon Oct 17 15:54:20 2011 New Revision: 226474 URL: http://svn.freebsd.org/changeset/base/226474 Log: Make the usbdump utility work again by using the correct BPF structures. MFC after:3 days Modified: head/usr.sbin/usbdump/usbdump.c Modified: head/usr.sbin/usb

svn commit: r226471 - head/etc/defaults

2011-10-17 Thread Stefan Esser
Author: se Date: Mon Oct 17 14:37:24 2011 New Revision: 226471 URL: http://svn.freebsd.org/changeset/base/226471 Log: Add missing default values for daily/800.scrub-zfs for documentation purposes. No functional change, since all parameters are set to their default values. MFC after:1 w

svn commit: r226470 - head/etc/periodic/daily

2011-10-17 Thread Stefan Esser
Author: se Date: Mon Oct 17 14:33:41 2011 New Revision: 226470 URL: http://svn.freebsd.org/changeset/base/226470 Log: Fix error message in case the backup storage directory does not exist and cannot be created ($daily_backup_pkgdb_dbdir -> $daily_backup_pkgdb_dir). MFC after:1 week Modi

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

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Mon Oct 17 14:17:37 2011 New Revision: 226469 URL: http://svn.freebsd.org/changeset/base/226469 Log: Don't enable the PHY radar errors in calcrxfilter. That way the radar errors aren't enabled prematurely. A DFS tester has reported that radar events are reported dur

svn commit: r226468 - head/usr.bin/look

2011-10-17 Thread Ed Schouten
Author: ed Date: Mon Oct 17 13:54:55 2011 New Revision: 226468 URL: http://svn.freebsd.org/changeset/base/226468 Log: Sort header file names. Spotted by: des Modified: head/usr.bin/look/look.c Modified: head/usr.bin/look/look.c =

svn commit: r226467 - head/sys/dev/usb/wlan

2011-10-17 Thread Bjoern A. Zeeb
Author: bz Date: Mon Oct 17 13:51:00 2011 New Revision: 226467 URL: http://svn.freebsd.org/changeset/base/226467 Log: Fix build after r226465. Cast void * to char * for arithmetics and make function return "no error". MFC after:3 days Modified: head/sys/dev/usb/wlan/if_rum.c Modif

svn commit: r226466 - head/sys/dev/ofw

2011-10-17 Thread Jayachandran C.
Author: jchandra Date: Mon Oct 17 13:44:33 2011 New Revision: 226466 URL: http://svn.freebsd.org/changeset/base/226466 Log: FDT changes for 64 bit kernel Use the offset into the device tree from fdtp as the phandle instead of using pointer into the device tree. This will make sure that t

Re: svn commit: r226465 - head/sys/dev/usb/wlan

2011-10-17 Thread Bjoern A. Zeeb
On 17. Oct 2011, at 13:12 , Adrian Chadd wrote: > Author: adrian > Date: Mon Oct 17 13:12:47 2011 > New Revision: 226465 > URL: http://svn.freebsd.org/changeset/base/226465 > > Log: > Fix an issue with 11g beacon frames which looks to be a limitation > on the largest multi-write size. > Does

svn commit: r226465 - head/sys/dev/usb/wlan

2011-10-17 Thread Adrian Chadd
Author: adrian Date: Mon Oct 17 13:12:47 2011 New Revision: 226465 URL: http://svn.freebsd.org/changeset/base/226465 Log: Fix an issue with 11g beacon frames which looks to be a limitation on the largest multi-write size. From the submitter: == I looked further into the magic 88-by

svn commit: r226464 - head/etc/rc.d

2011-10-17 Thread Dag-Erling Smorgrav
Author: des Date: Mon Oct 17 13:05:57 2011 New Revision: 226464 URL: http://svn.freebsd.org/changeset/base/226464 Log: The rc_force test was inverted in the previous commit, so that dhclient ran for interfaces which were not configured for DHCP *unless* rc_force was set; the correct logic is

svn commit: r226463 - head/sbin/hastd

2011-10-17 Thread Pawel Jakub Dawidek
Author: pjd Date: Mon Oct 17 12:22:09 2011 New Revision: 226463 URL: http://svn.freebsd.org/changeset/base/226463 Log: Allow to specify pidfile in HAST configuration file. MFC after:1 week Modified: head/sbin/hastd/hast.conf.5 head/sbin/hastd/hast.h head/sbin/hastd/hastd.c head

svn commit: r226462 - head/sbin/hastd

2011-10-17 Thread Pawel Jakub Dawidek
Author: pjd Date: Mon Oct 17 09:59:04 2011 New Revision: 226462 URL: http://svn.freebsd.org/changeset/base/226462 Log: Remove redundant space. MFC after:1 week Modified: head/sbin/hastd/hast.h Modified: head/sbin/hastd/hast.h =

svn commit: r226461 - head/sbin/hastd

2011-10-17 Thread Pawel Jakub Dawidek
Author: pjd Date: Mon Oct 17 09:54:07 2011 New Revision: 226461 URL: http://svn.freebsd.org/changeset/base/226461 Log: When path to the configuration file is relative, obtain full path, so we can always find the file, even after daemonizing and changing working directory to /. MFC after