svn commit: r345000 - head/sys/arm/freescale/imx

2019-03-11 Thread Ian Lepore
Author: ian Date: Mon Mar 11 03:07:05 2019 New Revision: 345000 URL: https://svnweb.freebsd.org/changeset/base/345000 Log: Mark the imx_spi device busy while transfers are in progress, so that the module can't be unloaded while interrupts are pending. Modified: head/sys/arm/freescale/imx/im

Re: svn commit: r344970 - head

2019-03-11 Thread Peter Jeremy
On 2019-Mar-10 09:38:53 -0600, Warner Losh wrote: >On Sun, Mar 10, 2019 at 9:07 AM Alexey Dokuchaev wrote: > >> On Sat, Mar 09, 2019 at 12:00:27PM -0800, Rodney W. Grimes wrote: >> > > New Revision: 344970 >> > > binaries). Failure to do so may leave you with a system that is >> > > hard

svn commit: r345002 - head/sys/dev/iwm

2019-03-11 Thread Andriy Voskoboinyk
Author: avos Date: Mon Mar 11 08:30:29 2019 New Revision: 345002 URL: https://svnweb.freebsd.org/changeset/base/345002 Log: iwm(4): use correct channel list source for Intel 3168 Intel 3168 uses another EEPROM section to store channel flags; port missing bits from iwlwifi to make it work.

Re: svn commit: r344960 - head/sys/powerpc/powerpc

2019-03-11 Thread Bruce Evans
On Sun, 10 Mar 2019, Justin Hibbits wrote: On Sat, 9 Mar 2019 08:50:58 + Alexey Dokuchaev wrote: On Sat, Mar 09, 2019 at 03:18:38AM +, Justin Hibbits wrote: ... Log: powerpc: Print trap frame address for fatal traps ... Modified: head/sys/powerpc/powerpc/trap.c

Re: svn commit: r344990 - in head: share/man/man9 sys/dev/ath sys/dev/bwi sys/dev/bwn sys/dev/ipw sys/dev/iwi sys/dev/iwm sys/dev/iwn sys/dev/malo sys/dev/mwl sys/dev/otus sys/dev/ral sys/dev/rtwn sys

2019-03-11 Thread Andriy Voskoboinyk
On Sun, Mar 10, 2019 at 8:12 PM Rodney W. Grimes wrote: Author: avos Date: Mon Mar 11 01:27:01 2019 New Revision: 344990 URL: https://svnweb.freebsd.org/changeset/base/344990 Log: Fix ieee80211_radiotap(9) usage in wireless drivers: - Alignment issues: *

svn commit: r345003 - head/sys/netpfil/ipfw/nat64

2019-03-11 Thread Andrey V. Elsukov
Author: ae Date: Mon Mar 11 10:33:32 2019 New Revision: 345003 URL: https://svnweb.freebsd.org/changeset/base/345003 Log: Add NULL pointer check to nat64_output(). It is possible, that a processed packet was originated by local host, in this case m->m_pkthdr.rcvif is NULL. Check and set i

Re: svn commit: r344960 - head/sys/powerpc/powerpc

2019-03-11 Thread Alexey Dokuchaev
On Mon, Mar 11, 2019 at 08:18:01PM +1100, Bruce Evans wrote: > ... > - poor formatting from %p. %p is guaranteed to bad for formatted output. >It is specified to give an (any) implementation-defined sequence of >printing characters. To use it except for low quality debugging >output,

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

2019-03-11 Thread Andrey V. Elsukov
Author: ae Date: Mon Mar 11 10:42:09 2019 New Revision: 345004 URL: https://svnweb.freebsd.org/changeset/base/345004 Log: Add IP_FW_NAT64 to codes that ipfw_chk() can return. It will be used by upcoming NAT64 changes. We use separate code to avoid propogating EACCES error code to user lev

svn commit: r345005 - head/libexec/rc/rc.d

