svn commit: r212284 - head/sys/mips/mips

2010-09-07 Thread Jayachandran C.
Author: jchandra Date: Tue Sep 7 06:02:43 2010 New Revision: 212284 URL: http://svn.freebsd.org/changeset/base/212284 Log: Whitespace fixes - indent with tabs instead of spaces. Few other style(9) changes. Modified: head/sys/mips/mips/busdma_machdep.c Modified:

Re: svn commit: r212177 - in head/sys: amd64/include i386/include

2010-09-07 Thread Bruce Evans
On Fri, 3 Sep 2010, Roman Divacky wrote: Log: Change the parameter passed to the inline assembly to u_short as we are dealing with 16bit segment registers. Change mov to movw. u_ints were used intentionally to avoid operand size prefixes here and extra code for promotions in callers.

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

2010-09-07 Thread Kostik Belousov
On Tue, Sep 07, 2010 at 12:23:45AM +, Ryan Stone wrote: Author: rstone Date: Tue Sep 7 00:23:45 2010 New Revision: 212281 URL: http://svn.freebsd.org/changeset/base/212281 Log: In munmap() downgrade the vm_map_lock to a read lock before taking a read lock on the pmc-sx lock.

svn commit: r212292 - head/sys/x86/pci

2010-09-07 Thread John Baldwin
Author: jhb Date: Tue Sep 7 13:50:02 2010 New Revision: 212292 URL: http://svn.freebsd.org/changeset/base/212292 Log: Each processor socket in a QPI system has a special PCI bus for the uncore devices (such as the memory controller) in that socket. Stop hardcoding support for two busses,

svn commit: r212293 - in head/sys: fs/nfsclient nfsclient

2010-09-07 Thread John Baldwin
Author: jhb Date: Tue Sep 7 14:29:45 2010 New Revision: 212293 URL: http://svn.freebsd.org/changeset/base/212293 Log: Store the full timestamp when caching timestamps of files and directories for purposes of validating name cache entries. This closes races where two updates to a file or

svn commit: r212296 - head/usr.sbin/bluetooth/bthidcontrol

2010-09-07 Thread Maksim Yevmenkin
Author: emax Date: Tue Sep 7 16:36:03 2010 New Revision: 212296 URL: http://svn.freebsd.org/changeset/base/212296 Log: Do not request SDP attributes using ranges. Apparently some devices do not like it. MFC after:1 week Tested by:Buganini buganini at gmail dot com Modified:

Re: svn commit: r212254 - head/release/doc/share/misc

2010-09-07 Thread Pyun YongHyeon
On Mon, Sep 06, 2010 at 11:02:50AM +, Christian Brueffer wrote: Author: brueffer Date: Mon Sep 6 11:02:50 2010 New Revision: 212254 URL: http://svn.freebsd.org/changeset/base/212254 Log: sis(4) should work on all architectures now. Thanks a lot!

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

2010-09-07 Thread Pyun YongHyeon
Author: yongari Date: Tue Sep 7 18:29:29 2010 New Revision: 212302 URL: http://svn.freebsd.org/changeset/base/212302 Log: Make sure to create DMA'able memory for statistics block. This was missed in r212061 and it caused crashes for 570x controllers as controller DMAed statistics to

Re: svn commit: r212061 - head/sys/dev/bge

2010-09-07 Thread Pyun YongHyeon
On Fri, Sep 03, 2010 at 11:27:14PM -0700, Pyun YongHyeon wrote: On Fri, Sep 3, 2010 at 9:29 PM, Alexander Kabaev kab...@gmail.com wrote: On Tue, 31 Aug 2010 17:33:48 + (UTC) Pyun YongHyeon yong...@freebsd.org wrote: Author: yongari Date: Tue Aug 31 17:33:48 2010 New Revision:

svn commit: r212303 - head/sys/dev/e1000

2010-09-07 Thread Jack F Vogel
Author: jfv Date: Tue Sep 7 20:13:08 2010 New Revision: 212303 URL: http://svn.freebsd.org/changeset/base/212303 Log: Tighten up the rx mbuf refresh code, there were some discrepencies from the igb version which was the target. Change the message when neither MSI or MSIX are enabled

svn commit: r212304 - head/sys/dev/e1000

2010-09-07 Thread Jack F Vogel
Author: jfv Date: Tue Sep 7 21:28:45 2010 New Revision: 212304 URL: http://svn.freebsd.org/changeset/base/212304 Log: Code correction in refresh_mbufs, just continuing without index recalc was wrong. Modified: head/sys/dev/e1000/if_em.c Modified: head/sys/dev/e1000/if_em.c

Re: svn commit: r212251 - head/sys/dev/acpi_support

2010-09-07 Thread Jung-uk Kim
On Monday 06 September 2010 11:28 am, John Baldwin wrote: On Monday 06 September 2010 03:34:32 am Andriy Gapon wrote: Author: avg Date: Mon Sep 6 07:34:32 2010 New Revision: 212251 URL: http://svn.freebsd.org/changeset/base/212251 Log: acpi_hp: fix bus attachment code - add

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

2010-09-07 Thread Pyun YongHyeon
Author: yongari Date: Tue Sep 7 23:08:38 2010 New Revision: 212307 URL: http://svn.freebsd.org/changeset/base/212307 Log: Consistently use tab characters instead of tab + space characters. No functional changes. Modified: head/sys/dev/mii/brgphy.c head/sys/dev/mii/brgphyreg.h Modified:

svn commit: r212312 - head/lib/libthr/thread

2010-09-07 Thread David Xu
Author: davidxu Date: Wed Sep 8 02:18:20 2010 New Revision: 212312 URL: http://svn.freebsd.org/changeset/base/212312 Log: To avoid possible race condition, SIGCANCEL is always sent except the thread is dead. Modified: head/lib/libthr/thread/thr_cancel.c Modified: