svn commit: r293977 - head/usr.sbin/boot0cfg

2016-01-14 Thread John Baldwin
Author: jhb Date: Thu Jan 14 15:49:24 2016 New Revision: 293977 URL: https://svnweb.freebsd.org/changeset/base/293977 Log: Adjust previous fix to conform to the existing style in this file. Modified: head/usr.sbin/boot0cfg/boot0cfg.c Modified: head/usr.sbin/boot0cfg/boot0cfg.c

svn commit: r293979 - head/lib/libkvm

2016-01-14 Thread John Baldwin
Author: jhb Date: Thu Jan 14 15:51:13 2016 New Revision: 293979 URL: https://svnweb.freebsd.org/changeset/base/293979 Log: Fix building with GCC since PAGE_MASK is signed on i386. Reviewed by: ngie MFC after:1 week Differential Revision:https://reviews.freebsd.org/D4772

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread John Baldwin
On Thursday, January 14, 2016 01:27:51 AM NGie Cooper wrote: > > > On Jan 14, 2016, at 01:22, Steven Hartland wrote: > > > > Author: smh > > Date: Thu Jan 14 09:22:01 2016 > > New Revision: 293903 > > URL: https://svnweb.freebsd.org/changeset/base/293903 > > > > Log: > > Fix

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

2016-01-14 Thread Garrett Cooper
Author: ngie Date: Thu Jan 14 18:04:49 2016 New Revision: 294026 URL: https://svnweb.freebsd.org/changeset/base/294026 Log: Fix spelling of IPMI Sponsored by: EMC / Isilon Storage Division Modified: head/share/man/man4/ddb.4 Modified: head/share/man/man4/ddb.4

Re: svn commit: r293979 - head/lib/libkvm

2016-01-14 Thread John Baldwin
On Thursday, January 14, 2016 03:51:13 PM John Baldwin wrote: > Author: jhb > Date: Thu Jan 14 15:51:13 2016 > New Revision: 293979 > URL: https://svnweb.freebsd.org/changeset/base/293979 > > Log: > Fix building with GCC since PAGE_MASK is signed on i386. > > Reviewed by:ngie >

Re: svn commit: r293979 - head/lib/libkvm

2016-01-14 Thread Bruce Evans
On Thu, 14 Jan 2016, John Baldwin wrote: Log: Fix building with GCC since PAGE_MASK is signed on i386. ... Modified: head/lib/libkvm/kvm_i386.h == --- head/lib/libkvm/kvm_i386.h Thu Jan 14 15:50:13 2016

Re: svn commit: r293979 - head/lib/libkvm

2016-01-14 Thread John Baldwin
On Friday, January 15, 2016 04:34:51 AM Bruce Evans wrote: > On Thu, 14 Jan 2016, John Baldwin wrote: > > > Log: > > Fix building with GCC since PAGE_MASK is signed on i386. > > ... > > > Modified: head/lib/libkvm/kvm_i386.h > >

svn commit: r293888 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:00:35 2016 New Revision: 293888 URL: https://svnweb.freebsd.org/changeset/base/293888 Log: sfxge: rework MCDI start request Submitted by: Andy Moreton Reviewed by:gnn Sponsored by: Solarflare Communications, Inc. MFC after: 2 days

svn commit: r293889 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:01:53 2016 New Revision: 293889 URL: https://svnweb.freebsd.org/changeset/base/293889 Log: sfxge: convert nvram size method to use partition id Submitted by: Andy Moreton Reviewed by:gnn Sponsored by: Solarflare Communications, Inc. MFC

svn commit: r293895 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:11:20 2016 New Revision: 293895 URL: https://svnweb.freebsd.org/changeset/base/293895 Log: sfxge: fix common code VPD iterator and duplicate tag verification Fix efx_vpd_hunk_next() which has -- since its inception -- failed to correctly iterate over

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
On 14/01/2016 09:27, NGie Cooper wrote: On Jan 14, 2016, at 01:22, Steven Hartland wrote: Author: smh Date: Thu Jan 14 09:22:01 2016 New Revision: 293903 URL: https://svnweb.freebsd.org/changeset/base/293903 Log: Fix GCC warnings causing build failure after r293724

svn commit: r293902 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:20:25 2016 New Revision: 293902 URL: https://svnweb.freebsd.org/changeset/base/293902 Log: sfxge: cleanup: quieten efx_mcdi_read_resonse_header error reporting The "mcdi_err_arg" probe still reports results of failed MCDI commands, unless the caller

svn commit: r293905 - head/share/mk

2016-01-14 Thread Steven Hartland
Author: smh Date: Thu Jan 14 10:09:05 2016 New Revision: 293905 URL: https://svnweb.freebsd.org/changeset/base/293905 Log: Allow file specific user-specified flag overrides Allow user-specified warning flag overrides for specific files under bsd.sys.mk, in the same way kern.mk does.

svn commit: r293907 - in head/sys: amd64/linux amd64/linux32 compat/linux i386/linux

2016-01-14 Thread Gleb Smirnoff
Author: glebius Date: Thu Jan 14 10:13:58 2016 New Revision: 293907 URL: https://svnweb.freebsd.org/changeset/base/293907 Log: Change linux get_robust_list system call to match actual linux one. The set_robust_list system call request the kernel to record the head of the list of robust

svn commit: r293906 - head/sys/netinet6

2016-01-14 Thread Gleb Smirnoff
Author: glebius Date: Thu Jan 14 10:11:10 2016 New Revision: 293906 URL: https://svnweb.freebsd.org/changeset/base/293906 Log: Verify the packet length in sctp6_input(). The sctp6_ctlinput() function does not properly check the length of the packet it receives from the ICMP6 input

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Andrew Turner
On Thu, 14 Jan 2016 09:22:01 + (UTC) Steven Hartland wrote: > Author: smh > Date: Thu Jan 14 09:22:01 2016 > New Revision: 293903 > URL: https://svnweb.freebsd.org/changeset/base/293903 > > Log: > Fix GCC warnings causing build failure after r293724 > > Disable some

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
On 14/01/2016 10:13, Andrew Turner wrote: On Thu, 14 Jan 2016 09:22:01 + (UTC) Steven Hartland wrote: Author: smh Date: Thu Jan 14 09:22:01 2016 New Revision: 293903 URL: https://svnweb.freebsd.org/changeset/base/293903 Log: Fix GCC warnings causing build failure

svn commit: r293909 - in head/sys: compat/linux kern sys

2016-01-14 Thread Gleb Smirnoff
Author: glebius Date: Thu Jan 14 10:16:25 2016 New Revision: 293909 URL: https://svnweb.freebsd.org/changeset/base/293909 Log: Call crextend() before copying old credentials to the new credentials and replace crcopysafe by crcopy as crcopysafe is is not intended to be safe in a threaded

svn commit: r293908 - in head/sys: amd64/linux amd64/linux32 i386/linux

2016-01-14 Thread Gleb Smirnoff
Author: glebius Date: Thu Jan 14 10:15:21 2016 New Revision: 293908 URL: https://svnweb.freebsd.org/changeset/base/293908 Log: Regen after r293907. Modified: head/sys/amd64/linux/linux_proto.h head/sys/amd64/linux/linux_syscall.h head/sys/amd64/linux/linux_syscalls.c

svn commit: r293901 - in head/sys: conf dev/sfxge/common modules/sfxge

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:19:28 2016 New Revision: 293901 URL: https://svnweb.freebsd.org/changeset/base/293901 Log: sfxge: add accessors for license-related MCDI calls to common code Add support for Huntington MCDI licensing interface to common code. Ported from Linux net

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread NGie Cooper
> On Jan 14, 2016, at 01:22, Steven Hartland wrote: > > Author: smh > Date: Thu Jan 14 09:22:01 2016 > New Revision: 293903 > URL: https://svnweb.freebsd.org/changeset/base/293903 > > Log: > Fix GCC warnings causing build failure after r293724 > > Disable some compiler

svn commit: r293910 - head/sys/netinet

2016-01-14 Thread Gleb Smirnoff
Author: glebius Date: Thu Jan 14 10:22:45 2016 New Revision: 293910 URL: https://svnweb.freebsd.org/changeset/base/293910 Log: There is a bug in tcp_output()'s implementation of the TCP_SIGNATURE (RFC 2385/TCP-MD5) kernel option. If a tcpcb has TF_NOOPT flag, then tcp_addoptions() is not

svn commit: r293887 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 08:59:38 2016 New Revision: 293887 URL: https://svnweb.freebsd.org/changeset/base/293887 Log: sfxge: add Medford NIC methods Submitted by: Mark Spender Reviewed by:gnn Sponsored by: Solarflare Communications, Inc. MFC after: 2 days

svn commit: r293891 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:05:51 2016 New Revision: 293891 URL: https://svnweb.freebsd.org/changeset/base/293891 Log: sfxge: support FATSOv2 in common code Sponsored by: Solarflare Communications, Inc. Reviewed by:gnn MFC after: 2 days Differential Revision:

svn commit: r293899 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:12:40 2016 New Revision: 293899 URL: https://svnweb.freebsd.org/changeset/base/293899 Log: sfxge: cleanup: adjust efx_mcdi_get_port_modes() comment for clarity Fix an explanatory comment which did not explain very well. Submitted by: Richard

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
On 14/01/2016 09:47, NGie Cooper wrote: On Jan 14, 2016, at 01:27, NGie Cooper wrote: On Jan 14, 2016, at 01:22, Steven Hartland wrote: Author: smh Date: Thu Jan 14 09:22:01 2016 New Revision: 293903 URL:

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Andrew Turner
On Thu, 14 Jan 2016 10:16:37 + Steven Hartland wrote: > On 14/01/2016 10:13, Andrew Turner wrote: > > On Thu, 14 Jan 2016 09:22:01 + (UTC) > > Steven Hartland wrote: > > > >> Author: smh > >> Date: Thu Jan 14 09:22:01 2016 > >> New Revision:

svn commit: r293911 - head/etc

2016-01-14 Thread Gleb Smirnoff
Author: glebius Date: Thu Jan 14 10:25:18 2016 New Revision: 293911 URL: https://svnweb.freebsd.org/changeset/base/293911 Log: Install /etc/snmpd.config with 0600 permissions. Noticed by: Pierre Kim Security: SA-16:06.snmpd Pointy hat to:glebius in 2005 Modified:

svn commit: r293886 - in head/sys: net netinet

2016-01-14 Thread Alexander V. Chernikov
Author: melifaro Date: Thu Jan 14 08:54:44 2016 New Revision: 293886 URL: https://svnweb.freebsd.org/changeset/base/293886 Log: Remove now-unused wrappers for various routing functions. Modified: head/sys/net/route.c head/sys/net/route.h head/sys/netinet/in_rmx.c

svn commit: r293890 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:03:02 2016 New Revision: 293890 URL: https://svnweb.freebsd.org/changeset/base/293890 Log: sfxge: rx_prefix_pktlen methods do not require EFSYS_OPT_RX_SCALE Submitted by: Mark Spender Reviewed by:gnn Sponsored by: Solarflare Communications,

svn commit: r293892 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:07:40 2016 New Revision: 293892 URL: https://svnweb.freebsd.org/changeset/base/293892 Log: sfxge: use correct register definitions for setting interrupt moderation on Medford The only value which has changed is the number of rows

svn commit: r293900 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Thu Jan 14 09:14:40 2016 New Revision: 293900 URL: https://svnweb.freebsd.org/changeset/base/293900 Log: sfxge: add table entries for License NVRAM partition Submitted by: Richard Houldsworth Reviewed by:gnn Sponsored by: Solarflare Communications, Inc.

svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
Author: smh Date: Thu Jan 14 09:22:01 2016 New Revision: 293903 URL: https://svnweb.freebsd.org/changeset/base/293903 Log: Fix GCC warnings causing build failure after r293724 Disable some compiler warnings for GCC (non-standard compiler) fixing build failures introduced by r293724,

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread NGie Cooper
> On Jan 14, 2016, at 01:27, NGie Cooper wrote: > > >> On Jan 14, 2016, at 01:22, Steven Hartland wrote: >> >> Author: smh >> Date: Thu Jan 14 09:22:01 2016 >> New Revision: 293903 >> URL: https://svnweb.freebsd.org/changeset/base/293903 >> >> Log:

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
On 14/01/2016 10:24, Andrew Turner wrote: On Thu, 14 Jan 2016 10:16:37 + Steven Hartland wrote: On 14/01/2016 10:13, Andrew Turner wrote: On Thu, 14 Jan 2016 09:22:01 + (UTC) Steven Hartland wrote: Author: smh Date: Thu Jan 14 09:22:01

svn commit: r293913 - head/sys/netinet

2016-01-14 Thread Michael Tuexen
Author: tuexen Date: Thu Jan 14 11:25:28 2016 New Revision: 293913 URL: https://svnweb.freebsd.org/changeset/base/293913 Log: Fail the SCTP_GET_ASSOC_NUMBER and SCTP_GET_ASSOC_ID_LIST socket options for 1-to-1 style sockets as specified in RFC 6458. MFC after:3 days Modified:

svn commit: r293914 - head/sys/netgraph/netflow

2016-01-14 Thread Alexander V. Chernikov
Author: melifaro Date: Thu Jan 14 13:14:12 2016 New Revision: 293914 URL: https://svnweb.freebsd.org/changeset/base/293914 Log: Make ng_netflow(9) use new routing KPI. Netflow module is supposed to store (along with fields like gateway address and interface index) matched netmask for

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

2016-01-14 Thread Edward Tomasz Napierala
Author: trasz Date: Thu Jan 14 16:53:17 2016 New Revision: 294021 URL: https://svnweb.freebsd.org/changeset/base/294021 Log: Fix the code to retry mount attempt in mountcritlocal if there are any root mount holds. The previous one used a wrong conditional - the "err=$?" assignment resets

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Warner Losh
On Thu, Jan 14, 2016 at 2:47 AM, NGie Cooper wrote: > > > On Jan 14, 2016, at 01:27, NGie Cooper wrote: > > > > > >> On Jan 14, 2016, at 01:22, Steven Hartland wrote: > >> > >> Author: smh > >> Date: Thu Jan 14 09:22:01 2016 > >>

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

2016-01-14 Thread Warner Losh
Author: imp Date: Thu Jan 14 16:23:07 2016 New Revision: 294011 URL: https://svnweb.freebsd.org/changeset/base/294011 Log: Document how to enter the debugger here. I'm sure there's some better canonical place, and the nit-pickers are welcome to move this information there with a cross

Re: svn commit: r290197 - in head: etc/defaults etc/rc.d sys/kern

2016-01-14 Thread Edward Tomasz Napierala
On 1221T1807, Jilles Tjoelker wrote: > On Fri, Oct 30, 2015 at 03:52:10PM +, Edward Tomasz Napierala wrote: > > Author: trasz > > Date: Fri Oct 30 15:52:10 2015 > > New Revision: 290197 > > URL: https://svnweb.freebsd.org/changeset/base/290197 > > > Log: > > After r290196, the kernel won't

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

2016-01-14 Thread Edward Tomasz Napierala
Author: trasz Date: Thu Jan 14 16:55:07 2016 New Revision: 294022 URL: https://svnweb.freebsd.org/changeset/base/294022 Log: Wrap overlong comment lines. MFC after:1 month Sponsored by: The FreeBSD Foundation Modified: head/etc/rc.d/mountcritlocal Modified:

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

2016-01-14 Thread Benjamin Kaduk
Author: bjk (doc committer) Date: Thu Jan 14 17:16:47 2016 New Revision: 294023 URL: https://svnweb.freebsd.org/changeset/base/294023 Log: Update .Dd, missed in r294011 Modified: head/share/man/man4/ddb.4 Modified: head/share/man/man4/ddb.4

svn commit: r294068 - in head/sys/boot/efi: boot1 include libefi loader

2016-01-14 Thread Steven Hartland
Author: smh Date: Fri Jan 15 02:33:47 2016 New Revision: 294068 URL: https://svnweb.freebsd.org/changeset/base/294068 Log: Add EFI ZFS boot support This builds on the modular EFI loader support added r294060 adding a module to provide ZFS boot support on EFI systems. It should be

svn commit: r294055 - head/sys/powerpc/include

2016-01-14 Thread Justin Hibbits
Author: jhibbits Date: Thu Jan 14 23:22:43 2016 New Revision: 294055 URL: https://svnweb.freebsd.org/changeset/base/294055 Log: Adjust VM_MAX_KERNEL_ADDRESS to the max address, not the minimum next. VM_MAX_KERNEL_ADDERESS is the maximum KVA address. 0xf800 is the start of device

svn commit: r294062 - in head: share/man/man4 sys/dev/ioat

2016-01-14 Thread Conrad E. Meyer
Author: cem Date: Fri Jan 15 01:34:43 2016 New Revision: 294062 URL: https://svnweb.freebsd.org/changeset/base/294062 Log: ioat(4): Add support for 'fence' bit with DMA_FENCE flag Some classes of IOAT hardware prefetch reads. DMA operations that depend on the result of prior DMA

Re: svn commit: r293854 - head/sys/dev/e1000

2016-01-14 Thread Kubilay Kocak
On 14/01/2016 8:47 AM, Marius Strobl wrote: > Author: marius > Date: Wed Jan 13 21:47:27 2016 > New Revision: 293854 > URL: https://svnweb.freebsd.org/changeset/base/293854 > > Log: > Given that em(4), lem(4) and igb(4) hardware doesn't require the > alignment guarantees provided by

svn commit: r294060 - in head/sys/boot/efi: boot1 include loader

2016-01-14 Thread Steven Hartland
Author: smh Date: Fri Jan 15 01:22:36 2016 New Revision: 294060 URL: https://svnweb.freebsd.org/changeset/base/294060 Log: Modularise EFI boot loader Make EFI boot loader modular in preparation for adding ZFS support. This is a partial commit of the D4515. Submitted by: Eric

Re: svn commit: r294029 - in head/sys/boot/efi: . boot1 loader

2016-01-14 Thread Pedro Giffuni
On 01/14/16 16:53, Warner Losh wrote: On Thu, Jan 14, 2016 at 2:46 PM, Pedro Giffuni > wrote: El 14/01/2016 a las 16:27, Steven Hartland escribió: On 14/01/2016 20:57, Nathan Whitehorn wrote: On 01/14/16 10:53, Steven

Re: svn commit: r294029 - in head/sys/boot/efi: . boot1 loader

2016-01-14 Thread Pedro Giffuni
On 01/14/16 17:17, Pedro Giffuni wrote: ... Specially since the gcc-4.2 compiler will be axed mercilessly before 11.0-RELEASE. We hope, you mean. As scheduled ... I mean. It was discussed in the BSDCan 2014 Dev Summit. Never versions of gcc will be supported where they work,

svn commit: r294048 - head/crypto/openssh

2016-01-14 Thread Gleb Smirnoff
Author: glebius Date: Thu Jan 14 22:40:46 2016 New Revision: 294048 URL: https://svnweb.freebsd.org/changeset/base/294048 Log: Fix OpenSSH client information leak. Security: SA-16:07.openssh Security: CVE-2016-0777 Modified: head/crypto/openssh/readconf.c Modified:

svn commit: r294058 - head/sys/boot/common

2016-01-14 Thread Steven Hartland
Author: smh Date: Fri Jan 15 00:55:36 2016 New Revision: 294058 URL: https://svnweb.freebsd.org/changeset/base/294058 Log: Make common boot file_loadraw name parameter const Fix compiler warnings about dropping const qualifier by changing file_loadraw name param to const, and updating

svn commit: r294059 - head/sys/boot/common

2016-01-14 Thread Steven Hartland
Author: smh Date: Fri Jan 15 01:06:37 2016 New Revision: 294059 URL: https://svnweb.freebsd.org/changeset/base/294059 Log: Ensure boot fsread correctly probes all partitions The boot code fsread was caching the result of meta data request and reusing it even for calls with inode = 0,

svn commit: r294057 - head/sys/netinet

2016-01-14 Thread Michael Tuexen
Author: tuexen Date: Fri Jan 15 00:26:15 2016 New Revision: 294057 URL: https://svnweb.freebsd.org/changeset/base/294057 Log: Fix a bug in INIT handling on accepted 1-to-1 style sockets when the listener is closed. This fix allows the following packetdrill test to pass: // Setup a

svn commit: r294031 - in head: lib/clang lib/libc++ usr.bin/clang/clang usr.bin/clang/lldb

2016-01-14 Thread Andrew Turner
Author: andrew Date: Thu Jan 14 19:00:13 2016 New Revision: 294031 URL: https://svnweb.freebsd.org/changeset/base/294031 Log: Set -mlong-calls where needed to get a static clang and lldb 3.8.0 linking. These are too large for a branch instruction to branch from an earlier point in the code

Re: svn commit: r294011 - head/share/man/man4

