svn commit: r350108 - head/usr.bin/bsdiff/bspatch

2019-07-18 Thread Xin LI
Author: delphij Date: Thu Jul 18 07:26:30 2019 New Revision: 350108 URL: https://svnweb.freebsd.org/changeset/base/350108 Log: Remove support for FreeBSD 10.x. MFC after:1 month Modified: head/usr.bin/bsdiff/bspatch/bspatch.c Modified: head/usr.bin/bsdiff/bspatch/bspatch.c =

svn commit: r350109 - head/usr.bin/bsdiff/bspatch

2019-07-18 Thread Xin LI
Author: delphij Date: Thu Jul 18 07:37:26 2019 New Revision: 350109 URL: https://svnweb.freebsd.org/changeset/base/350109 Log: errno.h is no longer needed as of r340239 so remove it. No MFC planned as that revision was not merged. Modified: head/usr.bin/bsdiff/bspatch/bspatch.c Modified

svn commit: r350112 - in head/sys/arm64: arm64 include

2019-07-18 Thread Andrew Turner
Author: andrew Date: Thu Jul 18 13:58:04 2019 New Revision: 350112 URL: https://svnweb.freebsd.org/changeset/base/350112 Log: Rename arm64 macros in preperation for a script to generate them. I have a script to generate most of the ID_AA64* macros from the Arm XML source [1]. In preperati

svn commit: r350114 - head/sys/dev/nvme

2019-07-18 Thread Warner Losh
Author: imp Date: Thu Jul 18 15:41:10 2019 New Revision: 350114 URL: https://svnweb.freebsd.org/changeset/base/350114 Log: Provide macros to extract the sub-fields of the CAP_LO and CAP_HI registers. These macros make places where we extract these easier to read. The shift and mask stuff

svn commit: r350116 - head/lib/libc/gen

2019-07-18 Thread Brooks Davis
Author: brooks Date: Thu Jul 18 21:33:55 2019 New Revision: 350116 URL: https://svnweb.freebsd.org/changeset/base/350116 Log: Document that setmode(3) is not thread safe. In some circumstances, setmode(3) may call umask(2) twice to retrieve the current mode and then restore it. Between c

svn commit: r350117 - head/lib/libc/tests/gen

2019-07-18 Thread Brooks Davis
Author: brooks Date: Thu Jul 18 21:37:50 2019 New Revision: 350117 URL: https://svnweb.freebsd.org/changeset/base/350117 Log: Include a mode when creating files with openat(). Reviewed by: asomers Obtained from:CheriBSD MFC after:1 week Sponsored by: DARPA, AFRL Differe

Re: svn commit: r350116 - head/lib/libc/gen

2019-07-18 Thread Brooks Davis
On Thu, Jul 18, 2019 at 09:33:56PM +, Brooks Davis wrote: > Author: brooks > Date: Thu Jul 18 21:33:55 2019 > New Revision: 350116 > URL: https://svnweb.freebsd.org/changeset/base/350116 > > Log: > Document that setmode(3) is not thread safe. > > In some circumstances, setmode(3) may ca

Re: svn commit: r350116 - head/lib/libc/gen

2019-07-18 Thread Konstantin Belousov
On Thu, Jul 18, 2019 at 09:41:15PM +, Brooks Davis wrote: > On Thu, Jul 18, 2019 at 09:33:56PM +, Brooks Davis wrote: > > Author: brooks > > Date: Thu Jul 18 21:33:55 2019 > > New Revision: 350116 > > URL: https://svnweb.freebsd.org/changeset/base/350116 > > > > Log: > > Document that se

Re: svn commit: r350116 - head/lib/libc/gen

2019-07-18 Thread Ian Lepore
On Thu, 2019-07-18 at 21:41 +, Brooks Davis wrote: > On Thu, Jul 18, 2019 at 09:33:56PM +, Brooks Davis wrote: > > Author: brooks > > Date: Thu Jul 18 21:33:55 2019 > > New Revision: 350116 > > URL: https://svnweb.freebsd.org/changeset/base/350116 > > > > Log: > > Document that setmode(3

svn commit: r350118 - in head: share/man/man4 sys/dev/nvme

2019-07-18 Thread Warner Losh
Author: imp Date: Thu Jul 18 21:58:51 2019 New Revision: 350118 URL: https://svnweb.freebsd.org/changeset/base/350118 Log: Provide new tunable hw.nvme.verbose_cmd_dump The nvme drive dumps only the most relevant details about a command when it fails. However, there are times this is not s

svn commit: r350119 - head/share/mk

2019-07-18 Thread Bryan Drewery
Author: bdrewery Date: Fri Jul 19 00:15:25 2019 New Revision: 350119 URL: https://svnweb.freebsd.org/changeset/base/350119 Log: Rework some multi-output target dependency handling. This reworks my last commit in r301285 to more closely match what was in r241298 (but reverted in r294878).

svn commit: r350120 - head/sys/dev/nvme

2019-07-18 Thread Warner Losh
Author: imp Date: Fri Jul 19 00:32:56 2019 New Revision: 350120 URL: https://svnweb.freebsd.org/changeset/base/350120 Log: Use sysctl + CTLRWTUN for hw.nvme.verbose_cmd_dump. Also convert it to a bool. While the rest of the driver isn't yet bool clean, this will help. Reviewed by: ce