Re: svn commit: r286601 - head/usr.bin/patch

2015-08-10 Thread Ed Schouten
2015-08-11 1:20 GMT+02:00 Xin Li delp...@delphij.net: Do you have a better solution for this? No, this is not ideal but I didn't find a better alternative (or maybe I have missed something obvious?) I think with the current POSIX definition of the interface, we have only two options: either

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

2015-08-10 Thread Alexander V. Chernikov
Author: melifaro Date: Tue Aug 11 05:51:00 2015 New Revision: 286616 URL: https://svnweb.freebsd.org/changeset/base/286616 Log: MFP r276712. * Split lltable_init() into lltable_allocate_htbl() (alloc hash table with default callbacks) and lltable_link() ( links any lltable to the

svn commit: r286617 - head/usr.bin/patch

2015-08-10 Thread Xin LI
Author: delphij Date: Tue Aug 11 05:58:33 2015 New Revision: 286617 URL: https://svnweb.freebsd.org/changeset/base/286617 Log: Use __DECONST instead of doing strdup/free. Suggested by: ed MFC after:2 weeks Modified: head/usr.bin/patch/inp.c Modified: head/usr.bin/patch/inp.c

svn commit: r286581 - head/sys/conf

2015-08-10 Thread Rui Paulo
Author: rpaulo Date: Mon Aug 10 16:32:47 2015 New Revision: 286581 URL: https://svnweb.freebsd.org/changeset/base/286581 Log: Fix a comment for iwm. Submitted by: brueffer Modified: head/sys/conf/options Modified: head/sys/conf/options

Re: svn commit: r278934 - in head: cddl/contrib/opensolaris/lib/libdtrace/common share/mk

2015-08-10 Thread Jan Beich
Mark Johnston ma...@freebsd.org writes: Author: markj Date: Wed Feb 18 03:54:54 2015 New Revision: 278934 URL: https://svnweb.freebsd.org/changeset/base/278934 Log: Remove drti.o's dependency on libelf. This makes it possible to add DTrace probes to userland programs and libraries

svn commit: r286583 - head/sys/vm

2015-08-10 Thread Zbigniew Bodek
Author: zbb Date: Mon Aug 10 17:16:49 2015 New Revision: 286583 URL: https://svnweb.freebsd.org/changeset/base/286583 Log: Avoid sign extension of value passed to kva_alloc from uma_zone_reserve_kva Fixes panic: vm_radix_reserve_kva: unable to reserve KVA caused by sign extention of

svn commit: r286582 - head/lib/libthr/thread

2015-08-10 Thread Konstantin Belousov
Author: kib Date: Mon Aug 10 17:02:42 2015 New Revision: 286582 URL: https://svnweb.freebsd.org/changeset/base/286582 Log: Pre-resolve symbols required for the deferred signal processing. This avoids recursion into rtld when leaving libthr critical section for the deferred signal delivery.

svn commit: r286584 - in head/sys: amd64/amd64 arm/arm arm/at91 arm/cavium/cns11xx arm/include arm/samsung/s3c2xx0 arm/xscale/i80321 arm/xscale/i8134x arm/xscale/ixp425 arm/xscale/pxa ddb i386/i386...

2015-08-10 Thread Konstantin Belousov
Author: kib Date: Mon Aug 10 17:18:21 2015 New Revision: 286584 URL: https://svnweb.freebsd.org/changeset/base/286584 Log: Make kstack_pages a tunable on arm, x86, and powepc. On i386, the initial thread stack is not adjusted by the tunable, the stack is allocated too early to get access

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

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 19:38:07 2015 New Revision: 286589 URL: https://svnweb.freebsd.org/changeset/base/286589 Log: MFV 286588: 5820 verify failed in zio_done(): BP_EQUAL(bp, io_bp_orig) Reviewed by: Alex Reece a...@delphix.com Reviewed by: George Wilson geo...@delphix.com

svn commit: r286591 - in head: share/man/man4 sys/dev/uart

2015-08-10 Thread Ian Lepore
Author: ian Date: Mon Aug 10 20:08:09 2015 New Revision: 286591 URL: https://svnweb.freebsd.org/changeset/base/286591 Log: Allow the choice of PPS signal captured by uart(4) to be runtime-configured, eliminating the need to build a custom kernel to use the CTS signal. The historical

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

2015-08-10 Thread Alexander V. Chernikov
Author: melifaro Date: Mon Aug 10 20:50:31 2015 New Revision: 286594 URL: https://svnweb.freebsd.org/changeset/base/286594 Log: Rename rt_foreach_fib() to rt_foreach_fib_walk(). Suggested by: julian Modified: head/sys/net/route.c head/sys/net/route.h head/sys/netinet/in_rmx.c

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

2015-08-10 Thread Ian Lepore
Author: ian Date: Mon Aug 10 20:54:03 2015 New Revision: 286595 URL: https://svnweb.freebsd.org/changeset/base/286595 Log: Correct the polarity of the PPS assert and clear events with respect to the electrical signals on the serial port. Virtually all devices which output a PPS signal

svn commit: r286587 - in head: cddl/contrib/opensolaris/cmd/zstreamdump cddl/contrib/opensolaris/lib/libzfs/common sys/cddl/contrib/opensolaris/uts/common/fs/zfs sys/cddl/contrib/opensolaris/uts/co...

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 19:32:58 2015 New Revision: 286587 URL: https://svnweb.freebsd.org/changeset/base/286587 Log: MFV 286586: 5746 more checksumming in zfs send Reviewed by: Christopher Siden christopher.si...@delphix.com Reviewed by: George Wilson george.wil...@delphix.com

svn commit: r286590 - head/usr.bin

2015-08-10 Thread Ed Maste
Author: emaste Date: Mon Aug 10 19:41:31 2015 New Revision: 286590 URL: https://svnweb.freebsd.org/changeset/base/286590 Log: Remove ${_subdir}s that are never set The MK_NIS subdirs were leftovers from r212558 and kdump/truss were introduced in r240404. Sponsored by: The FreeBSD

Re: svn commit: r286601 - head/usr.bin/patch

2015-08-10 Thread Ed Schouten
Hi Xin, Something I forgot to mention in my previous email: 2015-08-10 23:31 GMT+02:00 Xin LI delp...@freebsd.org: + argp[0] = strdup(RCSDIFF); + argp[1] = strdup(filename); + argp[0] = strdup(CHECKOUT); +

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

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 21:19:42 2015 New Revision: 286600 URL: https://svnweb.freebsd.org/changeset/base/286600 Log: MFV 286599: 5808 spa_check_logs is not necessary on readonly pools Reviewed by: George Wilson geo...@delphix.com Reviewed by: Paul Dagnelie paul.dagne...@delphix.com

Re: svn commit: r286601 - head/usr.bin/patch

2015-08-10 Thread Ed Schouten
Hi Xin, 2015-08-10 23:31 GMT+02:00 Xin LI delp...@freebsd.org: + argp[0] = strdup(RCSDIFF); + argp[1] = strdup(filename); ... + free(argp[1]); + free(argp[0]); +

svn commit: r286596 - head

2015-08-10 Thread Ian Lepore
,junk:false' /etc/malloc.conf.) +20150810: + The polarity of Pulse Per Second (PPS) capture events with the + uart(4) driver has been corrected. Prior to this change the PPS + assert event corresponded to the trailing edge of a positive PPS + pulse and the clear event

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

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 21:13:59 2015 New Revision: 286598 URL: https://svnweb.freebsd.org/changeset/base/286598 Log: MFV 286597: 5701 zpool list reports incorrect alloc value for cache devices Reviewed by: Matthew Ahrens mahr...@delphix.com Reviewed by: George Wilson

svn commit: r286601 - head/usr.bin/patch

2015-08-10 Thread Xin LI
Author: delphij Date: Mon Aug 10 21:31:50 2015 New Revision: 286601 URL: https://svnweb.freebsd.org/changeset/base/286601 Log: use posix_spawn(3) instead of fork() and exec() manually as suggested by jmg@. Reviewed By: pfg MFC after:2 weeks Differential Revision:

svn commit: r286606 - head/sbin/ipfw

2015-08-10 Thread Mark Felder
Author: feld (ports committer) Date: Mon Aug 10 22:02:01 2015 New Revision: 286606 URL: https://svnweb.freebsd.org/changeset/base/286606 Log: sbin/ipfw fix typo: info - into example: DEPRECATED: inserting data into non-existent table sshguard. (auto-created) Approved by:

svn commit: r286603 - in head: cddl/contrib/opensolaris/cmd/zdb sys/cddl/contrib/opensolaris/uts/common/fs/zfs sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 21:32:40 2015 New Revision: 286603 URL: https://svnweb.freebsd.org/changeset/base/286603 Log: MFV 286602: 5810 zdb should print details of bpobj Reviewed by: Prakash Surya prakash.su...@delphix.com Reviewed by: Alex Reece a...@delphix.com Reviewed by:

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

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 21:36:51 2015 New Revision: 286605 URL: https://svnweb.freebsd.org/changeset/base/286605 Log: MFV 286604: 5812 assertion failed in zrl_tryenter(): zr_owner==NULL Reviewed by: George Wilson geo...@delphix.com Reviewed by: Alex Reece a...@delphix.com Reviewed

Re: svn commit: r286601 - head/usr.bin/patch

2015-08-10 Thread Xin Li
On 08/10/15 14:40, Ed Schouten wrote: Hi Xin, 2015-08-10 23:31 GMT+02:00 Xin LI delp...@freebsd.org: + argp[0] = strdup(RCSDIFF); + argp[1] = strdup(filename); ... + free(argp[1]); +

Re: svn commit: r286601 - head/usr.bin/patch

2015-08-10 Thread Xin Li
On 08/10/15 14:42, Ed Schouten wrote: Hi Xin, Something I forgot to mention in my previous email: 2015-08-10 23:31 GMT+02:00 Xin LI delp...@freebsd.org: + argp[0] = strdup(RCSDIFF); + argp[1] = strdup(filename); +

svn commit: r286592 - head/usr.bin

2015-08-10 Thread Ed Maste
Author: emaste Date: Mon Aug 10 20:19:10 2015 New Revision: 286592 URL: https://svnweb.freebsd.org/changeset/base/286592 Log: Use consistent style for optional subdirectories Reviewed by: imp Sponsored by: The FreeBSD Foundation Differential Revision:

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

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 20:34:46 2015 New Revision: 286593 URL: https://svnweb.freebsd.org/changeset/base/286593 Log: Local addition and mismerge fix for r286579. Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c Modified:

svn commit: r286615 - in head: sys/arm/ti sys/arm64/arm64 sys/geom/raid usr.bin/wc

2015-08-10 Thread Pedro F. Giffuni
Author: pfg Date: Tue Aug 11 03:12:09 2015 New Revision: 286615 URL: https://svnweb.freebsd.org/changeset/base/286615 Log: Clean out some externally visible more then grammar MFC after:3 days Modified: head/sys/arm/ti/ti_hwmods.c head/sys/arm64/arm64/trap.c

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

2015-08-10 Thread Ian Lepore
Author: ian Date: Tue Aug 11 02:30:54 2015 New Revision: 286613 URL: https://svnweb.freebsd.org/changeset/base/286613 Log: Style fix, no functional changes -- do the braces for switches correctly. Modified: head/sys/dev/uart/uart_core.c Modified: head/sys/dev/uart/uart_core.c

svn commit: r286614 - in head/usr.bin/xlint: lint1 lint2

2015-08-10 Thread Pedro F. Giffuni
Author: pfg Date: Tue Aug 11 02:58:33 2015 New Revision: 286614 URL: https://svnweb.freebsd.org/changeset/base/286614 Log: xlint(1): Fix some typos in comments and translate some german No functional change. Obtained from:OpenBSD (where xlint is no more) Modified:

svn commit: r286609 - head/usr.bin/ypmatch

2015-08-10 Thread Marcelo Araujo
Author: araujo Date: Tue Aug 11 01:02:17 2015 New Revision: 286609 URL: https://svnweb.freebsd.org/changeset/base/286609 Log: More style(9) fixes. No functional changes. Differential Revision:D3350 Reviewed by: ed Approved by: bapt (mentor) Modified:

svn commit: r286610 - head/usr.sbin/ypset

2015-08-10 Thread Marcelo Araujo
Author: araujo Date: Tue Aug 11 01:33:36 2015 New Revision: 286610 URL: https://svnweb.freebsd.org/changeset/base/286610 Log: Sync the code with OpenBSD. Remove 3rd BSD clause. Differential Revision:D3289 Approved by: bapt (mentor) Obtained from:

svn commit: r286611 - head/usr.sbin/ypset

2015-08-10 Thread Marcelo Araujo
Author: araujo Date: Tue Aug 11 01:45:17 2015 New Revision: 286611 URL: https://svnweb.freebsd.org/changeset/base/286611 Log: style(9) requires a space here. Modified: head/usr.sbin/ypset/ypset.c Modified: head/usr.sbin/ypset/ypset.c

svn commit: r286579 - in head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs: . sys

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 12:39:10 2015 New Revision: 286579 URL: https://svnweb.freebsd.org/changeset/base/286579 Log: MFV r277430: 5313 Allow I/Os to be aggregated across ZIO priority classes Reviewed by: Andriy Gapon a...@freebsd.org Reviewed by: Will Andrews wi...@spectralogic.com

Re: svn commit: r286441 - in head: share/man/man4 sys/contrib/dev/iwm sys/dev/iwm sys/modules/iwm sys/modules/iwmfw sys/modules/iwmfw/iwm3160fw sys/modules/iwmfw/iwm7260fw sys/modules/iwmfw/iwm7265fw

2015-08-10 Thread Gleb Smirnoff
On Sat, Aug 08, 2015 at 06:06:49AM +, Rui Paulo wrote: R Author: rpaulo R Date: Sat Aug 8 06:06:48 2015 R New Revision: 286441 R URL: https://svnweb.freebsd.org/changeset/base/286441 R R Log: R Import OpenBSD's iwm WiFi driver for Intel 3160/7260/7265. R R There are still several

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

2015-08-10 Thread Scott Long
Author: scottl Date: Mon Aug 10 08:57:34 2015 New Revision: 286567 URL: https://svnweb.freebsd.org/changeset/base/286567 Log: Remove some unused code. Obtained from:Netflix, Inx. Modified: head/sys/dev/mps/mpsvar.h Modified: head/sys/dev/mps/mpsvar.h

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

2015-08-10 Thread Scott Long
Author: scottl Date: Mon Aug 10 09:02:34 2015 New Revision: 286568 URL: https://svnweb.freebsd.org/changeset/base/286568 Log: Remove mps_request_polled(), it's redundant to mps_wait_command() Obtained from:Netflix, Inc. Modified: head/sys/dev/mps/mps.c

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

2015-08-10 Thread Julian Elischer
On 8/9/15 2:15 AM, Alexander V. Chernikov wrote: Author: melifaro Date: Sat Aug 8 18:14:59 2015 New Revision: 286458 URL: https://svnweb.freebsd.org/changeset/base/286458 Log: MFP r274295: * Move interface route cleanup to route.c:rt_flushifroutes() * Convert most of for (fibnum

svn commit: r286563 - head/etc/rc.d

2015-08-10 Thread Adrian Chadd
Author: adrian Date: Mon Aug 10 06:11:10 2015 New Revision: 286563 URL: https://svnweb.freebsd.org/changeset/base/286563 Log: Finish reverting r286410 - sorry, I somehow missed this with svn commit. Modified: head/etc/rc.d/netif Modified: head/etc/rc.d/netif

svn commit: r286565 - head/tools/tools/iwn/iwnstats

2015-08-10 Thread Adrian Chadd
Author: adrian Date: Mon Aug 10 06:12:53 2015 New Revision: 286565 URL: https://svnweb.freebsd.org/changeset/base/286565 Log: Finish reverting r286410 for now. Modified: head/tools/tools/iwn/iwnstats/main.c Modified: head/tools/tools/iwn/iwnstats/main.c

svn commit: r286564 - head/etc

2015-08-10 Thread Adrian Chadd
Author: adrian Date: Mon Aug 10 06:12:24 2015 New Revision: 286564 URL: https://svnweb.freebsd.org/changeset/base/286564 Log: Commit more of the reversion of r286410 . Sorry. Modified: head/etc/network.subr Modified: head/etc/network.subr

svn commit: r286566 - head/usr.sbin/rtsold

2015-08-10 Thread Ed Schouten
Author: ed Date: Mon Aug 10 07:45:13 2015 New Revision: 286566 URL: https://svnweb.freebsd.org/changeset/base/286566 Log: Remove bad call to shutdown(). The socket created by rtsol/rtsold is not a connection-based socket, meaning that we should not attempt to call shutdown() on it.

svn commit: r286570 - in head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs: . sys

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 10:34:23 2015 New Revision: 286570 URL: https://svnweb.freebsd.org/changeset/base/286570 Log: MFV r277426: 5408 managing ZFS cache devices requires lots of RAM Reviewed by: Christopher Siden christopher.si...@delphix.com Reviewed by: George Wilson

svn commit: r286573 - head/share/man/man4

2015-08-10 Thread Christian Brueffer
Author: brueffer Date: Mon Aug 10 10:54:35 2015 New Revision: 286573 URL: https://svnweb.freebsd.org/changeset/base/286573 Log: Xref iwm(4). Modified: head/share/man/man4/wlan.4 Modified: head/share/man/man4/wlan.4

svn commit: r286574 - in head/sys/cddl: compat/opensolaris/sys contrib/opensolaris/uts/common/fs/zfs contrib/opensolaris/uts/common/fs/zfs/sys

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 10:59:58 2015 New Revision: 286574 URL: https://svnweb.freebsd.org/changeset/base/286574 Log: MFV r277427: 5445 Add more visibility via arcstats; specifically arc_state_t stats and differentiate between data and metadata Reviewed by: Basil Crow

svn commit: r286569 - head/usr.sbin/fstyp

2015-08-10 Thread Bjoern A. Zeeb
Author: bz Date: Mon Aug 10 10:29:32 2015 New Revision: 286569 URL: https://svnweb.freebsd.org/changeset/base/286569 Log: Rather than hardcoding a string and limiting the comparison to these characters use the defined constant so that in case of change this would not break. Reviewed

svn commit: r286571 - head/share/man/man4

2015-08-10 Thread Christian Brueffer
Author: brueffer Date: Mon Aug 10 10:36:08 2015 New Revision: 286571 URL: https://svnweb.freebsd.org/changeset/base/286571 Log: Hook up iwm.4 and iwmfw.4 to the build. Modified: head/share/man/man4/Makefile Modified: head/share/man/man4/Makefile

svn commit: r286572 - head/release/doc/en_US.ISO8859-1/hardware

2015-08-10 Thread Christian Brueffer
Author: brueffer Date: Mon Aug 10 10:41:40 2015 New Revision: 286572 URL: https://svnweb.freebsd.org/changeset/base/286572 Log: Add iwm(4) to the hardware notes. Modified: head/release/doc/en_US.ISO8859-1/hardware/article.xml Modified: head/release/doc/en_US.ISO8859-1/hardware/article.xml

svn commit: r286578 - head/sys/cddl/compat/opensolaris/sys

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 12:25:26 2015 New Revision: 286578 URL: https://svnweb.freebsd.org/changeset/base/286578 Log: Fix r286574 build in user-space. Modified: head/sys/cddl/compat/opensolaris/sys/kstat.h Modified: head/sys/cddl/compat/opensolaris/sys/kstat.h

svn commit: r286575 - in head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs: . sys

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 11:30:07 2015 New Revision: 286575 URL: https://svnweb.freebsd.org/changeset/base/286575 Log: MFV r277428: 5056 ZFS deadlock on db_mtx and dn_holds Reviewed by: Will Andrews wi...@spectralogic.com Reviewed by: Matt Ahrens mahr...@delphix.com Reviewed by:

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

2015-08-10 Thread Alexander Motin
Author: mav Date: Mon Aug 10 11:52:54 2015 New Revision: 286576 URL: https://svnweb.freebsd.org/changeset/base/286576 Log: Fix r286570 build with debug. Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c

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

2015-08-10 Thread Alexander V. Chernikov
Author: melifaro Date: Mon Aug 10 12:03:59 2015 New Revision: 286577 URL: https://svnweb.freebsd.org/changeset/base/286577 Log: Partially merge r274887,r275334,r275577,r275578,r275586 to minimize differences between projects/routing and HEAD. This commit tries to keep code logic the same

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

2015-08-10 Thread Alexander V . Chernikov
___ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to svn-src-head-unsubscr...@freebsd.org

svn commit: r286580 - head/sys/conf

2015-08-10 Thread Conrad E. Meyer
Author: cem Date: Mon Aug 10 14:03:39 2015 New Revision: 286580 URL: https://svnweb.freebsd.org/changeset/base/286580 Log: files.amd64: Build ntb_hw.o if if_ntb OR ntb_hw Approved by: markj (mentor) Sponsored by: EMC / Isilon Storage Division Differential Revision: