svn commit: r332422 - head/sys/net

2018-04-11 Thread Mateusz Guzik
Author: mjg Date: Thu Apr 12 04:11:37 2018 New Revision: 332422 URL: https://svnweb.freebsd.org/changeset/base/332422 Log: iflib: fix up a mismerge in r332419 Lead to crashes on boot while in ifconfig. Submitted by: Matthew Macy Modified: head/sys/net/iflib.c

Re: svn commit: r332419 - head/sys/net

2018-04-11 Thread K. Macy
There was a panic inducing merge error, please apply if you encounter problems: @ -2288,7 +2294,7 @@ iflib_stop(if_ctx_t ctx) for (i = 0; i < scctx->isc_nrxqsets; i++, rxq++) { /* make sure all transmitters have completed before proceeding XXX */ - for (j =

svn commit: r332421 - head/sys/dev/vt/hw/vga

2018-04-11 Thread Ed Maste
Author: emaste Date: Thu Apr 12 02:10:01 2018 New Revision: 332421 URL: https://svnweb.freebsd.org/changeset/base/332421 Log: vt: add three more cp437 mappings for vga textmode In UTF-8 locales mandoc uses a number of characters outside of the Basic Latin group, e.g. from general

svn commit: r332420 - in stable/11: stand/common sys/kern

2018-04-11 Thread John Baldwin
Author: jhb Date: Wed Apr 11 22:23:22 2018 New Revision: 332420 URL: https://svnweb.freebsd.org/changeset/base/332420 Log: MFC 328101,328911: Require SHF_ALLOC for kernel object module sections. 328101: Require the SHF_ALLOC flag for program sections from kernel object modules. ELF

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

2018-04-11 Thread Gleb Smirnoff
On Fri, Apr 06, 2018 at 04:48:11PM +, Jonathan T. Looney wrote: J> Author: jtl J> Date: Fri Apr 6 16:48:11 2018 J> New Revision: 332114 J> URL: https://svnweb.freebsd.org/changeset/base/332114 J> J> Log: J> Check that in_pcbfree() is only called once for each PCB. If that J> assumption

Re: svn commit: r332091 - stable/11/sys/vm

2018-04-11 Thread Slawa Olhovchenkov
On Wed, Apr 11, 2018 at 02:27:48PM -0700, John Baldwin wrote: > On Wednesday, April 11, 2018 10:49:20 PM Konstantin Belousov wrote: > > On Wed, Apr 11, 2018 at 08:52:08AM -0700, John Baldwin wrote: > > > On Monday, April 09, 2018 07:29:09 PM Slawa Olhovchenkov wrote: > > > > On Fri, Apr 06, 2018

svn commit: r332419 - head/sys/net

2018-04-11 Thread Stephen Hurd
Author: shurd Date: Wed Apr 11 21:41:59 2018 New Revision: 332419 URL: https://svnweb.freebsd.org/changeset/base/332419 Log: Properly initialize ifc_nhwtxqs. Also, since ifc_nhwrxqs is only used in one place, remove it from the struct. This was preventing iflib_dma_free() from being

Re: svn commit: r332091 - stable/11/sys/vm

2018-04-11 Thread John Baldwin
On Wednesday, April 11, 2018 10:49:20 PM Konstantin Belousov wrote: > On Wed, Apr 11, 2018 at 08:52:08AM -0700, John Baldwin wrote: > > On Monday, April 09, 2018 07:29:09 PM Slawa Olhovchenkov wrote: > > > On Fri, Apr 06, 2018 at 09:25:08AM +, Konstantin Belousov wrote: > > > > > > > Author:

Re: svn commit: r332091 - stable/11/sys/vm

2018-04-11 Thread Konstantin Belousov
On Wed, Apr 11, 2018 at 08:52:08AM -0700, John Baldwin wrote: > On Monday, April 09, 2018 07:29:09 PM Slawa Olhovchenkov wrote: > > On Fri, Apr 06, 2018 at 09:25:08AM +, Konstantin Belousov wrote: > > > > > Author: kib > > > Date: Fri Apr 6 09:25:08 2018 > > > New Revision: 332091 > > > URL:

svn commit: r332416 - in head/stand/efi: include libefi loader

2018-04-11 Thread Warner Losh
Author: imp Date: Wed Apr 11 19:46:24 2018 New Revision: 332416 URL: https://svnweb.freebsd.org/changeset/base/332416 Log: Refactor currdev setting Refactor the currdev setting to find the device we booted from. Limit searching when we don't already have a reasonable currdev from that to

svn commit: r332415 - head/lib/libufs

2018-04-11 Thread Kirk McKusick
Author: mckusick Date: Wed Apr 11 19:28:54 2018 New Revision: 332415 URL: https://svnweb.freebsd.org/changeset/base/332415 Log: Fix potentially overflowing expression "fs->fs_ipg * fs->fs_ncg" by casting fs->fs_ipg to (ino_t). CID: 1388258 Modified: head/lib/libufs/inode.c Modified:

svn commit: r332414 - head/usr.bin/clang/clang

2018-04-11 Thread Dimitry Andric
Author: dim Date: Wed Apr 11 18:39:47 2018 New Revision: 332414 URL: https://svnweb.freebsd.org/changeset/base/332414 Log: Regenerate clang man page after upstream change to document the possible values for the -std= option. Noticed by: Steve Kargl Obtained from:

svn commit: r332413 - in head/stand: forth i386/loader

2018-04-11 Thread Warner Losh
Author: imp Date: Wed Apr 11 18:02:13 2018 New Revision: 332413 URL: https://svnweb.freebsd.org/changeset/base/332413 Log: Revert r332275, r332272, r332270 There's problems with them. The order of efi stuff isn't quite right, and there's various problems. Revert until thos problems can

Re: svn commit: r332091 - stable/11/sys/vm

2018-04-11 Thread Slawa Olhovchenkov
On Wed, Apr 11, 2018 at 08:52:08AM -0700, John Baldwin wrote: > On Monday, April 09, 2018 07:29:09 PM Slawa Olhovchenkov wrote: > > On Fri, Apr 06, 2018 at 09:25:08AM +, Konstantin Belousov wrote: > > > > > Author: kib > > > Date: Fri Apr 6 09:25:08 2018 > > > New Revision: 332091 > > >

Re: svn commit: r332270 - head/stand/forth

2018-04-11 Thread Kyle Evans
On Sun, Apr 8, 2018 at 6:39 AM, Toomas Soome wrote: > Author: tsoome > Date: Sun Apr 8 11:39:27 2018 > New Revision: 332270 > URL: https://svnweb.freebsd.org/changeset/base/332270 > > Log: > loader: include efi.4th only if we do have uefi > > Also simplify efi.4th. > >

Re: svn commit: r332389 - head/sys/net

2018-04-11 Thread K. Macy
Yup. git<->phab patch update fail. Maybe some day we can move to git. -M On Wed, Apr 11, 2018 at 10:12 AM, Jonathan T. Looney wrote: > It appears this is causing panics (see the emails on freebsd-current@). > > From a brief glance, it appears that the new STATE_LOCK macros is

svn commit: r332411 - head/sys/net

2018-04-11 Thread Sean Bruno
Author: sbruno Date: Wed Apr 11 17:26:53 2018 New Revision: 332411 URL: https://svnweb.freebsd.org/changeset/base/332411 Log: Revert r332389 as it is causing panics for various users and we need to add some more test cases. Modified: head/sys/net/iflib.c Modified: head/sys/net/iflib.c

Re: svn commit: r332412 - in head: . lib/libifconfig sbin/etherswitchcfg sbin/ifconfig share/man/man4 sys/conf sys/dev/pdq sys/net sys/netinet sys/netinet6 sys/nfs

2018-04-11 Thread Alexander V . Chernikov
: head/UPDATING > == > --- head/UPDATING Wed Apr 11 17:26:53 2018 (r332411) > +++ head/UPDATING Wed Apr 11 17:28:24 2018 (r332412) > @@ -51,6 +51,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: > >

svn commit: r332412 - in head: . lib/libifconfig sbin/etherswitchcfg sbin/ifconfig share/man/man4 sys/conf sys/dev/pdq sys/net sys/netinet sys/netinet6 sys/nfs

2018-04-11 Thread Brooks Davis
: ** +20180411: + Support for FDDI networks has been removed. If you have device + fddi or device fpa in your kernel config file they must be + removed. + 20180406: In addition to supporting RFC 3164 formatted messages

svn commit: r332410 - svnadmin/conf

2018-04-11 Thread George V. Neville-Neil
Author: gnn Date: Wed Apr 11 17:18:54 2018 New Revision: 332410 URL: https://svnweb.freebsd.org/changeset/base/332410 Log: Temporarily suspend Bruce Simpson's commit bit. Approved by: core Modified: svnadmin/conf/access Modified: svnadmin/conf/access

Re: svn commit: r332091 - stable/11/sys/vm

2018-04-11 Thread John Baldwin
On Monday, April 09, 2018 07:29:09 PM Slawa Olhovchenkov wrote: > On Fri, Apr 06, 2018 at 09:25:08AM +, Konstantin Belousov wrote: > > > Author: kib > > Date: Fri Apr 6 09:25:08 2018 > > New Revision: 332091 > > URL: https://svnweb.freebsd.org/changeset/base/332091 > > > > Log: > > MFC

Re: svn commit: r332389 - head/sys/net

2018-04-11 Thread Jonathan T. Looney
It appears this is causing panics (see the emails on freebsd-current@). >From a brief glance, it appears that the new STATE_LOCK macros is used (and causes panics), but the STATE_LOCK_INIT macro is not used. Is it possible the code is missing an initialization call for the new mutex? Jonathan

svn commit: r332409 - in head/sys/dev: bnxt e1000 ixgbe

2018-04-11 Thread Mark Johnston
Author: markj Date: Wed Apr 11 15:15:34 2018 New Revision: 332409 URL: https://svnweb.freebsd.org/changeset/base/332409 Log: Use C99 initializers for iflib function tables. Reviewed by: sbruno MFC after:1 week Differential Revision:https://reviews.freebsd.org/D15041

Re: svn commit: r332386 - head/share/misc

2018-04-11 Thread Kenneth D. Merry
On Tue, Apr 10, 2018 at 14:27:26 -0500, Kyle Evans wrote: > On Tue, Apr 10, 2018 at 2:22 PM, Rodney W. Grimes > wrote: > > [ Charset UTF-8 unsupported, converting... ] > >> Author: ram > >> Date: Tue Apr 10 18:39:20 2018 > >> New Revision: 332386 > >> URL:

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

2018-04-11 Thread Mark Johnston
On Wed, Apr 11, 2018 at 12:51:55AM -0400, Allan Jude wrote: > On 2018-04-10 09:56, Mark Johnston wrote: > > Author: markj > > Date: Tue Apr 10 13:56:06 2018 > > New Revision: 332365 > > URL: https://svnweb.freebsd.org/changeset/base/332365 > > > > Log: > > Set zfs_arc_free_target to

Re: svn commit: r332395 - head/sys/kern

2018-04-11 Thread Bruce Evans
On Tue, 10 Apr 2018, Ian Lepore wrote: URL: https://svnweb.freebsd.org/changeset/base/332395 Log: Use explicit_bzero() when cleaning values out of the kernel environment. Sometimes the values contain geli passphrases being communicated from loader(8) to the kernel, and some day the

svn commit: r332405 - head/bin/setfacl

2018-04-11 Thread Ed Maste
Author: emaste Date: Wed Apr 11 13:33:12 2018 New Revision: 332405 URL: https://svnweb.freebsd.org/changeset/base/332405 Log: setfacl: minor man page edit to appease igor(1) Modified: head/bin/setfacl/setfacl.1 Modified: head/bin/setfacl/setfacl.1

svn commit: r332404 - head/sys/netpfil/pf

2018-04-11 Thread Kristof Provost
Author: kp Date: Wed Apr 11 11:43:12 2018 New Revision: 332404 URL: https://svnweb.freebsd.org/changeset/base/332404 Log: pf: limit ioctl to a reasonable and tuneable number of elements pf ioctls frequently take a variable number of elements as argument. This can potentially allow users

svn commit: r332403 - head/sbin/ipfw

2018-04-11 Thread Oleg Bulyzhin
Author: oleg Date: Wed Apr 11 11:17:57 2018 New Revision: 332403 URL: https://svnweb.freebsd.org/changeset/base/332403 Log: Fix typo. MFC after:1 week Modified: head/sbin/ipfw/ipfw.8 Modified: head/sbin/ipfw/ipfw.8

svn commit: r332402 - head/sys/netpfil/ipfw

2018-04-11 Thread Oleg Bulyzhin
Author: oleg Date: Wed Apr 11 11:12:20 2018 New Revision: 332402 URL: https://svnweb.freebsd.org/changeset/base/332402 Log: Fix ipfw table creation when net.inet.ip.fw.tables_sets = 0 and non zero set specified on table creation. This fixes following: # sysctl net.inet.ip.fw.tables_sets

svn commit: r332401 - in stable/11/sys: conf modules/ipfw netinet netpfil/ipfw

2018-04-11 Thread Andrey V. Elsukov
Author: ae Date: Wed Apr 11 10:36:20 2018 New Revision: 332401 URL: https://svnweb.freebsd.org/changeset/base/332401 Log: MFC r328988,r328989: Rework ipfw dynamic states implementation to be lockless on fast path. o added struct ipfw_dyn_info that keeps all needed for ipfw_chk and

svn commit: r332400 - stable/11/sbin/ipfw

2018-04-11 Thread Andrey V. Elsukov
Author: ae Date: Wed Apr 11 10:24:47 2018 New Revision: 332400 URL: https://svnweb.freebsd.org/changeset/base/332400 Log: MFC r331668: Rework ipfw rules parsing and printing code. Introduce show_state structure to keep information about printed opcodes. Split show_static_rule()

svn commit: r332399 - head/tests/sys/acl

2018-04-11 Thread Eitan Adler
Author: eadler Date: Wed Apr 11 07:15:30 2018 New Revision: 332399 URL: https://svnweb.freebsd.org/changeset/base/332399 Log: [tests] change tests/sys/acl/run to run on perl 5.26 Previously unescaped regex just resulted in a warning. Now it results in a failed test. Modified: