svn commit: r265904 - head/usr.bin/units

2014-05-12 Thread Eitan Adler
Author: eadler Date: Mon May 12 06:14:14 2014 New Revision: 265904 URL: http://svnweb.freebsd.org/changeset/base/265904 Log: units(1): unbreak -f option, fix some style, increase compatibility. - Unbreak the -f option: it was missing a ':' - gunits -V spits out more information than just

svn commit: r265905 - stable/8/sys/kern

2014-05-12 Thread Don Lewis
Author: truckman Date: Mon May 12 07:05:46 2014 New Revision: 265905 URL: http://svnweb.freebsd.org/changeset/base/265905 Log: MFC r265363 Avoid unsigned integer overflow which can cause rman_reserve_resource_bound() to return incorrect results. Continue the initial search until the

svn commit: r265907 - head/usr.bin/units

2014-05-12 Thread Eitan Adler
Author: eadler Date: Mon May 12 07:14:09 2014 New Revision: 265907 URL: http://svnweb.freebsd.org/changeset/base/265907 Log: units(1): call el_end() Add missing el_end() call Modified: head/usr.bin/units/units.c Modified: head/usr.bin/units/units.c

svn commit: r265908 - in head/sys: dev/usb/controller modules/usb/saf1761

2014-05-12 Thread Hans Petter Selasky
Author: hselasky Date: Mon May 12 09:05:07 2014 New Revision: 265908 URL: http://svnweb.freebsd.org/changeset/base/265908 Log: Create driver file templates, kernel module Makefile and add initial version of register definitions for ISP1761 and SAF1761 compatible chips. Sponsored by:

svn commit: r265909 - head/sys/netinet

2014-05-12 Thread Michael Tuexen
Author: tuexen Date: Mon May 12 09:46:48 2014 New Revision: 265909 URL: http://svnweb.freebsd.org/changeset/base/265909 Log: Disable TX checksum offload for UDP-Lite completely. It wasn't used for partial checksum coverage, but even for full checksum coverage it doesn't work. This was

svn commit: r265910 - stable/10/sys/geom/part

2014-05-12 Thread Andrey V. Elsukov
Author: ae Date: Mon May 12 10:19:31 2014 New Revision: 265910 URL: http://svnweb.freebsd.org/changeset/base/265910 Log: MFC r265318: For schemes that do an automatic partition aligning move this code to separate function. MFC r265331: Prevent an unexpected shrinking on

svn commit: r265911 - stable/9/sys/geom/part

2014-05-12 Thread Andrey V. Elsukov
Author: ae Date: Mon May 12 11:14:07 2014 New Revision: 265911 URL: http://svnweb.freebsd.org/changeset/base/265911 Log: MFC r265318: For schemes that do an automatic partition aligning move this code to separate function. MFC r265331: Prevent an unexpected shrinking on

svn commit: r265912 - stable/10/sys/geom/part

2014-05-12 Thread Andrey V. Elsukov
Author: ae Date: Mon May 12 12:04:44 2014 New Revision: 265912 URL: http://svnweb.freebsd.org/changeset/base/265912 Log: MFC r256690: Add an automatic resize support to the GEOM_PART class. When parent provider has been resized, the scheme specific G_PART_RESIZE method does an

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

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 13:05:03 2014 New Revision: 265913 URL: http://svnweb.freebsd.org/changeset/base/265913 Log: Interrupts need to be disabled on entry to cpu_sleep() for ARM. Given that and the need to be in a critical section when switching to idleclock mode for event timers,

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

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 13:08:37 2014 New Revision: 265914 URL: http://svnweb.freebsd.org/changeset/base/265914 Log: Cleanup some style nits. Modified: head/sys/arm/arm/machdep.c Modified: head/sys/arm/arm/machdep.c

svn commit: r265915 - head/sys/modules

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 13:33:12 2014 New Revision: 265915 URL: http://svnweb.freebsd.org/changeset/base/265915 Log: Build modules in parallel. This has been tested by several people at various -j levels from 6 to 48 without problems. Modified: head/sys/modules/Makefile Modified:

svn commit: r265917 - in stable/10: share/man/man4 sys/dev/bce sys/dev/bxe sys/modules/bce

2014-05-12 Thread David C Somayajulu
Author: davidcs Date: Mon May 12 15:52:49 2014 New Revision: 265917 URL: http://svnweb.freebsd.org/changeset/base/265917 Log: MFC r265703 Modify Copyright information and other strings to reflect Qlogic Corporation's purchase of Broadcom's NetXtreme business. Added clean option to

svn commit: r265918 - in stable/9: share/man/man4 sys/dev/bce sys/dev/bxe sys/modules/bce

2014-05-12 Thread David C Somayajulu
Author: davidcs Date: Mon May 12 15:56:11 2014 New Revision: 265918 URL: http://svnweb.freebsd.org/changeset/base/265918 Log: MFC r265703 Modify Copyright information and other strings to reflect Qlogic Corporation's purchase of Broadcom's NetXtreme business. Added clean option to

svn commit: r265919 - in stable/8: share/man/man4 sys/dev/bce sys/dev/bxe sys/modules/bce

2014-05-12 Thread David C Somayajulu
Author: davidcs Date: Mon May 12 15:59:09 2014 New Revision: 265919 URL: http://svnweb.freebsd.org/changeset/base/265919 Log: MFC r265703 Modify Copyright information and other strings to reflect Qlogic Corporation's purchase of Broadcom's NetXtreme business. Added clean option to

Re: svn commit: r265901 - stable/10/sys/kern

2014-05-12 Thread Andrey Chernov
On 12.05.2014 8:27, Don Lewis wrote: + if (start + amask start) { + DPRINTF((start+amask wrapped around\n)); + goto out; + } Checking for overflow _after_ it happens is unportable and dangerous, since wrapping around is not only one possible result. They

svn commit: r265920 - in stable/7: share/man/man4 sys/dev/bce sys/dev/bxe sys/modules/bce

2014-05-12 Thread David C Somayajulu
Author: davidcs Date: Mon May 12 16:10:14 2014 New Revision: 265920 URL: http://svnweb.freebsd.org/changeset/base/265920 Log: MFC r265703 Modify Copyright information and other strings to reflect Qlogic Corporation's purchase of Broadcom's NetXtreme business. Added clean option to

Re: svn commit: r265917 - in stable/10: share/man/man4 sys/dev/bce sys/dev/bxe sys/modules/bce

2014-05-12 Thread Glen Barber
On Mon, May 12, 2014 at 03:52:49PM +, David C Somayajulu wrote: Author: davidcs Date: Mon May 12 15:52:49 2014 New Revision: 265917 URL: http://svnweb.freebsd.org/changeset/base/265917 Log: MFC r265703 Modify Copyright information and other strings to reflect Qlogic

Re: svn commit: r265901 - stable/10/sys/kern

2014-05-12 Thread Jilles Tjoelker
On Mon, May 12, 2014 at 08:04:32PM +0400, Andrey Chernov wrote: On 12.05.2014 8:27, Don Lewis wrote: + if (start + amask start) { + DPRINTF((start+amask wrapped around\n)); + goto out; + } Checking for overflow _after_ it happens is unportable and dangerous,

Re: svn commit: r265901 - stable/10/sys/kern

2014-05-12 Thread Andrey Chernov
On 12.05.2014 21:03, Jilles Tjoelker wrote: On Mon, May 12, 2014 at 08:04:32PM +0400, Andrey Chernov wrote: On 12.05.2014 8:27, Don Lewis wrote: + if (start + amask start) { + DPRINTF((start+amask wrapped around\n)); + goto out; + } Checking for overflow _after_

svn commit: r265922 - in stable/10: share/man/man4 sys/conf sys/dev/mrsas sys/modules sys/modules/mrsas

2014-05-12 Thread Doug Ambrisko
Author: ambrisko Date: Mon May 12 17:55:24 2014 New Revision: 265922 URL: http://svnweb.freebsd.org/changeset/base/265922 Log: MFC 26 dd mrsas(4) driver from LSI official support of newer MegaRAID SAS cards. LSI has been maintaining this driver outside of the FreeBSD tree. It

svn commit: r265923 - head/sys/kern

2014-05-12 Thread Don Lewis
Author: truckman Date: Mon May 12 17:56:52 2014 New Revision: 265923 URL: http://svnweb.freebsd.org/changeset/base/265923 Log: Nuke a couple of unnecessary assigments. Nothing uses the values of rstart and rend after this point. MFC after:1 week Modified:

svn commit: r265924 - head/release/doc/en_US.ISO8859-1/readme

2014-05-12 Thread Steven Kreuzer
Author: skreuzer (doc,ports committer) Date: Mon May 12 17:58:17 2014 New Revision: 265924 URL: http://svnweb.freebsd.org/changeset/base/265924 Log: Bump copyright date Approved by: hrs@ (mentor) Modified: head/release/doc/en_US.ISO8859-1/readme/article.xml Modified:

svn commit: r265925 - in head: . contrib/llvm/include/llvm/IR contrib/llvm/include/llvm/MC contrib/llvm/lib/Analysis contrib/llvm/lib/CodeGen/AsmPrinter contrib/llvm/lib/CodeGen/SelectionDAG contri...

2014-05-12 Thread Dimitry Andric
== --- head/ObsoleteFiles.inc Mon May 12 17:58:17 2014(r265924) +++ head/ObsoleteFiles.inc Mon May 12 18:45:56 2014(r265925) @@ -38,6 +38,43 @@ # xargs -n1 | sort | uniq -d; # done +# 20140512: new clang import which bumps version from 3.4 to 3.4.1. +OLD_FILES+=usr/include

svn commit: r265926 - head/tools/tools/nanobsd

2014-05-12 Thread Thomas Quinot
Author: thomas Date: Mon May 12 19:11:39 2014 New Revision: 265926 URL: http://svnweb.freebsd.org/changeset/base/265926 Log: (NANO_CONFIG): New variable containing path of config file, so that the configuration can reference additional files relative to its own location.

svn commit: r265927 - head/sys/dev/vt

2014-05-12 Thread Aleksandr Rybalko
Author: ray Date: Mon May 12 19:29:38 2014 New Revision: 265927 URL: http://svnweb.freebsd.org/changeset/base/265927 Log: Update terminal sizes in any case when new vt(4) driver arrive. (Plus remove one unused newline) Sponsored by: The FreeBSD Foundation Modified:

svn commit: r265928 - stable/10/share/man/man9

2014-05-12 Thread Sergey Kandaurov
Author: pluknet Date: Mon May 12 19:42:16 2014 New Revision: 265928 URL: http://svnweb.freebsd.org/changeset/base/265928 Log: MFC r265285,265320: Documented the pget(9) system kernel interface. Added: stable/10/share/man/man9/pget.9 - copied, changed from r265285,

svn commit: r265929 - stable/9/sys/kern

2014-05-12 Thread Sergey Kandaurov
Author: pluknet Date: Mon May 12 20:16:48 2014 New Revision: 265929 URL: http://svnweb.freebsd.org/changeset/base/265929 Log: MFC r227784,r227786: Use the acquired reference to the vmspace, remove XXXRW comments. Modified: stable/9/sys/kern/kern_proc.c Directory Properties:

svn commit: r265930 - stable/9/share/man/man9

2014-05-12 Thread Sergey Kandaurov
Author: pluknet Date: Mon May 12 20:19:40 2014 New Revision: 265930 URL: http://svnweb.freebsd.org/changeset/base/265930 Log: MFC r265285,r265320: Documented the pget(9) system kernel interface. Added: stable/9/share/man/man9/pget.9 - copied, changed from r265285,

svn commit: r265931 - head/sys/kern

2014-05-12 Thread Don Lewis
Author: truckman Date: Mon May 12 20:22:42 2014 New Revision: 265931 URL: http://svnweb.freebsd.org/changeset/base/265931 Log: Be even more paranoid about overflow. Requested by: ache Modified: head/sys/kern/subr_rman.c Modified: head/sys/kern/subr_rman.c

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

2014-05-12 Thread Don Lewis
On 12 May, To: src-committ...@freebsd.org wrote: Author: truckman Date: Mon May 12 20:22:42 2014 New Revision: 265931 URL: http://svnweb.freebsd.org/changeset/base/265931 Log: Be even more paranoid about overflow. Requested by: ache Modified: head/sys/kern/subr_rman.c

svn commit: r265932 - stable/10/sys/vm

2014-05-12 Thread Dag-Erling Smørgrav
Author: des Date: Mon May 12 20:48:04 2014 New Revision: 265932 URL: http://svnweb.freebsd.org/changeset/base/265932 Log: MFH (r264966): add sysctl OIDs for actual swap zone size and capacity Modified: stable/10/sys/vm/swap_pager.c Directory Properties: stable/10/ (props changed)

svn commit: r265933 - head/tools/build/mk

2014-05-12 Thread Julio Merino
Author: jmmv Date: Mon May 12 21:21:32 2014 New Revision: 265933 URL: http://svnweb.freebsd.org/changeset/base/265933 Log: Fix delete-old when WITH_TESTS is set. r265423 removed the WITHOUT_BMAKE option, which in turn broke a conditional in OptionalObsoleteFiles.inc that inspected

svn commit: r265934 - stable/10/share/mk

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 21:22:53 2014 New Revision: 265934 URL: http://svnweb.freebsd.org/changeset/base/265934 Log: MFC r264822: Allow .WAIT to appear in SUBDIR= lists Modified: stable/10/share/mk/bsd.subdir.mk Directory Properties: stable/10/ (props changed) Modified:

svn commit: r265935 - stable/10/sys/boot/fdt/dts

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 21:40:03 2014 New Revision: 265935 URL: http://svnweb.freebsd.org/changeset/base/265935 Log: MFC r260235: fixes to dockstar DTS source. Modified: stable/10/sys/boot/fdt/dts/dockstar.dts Directory Properties: stable/10/ (props changed) Modified:

Re: svn commit: r265901 - stable/10/sys/kern

2014-05-12 Thread Don Lewis
On 12 May, Andrey Chernov wrote: On 12.05.2014 21:03, Jilles Tjoelker wrote: On Mon, May 12, 2014 at 08:04:32PM +0400, Andrey Chernov wrote: On 12.05.2014 8:27, Don Lewis wrote: + if (start + amask start) { + DPRINTF((start+amask wrapped around\n)); + goto out; + }

svn commit: r265936 - in stable/10/sys: arm/ti/am335x modules

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 22:15:57 2014 New Revision: 265936 URL: http://svnweb.freebsd.org/changeset/base/265936 Log: MFC r259099: Fix a small error in calculating length of DELAY(). Modified: stable/10/sys/arm/ti/am335x/am335x_dmtimer.c stable/10/sys/modules/Makefile Modified:

svn commit: r265937 - stable/10/sys/modules

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 22:19:37 2014 New Revision: 265937 URL: http://svnweb.freebsd.org/changeset/base/265937 Log: Revert accidental commit that tagged along with an MFC commit. Modified: stable/10/sys/modules/Makefile Modified: stable/10/sys/modules/Makefile

svn commit: r265938 - stable/10/sys/arm/ti/am335x

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 22:25:41 2014 New Revision: 265938 URL: http://svnweb.freebsd.org/changeset/base/265938 Log: MFC r259739, r259743: Shorten DMTIMER_-DMT_, #define all register constants. Modified: stable/10/sys/arm/ti/am335x/am335x_dmtimer.c Modified:

svn commit: r265939 - stable/10/sys/arm/ti/am335x

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 22:30:10 2014 New Revision: 265939 URL: http://svnweb.freebsd.org/changeset/base/265939 Log: MFC r259744, cleanups to move global vars into softc, use named values, etc. Modified: stable/10/sys/arm/ti/am335x/am335x_dmtimer.c Modified:

svn commit: r265940 - stable/10/sys/arm/ti/am335x

2014-05-12 Thread Ian Lepore
Author: ian Date: Mon May 12 22:33:22 2014 New Revision: 265940 URL: http://svnweb.freebsd.org/changeset/base/265940 Log: MFC r259750, r260245: Add PPS support to the am335x timer driver. Modified: stable/10/sys/arm/ti/am335x/am335x_dmtimer.c Modified:

svn commit: r265941 - head/usr.sbin/bhyve

2014-05-12 Thread Neel Natu
Author: neel Date: Mon May 12 23:35:10 2014 New Revision: 265941 URL: http://svnweb.freebsd.org/changeset/base/265941 Log: abort(3) the process in response to a VMEXIT_ABORT. This usually happens in response to an unhandled VM exit or an unexpected error so a core is useful. Remove

svn commit: r265942 - head/sys/netinet

2014-05-12 Thread Pyun YongHyeon
Author: yongari Date: Tue May 13 05:07:03 2014 New Revision: 265942 URL: http://svnweb.freebsd.org/changeset/base/265942 Log: Fix checksum computation. Previously it didn't include carry. Reviewed by: tuexen Modified: head/sys/netinet/ip_input.c Modified: head/sys/netinet/ip_input.c

svn commit: r265943 - head/sys/dev/re

2014-05-12 Thread Pyun YongHyeon
Author: yongari Date: Tue May 13 05:19:29 2014 New Revision: 265943 URL: http://svnweb.freebsd.org/changeset/base/265943 Log: Disable TX IP/TCP/UDP checksum offloading for RTL8168C/RTL8168CP. Previously only TX IP checksum offloading was disabled but it's reported that TX checksum

svn commit: r265944 - stable/10/sys/vm

2014-05-12 Thread Alan Cox
Author: alc Date: Tue May 13 05:21:54 2014 New Revision: 265944 URL: http://svnweb.freebsd.org/changeset/base/265944 Log: MFC r260567 Correctly update the count of stuck pages, addl_page_shortage, in vm_pageout_scan(). There were missing increments in two less common cases.

svn commit: r265945 - stable/10/sys/vm

2014-05-12 Thread Alan Cox
Author: alc Date: Tue May 13 05:26:43 2014 New Revision: 265945 URL: http://svnweb.freebsd.org/changeset/base/265945 Log: MFC r265418 Prior to r254304, a separate function, vm_pageout_page_stats(), was used to periodically update the reference status of the active pages. This

Re: svn commit: r265901 - stable/10/sys/kern

2014-05-12 Thread Bruce Evans
On Mon, 12 May 2014, Andrey Chernov wrote: On 12.05.2014 21:03, Jilles Tjoelker wrote: On Mon, May 12, 2014 at 08:04:32PM +0400, Andrey Chernov wrote: On 12.05.2014 8:27, Don Lewis wrote: + if (start + amask start) { + DPRINTF((start+amask wrapped around\n)); +