Re: svn commit: r358744 - in head: lib/libsecureboot lib/libsecureboot/h lib/libsecureboot/tests share/mk stand stand/common stand/efi/loader stand/efi/loader/arch/i386 stand/ficl stand/i386/libi386 s

2020-03-08 Thread O. Hartmann
On Sun, 8 Mar 2020 17:42:43 + (UTC) "Simon J. Gerraty" wrote: > Author: sjg > Date: Sun Mar 8 17:42:42 2020 > New Revision: 358744 > URL: https://svnweb.freebsd.org/changeset/base/358744 > > Log: > veloader use vectx API for kernel and modules > > The vectx API, computes the hash for ver

svn commit: r358801 - head/sys/riscv/sifive

2020-03-08 Thread Philip Paeps
Author: philip Date: Mon Mar 9 04:09:36 2020 New Revision: 358801 URL: https://svnweb.freebsd.org/changeset/base/358801 Log: fuspi: silence build warning, plug resource leak This silences an "unused label" warning as well as fixes the attach fail path that wasn't releasing resources.

svn commit: r358800 - head/sys/dev/cpufreq

2020-03-08 Thread Emmanuel Vadot
Author: manu Date: Mon Mar 9 03:34:16 2020 New Revision: 358800 URL: https://svnweb.freebsd.org/changeset/base/358800 Log: cpufreq: Unbreak build. Modified: head/sys/dev/cpufreq/cpufreq_dt.c Modified: head/sys/dev/cpufreq/cpufreq_dt.c

svn commit: r358799 - head/sys/dev/cpufreq

2020-03-08 Thread Emmanuel Vadot
Author: manu Date: Mon Mar 9 02:30:16 2020 New Revision: 358799 URL: https://svnweb.freebsd.org/changeset/base/358799 Log: cpufreq_dt: Fix r358555 Before skipping the current cpu when trying to find the ones that have the same opp, record that this one have this opp. Reported by: m

svn commit: r358798 - in head: sys/fs/fuse tests/sys/fs/fusefs

2020-03-08 Thread Alan Somers
Author: asomers Date: Mon Mar 9 01:57:21 2020 New Revision: 358798 URL: https://svnweb.freebsd.org/changeset/base/358798 Log: fusefs: fix fsync for files with multiple open handles We were reusing a structure for multiple operations, but failing to reinitialize one member. The result is

Re: svn commit: r358733 - head/sys/sys

2020-03-08 Thread Mateusz Guzik
On 3/8/20, Mateusz Guzik wrote: > Author: mjg > Date: Sun Mar 8 00:22:32 2020 > New Revision: 358733 > URL: https://svnweb.freebsd.org/changeset/base/358733 > > Log: > seqc: tidy up > > - avoid hand-rolled read > - match begin/end in terms of fence style > There were off lists questions ab

svn commit: r358797 - head/tests/sys/fs/fusefs

2020-03-08 Thread Alan Somers
Author: asomers Date: Mon Mar 9 00:14:09 2020 New Revision: 358797 URL: https://svnweb.freebsd.org/changeset/base/358797 Log: [skip ci] fix typo in comment in the fusefs tests MFC after:2 weeks Modified: head/tests/sys/fs/fusefs/notify.cc Modified: head/tests/sys/fs/fusefs/notify.c

svn commit: r358789 - head/share/man/man7

2020-03-08 Thread Ed Maste
Author: emaste Date: Sun Mar 8 21:30:55 2020 New Revision: 358789 URL: https://svnweb.freebsd.org/changeset/base/358789 Log: arch.7: remove note about GCC 4.2.1 removal date GCC 4.2.1 was removed in r358454. Sponsored by: The FreeBSD Foundation Modified: head/share/man/man7/arch.7

svn commit: r358788 - head/share/man/man7

2020-03-08 Thread Ed Maste
Author: emaste Date: Sun Mar 8 21:25:36 2020 New Revision: 358788 URL: https://svnweb.freebsd.org/changeset/base/358788 Log: arch.7: remove sparc64 references sparc64 was removed from the tree, so remove references here (except for the supported release table). Sponsored by: The Fre

Re: svn commit: r358744 - in head: lib/libsecureboot lib/libsecureboot/h lib/libsecureboot/tests share/mk stand stand/common stand/efi/loader stand/efi/loader/arch/i386 stand/ficl stand/i386/libi386 s

2020-03-08 Thread Simon J. Gerraty via svn-src-head
Sorry, this header was in the diff I checked just before commit, but somehow it got left behind. Should be fixed now. r358767 Ed Maste wrote: > On Sun, 8 Mar 2020 at 13:42, Simon J. Gerraty wrote: > > > > Author: sjg > > Date: Sun Mar 8 17:42:42 2020 > > New Revision: 358744 > > URL: > > htt

svn commit: r358767 - head/stand/common

2020-03-08 Thread Simon J. Gerraty
Author: sjg Date: Sun Mar 8 18:48:01 2020 New Revision: 358767 URL: https://svnweb.freebsd.org/changeset/base/358767 Log: veloader use vectx API for kernel and modules The vectx API, computes the hash for verifying a file as it is read. This avoids the overhead of reading files twice - o

Re: svn commit: r358744 - in head: lib/libsecureboot lib/libsecureboot/h lib/libsecureboot/tests share/mk stand stand/common stand/efi/loader stand/efi/loader/arch/i386 stand/ficl stand/i386/libi386 s

2020-03-08 Thread Ed Maste
On Sun, 8 Mar 2020 at 13:42, Simon J. Gerraty wrote: > > Author: sjg > Date: Sun Mar 8 17:42:42 2020 > New Revision: 358744 > URL: https://svnweb.freebsd.org/changeset/base/358744 > > Log: > veloader use vectx API for kernel and modules CI reports the build is now broken: 18:12:46 --- geliboot

svn commit: r358744 - in head: lib/libsecureboot lib/libsecureboot/h lib/libsecureboot/tests share/mk stand stand/common stand/efi/loader stand/efi/loader/arch/i386 stand/ficl stand/i386/libi386 st...

2020-03-08 Thread Simon J. Gerraty
Author: sjg Date: Sun Mar 8 17:42:42 2020 New Revision: 358744 URL: https://svnweb.freebsd.org/changeset/base/358744 Log: veloader use vectx API for kernel and modules The vectx API, computes the hash for verifying a file as it is read. This avoids the overhead of reading files twice - o

svn commit: r358738 - in head/sys/dev/usb: . controller

2020-03-08 Thread Hans Petter Selasky
Author: hselasky Date: Sun Mar 8 13:24:34 2020 New Revision: 358738 URL: https://svnweb.freebsd.org/changeset/base/358738 Log: Remove the power bit from the super speed root hub port status register because it clobbers the super speed link status when a device is in super speed mode. Curren