svn commit: r275875 - head/sys/net80211

2014-12-17 Thread Adrian Chadd
Author: adrian Date: Thu Dec 18 05:17:18 2014 New Revision: 275875 URL: https://svnweb.freebsd.org/changeset/base/275875 Log: Fix the scan handling for 11b->11g upgrades in a world where, well, it's not just 11b/11g. The following was happening, and it's quite .. annoyingly grr-y. *

svn commit: r275874 - head/usr.sbin/bsdinstall/distextract

2014-12-17 Thread Devin Teske
Author: dteske Date: Thu Dec 18 03:51:09 2014 New Revision: 275874 URL: https://svnweb.freebsd.org/changeset/base/275874 Log: In bsdinstall's distextract, replace mixed_gauge() of dialog(3) with new dpv(3) wrapper to dialog(3) dialog_gauge(). The dpv(3) library provides a more flexible and r

svn commit: r275873 - head/contrib/binutils/gas/config

2014-12-17 Thread Justin Hibbits
Author: jhibbits Date: Thu Dec 18 03:12:46 2014 New Revision: 275873 URL: https://svnweb.freebsd.org/changeset/base/275873 Log: Make gas parse '__tls_get_addr(foo@tlsgd)'. Corresponds to 727fc41e077139570ea8b8ddfd6c546b2a55627c. This allows us to use -no-integrated-as with clang, if we

svn commit: r275871 - head/sys/dev/malo

2014-12-17 Thread Adrian Chadd
Author: adrian Date: Wed Dec 17 21:27:27 2014 New Revision: 275871 URL: https://svnweb.freebsd.org/changeset/base/275871 Log: Update the use of bus space macros to be more correct. This was a problem on i386 PAE builds. Modified: head/sys/dev/malo/if_malo_pci.c Modified: head/sys/dev/ma

svn commit: r275870 - head/sys/dev/mwl

2014-12-17 Thread Adrian Chadd
Author: adrian Date: Wed Dec 17 21:26:25 2014 New Revision: 275870 URL: https://svnweb.freebsd.org/changeset/base/275870 Log: Use the correct macro for listing the maximum bus space size. Without this, it fails to compile on i386 PAE builds. Modified: head/sys/dev/mwl/if_mwl_pci.c Modif

Re: svn commit: r275819 - in head/lib/msun: ld128 ld80 src

2014-12-17 Thread Steve Kargl
On Wed, Dec 17, 2014 at 12:48:37PM -0800, Garrett Cooper wrote: > On Dec 17, 2014, at 11:12, Steve Kargl > wrote: > > > On Wed, Dec 17, 2014 at 04:30:32PM +0100, Ed Schouten wrote: > > ? > > >>> This comment isn't true! These functions pre-date C11 by years. > >>> See r151865. These function

Re: svn commit: r275819 - in head/lib/msun: ld128 ld80 src

2014-12-17 Thread Garrett Cooper
On Dec 17, 2014, at 11:12, Steve Kargl wrote: > On Wed, Dec 17, 2014 at 04:30:32PM +0100, Ed Schouten wrote: … >>> This comment isn't true! These functions pre-date C11 by years. >>> See r151865. These functions were designed to deal with gcc's >>> poorly implemented I. See the paragraph ab

svn commit: r275869 - head/sys/netinet

2014-12-17 Thread Michael Tuexen
Author: tuexen Date: Wed Dec 17 20:34:38 2014 New Revision: 275869 URL: https://svnweb.freebsd.org/changeset/base/275869 Log: Add a missing break. Reported by: Coverity CID: 1232014 MFC after:3 days Modified: head/sys/netinet/sctp_pcb.c Modified: head/sys/netinet/sctp_

Re: svn commit: r275819 - in head/lib/msun: ld128 ld80 src

2014-12-17 Thread Steve Kargl
On Wed, Dec 17, 2014 at 02:15:48PM -0600, Mark Linimon wrote: > On Wed, Dec 17, 2014 at 11:12:35AM -0800, Steve Kargl wrote: > > > I'm always afraid of statements like these, as they can be brought to > > > the table to prevent any changes from being made. The fact that > > > someone else (be it An

svn commit: r275868 - head/sys/netinet6

2014-12-17 Thread Michael Tuexen
Author: tuexen Date: Wed Dec 17 20:19:57 2014 New Revision: 275868 URL: https://svnweb.freebsd.org/changeset/base/275868 Log: Plug a memory leak in an error code path. Reported by: Coverity CID: 1018936 MFC after:3 days Modified: head/sys/netinet6/sctp6_usrreq.c Modifi

Re: svn commit: r275819 - in head/lib/msun: ld128 ld80 src

2014-12-17 Thread Mark Linimon
On Wed, Dec 17, 2014 at 11:12:35AM -0800, Steve Kargl wrote: > > I'm always afraid of statements like these, as they can be brought to > > the table to prevent any changes from being made. The fact that > > someone else (be it Android or openlibm) uses our code should not > > limit us as a project

svn commit: r275867 - head

2014-12-17 Thread Garrett Cooper
Author: ngie Date: Wed Dec 17 20:02:07 2014 New Revision: 275867 URL: https://svnweb.freebsd.org/changeset/base/275867 Log: Fix sporadic build failures due to race when running make installworld when strip gets replaced at install time by adding it to ITOOLS for the default usr.bin/xinstall

svn commit: r275866 - in head/gnu/usr.bin/groff: . src src/devices src/libs src/preproc src/roff src/utils

2014-12-17 Thread Garrett Cooper
Author: ngie Date: Wed Dec 17 19:46:12 2014 New Revision: 275866 URL: https://svnweb.freebsd.org/changeset/base/275866 Log: Parallelize building gnu/usr.bin/groff This speeds up building the directory from the bootstrap-tools stage in buildworld as well as building from the subdirectory

Re: svn commit: r275819 - in head/lib/msun: ld128 ld80 src

2014-12-17 Thread Adrian Chadd
On 17 December 2014 at 07:30, Ed Schouten wrote: > Steve, > > 2014-12-16 17:20 GMT+01:00 Steve Kargl : >> This seems like a lot of code churn for very little benefit. >> >> In particular, I know that the one person working on fixing >> problems with FreeBSD's libm has a private repo and the openli

Re: svn commit: r275819 - in head/lib/msun: ld128 ld80 src

2014-12-17 Thread Steve Kargl
On Wed, Dec 17, 2014 at 04:30:32PM +0100, Ed Schouten wrote: > Steve, > > 2014-12-16 17:20 GMT+01:00 Steve Kargl : > > This seems like a lot of code churn for very little benefit. > > > > In particular, I know that the one person working on fixing > > problems with FreeBSD's libm has a private rep

svn commit: r275865 - in head: sys/cam/ctl usr.sbin/ctladm

2014-12-17 Thread Alexander Motin
Author: mav Date: Wed Dec 17 17:30:54 2014 New Revision: 275865 URL: https://svnweb.freebsd.org/changeset/base/275865 Log: Add configuration options to override physical and UNMAP blocks geometry. While in most cases CTL should correctly fetch those values from backing storages, there are

Re: svn commit: r275819 - in head/lib/msun: ld128 ld80 src

2014-12-17 Thread Ed Schouten
Steve, 2014-12-16 17:20 GMT+01:00 Steve Kargl : > This seems like a lot of code churn for very little benefit. > > In particular, I know that the one person working on fixing > problems with FreeBSD's libm has a private repo and the openlibm > and android developers base their libm off of FreeBSD'

svn commit: r275864 - in head: sys/cam/ctl sys/dev/iscsi usr.sbin/ctld usr.sbin/iscsid

2014-12-17 Thread Alexander Motin
Author: mav Date: Wed Dec 17 15:13:21 2014 New Revision: 275864 URL: https://svnweb.freebsd.org/changeset/base/275864 Log: Make sequence numbers checks more strict. While we don't support MCS, hole in received sequence numbers may mean only PDU loss. While we don't support lost PDU recov

svn commit: r275862 - head/contrib/elftoolchain/elfcopy

2014-12-17 Thread Ed Maste
Author: emaste Date: Wed Dec 17 14:46:21 2014 New Revision: 275862 URL: https://svnweb.freebsd.org/changeset/base/275862 Log: Do not strip all when stripping an explicit symbol When requested to strip specific symbols (-N flag) the default should be to strip nothing (other than the reques

Re: svn commit: r275858 - head/sys/mips/beri

2014-12-17 Thread Ruslan Bukin
On Wed, Dec 17, 2014 at 05:51:14AM -0700, Ian Lepore wrote: > > Modified: head/sys/mips/beri/beri_machdep.c > > == > > --- head/sys/mips/beri/beri_machdep.c Wed Dec 17 07:47:25 2014 > > (r275857) > > +++ head/

Re: svn commit: r275858 - head/sys/mips/beri

2014-12-17 Thread Ian Lepore
On Wed, 2014-12-17 at 09:34 +, Ruslan Bukin wrote: > Author: br > Date: Wed Dec 17 09:34:54 2014 > New Revision: 275858 > URL: https://svnweb.freebsd.org/changeset/base/275858 > > Log: > Use memory regions information provided in FDT. > > Reviewed by:brooks > Sponsored by:

svn commit: r275861 - in head/sys: boot/fdt/dts/mips mips/beri mips/conf

2014-12-17 Thread Ruslan Bukin
Author: br Date: Wed Dec 17 11:36:31 2014 New Revision: 275861 URL: https://svnweb.freebsd.org/changeset/base/275861 Log: Add configuration files for BERI soft-core synthesized on Terasic SoCKit board (Altera FPGA). Use virtio block as root filesystem device. Sponsored by: DARPA, AFR

svn commit: r275860 - head/sys/boot/fdt/dts/mips

2014-12-17 Thread Ruslan Bukin
Author: br Date: Wed Dec 17 11:05:44 2014 New Revision: 275860 URL: https://svnweb.freebsd.org/changeset/base/275860 Log: Move memory node to the root, so fdt_get_mem_regions() can find it. Modified: head/sys/boot/fdt/dts/mips/beri-netfpga.dts head/sys/boot/fdt/dts/mips/beri-sim.dts head/

svn commit: r275859 - head/sys/boot/fdt/dts/arm

2014-12-17 Thread Ruslan Bukin
Author: br Date: Wed Dec 17 10:48:53 2014 New Revision: 275859 URL: https://svnweb.freebsd.org/changeset/base/275859 Log: o Add PIO[2,3] devices information o Enable Virtio Block Modified: head/sys/boot/fdt/dts/arm/socfpga-sockit-beri.dts Modified: head/sys/boot/fdt/dts/arm/socfpga-sockit-

svn commit: r275858 - head/sys/mips/beri

2014-12-17 Thread Ruslan Bukin
Author: br Date: Wed Dec 17 09:34:54 2014 New Revision: 275858 URL: https://svnweb.freebsd.org/changeset/base/275858 Log: Use memory regions information provided in FDT. Reviewed by: brooks Sponsored by: DARPA, AFRL Modified: head/sys/mips/beri/beri_machdep.c Modified: head/sys/mips/