svn commit: r223718 - head/sys/sparc64/sparc64

2011-07-02 Thread Marius Strobl
Author: marius Date: Sat Jul 2 10:17:26 2011 New Revision: 223718 URL: http://svn.freebsd.org/changeset/base/223718 Log: Using .comm to declare intrnames and eintrnames causes binutils 2.17.50 to merge the two. Modified: head/sys/sparc64/sparc64/exception.S Modified:

svn commit: r223719 - in head/sys: boot/sparc64/loader sparc64/include sparc64/sparc64

2011-07-02 Thread Marius Strobl
Author: marius Date: Sat Jul 2 11:14:54 2011 New Revision: 223719 URL: http://svn.freebsd.org/changeset/base/223719 Log: - For Cheetah- and Zeus-class CPUs don't flush all unlocked entries from the TLBs in order to get rid of the user mappings but instead traverse them an flush only

svn commit: r223720 - head/sys/sparc64/sparc64

2011-07-02 Thread Marius Strobl
Author: marius Date: Sat Jul 2 11:46:23 2011 New Revision: 223720 URL: http://svn.freebsd.org/changeset/base/223720 Log: Don't waste a delay slot. Modified: head/sys/sparc64/sparc64/mp_exception.S Modified: head/sys/sparc64/sparc64/mp_exception.S

svn commit: r223721 - head/sys/sparc64/sparc64

2011-07-02 Thread Marius Strobl
Author: marius Date: Sat Jul 2 12:56:03 2011 New Revision: 223721 URL: http://svn.freebsd.org/changeset/base/223721 Log: UltraSPARC-IV CPUs seem to be affected by a not publicly documented erratum causing them to trigger stray vector interrupts accompanied by a state in which they even

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

2011-07-02 Thread Ed Schouten
Author: ed Date: Sat Jul 2 13:54:20 2011 New Revision: 223722 URL: http://svn.freebsd.org/changeset/base/223722 Log: Reintroduce the cioctl() hook in the TTY layer for digi(4). The cioctl() hook can be used by drivers to add ioctls to the *.init and *.lock devices. This commit breaks

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

2011-07-02 Thread Ben Kaduk
On Sat, Jul 2, 2011 at 9:54 AM, Ed Schouten e...@freebsd.org wrote: Author: ed Date: Sat Jul  2 13:54:20 2011 New Revision: 223722 URL: http://svn.freebsd.org/changeset/base/223722 Log:  Reintroduce the cioctl() hook in the TTY layer for digi(4).  The cioctl() hook can be used by drivers

Re: svn commit: r223505 - head/sys/kern

2011-07-02 Thread Robert Watson
On Fri, 24 Jun 2011, Sergey Kandaurov wrote: On 24 June 2011 18:40, Jonathan Anderson jonat...@freebsd.org wrote: Author: jonathan Date: Fri Jun 24 14:40:22 2011 New Revision: 223505 URL: http://svn.freebsd.org/changeset/base/223505 Log:  Tidy up a capabilities-related comment.  This comment

svn commit: r223723 - head/sys/conf

2011-07-02 Thread Jonathan Anderson
Author: jonathan Date: Sat Jul 2 15:41:22 2011 New Revision: 223723 URL: http://svn.freebsd.org/changeset/base/223723 Log: Define the CAPABILITIES kernel option. This option will enable Capsicum capabilities, which provide a fine-grained mask on operations that can be performed on file

Re: svn commit: r222980 - in head/sys: amd64/conf i386/conf

2011-07-02 Thread Ulrich Spörlein
On Sat, 11.06.2011 at 13:55:15 -0700, Doug Barton wrote: On 6/11/2011 1:02 PM, Warner Losh wrote: On Jun 11, 2011, at 12:17 PM, Doug Barton wrote: On 6/11/2011 6:07 AM, Robert Watson wrote: To me, this seems like the wrong direction. Over the last decade, we've been trying to move

Re: svn commit: r222980 - in head/sys: amd64/conf i386/conf

2011-07-02 Thread Alexander Best
On Sat Jul 2 11, Ulrich Spörlein wrote: On Sat, 11.06.2011 at 13:55:15 -0700, Doug Barton wrote: On 6/11/2011 1:02 PM, Warner Losh wrote: On Jun 11, 2011, at 12:17 PM, Doug Barton wrote: On 6/11/2011 6:07 AM, Robert Watson wrote: To me, this seems like the wrong direction. Over

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

2011-07-02 Thread Hans Petter Selasky
Author: hselasky Date: Sat Jul 2 20:58:33 2011 New Revision: 223728 URL: http://svn.freebsd.org/changeset/base/223728 Log: Fix for nomatch event for ums and ukbd drivers when uhid is loaded. MFC after:3 days Modified: head/sys/dev/usb/input/uhid.c Modified:

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

2011-07-02 Thread Peter Jeremy
On 2011-Jul-02 11:13:57 -0400, Ben Kaduk minimar...@gmail.com wrote: On Sat, Jul 2, 2011 at 9:54 AM, Ed Schouten e...@freebsd.org wrote:  Reintroduce the cioctl() hook in the TTY layer for digi(4). Thanks Ed.  The cioctl() hook can be used by drivers to add ioctls to the *.init and  *.lock

svn commit: r223729 - head/sys/vm

2011-07-02 Thread Alan Cox
Author: alc Date: Sat Jul 2 23:34:47 2011 New Revision: 223729 URL: http://svn.freebsd.org/changeset/base/223729 Log: Initialize marker pages as held rather than fictitious/wired. Marking the page as held is more useful as a safety precaution in case someone forgets to check for

svn commit: r223732 - in head/sys: amd64/amd64 i386/i386 i386/xen ia64/ia64 mips/mips

2011-07-02 Thread Alan Cox
Author: alc Date: Sat Jul 2 23:42:04 2011 New Revision: 223732 URL: http://svn.freebsd.org/changeset/base/223732 Log: When iterating over a paging queue, explicitly check for PG_MARKER, instead of relying on zeroed memory being interpreted as an empty PV list. Reviewed by: kib