Re: svn commit: r223854 - head/lib/libstand

2011-07-08 Thread Craig Rodrigues
Hi, While not ideal, would it be possible consider setting WARNS to set different levels depending on what the value of ${MACHINE_ARCH} is? Something like: .if ${MACHINE_ARCH} != "sparc64" (or whatever the correct value is) WARNS ?= 0 .else WARNS ?= 2 .endif This would at least be an attempt t

svn commit: r223862 - in head/sys: net netinet netinet6

2011-07-08 Thread Marko Zec
Author: zec Date: Fri Jul 8 09:38:33 2011 New Revision: 223862 URL: http://svn.freebsd.org/changeset/base/223862 Log: Permit ARP to proceed for IPv4 host routes for which the gateway is the same as the host address. This already works fine for INET6 and ND6. While here, remove two funct

Re: svn commit: r223862 - in head/sys: net netinet netinet6

2011-07-08 Thread Andre Oppermann
On 08.07.2011 11:38, Marko Zec wrote: Author: zec Date: Fri Jul 8 09:38:33 2011 New Revision: 223862 URL: http://svn.freebsd.org/changeset/base/223862 Log: Permit ARP to proceed for IPv4 host routes for which the gateway is the same as the host address. This already works fine for INET6

svn commit: r223863 - head/sys/kern

2011-07-08 Thread Andre Oppermann
Author: andre Date: Fri Jul 8 10:50:13 2011 New Revision: 223863 URL: http://svn.freebsd.org/changeset/base/223863 Log: In the experimental soreceive_stream(): o Move the non-blocking socket test below the SBS_CANTRCVMORE so that EOF is correctly returned on a remote connection close

svn commit: r223864 - in head/sys: conf dev/usb dev/usb/net modules/usb modules/usb/usie

2011-07-08 Thread Hans Petter Selasky
Author: hselasky Date: Fri Jul 8 10:58:56 2011 New Revision: 223864 URL: http://svn.freebsd.org/changeset/base/223864 Log: Add new USB 3G driver. Submitted by: PseudoCylon MFC after:14 days Added: head/sys/dev/usb/net/if_usie.c (contents, props changed) head/sys/dev/usb/net/i

Re: svn commit: r223862 - in head/sys: net netinet netinet6

2011-07-08 Thread Marko Zec
On Friday 08 July 2011 12:08:49 Andre Oppermann wrote: > On 08.07.2011 11:38, Marko Zec wrote: > > Author: zec > > Date: Fri Jul 8 09:38:33 2011 > > New Revision: 223862 > > URL: http://svn.freebsd.org/changeset/base/223862 > > > > Log: > >Permit ARP to proceed for IPv4 host routes for which t

svn commit: r223865 - head/tools/regression/kqueue

2011-07-08 Thread Jonathan Anderson
Author: jonathan Date: Fri Jul 8 12:16:30 2011 New Revision: 223865 URL: http://svn.freebsd.org/changeset/base/223865 Log: Clarify the meaning of a test. Rather than using err() if either of two failure conditions fires (which can produce spurious error messages), just use errx() if th

svn commit: r223866 - head/sys/kern

2011-07-08 Thread Jonathan Anderson
Author: jonathan Date: Fri Jul 8 12:19:25 2011 New Revision: 223866 URL: http://svn.freebsd.org/changeset/base/223866 Log: Fix the "passability" test in fdcopy(). Rather than checking to see if a descriptor is a kqueue, check to see if its fileops flags include DFLAG_PASSABLE. At th

svn commit: r223870 - head/contrib/top

2011-07-08 Thread John Baldwin
Author: jhb Date: Fri Jul 8 13:45:53 2011 New Revision: 223870 URL: http://svn.freebsd.org/changeset/base/223870 Log: Note that -a, -C, -H, -j, and -z are also toggles. PR: bin/158682 Reported by: arundel MFC after:3 days Modified: head/contrib/top/top.X Modified: he

Re: svn commit: r223648 - head/sys/dev/gem

2011-07-08 Thread Nathan Whitehorn
On 07/07/11 11:36, YongHyeon PYUN wrote: On Thu, Jul 07, 2011 at 11:26:08AM -0500, Nathan Whitehorn wrote: On 07/07/11 11:07, Marius Strobl wrote: On Thu, Jul 07, 2011 at 09:34:39AM -0500, Nathan Whitehorn wrote: This breaks one of my gem devices (chip=0x0021106b) when the controller is initia

svn commit: r223873 - in head/sys/ia64: ia64 include

2011-07-08 Thread Marcel Moolenaar
Author: marcel Date: Fri Jul 8 16:30:54 2011 New Revision: 223873 URL: http://svn.freebsd.org/changeset/base/223873 Log: Implement basic support for memory attributes. At this time we only distinguish between UC and WB memory so that we can map the page to either a region 6 address (for UC)

svn commit: r223874 - head/sys/dev/uart

2011-07-08 Thread John Baldwin
Author: jhb Date: Fri Jul 8 17:45:38 2011 New Revision: 223874 URL: http://svn.freebsd.org/changeset/base/223874 Log: Add device ID for the Davicom 56PDV PCI Modem. PR: kern/75132 Submitted by: Mike Tancsa @ Sentex (older patch against puc(4)) MFC after:1 week Modified:

svn commit: r223875 - head/sys/kern

2011-07-08 Thread Matthew D Fleming
Author: mdf Date: Fri Jul 8 20:41:07 2011 New Revision: 223875 URL: http://svn.freebsd.org/changeset/base/223875 Log: style(9) and cleanup fixes. MFC after: 1 week Modified: head/sys/kern/kern_fail.c Modified: head/sys/kern/kern_fail.c ==

svn commit: r223876 - in head: share/man/man9 sys/kern

2011-07-08 Thread Matthew D Fleming
Author: mdf Date: Fri Jul 8 20:41:12 2011 New Revision: 223876 URL: http://svn.freebsd.org/changeset/base/223876 Log: Add an option to have a fail point term only execute when run by a specified pid. This is helpful for automated testing involving a global knob that would otherwise be exec

Re: svn commit: r223854 - head/lib/libstand

2011-07-08 Thread Warner Losh
On Jul 8, 2011, at 2:25 AM, Craig Rodrigues wrote: > Hi, > > While not ideal, would it be possible consider setting WARNS to set different > levels > depending on what the value of ${MACHINE_ARCH} is? > > Something like: > > .if ${MACHINE_ARCH} != "sparc64" (or whatever the correct value is)