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

2016-04-21 Thread Svatopluk Kraus
Author: skra Date: Fri Apr 22 06:42:50 2016 New Revision: 298460 URL: https://svnweb.freebsd.org/changeset/base/298460 Log: Fix duplicate TLB entries issue during section promotion/demotion. Such situation is defined as UNPREDICTABLE by arm arm manual. This patch fixes all explicit TLB fe

Re: svn commit: r298459 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Ngie Cooper (yaneurabeya)
> On Apr 21, 2016, at 23:39, Hans Petter Selasky wrote: > > Author: hselasky > Date: Fri Apr 22 06:39:07 2016 > New Revision: 298459 > URL: https://svnweb.freebsd.org/changeset/base/298459 > > Log: > Add KASSERT() and set error code in dead code case to help static code > analysis tools. > >

svn commit: r298459 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Hans Petter Selasky
Author: hselasky Date: Fri Apr 22 06:39:07 2016 New Revision: 298459 URL: https://svnweb.freebsd.org/changeset/base/298459 Log: Add KASSERT() and set error code in dead code case to help static code analysis tools. Suggested by: ngie@ Sponsored by: Mellanox Technologies MFC after:

svn commit: r298458 - head/sys/ofed/drivers/infiniband/ulp/ipoib

2016-04-21 Thread Hans Petter Selasky
Author: hselasky Date: Fri Apr 22 06:33:06 2016 New Revision: 298458 URL: https://svnweb.freebsd.org/changeset/base/298458 Log: Add missing set of the current VNET when inputting IP packets in IPoIB. This fixes a kernel panic when using IPoIB with VIMAGE and infiniband. PR: 2

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

2016-04-21 Thread Svatopluk Kraus
Author: skra Date: Fri Apr 22 06:32:27 2016 New Revision: 298457 URL: https://svnweb.freebsd.org/changeset/base/298457 Log: Don't use atomic operations for page table entries and handle access and R/W emulation aborts under pmap lock. There were two reasons for using of atomic operations:

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

2016-04-21 Thread Svatopluk Kraus
Author: skra Date: Fri Apr 22 06:26:45 2016 New Revision: 298455 URL: https://svnweb.freebsd.org/changeset/base/298455 Log: Add four functions which check a virtual address for stage 1 privileged (PL1) and unprivileged (PL0) read/write access. As cp15 virtual to physical address translation

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

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 06:25:32 2016 New Revision: 298454 URL: https://svnweb.freebsd.org/changeset/base/298454 Log: Use MIN()/MAX() macros from sys/param.h. Reviewed by: grehan Differential Revision:https://reviews.freebsd.org/D6054 Modified: head/usr.sbin/bhyve/fwct

svn commit: r298453 - head/usr.bin/xlint/lint1

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 06:23:23 2016 New Revision: 298453 URL: https://svnweb.freebsd.org/changeset/base/298453 Log: Use roundup2() macro from sys/param.h. MFC after:2 weeks. Modified: head/usr.bin/xlint/lint1/decl.c Modified: head/usr.bin/xlint/lint1/decl.c ===

svn commit: r298452 - head/usr.sbin/bsnmpd/tools/libbsnmptools

2016-04-21 Thread Garrett Cooper
Author: ngie Date: Fri Apr 22 06:01:11 2016 New Revision: 298452 URL: https://svnweb.freebsd.org/changeset/base/298452 Log: Don't try to free `string` (stack allocated char[]) Fix minor style with warnx call while in the neighborhood MFC after: 1 week CID: 1009683 Reported by: Cove

svn commit: r298451 - head/usr.sbin/bsnmpd/tools/libbsnmptools

2016-04-21 Thread Garrett Cooper
Author: ngie Date: Fri Apr 22 05:52:40 2016 New Revision: 298451 URL: https://svnweb.freebsd.org/changeset/base/298451 Log: Don't use `entry` after free in the "already in lists" case Return with 0 as it isn't an error. MFC after: 1 week CID: 1006085 Reported by: Coverity Obtaine

svn commit: r298450 - head/contrib/bsnmp/gensnmptree

2016-04-21 Thread Garrett Cooper
Author: ngie Date: Fri Apr 22 05:24:15 2016 New Revision: 298450 URL: https://svnweb.freebsd.org/changeset/base/298450 Log: Simplify always evaluated branch (`e != NULL`) - xalloc(..) ensures that e will be non-null via malloc + err. - `e` is already dereferenced above, so logically it's

svn commit: r298449 - head/sys/dev/hyperv/vmbus

2016-04-21 Thread Sepherosa Ziehau
Author: sephe Date: Fri Apr 22 05:15:59 2016 New Revision: 298449 URL: https://svnweb.freebsd.org/changeset/base/298449 Log: hyperv/et: Make Hyper-V event timer a device. Submitted by: Jun Su Reviewed by: sephe, Dexuan Cui MFC after:1 week Sponsored by: Microsoft OSTC Differe

svn commit: r298448 - head/contrib/bsnmp/snmpd

2016-04-21 Thread Garrett Cooper
Author: ngie Date: Fri Apr 22 05:14:12 2016 New Revision: 298448 URL: https://svnweb.freebsd.org/changeset/base/298448 Log: Don't leak `string` in parse_define(..) when a macro has been found and the parser token != TOK_ASSIGN MFC after: 1 week CID: 1007187, 1007188 Reported by: Cover

svn commit: r298447 - head/usr.sbin/pmccontrol

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 05:07:59 2016 New Revision: 298447 URL: https://svnweb.freebsd.org/changeset/base/298447 Log: Use macro MAX() from sys/param.h. MFC after:2 weeks. Modified: head/usr.sbin/pmccontrol/pmccontrol.c Modified: head/usr.sbin/pmccontrol/pmccontrol.c

svn commit: r298446 - in head/sys/dev/hyperv: include netvsc storvsc utilities vmbus

2016-04-21 Thread Sepherosa Ziehau
Author: sephe Date: Fri Apr 22 05:01:43 2016 New Revision: 298446 URL: https://svnweb.freebsd.org/changeset/base/298446 Log: hyperv: Update copyright to 2016 for the files Microsoft changed in 2016 Sponsored by: Microsoft OSTC Differential Revision:https://reviews.freebsd.org/D603

svn commit: r298445 - head/usr.sbin/moused

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 03:55:33 2016 New Revision: 298445 URL: https://svnweb.freebsd.org/changeset/base/298445 Log: Use macro MAX() from sys/param.h. MFC after:2 weeks. Modified: head/usr.sbin/moused/moused.c Modified: head/usr.sbin/moused/moused.c

svn commit: r298444 - head/usr.bin/vmstat

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 03:46:57 2016 New Revision: 298444 URL: https://svnweb.freebsd.org/changeset/base/298444 Log: Use MIN() macro from sys/param.h. MFC after:2 weeks. Modified: head/usr.bin/vmstat/vmstat.c Modified: head/usr.bin/vmstat/vmstat.c ==

svn commit: r298443 - head/usr.bin/stat

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 03:43:06 2016 New Revision: 298443 URL: https://svnweb.freebsd.org/changeset/base/298443 Log: Use macro MAX() from sys/param.h. MFC after:2 weeks. Modified: head/usr.bin/stat/stat.c Modified: head/usr.bin/stat/stat.c ==

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

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 03:37:27 2016 New Revision: 298442 URL: https://svnweb.freebsd.org/changeset/base/298442 Log: Use macro MAX() from sys/param.h. MFC after:2 weeks. Modified: head/usr.bin/netstat/sctp.c Modified: head/usr.bin/netstat/sctp.c

svn commit: r298441 - head/sbin/fsck_msdosfs

2016-04-21 Thread Marcelo Araujo
Author: araujo Date: Fri Apr 22 03:32:14 2016 New Revision: 298441 URL: https://svnweb.freebsd.org/changeset/base/298441 Log: Use macro MAX() from sys/param.h. MFC after:2 weeks. Modified: head/sbin/fsck_msdosfs/dir.c Modified: head/sbin/fsck_msdosfs/dir.c ==

Re: svn commit: r298408 - head/sys/netinet

2016-04-21 Thread Jonathan T. Looney
On 4/21/16, 11:06 AM, "owner-src-committ...@freebsd.org on behalf of Jonathan T. Looney" wrote: >Author: jtl >Date: Thu Apr 21 15:06:53 2016 >New Revision: 298408 >URL: https://svnweb.freebsd.org/changeset/base/298408 > >Log: > Prevent underflows in tp->snd_wnd if the remote side ACKs more tha

Re: svn commit: r298440 - head/usr.bin/sed

2016-04-21 Thread Pedro Giffuni
Oops wrong log message It's supposed to be: sed: use NULL instead of zero for pointers. On 04/21/16 16:30, Pedro F. Giffuni wrote: Author: pfg Date: Thu Apr 21 21:30:51 2016 New Revision: 298440 URL: https://svnweb.freebsd.org/changeset/base/298440 Log: kernel: use our nitems() macro wh

svn commit: r298440 - head/usr.bin/sed

2016-04-21 Thread Pedro F. Giffuni
Author: pfg Date: Thu Apr 21 21:30:51 2016 New Revision: 298440 URL: https://svnweb.freebsd.org/changeset/base/298440 Log: kernel: use our nitems() macro when it is available through param.h. No functional change, only trivial cases are done in this sweep, Discussed in: freebsd-current

svn commit: r298439 - head/sys/geom

2016-04-21 Thread Alan Somers
Author: asomers Date: Thu Apr 21 21:13:41 2016 New Revision: 298439 URL: https://svnweb.freebsd.org/changeset/base/298439 Log: DRY on buffer sizes. Update to r298420. sys/geom/geom_disk.c: In disk_attr_changed, don't repeat a buffer size. Reported by: ngie, hselasky MFC afte

Re: svn commit: r298420 - head/sys/geom

2016-04-21 Thread Ngie Cooper (yaneurabeya)
> On Apr 21, 2016, at 10:26, Alan Somers wrote: > > > > On Thu, Apr 21, 2016 at 11:09 AM, Ngie Cooper wrote: > On Thu, Apr 21, 2016 at 10:08 AM, Ngie Cooper wrote: > > On Thu, Apr 21, 2016 at 9:43 AM, Alan Somers wrote: > >> Author: asomers > >> Date: Thu Apr 21 16:43:15 2016 > >> New Revis

svn commit: r298438 - head/contrib/llvm/tools/clang/lib/Driver

2016-04-21 Thread Dimitry Andric
Author: dim Date: Thu Apr 21 20:38:10 2016 New Revision: 298438 URL: https://svnweb.freebsd.org/changeset/base/298438 Log: Pull r266775 from upstream clang trunk (by Douglas Katzman): Pass dwarf-version to cc1as. Fix PR26999 - crashing in cc1as with any '*bsd' target. This sho

svn commit: r298437 - head/contrib/llvm/tools/clang/tools/driver

2016-04-21 Thread Dimitry Andric
Author: dim Date: Thu Apr 21 20:37:53 2016 New Revision: 298437 URL: https://svnweb.freebsd.org/changeset/base/298437 Log: Revert r298147 (temporary workaround for LLVM PR 26999) in preparation for committing the final upstream fix. Modified: head/contrib/llvm/tools/clang/tools/driver/cc1as

svn commit: r298436 - head/sys/dev/urtwn

2016-04-21 Thread Andriy Voskoboinyk
Author: avos Date: Thu Apr 21 20:34:38 2016 New Revision: 298436 URL: https://svnweb.freebsd.org/changeset/base/298436 Log: urtwn: optimize rate lookup in the urtwn_ra_init() Replace loop with switch statement (rate2ridx()) (should be noop). Tested with RTL8188EU / RTL8188CUS, STA mo

svn commit: r298435 - in head/sys: cam/scsi dev/ae dev/digi dev/ed i386/i386

2016-04-21 Thread Pedro F. Giffuni
Author: pfg Date: Thu Apr 21 20:30:38 2016 New Revision: 298435 URL: https://svnweb.freebsd.org/changeset/base/298435 Log: Yet more redundant parenthesis from r298431. Mea culpa. Modified: head/sys/cam/scsi/scsi_all.c head/sys/dev/ae/if_ae.c head/sys/dev/digi/digi_isa.c head/sys/de

svn commit: r298434 - head/lib/msun/tests

2016-04-21 Thread Garrett Cooper
Author: ngie Date: Thu Apr 21 19:59:55 2016 New Revision: 298434 URL: https://svnweb.freebsd.org/changeset/base/298434 Log: Completely disable fmaxmin_test (follow up to r297952) COMPILER_TYPE/COMPILER_VERSION doesn't get passed down properly at buildworld/installworld with older build ho

svn commit: r298433 - in head/sys: amd64/amd64 arm/arm arm/at91 arm/cavium/cns11xx arm/mv arm/xscale/i8134x arm/xscale/ixp425 arm/xscale/pxa arm64/arm64 boot/common boot/mips/beri/loader boot/zfs d...

2016-04-21 Thread Pedro F. Giffuni
Author: pfg Date: Thu Apr 21 19:57:40 2016 New Revision: 298433 URL: https://svnweb.freebsd.org/changeset/base/298433 Log: sys: use our roundup2/rounddown2() macros when param.h is available. rounddown2 tends to produce longer lines than the original code and when the code has a high inde

svn commit: r298432 - head/sys/dev/aic

2016-04-21 Thread Pedro F. Giffuni
Author: pfg Date: Thu Apr 21 19:48:28 2016 New Revision: 298432 URL: https://svnweb.freebsd.org/changeset/base/298432 Log: Redundant parenthesis from r298431. Modified: head/sys/dev/aic/aic_isa.c Modified: head/sys/dev/aic/aic_isa.c ===

svn commit: r298431 - in head/sys: cam/ata cam/scsi dev/advansys dev/ae dev/aic dev/fb dev/hwpmc dev/le dev/rndtest dev/uart mips/nlm mips/rmi/dev/nlge netgraph netgraph/atm security/audit

2016-04-21 Thread Pedro F. Giffuni
Author: pfg Date: Thu Apr 21 19:40:10 2016 New Revision: 298431 URL: https://svnweb.freebsd.org/changeset/base/298431 Log: sys: use our nitems() macro when param.h is available. This should cover all the remaining cases in the kernel. Discussed in: freebsd-current Modified: head/sys

svn commit: r298428 - head/sys/arm/broadcom/bcm2835

2016-04-21 Thread Oleksandr Tymoshenko
Author: gonzo Date: Thu Apr 21 18:58:06 2016 New Revision: 298428 URL: https://svnweb.freebsd.org/changeset/base/298428 Log: Use proper type of tag in bcm2835_mbox_fb_init bcm2835_mbox_fb_init sets configuration so SET_VIRTUAL_OFFSET should be used instead of GET_VIRTUAL_OFFSET Submi

Re: svn commit: r298426 - head/sys/dev/fdc

2016-04-21 Thread Hans Petter Selasky
On 04/21/16 20:37, John Baldwin wrote: - tsleep(fdc, PRIBIO, "fdcrst", hz); + if (cold) + DELAY(100); + else + tsleep(fdc, PRIBIO, "fdcrst", hz); Hi, pause() and pause_sbt() does exactly this, checking fo

svn commit: r298426 - head/sys/dev/fdc

2016-04-21 Thread John Baldwin
Author: jhb Date: Thu Apr 21 18:37:36 2016 New Revision: 298426 URL: https://svnweb.freebsd.org/changeset/base/298426 Log: Adjust the fdc worker thread startup to work when APs are started earlier. - Enable the commented out locking in fd_probe(). The worker thread should not be runnin

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Pedro Giffuni via svn-src-head
On 21/04/2016 13:25, Pedro Giffuni wrote: On 21/04/2016 13:12, Hans Petter Selasky wrote: On 04/21/16 19:59, Pedro Giffuni wrote: On 21/04/2016 12:52, Juli Mallett wrote: On Thu, Apr 21, 2016 at 10:22 AM, Hans Petter Selasky wrote: On 04/21/16 19:12, Ngie Cooper wrote: Hi, Then the

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Pedro Giffuni
On 21/04/2016 13:25, Pedro Giffuni wrote: On 21/04/2016 13:12, Hans Petter Selasky wrote: On 04/21/16 19:59, Pedro Giffuni wrote: On 21/04/2016 12:52, Juli Mallett wrote: On Thu, Apr 21, 2016 at 10:22 AM, Hans Petter Selasky wrote: On 04/21/16 19:12, Ngie Cooper wrote: Hi, Then the

svn commit: r298425 - head/sys/dev/acpica

2016-04-21 Thread John Baldwin
Author: jhb Date: Thu Apr 21 18:27:05 2016 New Revision: 298425 URL: https://svnweb.freebsd.org/changeset/base/298425 Log: Queue the CPU-probing task after all acpi_cpu devices are attached. Eventually with earlier AP startup this code will change to call the startup function synchronousl

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Pedro Giffuni
On 21/04/2016 13:12, Hans Petter Selasky wrote: On 04/21/16 19:59, Pedro Giffuni wrote: On 21/04/2016 12:52, Juli Mallett wrote: On Thu, Apr 21, 2016 at 10:22 AM, Hans Petter Selasky wrote: On 04/21/16 19:12, Ngie Cooper wrote: Hi, Then there should be an assertion or something else o

Re: svn commit: r298219 - head/share/mk

2016-04-21 Thread Bryan Drewery
On 4/21/16 11:19 AM, Konstantin Belousov wrote: > On Thu, Apr 21, 2016 at 09:13:00AM -0700, Bryan Drewery wrote: >> On 4/19/16 5:15 AM, Konstantin Belousov wrote: >>> On Mon, Apr 18, 2016 at 06:14:02PM +, Bryan Drewery wrote: Author: bdrewery Date: Mon Apr 18 18:14:02 2016 New Re

Re: svn commit: r298219 - head/share/mk

2016-04-21 Thread Konstantin Belousov
On Thu, Apr 21, 2016 at 09:13:00AM -0700, Bryan Drewery wrote: > On 4/19/16 5:15 AM, Konstantin Belousov wrote: > > On Mon, Apr 18, 2016 at 06:14:02PM +, Bryan Drewery wrote: > >> Author: bdrewery > >> Date: Mon Apr 18 18:14:02 2016 > >> New Revision: 298219 > >> URL: https://svnweb.freebsd.org

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Pedro Giffuni
On 21/04/2016 12:52, Juli Mallett wrote: On Thu, Apr 21, 2016 at 10:22 AM, Hans Petter Selasky wrote: On 04/21/16 19:12, Ngie Cooper wrote: Please put the "deadcode" back. It will crash now if it's given an invalid address family (or none are configured in the kernel) when it tries to do the

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Hans Petter Selasky
On 04/21/16 19:59, Pedro Giffuni wrote: On 21/04/2016 12:52, Juli Mallett wrote: On Thu, Apr 21, 2016 at 10:22 AM, Hans Petter Selasky wrote: On 04/21/16 19:12, Ngie Cooper wrote: Hi, Then there should be an assertion or something else of that sort (I forget if we have a __builtin_unreac

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Juli Mallett
On Thu, Apr 21, 2016 at 10:22 AM, Hans Petter Selasky wrote: > On 04/21/16 19:12, Ngie Cooper wrote: >> >> Please put the "deadcode" back. It will crash now if it's given an >> invalid address family (or none are configured in the kernel) when it >> tries to do the memcpy below. > > > If you look

svn commit: r298424 - in head/sys/dev/usb: . quirk

2016-04-21 Thread Hans Petter Selasky
Author: hselasky Date: Thu Apr 21 17:45:37 2016 New Revision: 298424 URL: https://svnweb.freebsd.org/changeset/base/298424 Log: Add new USB quirk. Submitted by: Naram Qashat PR: 208642 MFC after:1 week Modified: head/sys/dev/usb/quirk/usb_quirk.c head/sys/dev/usb/usb

Re: svn commit: r298420 - head/sys/geom

2016-04-21 Thread Hans Petter Selasky
On 04/21/16 19:26, Alan Somers wrote: On Thu, Apr 21, 2016 at 11:09 AM, Ngie Cooper wrote: On Thu, Apr 21, 2016 at 10:08 AM, Ngie Cooper wrote: On Thu, Apr 21, 2016 at 9:43 AM, Alan Somers { struct g_geom *gp; struct g_provider *pp; + char devnamebuf[128]; Why 1

Re: svn commit: r298420 - head/sys/geom

2016-04-21 Thread Alan Somers
On Thu, Apr 21, 2016 at 11:09 AM, Ngie Cooper wrote: > On Thu, Apr 21, 2016 at 10:08 AM, Ngie Cooper > wrote: > > On Thu, Apr 21, 2016 at 9:43 AM, Alan Somers > wrote: > >> Author: asomers > >> Date: Thu Apr 21 16:43:15 2016 > >> New Revision: 298420 > >> URL: https://svnweb.freebsd.org/changes

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Hans Petter Selasky
On 04/21/16 19:12, Ngie Cooper wrote: Please put the "deadcode" back. It will crash now if it's given an invalid address family (or none are configured in the kernel) when it tries to do the memcpy below. If you look a few lines up in the file, not the patch, you'll see that there already is a

Re: svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Ngie Cooper
On Thu, Apr 21, 2016 at 9:04 AM, Hans Petter Selasky wrote: > Author: hselasky > Date: Thu Apr 21 16:04:58 2016 > New Revision: 298412 > URL: https://svnweb.freebsd.org/changeset/base/298412 > > Log: > Fix for resolving mac address when the destination address is a gateway. > Remove some dead

Re: svn commit: r298420 - head/sys/geom

2016-04-21 Thread Ngie Cooper
On Thu, Apr 21, 2016 at 10:08 AM, Ngie Cooper wrote: > On Thu, Apr 21, 2016 at 9:43 AM, Alan Somers wrote: >> Author: asomers >> Date: Thu Apr 21 16:43:15 2016 >> New Revision: 298420 >> URL: https://svnweb.freebsd.org/changeset/base/298420 >> >> Log: >> Notify userspace listeners when geom dis

Re: svn commit: r298420 - head/sys/geom

2016-04-21 Thread Ngie Cooper
On Thu, Apr 21, 2016 at 9:43 AM, Alan Somers wrote: > Author: asomers > Date: Thu Apr 21 16:43:15 2016 > New Revision: 298420 > URL: https://svnweb.freebsd.org/changeset/base/298420 > > Log: > Notify userspace listeners when geom disk attributes have changed > > sys/geom/geom_disk.c: >

svn commit: r298422 - in head: release/arm sys/arm/allwinner sys/arm/allwinner/a20 sys/arm/allwinner/a31 sys/arm/conf sys/boot/fdt/dts/arm sys/modules/dtb/allwinner

2016-04-21 Thread Jared McNeill
Author: jmcneill Date: Thu Apr 21 16:49:04 2016 New Revision: 298422 URL: https://svnweb.freebsd.org/changeset/base/298422 Log: Replace the A20 kernel config with a generic ALLWINNER kernel config that supports A20, A31, and A31S. Adds support for the BananaPi M2 (A31S) board. Submitted b

svn commit: r298423 - head

2016-04-21 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 21 16:50:45 2016 New Revision: 298423 URL: https://svnweb.freebsd.org/changeset/base/298423 Log: Fix unset variables from r298417. Pointyhat to: bdrewery Sponsored by: EMC / Isilon Storage Division Modified: head/Makefile.inc1 Modified: head/Makefile.inc

svn commit: r298421 - head

2016-04-21 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 21 16:43:36 2016 New Revision: 298421 URL: https://svnweb.freebsd.org/changeset/base/298421 Log: Add more missing .PHONY Sponsored by: EMC / Isilon Storage Division Modified: head/Makefile.inc1 Modified: head/Makefile.inc1 =

svn commit: r298420 - head/sys/geom

2016-04-21 Thread Alan Somers
Author: asomers Date: Thu Apr 21 16:43:15 2016 New Revision: 298420 URL: https://svnweb.freebsd.org/changeset/base/298420 Log: Notify userspace listeners when geom disk attributes have changed sys/geom/geom_disk.c: disk_attr_changed(): Generate a devctl event of type GEOM: for

svn commit: r298419 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Hans Petter Selasky
Author: hselasky Date: Thu Apr 21 16:33:42 2016 New Revision: 298419 URL: https://svnweb.freebsd.org/changeset/base/298419 Log: Fix for using IPv6 addresses with RDMA: IPv6 addresses has a scope ID which sometimes is stored in the "sin6_scope_id" field of "struct sockaddr_in6" and sometim

svn commit: r298418 - head/sys/boot

2016-04-21 Thread Allan Jude
Author: allanjude Date: Thu Apr 21 16:32:48 2016 New Revision: 298418 URL: https://svnweb.freebsd.org/changeset/base/298418 Log: Add more guards to disable GELIBOOT by defining LOADER_NO_GELI_SUPPORT Reviewed by: cem Sponsored by: ScaleEngine Inc. Differential Revision:https://

svn commit: r298417 - head

2016-04-21 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 21 16:30:28 2016 New Revision: 298417 URL: https://svnweb.freebsd.org/changeset/base/298417 Log: Remove redundant logic from the pkg-base merge. These will be set from the logic right above it. Reviewed by: gjb Sponsored by: EMC / Isilon Storage Divisi

svn commit: r298415 - head

2016-04-21 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 21 16:30:16 2016 New Revision: 298415 URL: https://svnweb.freebsd.org/changeset/base/298415 Log: Add more missing .PHONY. This also protects them from trying to create .meta files with WITH_META_MODE. Reported by: Nikolai Lifanov Sponsored by: EMC /

svn commit: r298416 - head

2016-04-21 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 21 16:30:25 2016 New Revision: 298416 URL: https://svnweb.freebsd.org/changeset/base/298416 Log: Fix 'make -n' for new packaging targets. Sponsored by: EMC / Isilon Storage Division Modified: head/Makefile.inc1 Modified: head/Makefile.inc1

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

2016-04-21 Thread Edward Tomasz Napierala
Author: trasz Date: Thu Apr 21 16:22:52 2016 New Revision: 298414 URL: https://svnweb.freebsd.org/changeset/base/298414 Log: Get rid of rctl_lock; use racct_lock where appropriate. The fast paths already required both of them, so having a separate rctl_lock didn't buy us anything. Revie

Re: svn commit: r298219 - head/share/mk

2016-04-21 Thread Bryan Drewery
On 4/19/16 5:15 AM, Konstantin Belousov wrote: > On Mon, Apr 18, 2016 at 06:14:02PM +, Bryan Drewery wrote: >> Author: bdrewery >> Date: Mon Apr 18 18:14:02 2016 >> New Revision: 298219 >> URL: https://svnweb.freebsd.org/changeset/base/298219 >> >> Log: >> Cause an error during 'make install'

svn commit: r298413 - head/share/mk

2016-04-21 Thread Bryan Drewery
Author: bdrewery Date: Thu Apr 21 16:12:55 2016 New Revision: 298413 URL: https://svnweb.freebsd.org/changeset/base/298413 Log: Follow-up r298219: Don't error with 'make all install'. Reported by: kib Sponsored by: EMC / Isilon Storage Division Modified: head/share/mk/bsd.sys.mk Modi

svn commit: r298412 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Hans Petter Selasky
Author: hselasky Date: Thu Apr 21 16:04:58 2016 New Revision: 298412 URL: https://svnweb.freebsd.org/changeset/base/298412 Log: Fix for resolving mac address when the destination address is a gateway. Remove some dead code while at it. Sponsored by: Mellanox Technologies MFC after:1

svn commit: r298411 - in head/sys: cam cam/ata cam/scsi dev/advansys dev/hwpmc dev/pccard dev/sge dev/sound/pci dev/uart kern mips/nlm net netgraph/bluetooth/socket nlm security/audit vm

2016-04-21 Thread Pedro F. Giffuni
Author: pfg Date: Thu Apr 21 15:38:28 2016 New Revision: 298411 URL: https://svnweb.freebsd.org/changeset/base/298411 Log: Remove slightly used const values that can be replaced with nitems(). Suggested by: jhb Modified: head/sys/cam/ata/ata_xpt.c head/sys/cam/cam.c head/sys/cam/scsi

svn commit: r298409 - head/sys/dev/siba

2016-04-21 Thread Pedro F. Giffuni
Author: pfg Date: Thu Apr 21 15:24:21 2016 New Revision: 298409 URL: https://svnweb.freebsd.org/changeset/base/298409 Log: siba(4): remove slightly used 'bound' variable. It can be replaced with nitems(). While here simplify the function Suggested by: jhb Modified: head/sys/dev/siba

Re: svn commit: r298247 - head/sbin/fdisk_pc98

2016-04-21 Thread John Baldwin
On Thursday, April 21, 2016 04:01:17 PM Bruce Evans wrote: > On Wed, 20 Apr 2016, John Baldwin wrote: > > > On Wednesday, April 20, 2016 01:06:38 PM Bruce Evans wrote: > >> On Wed, 20 Apr 2016, Marcelo Araujo wrote: > >> > >>> 2016-04-20 0:16 GMT+08:00 John Baldwin : > >>> > On Tuesday, April

svn commit: r298408 - head/sys/netinet

2016-04-21 Thread Jonathan T. Looney
Author: jtl Date: Thu Apr 21 15:06:53 2016 New Revision: 298408 URL: https://svnweb.freebsd.org/changeset/base/298408 Log: Prevent underflows in tp->snd_wnd if the remote side ACKs more than tp->snd_wnd. This can happen, for example, when the remote side responds to a window probe by ACKing

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

2016-04-21 Thread Steven Kreuzer
Author: skreuzer (doc,ports committer) Date: Thu Apr 21 14:20:45 2016 New Revision: 298404 URL: https://svnweb.freebsd.org/changeset/base/298404 Log: Document r296417, clang, llvm, etc. updated to upstream 3.8.0 Approved by: gjb@ Differential Revision:D6037 Modified: head/rele

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

2016-04-21 Thread Andrew Turner
Author: andrew Date: Thu Apr 21 14:04:56 2016 New Revision: 298403 URL: https://svnweb.freebsd.org/changeset/base/298403 Log: Make the GIC SGI global variables static, they are only ever used within within this file. Approved by: ABT Systems Ltd Sponsored by: The FreeBSD Foundation Mo

Re: svn commit: r298378 - head/usr.bin/localedef

2016-04-21 Thread Baptiste Daroussin
On Thu, Apr 21, 2016 at 06:15:56AM -0700, Cy Schubert wrote: > Should we MFC this too? > localdef is only on head Best regards, Bapt signature.asc Description: PGP signature

RE: svn commit: r298378 - head/usr.bin/localedef

2016-04-21 Thread Cy Schubert
Should we MFC this too? Sent from my cellphone, ~Cy -Original Message- From: Baptiste Daroussin Sent: 20/04/2016 14:23 To: src-committ...@freebsd.org; svn-src-...@freebsd.org; svn-src-head@freebsd.org Subject: svn commit: r298378 - head/usr.bin/localedef Author: bapt Date: Wed Apr 20 21

svn commit: r298402 - head

2016-04-21 Thread Ed Maste
Author: emaste Date: Thu Apr 21 13:14:55 2016 New Revision: 298402 URL: https://svnweb.freebsd.org/changeset/base/298402 Log: Adjust BOOTSTRAPPING test after MFC of kbdcontrol's -P option Modified: head/Makefile.inc1 Modified: head/Makefile.inc1 ==

svn commit: r298401 - in head: lib/libdwarf lib/libelf lib/libelftc usr.bin/addr2line usr.bin/cxxfilt usr.bin/elfcopy usr.bin/nm usr.bin/readelf usr.bin/size usr.bin/strings

2016-04-21 Thread Ed Maste
Author: emaste Date: Thu Apr 21 12:58:29 2016 New Revision: 298401 URL: https://svnweb.freebsd.org/changeset/base/298401 Log: elftoolchain: Use ${SRCTOP} for the top of the FreeBSD tree It's provided by sys.mk so there's no need to derive it from ${.CURDIR}. Suggested by: ngie Sponso

svn commit: r298400 - head/sys/ofed/drivers/infiniband/core

2016-04-21 Thread Hans Petter Selasky
Author: hselasky Date: Thu Apr 21 11:32:22 2016 New Revision: 298400 URL: https://svnweb.freebsd.org/changeset/base/298400 Log: Properly setup arguments for if_resolvemulti() callback. Sponsored by: Mellanox Technologies MFC after:1 week Modified: head/sys/ofed/drivers/infiniband/c

svn commit: r298399 - head/sys/netipsec

2016-04-21 Thread Andrey V. Elsukov
Author: ae Date: Thu Apr 21 11:02:06 2016 New Revision: 298399 URL: https://svnweb.freebsd.org/changeset/base/298399 Log: Remove stale function declaration Modified: head/sys/netipsec/ipsec.h Modified: head/sys/netipsec/ipsec.h

svn commit: r298398 - head/sys/netipsec

2016-04-21 Thread Andrey V. Elsukov
Author: ae Date: Thu Apr 21 10:58:07 2016 New Revision: 298398 URL: https://svnweb.freebsd.org/changeset/base/298398 Log: Constify mbuf pointer for IPSEC functions where mbuf isn't modified. Modified: head/sys/netipsec/ipsec.c head/sys/netipsec/ipsec.h head/sys/netipsec/ipsec6.h head/sy

Re: svn commit: r298230 - in head: lib/libstand sys/boot/common sys/boot/efi/libefi sys/boot/efi/loader sys/boot/i386/libfirewire sys/boot/i386/libi386 sys/boot/i386/loader sys/boot/mips/beri/loader s

2016-04-21 Thread Bjoern A. Zeeb
> On 19 Apr 2016, at 15:49 , Allan Jude wrote: > > On 2016-04-19 05:08, Bjoern A. Zeeb wrote: >> >>> On 18 Apr 2016, at 23:09 , Allan Jude wrote: >>> >>> Author: allanjude >>> Date: Mon Apr 18 23:09:22 2016 >>> New Revision: 298230 >>> URL: https://svnweb.freebsd.org/changeset/base/298230 >>>

Re: svn commit: r298367 - head/lib/libc/locale

2016-04-21 Thread Baptiste Daroussin
On Thu, Apr 21, 2016 at 10:22:48AM +0300, Andrey Chernov wrote: > On 21.04.2016 9:29, Baptiste Daroussin wrote: > Modified: head/lib/libc/locale/ascii.c > == > --- head/lib/libc/locale/ascii.c Wed Apr 20 20:4

svn commit: r298397 - in head/sys/mips: conf mediatek

2016-04-21 Thread Stanislav Galabov
Author: sgalabov Date: Thu Apr 21 07:40:03 2016 New Revision: 298397 URL: https://svnweb.freebsd.org/changeset/base/298397 Log: Rework Mediatek/Ralink configuration files Only compile what each SoC needs and get rid of MEDIATEK generic config. Approved by: adrian (mentor) Sponsored

svn commit: r298396 - head/lib/libc/locale

2016-04-21 Thread Baptiste Daroussin
Author: bapt Date: Thu Apr 21 07:36:11 2016 New Revision: 298396 URL: https://svnweb.freebsd.org/changeset/base/298396 Log: Restore the original ascii.c from prior to r290494 It was doing the right thing, there was no need to "fail" to reinvent it from none.c Pointy hat: bapt Sub

Re: svn commit: r298367 - head/lib/libc/locale

2016-04-21 Thread Andrey Chernov
On 21.04.2016 9:29, Baptiste Daroussin wrote: Modified: head/lib/libc/locale/ascii.c == --- head/lib/libc/locale/ascii.c Wed Apr 20 20:43:05 2016 (r298366) +++ head/lib/libc/locale/ascii.c