2016-01-14 Thread Bruce Evans
On Thu, 14 Jan 2016, Warner Losh wrote: Log: Document how to enter the debugger here. I'm sure there's some better canonical place, and the nit-pickers are welcome to move this information there with a cross reference. ... Modified: head/share/man/man4/ddb.4

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

2016-01-14 Thread Alan Somers
Author: asomers Date: Thu Jan 14 18:19:05 2016 New Revision: 294027 URL: https://svnweb.freebsd.org/changeset/base/294027 Log: Fix race condition involving ZFS remove events When a ZFS drive disappears, ZFS sends a resource.fs.zfs.removed event to userland. A userland program like

svn commit: r294032 - head/sys/arm/at91

2016-01-14 Thread Ian Lepore
Author: ian Date: Thu Jan 14 19:33:13 2016 New Revision: 294032 URL: https://svnweb.freebsd.org/changeset/base/294032 Log: Fix the handling of the "PDC write transfer length" erratum for at91. The problem affects revision 1xx hardware as well as later versions. Also, the recommended

svn commit: r294029 - in head/sys/boot/efi: . boot1 loader

2016-01-14 Thread Steven Hartland
Author: smh Date: Thu Jan 14 18:53:54 2016 New Revision: 294029 URL: https://svnweb.freebsd.org/changeset/base/294029 Log: Only build EFI components on supported compilers As the in-tree GCC does not support __attribute__((ms_abi)) EFI can only be built with Clang. The EFI loader

svn commit: r294073 - head/sys/boot/efi/loader

2016-01-14 Thread Allan Jude
Author: allanjude Date: Fri Jan 15 05:45:45 2016 New Revision: 294073 URL: https://svnweb.freebsd.org/changeset/base/294073 Log: Connect the ZFS boot environment menu to the UEFI loader MFC after:3 days Sponsored by: ScaleEngine Inc. Modified: head/sys/boot/efi/loader/main.c

svn commit: r294072 - in head/sys/boot: i386/loader userboot/userboot zfs

2016-01-14 Thread Allan Jude
Author: allanjude Date: Fri Jan 15 05:45:10 2016 New Revision: 294072 URL: https://svnweb.freebsd.org/changeset/base/294072 Log: Move init_zfs_bootenv to sys/boot/zfs/zfs.c instead of having a copy in each loader While here, add a filter to ignore special datasets MFC after:3

svn commit: r294078 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Fri Jan 15 06:26:37 2016 New Revision: 294078 URL: https://svnweb.freebsd.org/changeset/base/294078 Log: sfxge: medford stores a single global copy of VPD Not per PF copies as on Huntington. Submitted by: Mark Spender Reviewed by:gnn Sponsored by:

svn commit: r294081 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Fri Jan 15 06:30:46 2016 New Revision: 294081 URL: https://svnweb.freebsd.org/changeset/base/294081 Log: sfxge: cleanup: simplify ef10_get_datapath_caps Submitted by: Andy Moreton Reviewed by:gnn Sponsored by: Solarflare Communications, Inc. MFC after:

svn commit: r294075 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Fri Jan 15 06:21:39 2016 New Revision: 294075 URL: https://svnweb.freebsd.org/changeset/base/294075 Log: sfxge: rename hunt_link_state_t to ef10_link_state_t Submitted by: Mark Spender Reviewed by:gnn Sponsored by: Solarflare Communications, Inc. MFC

svn commit: r294079 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Fri Jan 15 06:27:51 2016 New Revision: 294079 URL: https://svnweb.freebsd.org/changeset/base/294079 Log: sfxge: Medford still needs fallback for no privilege mask Submitted by: Mark Spender Reviewed by:gnn Sponsored by: Solarflare Communications, Inc.

Re: svn commit: r294011 - head/share/man/man4

2016-01-14 Thread Bruce Evans
On Thu, 14 Jan 2016, Slawa Olhovchenkov wrote: On Fri, Jan 15, 2016 at 06:27:05AM +1100, Bruce Evans wrote: The BREAK_TO_DEBUGGER option used to mean: enter (not break into) the debugger using a serial line break. This is a good method, except it ... This option was broken to mean: the

svn commit: r294080 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Fri Jan 15 06:28:58 2016 New Revision: 294080 URL: https://svnweb.freebsd.org/changeset/base/294080 Log: sfxge: convert nvram rw_start method to use partition id Submitted by: Andy Moreton Reviewed by:gnn Sponsored by: Solarflare Communications, Inc.

svn commit: r294077 - in head: share/man/man4 sys/dev/sfxge

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Fri Jan 15 06:25:26 2016 New Revision: 294077 URL: https://svnweb.freebsd.org/changeset/base/294077 Log: sfxge: support FATSOv2 Reviewed by:gnn Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision:

svn commit: r294076 - head/sys/dev/sfxge/common

2016-01-14 Thread Andrew Rybchenko
Author: arybchik Date: Fri Jan 15 06:23:04 2016 New Revision: 294076 URL: https://svnweb.freebsd.org/changeset/base/294076 Log: sfxge: rework MCDI request completion Submitted by: Andy Moreton Reviewed by:gnn Sponsored by: Solarflare Communications, Inc. MFC after: 2

svn commit: r294037 - head/lib/libmd

2016-01-14 Thread Jonathan T. Looney
Author: jtl Date: Thu Jan 14 21:08:23 2016 New Revision: 294037 URL: https://svnweb.freebsd.org/changeset/base/294037 Log: Improvements to the MDXFileChunk() template function: - Remove unneeded fstat()/lseek() calls. - Return NULL and set errno to EINVAL on negative length. - Fix small

svn commit: r294038 - head/sys/kern

2016-01-14 Thread John Baldwin
Author: jhb Date: Thu Jan 14 21:28:56 2016 New Revision: 294038 URL: https://svnweb.freebsd.org/changeset/base/294038 Log: Remove aiod_timeout. It hasn't been used since the AIO code was made MPSAFE 10 years ago. Reviewed by: kib Sponsored by: Chelsio Communications Differential

svn commit: r294040 - head/sys/boot/zfs

2016-01-14 Thread Steven Hartland
Author: smh Date: Thu Jan 14 21:31:26 2016 New Revision: 294040 URL: https://svnweb.freebsd.org/changeset/base/294040 Log: Prevent bogus compiler in ZFS boot code Silence a bogus compiler warning about indexing past the end of dn_bonus. The ZFS code ensures this is not possible but

Re: svn commit: r294029 - in head/sys/boot/efi: . boot1 loader

2016-01-14 Thread Steven Hartland
On 14/01/2016 20:57, Nathan Whitehorn wrote: On 01/14/16 10:53, Steven Hartland wrote: Author: smh Date: Thu Jan 14 18:53:54 2016 New Revision: 294029 URL: https://svnweb.freebsd.org/changeset/base/294029 Log: Only build EFI components on supported compilers As the in-tree GCC

Re: svn commit: r294040 - head/sys/boot/zfs

2016-01-14 Thread Steven Hartland
Fat fingers submitted before adding headers: MFC after: 2 weeks X-MFC-With: r293268 On 14/01/2016 21:31, Steven Hartland wrote: Author: smh Date: Thu Jan 14 21:31:26 2016 New Revision: 294040 URL: https://svnweb.freebsd.org/changeset/base/294040 Log: Prevent bogus compiler in ZFS

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

2016-01-14 Thread Steven Hartland
Author: smh Date: Thu Jan 14 21:39:10 2016 New Revision: 294041 URL: https://svnweb.freebsd.org/changeset/base/294041 Log: Remove unused reg param from fdt_fixup_memory MFC after:2 weeks X-MFC-With: r293268 Sponsored by: Multiplay Modified: head/sys/boot/fdt/fdt_loader_cmd.c

svn commit: r294036 - head/sys/kern

2016-01-14 Thread John Baldwin
Author: jhb Date: Thu Jan 14 20:51:48 2016 New Revision: 294036 URL: https://svnweb.freebsd.org/changeset/base/294036 Log: Rename aiod_bio taskqueue to aiod_kick. This taskqueue is not used to handle bio requests. It is only used to run aio_kick_nowait() to spin up new aio daemon

Re: svn commit: r294029 - in head/sys/boot/efi: . boot1 loader

2016-01-14 Thread Nathan Whitehorn
On 01/14/16 10:53, Steven Hartland wrote: Author: smh Date: Thu Jan 14 18:53:54 2016 New Revision: 294029 URL: https://svnweb.freebsd.org/changeset/base/294029 Log: Only build EFI components on supported compilers As the in-tree GCC does not support __attribute__((ms_abi)) EFI can

svn commit: r294035 - head/sys/contrib/vchiq/interface/vchiq_arm

2016-01-14 Thread Oleksandr Tymoshenko
Author: gonzo Date: Thu Jan 14 20:25:22 2016 New Revision: 294035 URL: https://svnweb.freebsd.org/changeset/base/294035 Log: Fix order of last two arguments of mtx_init Spotted by: jmcne...@netbsd.org Modified: head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c Modified:

Re: svn commit: r294011 - head/share/man/man4

2016-01-14 Thread Slawa Olhovchenkov
On Fri, Jan 15, 2016 at 06:27:05AM +1100, Bruce Evans wrote: > On Thu, 14 Jan 2016, Warner Losh wrote: > > > Log: > > Document how to enter the debugger here. I'm sure there's some better > > canonical place, and the nit-pickers are welcome to move this > > information there with a cross

svn commit: r294028 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
Author: smh Date: Thu Jan 14 18:46:57 2016 New Revision: 294028 URL: https://svnweb.freebsd.org/changeset/base/294028 Log: Revert r293903 Revert r293903 as EFI shouldn't be built on this platform that the this was reported on. Sponsored by: Multiplay Modified:

svn commit: r294020 - head/sys/net

2016-01-14 Thread Alexander V. Chernikov
Author: melifaro Date: Thu Jan 14 16:31:00 2016 New Revision: 294020 URL: https://svnweb.freebsd.org/changeset/base/294020 Log: Fix panic in IP redirect. Panic was introduced in r293466. Found by: Yamagi Burmeister > Modified: head/sys/net/route.c Modified: head/sys/net/route.c

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
On 14/01/2016 16:53, Warner Losh wrote: On Thu, Jan 14, 2016 at 2:47 AM, NGie Cooper > wrote: > On Jan 14, 2016, at 01:27, NGie Cooper > wrote: > > >> On Jan 14,

Re: svn commit: r293903 - in head/sys/boot: arm/uboot efi/fdt efi/libefi

2016-01-14 Thread Steven Hartland
On 14/01/2016 15:55, John Baldwin wrote: On Thursday, January 14, 2016 01:27:51 AM NGie Cooper wrote: On Jan 14, 2016, at 01:22, Steven Hartland wrote: Author: smh Date: Thu Jan 14 09:22:01 2016 New Revision: 293903 URL: https://svnweb.freebsd.org/changeset/base/293903

Re: svn commit: r294029 - in head/sys/boot/efi: . boot1 loader

2016-01-14 Thread Pedro Giffuni
El 14/01/2016 a las 16:27, Steven Hartland escribió: On 14/01/2016 20:57, Nathan Whitehorn wrote: On 01/14/16 10:53, Steven Hartland wrote: Author: smh Date: Thu Jan 14 18:53:54 2016 New Revision: 294029 URL: https://svnweb.freebsd.org/changeset/base/294029 Log: Only build EFI

Re: svn commit: r294029 - in head/sys/boot/efi: . boot1 loader

2016-01-14 Thread Warner Losh
On Thu, Jan 14, 2016 at 2:46 PM, Pedro Giffuni wrote: > > > El 14/01/2016 a las 16:27, Steven Hartland escribió: > >> >> >> On 14/01/2016 20:57, Nathan Whitehorn wrote: >> >>> >>> >>> On 01/14/16 10:53, Steven Hartland wrote: >>> Author: smh Date: Thu Jan 14 18:53:54

svn commit: r294042 - head/sys/geom

2016-01-14 Thread Ravi Pokala
Author: rpokala Date: Thu Jan 14 21:52:21 2016 New Revision: 294042 URL: https://svnweb.freebsd.org/changeset/base/294042 Log: Add rotationrate to geom disk dumpconf Parse and report the nominal rotation rate reported by the drive. Reviewed by: sbruno, jhb Approved by: jhb MFC

svn commit: r294047 - head/sys/boot/userboot/test

2016-01-14 Thread Juli Mallett
Author: jmallett Date: Thu Jan 14 22:07:35 2016 New Revision: 294047 URL: https://svnweb.freebsd.org/changeset/base/294047 Log: Make it possible to specify the path to userboot.so with the -b flag. Reviewed by: neel Modified: head/sys/boot/userboot/test/test.c Modified: