svn commit: r266484 - head/sys/dev/usb/wlan

2014-05-21 Thread Hans Petter Selasky
Author: hselasky Date: Wed May 21 06:23:52 2014 New Revision: 266484 URL: http://svnweb.freebsd.org/changeset/base/266484 Log: Avoid starting a USB transfer inside the callback function, right after its been submitted. MFC after:3 days Modified: head/sys/dev/usb/wlan/if_rsu.c

svn commit: r266490 - head/sys/dev/usb/net

2014-05-21 Thread Kevin Lo
Author: kevlo Date: Wed May 21 08:09:44 2014 New Revision: 266490 URL: http://svnweb.freebsd.org/changeset/base/266490 Log: - Configure Rx bulk - Announce flow control capability to PHY drivers Modified: head/sys/dev/usb/net/if_axge.c Modified: head/sys/dev/usb/net/if_axge.c

svn commit: r266491 - head/sys/vm

2014-05-21 Thread Konstantin Belousov
Author: kib Date: Wed May 21 08:19:04 2014 New Revision: 266491 URL: http://svnweb.freebsd.org/changeset/base/266491 Log: Remove redundand loop. The inner goto restarts the whole page handling in the situation identical to the loop condition. Sponsored by: The FreeBSD Foundation MFC

Re: svn commit: r266423 - in head/sys: conf dev/i40e modules/i40e

2014-05-21 Thread Slawa Olhovchenkov
On Tue, May 20, 2014 at 09:16:13PM +0400, Gleb Smirnoff wrote: On Tue, May 20, 2014 at 11:40:01PM +1000, Bruce Evans wrote: B Also, verbose names break formatting. E.g., netstat -r has 5 columns B available under Netif for the driver name and device number. netstat B -i has about the same

Re: svn commit: r266423 - in head/sys: conf dev/i40e modules/i40e

2014-05-21 Thread David Chisnall
On 20 May 2014, at 18:16, Gleb Smirnoff gleb...@freebsd.org wrote: Would be cool if most of tools (netstat, systat, etc...) could determine size of terminal and dynamically widen all their fields. Thus, tool can run w/o any abbreviations when run in a script mode, run abbreviated on a small

svn commit: r266493 - head/sys/dev/usb/controller

2014-05-21 Thread Hans Petter Selasky
Author: hselasky Date: Wed May 21 09:26:02 2014 New Revision: 266493 URL: http://svnweb.freebsd.org/changeset/base/266493 Log: - Replace some constants with macros. - Need to set the pre-fetch memory address when reading the host memory. - We currently assume that no endianness conversion

Re: svn commit: r266423 - in head/sys: conf dev/i40e modules/i40e

2014-05-21 Thread Bruce Evans
On Tue, 20 May 2014, Jack Vogel wrote: If you don't like the name there's this wonderful feature of ifconfig ifconfig i40e0 name eth0 (or whatever pleases you...) Ah, another bug :-). If you use this to make a non-null change to the name, then the name becomes inconsistent with the

svn commit: r266494 - head/usr.bin/netstat

2014-05-21 Thread Hiroki Sato
Author: hrs Date: Wed May 21 10:04:51 2014 New Revision: 266494 URL: http://svnweb.freebsd.org/changeset/base/266494 Log: - Fix a bug which can make sysctl() fail when -F is specified. - Increase WID_IF_DEFAULT() from 6 to 8 (the default for AF_INET6) because we have interfaces with

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

2014-05-21 Thread Aleksandr Rybalko
Author: ray Date: Wed May 21 11:15:38 2014 New Revision: 266495 URL: http://svnweb.freebsd.org/changeset/base/266495 Log: Fix tty locking. o Correct expected values for VT_LOCKSWITCH ioctl. o Check current window for locked state. Sponsored by: The FreeBSD Foundation Modified:

svn commit: r266496 - head/usr.bin/lock

2014-05-21 Thread Aleksandr Rybalko
Author: ray Date: Wed May 21 11:53:15 2014 New Revision: 266496 URL: http://svnweb.freebsd.org/changeset/base/266496 Log: Sync lock(1) on VT_LOCKSWITCH usage with syscons(4), vt(4) and vidcontrol(1). Sponsored by: The FreeBSD Foundation Modified: head/usr.bin/lock/lock.c Modified:

svn commit: r266497 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2014-05-21 Thread Steven Hartland
Author: smh Date: Wed May 21 13:36:04 2014 New Revision: 266497 URL: http://svnweb.freebsd.org/changeset/base/266497 Log: Added sysctls / tunables for ZFS dirty data tuning Added the following new sysctls / tunables: * vfs.zfs.dirty_data_max * vfs.zfs.dirty_data_max_max *

Re: svn commit: r266423 - in head/sys: conf dev/i40e modules/i40e

2014-05-21 Thread Bruce Evans
Mostly off-topic: On Tue, 20 May 2014, Peter Wemm wrote: On 5/20/14, 9:08 AM, Jack Vogel wrote: ... Log: This is the beta release of the driver for the new Intel 40G Ethernet Controller XL710 Family. ... He didn't

