svn commit: r295098 - head/sys/kern

2016-01-31 Thread Andrew Turner
Author: andrew Date: Sun Jan 31 17:32:20 2016 New Revision: 295098 URL: https://svnweb.freebsd.org/changeset/base/295098 Log: Fix the logic in the ddb command 'show ktr /a'. Prior to r118269 it would print until cncheckc returned a non -1, i.e. a character had been entered. After this

svn commit: r295099 - head

2016-01-31 Thread Ian Lepore
Author: ian Date: Sun Jan 31 17:32:58 2016 New Revision: 295099 URL: https://svnweb.freebsd.org/changeset/base/295099 Log: Add make universe targets "kernels" and "worlds". "make kernels" is now shorthand for "make universe -DMAKE_JUST_KERNELS" "make worlds" is now shorthand for "make

svn commit: r295102 - head/usr.sbin/bsdconfig/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Sun Jan 31 21:28:41 2016 New Revision: 295102 URL: https://svnweb.freebsd.org/changeset/base/295102 Log: Optimize f_substr() to use built-ins only Change f_snprintf() to use optimzed f_substr() Modified: head/usr.sbin/bsdconfig/share/strings.subr Modified:

svn commit: r295103 - head/usr.sbin/bsdconfig/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Sun Jan 31 21:30:02 2016 New Revision: 295103 URL: https://svnweb.freebsd.org/changeset/base/295103 Log: Move f_sprintf() above f_snprintf() Ordering functions by appearance of use Modified: head/usr.sbin/bsdconfig/share/strings.subr Modified:

svn commit: r295105 - head/usr.sbin/bsdconfig/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Sun Jan 31 21:33:24 2016 New Revision: 295105 URL: https://svnweb.freebsd.org/changeset/base/295105 Log: Move f_isinteger() to the top Grouping builtins-only algos together Modified: head/usr.sbin/bsdconfig/share/strings.subr Modified:

svn commit: r295101 - head/usr.sbin/bsdconfig/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Sun Jan 31 21:22:10 2016 New Revision: 295101 URL: https://svnweb.freebsd.org/changeset/base/295101 Log: Optimize f_sprintf() for bash bash lacks the ksh93 optimization that makes sub-shells fast if they do not alter io. bash 3.1-alpha1 introduced printf -v

svn commit: r295097 - head/sys/arm/arm

2016-01-31 Thread Michal Meloun
Author: mmel Date: Sun Jan 31 16:55:52 2016 New Revision: 295097 URL: https://svnweb.freebsd.org/changeset/base/295097 Log: ARM: Fix END() symbol for cpu_ident function. I forgot to rename it in r295096. Modified: head/sys/arm/arm/cpufunc_asm.S Modified: head/sys/arm/arm/cpufunc_asm.S

svn commit: r295106 - head/usr.sbin/bsdconfig/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Sun Jan 31 21:34:25 2016 New Revision: 295106 URL: https://svnweb.freebsd.org/changeset/base/295106 Log: Move awk(1)-dependent recipes to the bottom Modified: head/usr.sbin/bsdconfig/share/strings.subr Modified: head/usr.sbin/bsdconfig/share/strings.subr

Re: svn commit: r295099 - head

2016-01-31 Thread Steven Hartland
Nice addition Ian, could we get information on this added to build(7) please? Regards Steve On 31/01/2016 17:32, Ian Lepore wrote: Author: ian Date: Sun Jan 31 17:32:58 2016 New Revision: 295099 URL: https://svnweb.freebsd.org/changeset/base/295099 Log: Add make universe targets

svn commit: r295100 - head/usr.sbin/bsdconfig/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Sun Jan 31 21:14:31 2016 New Revision: 295100 URL: https://svnweb.freebsd.org/changeset/base/295100 Log: Reset OPTIND to 1 in f_device_find() Modified: head/usr.sbin/bsdconfig/share/device.subr Modified: head/usr.sbin/bsdconfig/share/device.subr

svn commit: r295104 - head/usr.sbin/bsdconfig/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Sun Jan 31 21:31:24 2016 New Revision: 295104 URL: https://svnweb.freebsd.org/changeset/base/295104 Log: Move f_vsprintf() below f_sprintf() Variable argument versions grouped with standard versions Modified: head/usr.sbin/bsdconfig/share/strings.subr Modified:

Re: svn commit: r295113 - head/sys/dev/mps

2016-01-31 Thread Marcelo Araujo
Forgotten to add the review: https://reviews.freebsd.org/D5110 Best, 2016-02-01 10:31 GMT+08:00 Marcelo Araujo : > Author: araujo > Date: Mon Feb 1 02:31:59 2016 > New Revision: 295113 > URL: https://svnweb.freebsd.org/changeset/base/295113 > > Log: > Clean up

svn commit: r295114 - head/sys/cam/scsi

2016-01-31 Thread Marcelo Araujo
Author: araujo Date: Mon Feb 1 02:33:58 2016 New Revision: 295114 URL: https://svnweb.freebsd.org/changeset/base/295114 Log: Clean up unused-but-set-variable spotted by gcc-4.9. Reviewed by: mav Approved by: rodrigc (mentor) MFC after:2 weeks Sponsored by: gandi.net

svn commit: r295119 - head/sbin/rcorder

2016-01-31 Thread Garrett Cooper
Author: ngie Date: Mon Feb 1 07:15:31 2016 New Revision: 295119 URL: https://svnweb.freebsd.org/changeset/base/295119 Log: Remove `r_tmp` to fix a -Wunused-but-set-variable warning with gcc 4.9 MFC after: 1 month Sponsored by: EMC / Isilon Storage Division Modified:

svn commit: r295117 - head/tests/sys/geom/class/gate

2016-01-31 Thread Garrett Cooper
Author: ngie Date: Mon Feb 1 06:27:59 2016 New Revision: 295117 URL: https://svnweb.freebsd.org/changeset/base/295117 Log: Use the pidfile support added to ggated(8) in r294973 to ensure that the ggated(8) daemon used by the tests is the instance specifically invoked by the tests instead

svn commit: r295116 - head/tests/sys/geom/class/gate

2016-01-31 Thread Garrett Cooper
Author: ngie Date: Mon Feb 1 06:25:16 2016 New Revision: 295116 URL: https://svnweb.freebsd.org/changeset/base/295116 Log: Add an additional 1 second sleep to after calling ggatec before calling dd to defeat a race when writing out to the geom_gate(4) device This will quell the Jenkins

svn commit: r295118 - head/contrib/smbfs/smbutil

2016-01-31 Thread Garrett Cooper
Author: ngie Date: Mon Feb 1 07:09:08 2016 New Revision: 295118 URL: https://svnweb.freebsd.org/changeset/base/295118 Log: Add #include to mute warning from clang/gcc about implicitly declaring strcmp(3) MFC after: 1 month Reported by: Jenkins Sponsored by: EMC / Isilon Storage

svn commit: r295108 - in head/usr.sbin/bsdconfig: . networking/share

2016-01-31 Thread Devin Teske
Author: dteske Date: Mon Feb 1 00:54:26 2016 New Revision: 295108 URL: https://svnweb.freebsd.org/changeset/base/295108 Log: Utilize new `-v var_to_set' of f_snprintf() Modified: head/usr.sbin/bsdconfig/bsdconfig head/usr.sbin/bsdconfig/networking/share/media.subr

svn commit: r295112 - head/sys/powerpc/powerpc

2016-01-31 Thread Justin Hibbits
Author: jhibbits Date: Mon Feb 1 02:04:40 2016 New Revision: 295112 URL: https://svnweb.freebsd.org/changeset/base/295112 Log: Use the correct type to pmap_mapdev() in nexus_activate_resource(). pmap_mapdev() takes vm_paddr_t, which may be sized differently from vm_offset_t, as it is

svn commit: r295113 - head/sys/dev/mps

2016-01-31 Thread Marcelo Araujo
Author: araujo Date: Mon Feb 1 02:31:59 2016 New Revision: 295113 URL: https://svnweb.freebsd.org/changeset/base/295113 Log: Clean up unused-but-set-variable spotted by gcc-4.9. Reviewed by: mav, slm Approved by: rodrigc (mentor) MFC after:2 weeks Sponsored by: gandi.net

Re: svn commit: r295108 - in head/usr.sbin/bsdconfig: . networking/share

2016-01-31 Thread Devin Teske
Typo in commit this commit message; s/snprintf/substr/ (for record posterity) -- Devin On Mon, 2016-02-01 at 00:54 +, Devin Teske wrote: > Author: dteske > Date: Mon Feb 1 00:54:26 2016 > New Revision: 295108 > URL: https://svnweb.freebsd.org/changeset/base/295108 > > Log: > Utilize new

svn commit: r295090 - head/sys/arm/arm

2016-01-31 Thread Michal Meloun
Author: mmel Date: Sun Jan 31 08:53:53 2016 New Revision: 295090 URL: https://svnweb.freebsd.org/changeset/base/295090 Log: ARM: Convert spaces to tabs, fix formatting. Not a functional change. Modified: head/sys/arm/arm/swtch-v4.S head/sys/arm/arm/swtch-v6.S Modified:

svn commit: r295091 - head/sys/arm/include

2016-01-31 Thread Michal Meloun
Author: mmel Date: Sun Jan 31 09:16:20 2016 New Revision: 295091 URL: https://svnweb.freebsd.org/changeset/base/295091 Log: ARM: Rename ARM specific VM_MEMATTR_WT memory attribute to standard one. Modified: head/sys/arm/include/vm.h Modified: head/sys/arm/include/vm.h

svn commit: r295089 - head/sys/arm/arm

2016-01-31 Thread Michal Meloun
Author: mmel Date: Sun Jan 31 08:06:22 2016 New Revision: 295089 URL: https://svnweb.freebsd.org/changeset/base/295089 Log: ARM: Next round of cleanup in swtch-v*.S. - remove now useless #if __ARM_ARCH conditional - use macro for accessing CP15 registers - remove unused PCPU_SIZE

svn commit: r295096 - in head/sys/arm: arm include

2016-01-31 Thread Michal Meloun
Author: mmel Date: Sun Jan 31 16:34:06 2016 New Revision: 295096 URL: https://svnweb.freebsd.org/changeset/base/295096 Log: ARM: cpufunc_domains, cpufunc_faultstatus and cpufunc_faultaddress functions are equal for all ARM variants. Remove them from cpu_functions table. Modified:

svn commit: r295094 - head/sys/dev/ixgbe

2016-01-31 Thread Steven Hartland
Author: smh Date: Sun Jan 31 15:18:03 2016 New Revision: 295094 URL: https://svnweb.freebsd.org/changeset/base/295094 Log: Fix ixgbe flow control autoneg reporting Fix ixgbe reporting of flow control autoneg when running under DBG 1 Reviewed by: erj MFC after:2 days Sponsored

svn commit: r295095 - in head/sys/arm: arm include

2016-01-31 Thread Michal Meloun
Author: mmel Date: Sun Jan 31 15:36:13 2016 New Revision: 295095 URL: https://svnweb.freebsd.org/changeset/base/295095 Log: ARM: Next round of cpufunc.* cleaning. Nobody uses flush_brnchtgt* functions, delete them. Modified: head/sys/arm/arm/cpufunc.c head/sys/arm/arm/cpufunc_asm_fa526.S

svn commit: r295092 - in head/sys/arm: arm include

2016-01-31 Thread Michal Meloun
Author: mmel Date: Sun Jan 31 13:59:16 2016 New Revision: 295092 URL: https://svnweb.freebsd.org/changeset/base/295092 Log: ARM: First round of cpufunc.* cleaning. All abort_fixup functions are not currently used or defined. Delete them. Modified: head/sys/arm/arm/cpufunc.c

svn commit: r295093 - head/sys/dev/ixgbe

2016-01-31 Thread Steven Hartland
Author: smh Date: Sun Jan 31 15:14:23 2016 New Revision: 295093 URL: https://svnweb.freebsd.org/changeset/base/295093 Log: Configure ixgbe phy & gbic power Setup phy and gbic power as per Linux 4.3.13 driver. This fixes link not detected on X540-AT2 after booting to Linux which turns