svn commit: r296339 - head/usr.sbin/daemon

2016-03-02 Thread Maxim Konovalov
Author: maxim Date: Thu Mar 3 07:07:44 2016 New Revision: 296339 URL: https://svnweb.freebsd.org/changeset/base/296339 Log: o -t comman line option added to the usage(). Modified: head/usr.sbin/daemon/daemon.c Modified: head/usr.sbin/daemon/daemon.c =

svn commit: r296338 - head/share/mk

2016-03-02 Thread Bryan Drewery
Author: bdrewery Date: Thu Mar 3 06:37:17 2016 New Revision: 296338 URL: https://svnweb.freebsd.org/changeset/base/296338 Log: Add missing atf dirs. Sponsored by: EMC / Isilon Storage Division Modified: head/share/mk/src.libnames.mk Modified: head/share/mk/src.libnames.mk =

svn commit: r296337 - head/share/mk

2016-03-02 Thread Bryan Drewery
Author: bdrewery Date: Thu Mar 3 06:22:51 2016 New Revision: 296337 URL: https://svnweb.freebsd.org/changeset/base/296337 Log: Move casper library entries to proper places. Sponsored by: EMC / Isilon Storage Division Modified: head/share/mk/bsd.libnames.mk head/share/mk/src.libnames.m

Re: svn commit: r296336 - in head/sys: dev/bhnd dev/pccard dev/pci isa kern sys x86/xen

2016-03-02 Thread Bruce Evans
On Thu, 3 Mar 2016, Justin Hibbits wrote: Log: Replace all resource occurrences of '0UL/~0UL' with '0/~0'. Summary: The idea behind this is '~0ul' is well-defined, and casting to uintmax_t, on a 32-bit platform, will leave the upper 32 bits as 0. The maximum range of a resource is 0xFFF..

svn commit: r296336 - in head/sys: dev/bhnd dev/pccard dev/pci isa kern sys x86/xen

2016-03-02 Thread Justin Hibbits
Author: jhibbits Date: Thu Mar 3 05:07:35 2016 New Revision: 296336 URL: https://svnweb.freebsd.org/changeset/base/296336 Log: Replace all resource occurrences of '0UL/~0UL' with '0/~0'. Summary: The idea behind this is '~0ul' is well-defined, and casting to uintmax_t, on a 32-bit plat

Re: svn commit: r295757 - in head: lib/libc/tests/gen/posix_spawn lib/libc/tests/sys sys/boot/efi/boot1 sys/boot/i386/boot2 sys/boot/i386/pxeldr sys/boot/i386/zfsboot

2016-03-02 Thread Bryan Drewery
On 2/18/2016 6:17 AM, Ed Maste wrote: > Author: emaste > Date: Thu Feb 18 14:17:28 2016 > New Revision: 295757 > URL: https://svnweb.freebsd.org/changeset/base/295757 > > Log: > Remove dd xfer stats emitted during buildworld > > They result in gratuitous differences when comparing build log

svn commit: r296335 - in head: cddl/lib/libdtrace share/dtrace

2016-03-02 Thread George V. Neville-Neil
Author: gnn Date: Thu Mar 3 02:46:12 2016 New Revision: 296335 URL: https://svnweb.freebsd.org/changeset/base/296335 Log: fix tcpdebug: - assign to "flags" in each probe, not only debug-input compute "len" in the same way in each probe Submitted by: Hannes Mehnert MFC after:2 weeks

svn commit: r296334 - head/contrib/jemalloc/src

2016-03-02 Thread Jason Evans
Author: jasone Date: Thu Mar 3 01:43:36 2016 New Revision: 296334 URL: https://svnweb.freebsd.org/changeset/base/296334 Log: Restore support for decay time of -1 (no decay). Modified: head/contrib/jemalloc/src/arena.c Modified: head/contrib/jemalloc/src/arena.c =

svn commit: r296333 - in head/sys/dev/cxgbe: . common

2016-03-02 Thread Navdeep Parhar
Author: np Date: Thu Mar 3 01:41:53 2016 New Revision: 296333 URL: https://svnweb.freebsd.org/changeset/base/296333 Log: cxgbe(4): First of many changes to reduce diffs with internal shared code: - Rename some CamelCase variables. - s/t4_link_start/t4_link_l1cfg/g - Pull in t4_get_po

svn commit: r296332 - in head/contrib/jemalloc: include/jemalloc/internal src

2016-03-02 Thread Jason Evans
Author: jasone Date: Thu Mar 3 01:30:28 2016 New Revision: 296332 URL: https://svnweb.freebsd.org/changeset/base/296332 Log: Add a cast to prevent a compiler warning. Modified: head/contrib/jemalloc/include/jemalloc/internal/nstime.h head/contrib/jemalloc/src/arena.c Modified: head/contri

svn commit: r296331 - in head/sys: mips/nlm mips/rmi powerpc/mpc85xx

2016-03-02 Thread Justin Hibbits
Author: jhibbits Date: Thu Mar 3 01:12:13 2016 New Revision: 296331 URL: https://svnweb.freebsd.org/changeset/base/296331 Log: Let rman_init() initialize the default rman range. If rm_start and rm_end are both 0 on input to rman_init(), rman_init() pre-initializes them to the default ran

svn commit: r296330 - head/sys/pc98/cbus

2016-03-02 Thread Justin Hibbits
Author: jhibbits Date: Thu Mar 3 01:09:00 2016 New Revision: 296330 URL: https://svnweb.freebsd.org/changeset/base/296330 Log: Another convert to bus_alloc_resource_anywhere(). Depending on how cbus hands out resources, this could actually be bus_alloc_resource_any() instead. Modified:

svn commit: r296329 - head/sys/dev/sbni

2016-03-02 Thread Justin Hibbits
Author: jhibbits Date: Thu Mar 3 01:07:17 2016 New Revision: 296329 URL: https://svnweb.freebsd.org/changeset/base/296329 Log: Allocate the PCI BAR resource with bus_alloc_resource_any() We don't support allocating any other range with PCI BARs. Modified: head/sys/dev/sbni/if_sbni_pci.c

svn commit: r296327 - head/bin/sh

2016-03-02 Thread Jilles Tjoelker
Author: jilles Date: Wed Mar 2 22:52:54 2016 New Revision: 296327 URL: https://svnweb.freebsd.org/changeset/base/296327 Log: sh: Remove a redundant STPUTC check. Modified: head/bin/sh/parser.c Modified: head/bin/sh/parser.c ===

svn commit: r296326 - head/bin/sh

2016-03-02 Thread Jilles Tjoelker
Author: jilles Date: Wed Mar 2 21:24:46 2016 New Revision: 296326 URL: https://svnweb.freebsd.org/changeset/base/296326 Log: sh: Don't trust that signal descriptions fit within 49 bytes. Modified: head/bin/sh/jobs.c Modified: head/bin/sh/jobs.c ==

svn commit: r296324 - in head: share/mk sys/conf

2016-03-02 Thread Bryan Drewery
Author: bdrewery Date: Wed Mar 2 21:03:42 2016 New Revision: 296324 URL: https://svnweb.freebsd.org/changeset/base/296324 Log: Add guessed dependencies to OBJS after bsd.dep.mk in case of it adding to SRCS. This was a regression in r295985. bsd.dep.mk adds to SRCS for dtrace probes,

Re: svn commit: r296221 - in head: contrib/jemalloc contrib/jemalloc/doc contrib/jemalloc/include/jemalloc contrib/jemalloc/include/jemalloc/internal contrib/jemalloc/src include lib/libc/stdlib/jemal

2016-03-02 Thread Adrian Chadd
Hi, So apparently it's comparing a very large value (#define NSTIME_SEC_MAX 18446744072) against a 32 bit ssize_t on mips32. i386 also has a 32 bit ssize_t. I'd like this resolved and tested on 32 bit platforms or I'm going to revert the commit in 24 hours. Sorry, but that's kinda broken on all

svn commit: r296323 - head/share/mk

2016-03-02 Thread Bryan Drewery
Author: bdrewery Date: Wed Mar 2 20:06:24 2016 New Revision: 296323 URL: https://svnweb.freebsd.org/changeset/base/296323 Log: Fix meta2deps.sh tracking of dependencies inside .CURDIR. An example of this is in share/i18n/csmapper. Reviewed by: sjg Sponsored by: EMC / Isilon Storage

Re: svn commit: r296221 - in head: contrib/jemalloc contrib/jemalloc/doc contrib/jemalloc/include/jemalloc contrib/jemalloc/include/jemalloc/internal contrib/jemalloc/src include lib/libc/stdlib/jemal

2016-03-02 Thread Adrian Chadd
Hi, jemalloc doesn't compile on mips + gcc-4.2 now. 14:56 < adrian> cc1: warnings being treated as errors 14:56 < adrian> jemalloc_arena.c: In function 'arena_decay_time_valid': 14:56 < adrian> jemalloc_arena.c:1355: warning: comparison is always true due to limited range of data type 14:56 < adr

svn commit: r296322 - head/share/man/man9

2016-03-02 Thread Bryan Drewery
Author: bdrewery Date: Wed Mar 2 19:22:24 2016 New Revision: 296322 URL: https://svnweb.freebsd.org/changeset/base/296322 Log: Remove self-reference to destroy_dev_drain(9). MFC after:1 week Modified: head/share/man/man9/make_dev.9 Modified: head/share/man/man9/make_dev.9 =

svn commit: r296321 - head/usr.sbin/daemon

2016-03-02 Thread Conrad E. Meyer
Author: cem Date: Wed Mar 2 19:10:39 2016 New Revision: 296321 URL: https://svnweb.freebsd.org/changeset/base/296321 Log: daemon(8): Add -t option to set process title The default process title is taken from the argv[0] value (any particular hardlink name). Add a -t option to override t

svn commit: r296320 - in head/sys: kern sys

2016-03-02 Thread Konstantin Belousov
Author: kib Date: Wed Mar 2 18:46:17 2016 New Revision: 296320 URL: https://svnweb.freebsd.org/changeset/base/296320 Log: If callout_stop_safe() noted that the callout is currently executing, but next invocation is cancelled while migrating, sleepq_check_timeout() needs to be informed that

svn commit: r296319 - head/libexec/rtld-elf

2016-03-02 Thread Konstantin Belousov
Author: kib Date: Wed Mar 2 16:36:24 2016 New Revision: 296319 URL: https://svnweb.freebsd.org/changeset/base/296319 Log: Fix handling of DT_TEXTREL for an object with more than one read-only segment. According to gABI spec, presence of the tag indicates that dynamic linker must be prepare

svn commit: r296316 - head/sys/dev/pci

2016-03-02 Thread Bjoern A. Zeeb
Author: bz Date: Wed Mar 2 15:26:55 2016 New Revision: 296316 URL: https://svnweb.freebsd.org/changeset/base/296316 Log: Add gem5 support, so we attach there as well. Fix the boundary limit to end at the end of the region and not one beyond (1). Diagnosed by: andrew (1) Revi

Re: svn commit: r296261 - in head/sys: kern sys

2016-03-02 Thread Bruce Simpson
All, On 01/03/16 10:57, Svatopluk Kraus wrote: Author: skra Date: Tue Mar 1 10:57:29 2016 New Revision: 296261 URL: https://svnweb.freebsd.org/changeset/base/296261 Log: Mark other parts of interrupt framework as INTR_SOLO option specific. IMHO... The general rationalisation of the FreeBSD k

svn commit: r296315 - head/sys/arm64/include

2016-03-02 Thread Bjoern A. Zeeb
Author: bz Date: Wed Mar 2 15:20:42 2016 New Revision: 296315 URL: https://svnweb.freebsd.org/changeset/base/296315 Log: Force re-routing PCI interrupts (this is for legacy INTx not MSI). Need this for gem5, but was not needed on real hadrware (yet) as it was always MSI. Reviewed by:

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

2016-03-02 Thread Andrew Turner
Author: andrew Date: Wed Mar 2 14:33:46 2016 New Revision: 296313 URL: https://svnweb.freebsd.org/changeset/base/296313 Log: The cpu_reset_needs_v4_MMU_disable variable is only used in locore-v4.S, only define it when building for ARMv5 or prior. Sponsored by: ABT Systems Ltd Modified:

svn commit: r296308 - head/sys/dev/pci

2016-03-02 Thread Wojciech Macek
Author: wma Date: Wed Mar 2 09:54:58 2016 New Revision: 296308 URL: https://svnweb.freebsd.org/changeset/base/296308 Log: Support for Enhanced Allocation in PCI On some platforms, BAR entries are hardcoded and must not be accessed using standard method. Add functionality to ident

Re: svn commit: r296277 - in head: share/man/man4 sys/conf sys/kern sys/modules sys/modules/aio sys/sys tests/sys/aio

2016-03-02 Thread Maxim Konovalov
Hi John, On 3/1/16 9:12 PM, John Baldwin wrote: > Author: jhb > Date: Tue Mar 1 18:12:14 2016 > New Revision: 296277 > URL: https://svnweb.freebsd.org/changeset/base/296277 > > Log: > Refactor the AIO subsystem to permit file-type-specific handling and > improve cancellation robustness. [...

svn commit: r296307 - head/sys/arm64/cavium

2016-03-02 Thread Wojciech Macek
Author: wma Date: Wed Mar 2 08:39:59 2016 New Revision: 296307 URL: https://svnweb.freebsd.org/changeset/base/296307 Log: Improve ThunderX PEM driver to work on pass2 revision Things changed: * do not allocate 4GB of SLI space, because it's the waste of system resources.