svn commit: r199169 - head/sys/dev/usb/input

2009-11-10 Thread Nathan Whitehorn
Author: nwhitehorn Date: Wed Nov 11 03:17:51 2009 New Revision: 199169 URL: http://svn.freebsd.org/changeset/base/199169 Log: Reduce probe priority of USB input devices to BUS_PROBE_GENERIC from BUS_PROBE_SPECIFIC. This allows device-specific drivers like atp to attach reliably. Reviewe

Re: svn commit: r199067 - in head/sys: amd64/amd64 i386/i386

2009-11-10 Thread Jun Kuriyama
At Tue, 10 Nov 2009 17:03:00 +0100, e...@80386.nl wrote: > > You can try with hw.clflush_disable="1" in loader.conf. If you can > > boot with it, I must be mistaken something (anyway its my fault). > > For some reason that switch doesn't seem to have any effect. Okay, something wrong... > Apple

svn commit: r199167 - stable/8

2009-11-10 Thread Andrew Thompson
Author: thompsa Date: Wed Nov 11 02:07:01 2009 New Revision: 199167 URL: http://svn.freebsd.org/changeset/base/199167 Log: MFC r198859 Belatedly add an UPDATING message for the usb ethernet ifnet naming in r188412. Modified: stable/8/UPDATING (contents, props changed) Modified: stab

svn commit: r199166 - stable/8/sys/dev/usb/controller

2009-11-10 Thread Andrew Thompson
Author: thompsa Date: Wed Nov 11 01:33:06 2009 New Revision: 199166 URL: http://svn.freebsd.org/changeset/base/199166 Log: MFC r199058 Integrate lost interrupts patch from the old USB stack. Some EHCI chips from VIA / ATI seem to trigger interrupts before writing back the qTD stat

svn commit: r199165 - stable/8/lib/libusb

2009-11-10 Thread Andrew Thompson
Author: thompsa Date: Wed Nov 11 01:27:58 2009 New Revision: 199165 URL: http://svn.freebsd.org/changeset/base/199165 Log: MFC r199055 - fix refcounting error during data transfer - fix a memory leak on the USB backend - fix invalid pointer computations (in one case memory outside th

svn commit: r199160 - stable/7/sys/dev/ata

2009-11-10 Thread Alexander Motin
Author: mav Date: Tue Nov 10 23:03:51 2009 New Revision: 199160 URL: http://svn.freebsd.org/changeset/base/199160 Log: MFC r198488: Report SATA speeds to CAM, to not confuse users with low numbers logged. Modified: stable/7/sys/dev/ata/atapi-cam.c Directory Properties: stable/7/sys/ (pr

svn commit: r199159 - in stable/7/sys: conf dev/ata

2009-11-10 Thread Alexander Motin
Author: mav Date: Tue Nov 10 22:56:05 2009 New Revision: 199159 URL: http://svn.freebsd.org/changeset/base/199159 Log: MFC r188740, r198486, r199050: Increase ATA command timeouts. Introduce define and kernel option ATA_REQUEST_TIMEOUT to control it. PR: kern/111023 Modified:

svn commit: r199158 - in stable/8/sys: conf dev/ata

2009-11-10 Thread Alexander Motin
Author: mav Date: Tue Nov 10 22:37:44 2009 New Revision: 199158 URL: http://svn.freebsd.org/changeset/base/199158 Log: MFC r198486, r199050: Increase ATA command timeouts. Introduce define and kernel option ATA_REQUEST_TIMEOUT to control it. PR: kern/111023 Modified: stable

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

2009-11-10 Thread Pawel Jakub Dawidek
Author: pjd Date: Tue Nov 10 22:27:33 2009 New Revision: 199157 URL: http://svn.freebsd.org/changeset/base/199157 Log: Be careful which vattr fields are set during setattr replay. Without this fix strange things can appear after unclean shutdown like files with mode set to 0. Report

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

2009-11-10 Thread Pawel Jakub Dawidek
Author: pjd Date: Tue Nov 10 22:25:46 2009 New Revision: 199156 URL: http://svn.freebsd.org/changeset/base/199156 Log: Avoid passing invalid mountpoint to getnewvnode(). Reported by: rwatson Tested by:rwatson MFC after:3 days Modified: head/sys/cddl/contrib/opensolaris/uts/c

svn commit: r199155 - head/sys/conf

2009-11-10 Thread John Baldwin
Author: jhb Date: Tue Nov 10 22:07:37 2009 New Revision: 199155 URL: http://svn.freebsd.org/changeset/base/199155 Log: Add ixgb(4) to NOTES. Approved by: jfv Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES

svn commit: r199154 - head/sys/dev/an

2009-11-10 Thread John Baldwin
Author: jhb Date: Tue Nov 10 22:04:19 2009 New Revision: 199154 URL: http://svn.freebsd.org/changeset/base/199154 Log: - Locking fixes to not do silly things like drop the lock only to call a function that immediately reacquires the lock. Also removes recursive locking. - Use the stat

svn commit: r199153 - head/sys/dev/bge

2009-11-10 Thread Pyun YongHyeon
Author: yongari Date: Tue Nov 10 20:29:20 2009 New Revision: 199153 URL: http://svn.freebsd.org/changeset/base/199153 Log: Controller does not update Tx descriptors(send BDs) after sending frames so remove unnecessary BUS_DMASYNC_PREREAD and BUS_DMASYNC_POSTREAD of bus_dmamap_sync(9). Modif

svn commit: r199152 - head/share/man/man5

2009-11-10 Thread Doug Barton
Author: dougb Date: Tue Nov 10 19:50:28 2009 New Revision: 199152 URL: http://svn.freebsd.org/changeset/base/199152 Log: s/a default/the default/ Submitted by: remko Modified: head/share/man/man5/rc.conf.5 Modified: head/share/man/man5/rc.conf.5 =

svn commit: r199151 - head/sys/dev/usb/input

2009-11-10 Thread Nathan Whitehorn
Author: nwhitehorn Date: Tue Nov 10 19:14:06 2009 New Revision: 199151 URL: http://svn.freebsd.org/changeset/base/199151 Log: Add support for the touchpads found in later models of iBook and Powerbook. Reviewed by: Rohit Grover Modified: head/sys/dev/usb/input/atp.c Modified: head/s

Re: svn commit: r199079 - head/sbin/camcontrol

2009-11-10 Thread M. Warner Losh
In message: <4af85d75.1010...@freebsd.org> Nathan Whitehorn writes: : Alexander Motin wrote: : > Author: mav : > Date: Mon Nov 9 11:39:51 2009 : > New Revision: 199079 : > URL: http://svn.freebsd.org/changeset/base/199079 : > : > Log: : > Add support for ATA Power Management. : > :

Re: svn commit: r199136 - in head/sys: kern sys

2009-11-10 Thread Marcel Moolenaar
On Nov 10, 2009, at 3:46 AM, Konstantin Belousov wrote: > Also, for ia64, due to different registers layout for those two kind of > frames, usermode sigsegfaulted when returned from signal handler. Actually, the problem was caused by sigsuspend() returning EINTR, which causes the trapframe to

Re: svn commit: r199067 - in head/sys: amd64/amd64 i386/i386

2009-11-10 Thread Ed Schouten
Hi Jun, * Jun Kuriyama wrote: > You can try with hw.clflush_disable="1" in loader.conf. If you can > boot with it, I must be mistaken something (anyway its my fault). For some reason that switch doesn't seem to have any effect. Reverting the patch makes my system boot again. > Can you show me

svn commit: r199141 - in head: tools/regression/usr.bin/pkill tools/tools/termcap usr.sbin/dumpcis

2009-11-10 Thread John Baldwin
Author: jhb Date: Tue Nov 10 14:32:09 2009 New Revision: 199141 URL: http://svn.freebsd.org/changeset/base/199141 Log: Purge some useless mergeinfo. Modified: Directory Properties: head/tools/regression/usr.bin/pkill/pgrep-_g.t (props changed) head/tools/regression/usr.bin/pkill/pgrep-_s.

Re: svn commit: r199067 - in head/sys: amd64/amd64 i386/i386

2009-11-10 Thread Rui Paulo
On 10 Nov 2009, at 06:11, Jun Kuriyama wrote: > Hmm, I think Boot Camp is not hypervisor, and should be treated as > real hardware. Correct. -- Rui Paulo ___ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To

svn commit: r199137 - head/sys/kern

2009-11-10 Thread Konstantin Belousov
Author: kib Date: Tue Nov 10 11:50:37 2009 New Revision: 199137 URL: http://svn.freebsd.org/changeset/base/199137 Log: When rename("a", "b/.") is performed, target namei() call returns dvp == vp. Rename syscall does not check for the case, and at least ufs_rename() cannot deal with it. POSIX

svn commit: r199136 - in head/sys: kern sys

2009-11-10 Thread Konstantin Belousov
Author: kib Date: Tue Nov 10 11:46:53 2009 New Revision: 199136 URL: http://svn.freebsd.org/changeset/base/199136 Log: In r198506, kern_sigsuspend() started doing cursig/postsig loop to make sure that a signal was delivered to the thread before returning from syscall. Signal delivery puts ne

svn commit: r199135 - in head/sys: amd64/amd64 arm/arm i386/i386 ia64/ia64 mips/include mips/mips powerpc/aim powerpc/booke sparc64/include sparc64/sparc64 sun4v/sun4v sys

2009-11-10 Thread Konstantin Belousov
Author: kib Date: Tue Nov 10 11:43:07 2009 New Revision: 199135 URL: http://svn.freebsd.org/changeset/base/199135 Log: Extract the code that records syscall results in the frame into MD function cpu_set_syscall_retval(). Suggested by: marcel Reviewed by: marcel, davidxu PowerPC, ARM,

Re: svn commit: r199050 - in head/sys: conf dev/ata

2009-11-10 Thread Giorgos Keramidas
On Sun, 8 Nov 2009 14:33:19 + (UTC), Alexander Motin wrote: > Author: mav > Date: Sun Nov 8 14:33:19 2009 > New Revision: 199050 > URL: http://svn.freebsd.org/changeset/base/199050 > > Log: > Introduce define and kernel option ATA_REQUEST_TIMEOUT to control ATA(4) > command timeout. > >

svn commit: r199134 - head/tools/regression/lib/libutil

2009-11-10 Thread Dag-Erling Smorgrav
Author: des Date: Tue Nov 10 10:42:48 2009 New Revision: 199134 URL: http://svn.freebsd.org/changeset/base/199134 Log: Check fork() return value Modified: head/tools/regression/lib/libutil/test-flopen.c Modified: head/tools/regression/lib/libutil/test-flopen.c ===

svn commit: r199133 - head/usr.sbin/sysinstall

2009-11-10 Thread Dag-Erling Smorgrav
Author: des Date: Tue Nov 10 10:34:44 2009 New Revision: 199133 URL: http://svn.freebsd.org/changeset/base/199133 Log: Remove a bunch of code used to detect SMP on ((i386 && !pc98) || amd64) and offer to install an SMP kernel. The way this worked was: on supported platforms, code to read AC

svn commit: r199132 - head/sys/dev/siis

2009-11-10 Thread Alexander Motin
Author: mav Date: Tue Nov 10 09:46:52 2009 New Revision: 199132 URL: http://svn.freebsd.org/changeset/base/199132 Log: MFp4: Organize device IDs and add some more of them. Modified: head/sys/dev/siis/siis.c head/sys/dev/siis/siis.h Modified: head/sys/dev/siis/siis.c =

svn commit: r199131 - in head: crypto/openssh secure/lib/libssh

2009-11-10 Thread Dag-Erling Smorgrav
Author: des Date: Tue Nov 10 09:45:43 2009 New Revision: 199131 URL: http://svn.freebsd.org/changeset/base/199131 Log: Fix globbing Noticed by: delphij, David Cornejo Forgotten by: des Modified: head/crypto/openssh/ssh_namespace.h head/secure/lib/libssh/Makefile Modified: head/cr

svn commit: r199130 - head/sbin/reboot

2009-11-10 Thread Dag-Erling Smorgrav
Author: des Date: Tue Nov 10 09:44:55 2009 New Revision: 199130 URL: http://svn.freebsd.org/changeset/base/199130 Log: More rational usage() Modified: head/sbin/reboot/reboot.c Modified: head/sbin/reboot/reboot.c ==