Re: svn commit: r266481 - head/sys/x86/x86

2014-05-21 Thread Konstantin Belousov
On Tue, May 20, 2014 at 10:43:18PM +, Scott Long wrote: Author: scottl Date: Tue May 20 22:43:17 2014 New Revision: 266481 URL: http://svnweb.freebsd.org/changeset/base/266481 Log: Old PCIe implementations cannot allow a DMA transfer to cross a 4GB boundary. This was addressed

Re: svn commit: r266423 - in head/sys: conf dev/i40e modules/i40e

2014-05-21 Thread Bruce Evans
On Tue, 20 May 2014, Gleb Smirnoff wrote: On Tue, May 20, 2014 at 11:40:01PM +1000, Bruce Evans wrote: B Also, verbose names break formatting. E.g., netstat -r has 5 columns B available under Netif for the driver name and device number. netstat B -i has about the same under Name (possibly 1

svn commit: r266505 - head/sys/dev/usb/wlan

2014-05-21 Thread Hans Petter Selasky
Author: hselasky Date: Wed May 21 16:52:55 2014 New Revision: 266505 URL: http://svnweb.freebsd.org/changeset/base/266505 Log: - Split transmit queue into one for each type. Apparently there will be a race when using a single active queue for all transmit types. - Last argument of

svn commit: r266508 - head/sys/dev/usb/controller

2014-05-21 Thread Hans Petter Selasky
Author: hselasky Date: Wed May 21 17:22:41 2014 New Revision: 266508 URL: http://svnweb.freebsd.org/changeset/base/266508 Log: Implement interrupt endpoint methods for host mode transfers. Sponsored by: DARPA, AFRL Modified: head/sys/dev/usb/controller/saf1761_otg.c

svn commit: r266509 - head/usr.bin/mkimg

2014-05-21 Thread Marcel Moolenaar
Author: marcel Date: Wed May 21 17:34:50 2014 New Revision: 266509 URL: http://svnweb.freebsd.org/changeset/base/266509 Log: Fix CID 1215129: move the call to lseek(2) before the call to malloc(3) so that the error path (taken due to lseek(2) failing) isn't leaking memory. Modified:

svn commit: r266510 - head/usr.bin/mkimg

2014-05-21 Thread Marcel Moolenaar
Author: marcel Date: Wed May 21 17:36:12 2014 New Revision: 266510 URL: http://svnweb.freebsd.org/changeset/base/266510 Log: Fix CID 1215128: Free the allocated buf when image_set_size() returns and error and we return from bsd_write(). Modified: head/usr.bin/mkimg/bsd.c Modified:

svn commit: r266512 - head/usr.bin/mkimg

2014-05-21 Thread Marcel Moolenaar
Author: marcel Date: Wed May 21 17:38:14 2014 New Revision: 266512 URL: http://svnweb.freebsd.org/changeset/base/266512 Log: Fix CID 1215124: Handle errors properly. Modified: head/usr.bin/mkimg/image.c Modified: head/usr.bin/mkimg/image.c

svn commit: r266511 - head/usr.bin/mkimg

2014-05-21 Thread Marcel Moolenaar
Author: marcel Date: Wed May 21 17:37:22 2014 New Revision: 266511 URL: http://svnweb.freebsd.org/changeset/base/266511 Log: Fix CID 1215125: fstat(2) returns -1 on error and sets errno. It does not return the error (oops). Modified: head/usr.bin/mkimg/scheme.c Modified:

svn commit: r266513 - head/usr.bin/mkimg

2014-05-21 Thread Marcel Moolenaar
Author: marcel Date: Wed May 21 17:38:56 2014 New Revision: 266513 URL: http://svnweb.freebsd.org/changeset/base/266513 Log: Fix CID 1204394: Use strncpy(3) instead of strcpy(3). Note that it's ok to not have the name and type strings terminated. Modified: head/usr.bin/mkimg/apm.c

svn commit: r266514 - head/usr.bin/mkimg

2014-05-21 Thread Marcel Moolenaar
Author: marcel Date: Wed May 21 17:39:49 2014 New Revision: 266514 URL: http://svnweb.freebsd.org/changeset/base/266514 Log: Fix CID 1204379 (vtoc8.c) CID 1204380 (bsd.c): Cast ncyls to lba_t before multiplying the 32-bit integrals to avoid any possibility of truncation before widening.

svn commit: r266515 - head/sys/boot/fdt

2014-05-21 Thread Hans Petter Selasky
Author: hselasky Date: Wed May 21 18:02:19 2014 New Revision: 266515 URL: http://svnweb.freebsd.org/changeset/base/266515 Log: %p formatting already includes 0x prefix in printout. Modified: head/sys/boot/fdt/fdt_loader_cmd.c Modified: head/sys/boot/fdt/fdt_loader_cmd.c

Re: svn commit: r266083 - in head/sys/arm: arm include

2014-05-21 Thread Hans Petter Selasky
On 05/14/14 21:11, Mark Murray wrote: Author: markm Date: Wed May 14 19:11:15 2014 New Revision: 266083 URL: http://svnweb.freebsd.org/changeset/base/266083 Log: Give suitably-endowed ARMs a register similar to the x86 TSC register. Hi, Regression issue: This commit prevents RPI-B from

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

2014-05-21 Thread Hans Petter Selasky
On 05/12/14 21:29, Aleksandr Rybalko wrote: 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:

svn commit: r266518 - head/sys/mips/conf

2014-05-21 Thread Sean Bruno
Author: sbruno Date: Wed May 21 21:30:00 2014 New Revision: 266518 URL: http://svnweb.freebsd.org/changeset/base/266518 Log: Remove duplicate: optionAH_DEBUG_ALQ Modified: head/sys/mips/conf/AR933X_BASE Modified: head/sys/mips/conf/AR933X_BASE

Re: svn commit: r266481 - head/sys/x86/x86

2014-05-21 Thread Scott Long via svn-src-head
On May 21, 2014, at 10:03 AM, Konstantin Belousov kostik...@gmail.com wrote: You changed the handling of the alignment, which is probably not correct. The problematic parameter, if any, is boundary. Thanks, this crept in when I re-formatted the code for check-in. I’ll fix it. Scott

svn commit: r266520 - head/cddl/lib/libzfs

2014-05-21 Thread Xin LI
Author: delphij Date: Thu May 22 00:01:31 2014 New Revision: 266520 URL: http://svnweb.freebsd.org/changeset/base/266520 Log: Explicitly link libzfs against libavl as it is done in OpenSolaris (4543:12bb2876a62e). Without this, some third party applications may break because the lack of

svn commit: r266524 - in head/sys/amd64: include vmm

2014-05-21 Thread Neel Natu
Author: neel Date: Thu May 22 03:14:54 2014 New Revision: 266524 URL: http://svnweb.freebsd.org/changeset/base/266524 Log: Inject page fault into the guest if the page table walker detects an invalid translation for the guest linear address. Modified: head/sys/amd64/include/vmm.h

svn commit: r266528 - head/contrib/sendmail

2014-05-21 Thread Gregory Neil Shapiro
Author: gshapiro Date: Thu May 22 04:41:11 2014 New Revision: 266528 URL: http://svnweb.freebsd.org/changeset/base/266528 Log: Update for sendmail 8.14.9 import MFC after:3 days Modified: head/contrib/sendmail/FREEBSD-upgrade Modified: head/contrib/sendmail/FREEBSD-upgrade

svn commit: r266529 - head/etc/sendmail

2014-05-21 Thread Gregory Neil Shapiro
Author: gshapiro Date: Thu May 22 04:43:40 2014 New Revision: 266529 URL: http://svnweb.freebsd.org/changeset/base/266529 Log: Minor changes to force commit these files so new freebsd*.cf files are built to use the new sendmail-8.14.9/cf tree. MFC after:3 days Modified:

svn commit: r266530 - head/release/doc/en_US.ISO8859-1/relnotes

2014-05-21 Thread Gregory Neil Shapiro
Author: gshapiro Date: Thu May 22 04:46:51 2014 New Revision: 266530 URL: http://svnweb.freebsd.org/changeset/base/266530 Log: Note merge to head for sendmail 8.14.9. MFC after:3 days Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml Modified:

svn commit: r266531 - in head/sys: amd64/conf conf i386/conf modules

2014-05-21 Thread Justin Hibbits
Author: jhibbits Date: Thu May 22 05:04:40 2014 New Revision: 266531 URL: http://svnweb.freebsd.org/changeset/base/266531 Log: imagact_binmisc builds for all supported architectures, so enable it for all. Any bugs in execution will be dealt with as they crop up. MFC after:3 weeks

svn commit: r266533 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2014-05-21 Thread Allan Jude
Author: allanjude (doc committer) Date: Thu May 22 05:30:38 2014 New Revision: 266533 URL: http://svnweb.freebsd.org/changeset/base/266533 Log: Improve sysctl descriptions for new ZFS sysctls: vfs.zfs.dirty_data_max vfs.zfs.dirty_data_max_max vfs.zfs.dirty_data_sync Reviewed by: smh

svn commit: r266534 - head

2014-05-21 Thread Xin LI
Author: delphij Date: Thu May 22 05:33:50 2014 New Revision: 266534 URL: http://svnweb.freebsd.org/changeset/base/266534 Log: Fix build: Build libavl as prebuild-lib. X-MFC-With: 266520 Modified: head/Makefile.inc1 Modified: head/Makefile.inc1

Re: svn commit: r266534 - head

2014-05-21 Thread Don Lewis
On 22 May, Xin LI wrote: Author: delphij Date: Thu May 22 05:33:50 2014 New Revision: 266534 URL: http://svnweb.freebsd.org/changeset/base/266534 Log: Fix build: Build libavl as prebuild-lib. Thanks! ___ svn-src-head@freebsd.org mailing list