2019-03-11 Thread Kurt Lidl
Author: lidl Date: Mon Mar 11 13:33:03 2019 New Revision: 345005 URL: https://svnweb.freebsd.org/changeset/base/345005 Log: Remove an unneeded 'tail -n 1' from a pipeline When piping to awk, it's almost always an anti-pattern to use 'grep' first. When not in a pipeline, sometimes it

svn commit: r345008 - head/sys/dev/isp

2019-03-11 Thread Kenneth D. Merry
Author: ken Date: Mon Mar 11 14:21:14 2019 New Revision: 345008 URL: https://svnweb.freebsd.org/changeset/base/345008 Log: Fix CRN resets in the isp(4) driver in certain situations. The Command Reference Number (CRN) is part of the FC-Tape features that we enable when talking to tape driv

svn commit: r345009 - head/sys/dev/pms/RefTisa/tisa/sassata/sas/ini

2019-03-11 Thread David Bright
Author: dab Date: Mon Mar 11 14:26:45 2019 New Revision: 345009 URL: https://svnweb.freebsd.org/changeset/base/345009 Log: Fix a scribbler in the PMS driver. The ESGL bit was left uninitialized when executing the REPORT LUNS ioctl. This could allow a zeroed data buffer to be treated as a

Re: svn commit: r345009 - head/sys/dev/pms/RefTisa/tisa/sassata/sas/ini

2019-03-11 Thread David Bright
On Mar 11, 2019, at 9:26 AM, David Bright wrote: > > Author: dab > Date: Mon Mar 11 14:26:45 2019 > New Revision: 345009 > URL: https://svnweb.freebsd.org/changeset/base/345009 > > Log: > Fix a scribbler in the PMS driver. Oops. Reviewed by:Anton Rang http://rang_acm.org/>>, imp@ -- D

svn commit: r345010 - head/sys/dev/mlx4/mlx4_core

2019-03-11 Thread Hans Petter Selasky
Author: hselasky Date: Mon Mar 11 14:29:50 2019 New Revision: 345010 URL: https://svnweb.freebsd.org/changeset/base/345010 Log: Improve support for switching to and from command polling mode in mlx4core. Make sure the enter and leave polling routines can be called multiple times with same

svn commit: r345011 - head/sys/dev/mlx4/mlx4_core

2019-03-11 Thread Hans Petter Selasky
Author: hselasky Date: Mon Mar 11 14:34:25 2019 New Revision: 345011 URL: https://svnweb.freebsd.org/changeset/base/345011 Log: Eliminate useless warning message when reading sysctl node in mlx4core. MFC after:1 week Sponsored by: Mellanox Technologies Modified: hea

Re: svn commit: r344970 - head

2019-03-11 Thread Alexey Dokuchaev
On Mon, Mar 11, 2019 at 07:16:44PM +1100, Peter Jeremy wrote: > ... > I think the changed wording implies that we no longer provide compatibity > with unsupported branches. I agree that we might in future decide to > remove COMPAT_FREEBSDx for unsupported x but until then, I'd prefer > wording alo

svn commit: r345012 - head/share/misc

2019-03-11 Thread Glen Barber
Author: gjb Date: Mon Mar 11 15:36:24 2019 New Revision: 345012 URL: https://svnweb.freebsd.org/changeset/base/345012 Log: Update the re@ member list. Sponsored by: The FreeBSD Foundation Modified: head/share/misc/organization.dot Modified: head/share/misc/organization.dot =

Re: svn commit: r344990 - in head: share/man/man9 sys/dev/ath sys/dev/bwi sys/dev/bwn sys/dev/ipw sys/dev/iwi sys/dev/iwm sys/dev/iwn sys/dev/malo sys/dev/mwl sys/dev/otus sys/dev/ral sys/dev/rtwn sys

2019-03-11 Thread Rodney W. Grimes
> On Sun, Mar 10, 2019 at 8:12 PM Rodney W. Grimes > wrote: > > > > Author: avos > > > Date: Mon Mar 11 01:27:01 2019 > > > New Revision: 344990 > > > URL: https://svnweb.freebsd.org/changeset/base/344990 > > > > > > Log: > > > Fix ieee80211_radiotap(9) usage in wireless drivers: > > > > > >

svn commit: r345013 - head/share/misc

2019-03-11 Thread Glen Barber
Author: gjb Date: Mon Mar 11 15:47:26 2019 New Revision: 345013 URL: https://svnweb.freebsd.org/changeset/base/345013 Log: Update entries for accounts@, backups@, dnsadm@, mirror-admin@, and remove refadm@. Sponsored by: The FreeBSD Foundation Modified: head/share/misc/organization.dot

Re: svn commit: r344990 - in head: share/man/man9 sys/dev/ath sys/dev/bwi sys/dev/bwn sys/dev/ipw sys/dev/iwi sys/dev/iwm sys/dev/iwn sys/dev/malo sys/dev/mwl sys/dev/otus sys/dev/ral sys/dev/rtwn sys

2019-03-11 Thread Rodney W. Grimes
> > On Sun, Mar 10, 2019 at 8:12 PM Rodney W. Grimes > > wrote: > >>> Author: avos > >> > >>> Date: Mon Mar 11 01:27:01 2019 > >> > >>> New Revision: 344990 > >> > >>> URL: https://svnweb.freebsd.org/changeset/base/344990 > >> > >>> > >> > >>> Log: > >> > >>> Fix ieee80211_radiotap(9) usage in

Re: svn commit: r344982 - head/sys/x86/isa

2019-03-11 Thread Ravi Pokala
-Original Message- From: on behalf of Vladimir Kondratyev Date: 2019-03-10, Sunday at 13:19 To: , , Subject: svn commit: r344982 - head/sys/x86/isa > Author: wulf > Date: Sun Mar 10 20:19:43 2019 > New Revision: 344982 > URL: https://svnweb.freebsd.org/changeset/base/344982 > > Log:

Re: svn commit: r344960 - head/sys/powerpc/powerpc

2019-03-11 Thread John Baldwin
On 3/10/19 3:16 PM, Justin Hibbits wrote: > On Sat, 9 Mar 2019 08:50:58 + > Alexey Dokuchaev wrote: > >> On Sat, Mar 09, 2019 at 03:18:38AM +, Justin Hibbits wrote: >>> New Revision: 344960 >>> URL: https://svnweb.freebsd.org/changeset/base/344960 >>> >>> Log: >>> powerpc: Print trap fr

Re: svn commit: r344960 - head/sys/powerpc/powerpc

2019-03-11 Thread Justin Hibbits
On Mon, 11 Mar 2019 10:02:00 -0700 John Baldwin wrote: > On 3/10/19 3:16 PM, Justin Hibbits wrote: > > On Sat, 9 Mar 2019 08:50:58 + > > Alexey Dokuchaev wrote: > > > >> On Sat, Mar 09, 2019 at 03:18:38AM +, Justin Hibbits wrote: > >>> New Revision: 344960 > >>> URL: https://svnweb.

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

2019-03-11 Thread Alexander Motin
Author: mav Date: Mon Mar 11 17:39:09 2019 New Revision: 345014 URL: https://svnweb.freebsd.org/changeset/base/345014 Log: Revert minor part of r344934. I tried to save some CPU time on hopeless aggregation attempts, but it seems the condition I added is overly strict, blocking also aggre

Re: svn commit: r344982 - head/sys/x86/isa

2019-03-11 Thread Jung-uk Kim
On 19. 3. 11., Ravi Pokala wrote: > -Original Message- > From: on behalf of Vladimir Kondratyev > > Date: 2019-03-10, Sunday at 13:19 > To: , , > > Subject: svn commit: r344982 - head/sys/x86/isa > >> Author: wulf >> Date: Sun Mar 10 20:19:43 2019 >> New Revision: 344982 >> URL: https

svn commit: r345018 - in head/contrib/llvm/projects/libunwind: . include include/mach-o src

2019-03-11 Thread Dimitry Andric
Author: dim Date: Mon Mar 11 18:45:36 2019 New Revision: 345018 URL: https://svnweb.freebsd.org/changeset/base/345018 Log: Merge LLVM libunwind trunk r351319, from just before upstream's release_80 branch point. Afterwards, we will merge the rest of the changes in the actual release_80 bran

svn commit: r345019 - head/contrib/llvm/projects/libunwind/src

2019-03-11 Thread Dimitry Andric
Author: dim Date: Mon Mar 11 18:56:04 2019 New Revision: 345019 URL: https://svnweb.freebsd.org/changeset/base/345019 Log: Merge LLVM libunwind release_80 branch r355677 (effectively, 8.0.0 rc4). PR: 236062 MFC after:1 month X-MFC-With: r344779 Modified: head/contrib/

svn commit: r345021 - head/contrib/llvm/lib/CodeGen

2019-03-11 Thread Dimitry Andric
Author: dim Date: Mon Mar 11 19:15:57 2019 New Revision: 345021 URL: https://svnweb.freebsd.org/changeset/base/345021 Log: Pull in r355854 from upstream llvm trunk (by Jonas Paulsson): [RegAlloc] Avoid compile time regression with multiple copy hints. As a fix for https://bugs.llv

svn commit: r345022 - head/sys/x86/isa

2019-03-11 Thread Vladimir Kondratyev
Author: wulf Date: Mon Mar 11 19:46:15 2019 New Revision: 345022 URL: https://svnweb.freebsd.org/changeset/base/345022 Log: Fix amd64/i386 LINT build after r344982 Submitted by: jkim Reported by: rpokala MFC with: r344982 Modified: head/sys/x86/isa/atrtc.c Modified: head/sys/x8

Re: svn commit: r344982 - head/sys/x86/isa

2019-03-11 Thread Vladimir Kondratyev
On 2019-03-11 21:17, Jung-uk Kim wrote: On 19. 3. 11., Ravi Pokala wrote: -Original Message- From: on behalf of Vladimir Kondratyev Date: 2019-03-10, Sunday at 13:19 To: , , Subject: svn commit: r344982 - head/sys/x86/isa Author: wulf Date: Sun Mar 10 20:19:43 2019 New Revision:

Re: svn commit: r344982 - head/sys/x86/isa

2019-03-11 Thread Ravi Pokala
That did the trick, and I see that Vladimir has already submitted it. Thank you both! -Ravi (rpokala@) -Original Message- From: on behalf of Jung-uk Kim Date: 2019-03-11, Monday at 11:17 To: Ravi Pokala , Vladimir Kondratyev , , , Subject: Re: svn commit: r344982 - head/sys/x86/is

svn commit: r345024 - in head/sys: cddl/contrib/opensolaris/uts/common/fs/zfs fs/nandfs fs/nfsclient kern ufs/ufs

2019-03-11 Thread Simon J. Gerraty
Author: sjg Date: Mon Mar 11 20:40:56 2019 New Revision: 345024 URL: https://svnweb.freebsd.org/changeset/base/345024 Log: Add _PC_ACL_* to vop_stdpathconf This avoid EINVAL from tmpfs etc. Reviewed by: kib Differential Revision:https://reviews.freebsd.org/D19512 Modified:

svn commit: r345025 - head/sys/cam/scsi

2019-03-11 Thread Warner Losh
Author: imp Date: Mon Mar 11 20:57:54 2019 New Revision: 345025 URL: https://svnweb.freebsd.org/changeset/base/345025 Log: Upgrade Chipfancier SLC quirk to all versions The 16GB, 32GB and 128GB versions of this product all have the same problem. For some reason, the RC10 size is correct,

svn commit: r345029 - head/sys/kern

2019-03-11 Thread Kirk McKusick
Author: mckusick Date: Mon Mar 11 21:49:44 2019 New Revision: 345029 URL: https://svnweb.freebsd.org/changeset/base/345029 Log: Augment DDB "show buffer" command to print the buffer's referenced vnode pointer (b_vp). The value of b_vp can be used by "show vnode" to print the vnode and "show

svn commit: r345032 - head/sys/ufs/ufs

2019-03-11 Thread Kirk McKusick
Author: mckusick Date: Mon Mar 11 22:05:34 2019 New Revision: 345032 URL: https://svnweb.freebsd.org/changeset/base/345032 Log: Augment the UFS filesystem specific print function (called by the kernel vn_printf() routine when printing out vnodes associated with a UFS filesystem) to also incl

svn commit: r345034 - in head: libexec/tftpd/tests tests/sys/geom/class/eli tests/sys/geom/class/nop tests/sys/geom/class/part tests/sys/kern usr.bin/cmp/tests usr.bin/dc/tests usr.bin/pr/tests usr...

2019-03-11 Thread Alan Somers
Author: asomers Date: Mon Mar 11 22:23:56 2019 New Revision: 345034 URL: https://svnweb.freebsd.org/changeset/base/345034 Log: Drop "All rights reserved" from the files I own Also, add SPDX tags where needed. MFC after:2 weeks Modified: head/libexec/tftpd/tests/functional.c he

svn commit: r345037 - head/sys/kern

2019-03-11 Thread Kirk McKusick
Author: mckusick Date: Mon Mar 11 22:42:33 2019 New Revision: 345037 URL: https://svnweb.freebsd.org/changeset/base/345037 Log: Update the main loop in the flushbuflist() routine to properly select buffers for flushing when requested to flush both normal and extended attributes buffers.

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

2019-03-11 Thread John Baldwin
Author: jhb Date: Mon Mar 11 23:18:09 2019 New Revision: 345041 URL: https://svnweb.freebsd.org/changeset/base/345041 Log: Update ccr(4) to note recent support for SHA2-224 and plain SHA hashes. MFC after:3 days Sponsored by: Chelsio Communications Modified: head/share/man/man4/ccr

svn commit: r345043 - head/sys/ufs/ffs

2019-03-11 Thread Kirk McKusick
Author: mckusick Date: Mon Mar 11 23:53:56 2019 New Revision: 345043 URL: https://svnweb.freebsd.org/changeset/base/345043 Log: Give more complete information in INVARIANTS panic messages at end of the ffs_truncate() function. Sponsored by: Netflix Modified: head/sys/ufs/ffs/ffs_inode.

svn commit: r345044 - head/sys/ufs/ffs

2019-03-11 Thread Kirk McKusick
Author: mckusick Date: Tue Mar 12 00:10:31 2019 New Revision: 345044 URL: https://svnweb.freebsd.org/changeset/base/345044 Log: Add KASSERT to the softdep_disk_write_complete() function in the soft dependency code to ensure that it will be able to avoid a dangling dependency. Sponsored

svn commit: r345050 - head/bin/date

2019-03-11 Thread Warner Losh
Author: imp Date: Tue Mar 12 04:49:59 2019 New Revision: 345050 URL: https://svnweb.freebsd.org/changeset/base/345050 Log: Remove now useless -d and -t flags. These were used to set dst flag and minutes west of UTC respectively. These are obsolete and have been removed form the kernel.

svn commit: r345049 - in head/sys: amd64/linux32 compat/freebsd32 kern sys

2019-03-11 Thread Warner Losh
Author: imp Date: Tue Mar 12 04:49:47 2019 New Revision: 345049 URL: https://svnweb.freebsd.org/changeset/base/345049 Log: Kill tz_minuteswest and tz_dsttime. Research Unix, 7th Edition introduced TIMEZONE and DSTFLAG compile-time constants in sys/param.h to communicate these values for

svn commit: r345051 - head/sbin/camcontrol

2019-03-11 Thread Warner Losh
Author: imp Date: Tue Mar 12 04:57:05 2019 New Revision: 345051 URL: https://svnweb.freebsd.org/changeset/base/345051 Log: Add -l to camcontrol readcap. The -l flag sends only the READ CAPACITY (16) sevice action. Normally we send the READ CAPACITY (10) command, and only send RC16 when th

svn commit: r345052 - head/sys/kern

2019-03-11 Thread Warner Losh
Author: imp Date: Tue Mar 12 05:10:41 2019 New Revision: 345052 URL: https://svnweb.freebsd.org/changeset/base/345052 Log: Fix botched merge with 355066 When merging from Netflix's tree, resetting the carsize was dropped accidentally. This fix fixes that revision by properly resetting how

Re: svn commit: r345050 - head/bin/date

2019-03-11 Thread Rodney W. Grimes
> Author: imp > Date: Tue Mar 12 04:49:59 2019 > New Revision: 345050 > URL: https://svnweb.freebsd.org/changeset/base/345050 > > Log: > Remove now useless -d and -t flags. > > These were used to set dst flag and minutes west of UTC > respectively. These are obsolete and have been removed

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

2019-03-11 Thread Warner Losh
On Mon, Mar 11, 2019 at 11:10 PM Warner Losh wrote: > Author: imp > Date: Tue Mar 12 05:10:41 2019 > New Revision: 345052 > URL: https://svnweb.freebsd.org/changeset/base/345052 > > Log: > Fix botched merge with 355066 > It was actually 335066. And since this was before the 12 branch, it shoul

Re: svn commit: r345050 - head/bin/date

2019-03-11 Thread Rodney W. Grimes
> > Author: imp > > Date: Tue Mar 12 04:49:59 2019 > > New Revision: 345050 > > URL: https://svnweb.freebsd.org/changeset/base/345050 > > > > Log: > > Remove now useless -d and -t flags. > > > > These were used to set dst flag and minutes west of UTC > > respectively. These are obsolete a

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

2019-03-11 Thread Cy Schubert
In message <201903120510.x2c5afs9081...@repo.freebsd.org>, Warner Losh writes: > Author: imp > Date: Tue Mar 12 05:10:41 2019 > New Revision: 345052 > URL: https://svnweb.freebsd.org/changeset/base/345052 > > Log: > Fix botched merge with 355066 Should this be 335066? > > When merging fro

Re: svn commit: r345050 - head/bin/date

2019-03-11 Thread Warner Losh
On Mon, Mar 11, 2019 at 11:25 PM Rodney W. Grimes wrote: > > > Author: imp > > > Date: Tue Mar 12 04:49:59 2019 > > > New Revision: 345050 > > > URL: https://svnweb.freebsd.org/changeset/base/345050 > > > > > > Log: > > > Remove now useless -d and -t flags. > > > > > > These were used to set

Re: svn commit: r344970 - head

2019-03-11 Thread Warner Losh
On Mon, Mar 11, 2019 at 2:17 AM Peter Jeremy wrote: > On 2019-Mar-10 09:38:53 -0600, Warner Losh wrote: > >On Sun, Mar 10, 2019 at 9:07 AM Alexey Dokuchaev > wrote: > > > >> On Sat, Mar 09, 2019 at 12:00:27PM -0800, Rodney W. Grimes wrote: > >> > > New Revision: 344970 > >> > > binaries).

svn commit: r345053 - head

2019-03-11 Thread Warner Losh
Author: imp Date: Tue Mar 12 06:01:43 2019 New Revision: 345053 URL: https://svnweb.freebsd.org/changeset/base/345053 Log: Tweak wording a little. Submitted by: peterj@ Modified: head/UPDATING Modified: head/UPDATING ==