svn commit: r368273 - head/sys/arm/arm

2020-12-02 Thread Michal Meloun
Author: mmel Date: Wed Dec 2 08:14:56 2020 New Revision: 368273 URL: https://svnweb.freebsd.org/changeset/base/368273 Log: Fix r368153. Wrong branch of #ifdef __ARMEB__ was deleted. Modified: head/sys/arm/arm/support.S Modified: head/sys/arm/arm/support.S ===

svn commit: r368274 - head/share/vt/fonts

2020-12-02 Thread Toomas Soome
Author: tsoome Date: Wed Dec 2 09:42:02 2020 New Revision: 368274 URL: https://svnweb.freebsd.org/changeset/base/368274 Log: vt/fonts: fix typo add missing 'is'. Reported by: bcr Modified: head/share/vt/fonts/INDEX.fonts Modified: head/share/vt/fonts/INDEX.fonts =

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

2020-12-02 Thread Chuck Tuffli
Author: chuck Date: Wed Dec 2 15:59:08 2020 New Revision: 368275 URL: https://svnweb.freebsd.org/changeset/base/368275 Log: nvme: Fix typo in definition Change occurrences of "selt test" to "self tests in the NVMe header file. Reviewed by: imp, mav MFC after:1 week Differen

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

2020-12-02 Thread Mark Johnston
Author: markj Date: Wed Dec 2 16:01:43 2020 New Revision: 368276 URL: https://svnweb.freebsd.org/changeset/base/368276 Log: pf: Fix table entry counter toggling When updating a table, pf will keep existing table entry structures corresponding to addresses that are in both of the old and

svn commit: r368277 - head/tests/sys/netpfil/pf

2020-12-02 Thread Kristof Provost
Author: kp Date: Wed Dec 2 16:33:23 2020 New Revision: 368277 URL: https://svnweb.freebsd.org/changeset/base/368277 Log: pf tests: Test case for bug #251414 Changing a table from not having counters to having counters (or vice versa) may trigger panics. PR: 251414 MFC af

svn commit: r368278 - head/usr.sbin/rtsold

2020-12-02 Thread Mark Johnston
Author: markj Date: Wed Dec 2 16:46:45 2020 New Revision: 368278 URL: https://svnweb.freebsd.org/changeset/base/368278 Log: rtsold: Fix bugs reported by Coverity - Avoid leaking a socket if llflags_get() fails. - Avoid leaking a file handle if rtsold_init_dumpfile() fails. - Tighten th

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

2020-12-02 Thread Michal Meloun
Author: mmel Date: Wed Dec 2 16:54:24 2020 New Revision: 368279 URL: https://svnweb.freebsd.org/changeset/base/368279 Log: NVME: Multiple busdma related fixes. - in nvme_qpair_process_completions() do dma sync before completion buffer is used. - in nvme_qpair_submit_tracker(), don't do

Re: svn commit: r368263 - head/sys/cddl/dev/dtrace/amd64

2020-12-02 Thread John Baldwin
On 12/1/20 2:44 PM, Konstantin Belousov wrote: > Author: kib > Date: Tue Dec 1 22:44:23 2020 > New Revision: 368263 > URL: https://svnweb.freebsd.org/changeset/base/368263 > > Log: > Fix syntax Thanks, my apologies. :( I had the same bug originally on other architectures (arm64, riscv, mips)

svn commit: r368280 - head/contrib/elftoolchain/addr2line

2020-12-02 Thread Ed Maste
Author: emaste Date: Wed Dec 2 17:22:29 2020 New Revision: 368280 URL: https://svnweb.freebsd.org/changeset/base/368280 Log: addr2line: rework check_range conditions Simplify logic and reduce indentation for DW_AT_low_pc case. Reviewed by: Tiger Gao, markj Sponsored by: The FreeBSD

svn commit: r368281 - head/sys/dev/e1000

2020-12-02 Thread Mitchell Horne
Author: mhorne Date: Wed Dec 2 17:37:32 2020 New Revision: 368281 URL: https://svnweb.freebsd.org/changeset/base/368281 Log: em: fix a null de-reference in em_free_pci_resources A failure in iflib_device_register() can result in em_free_pci_resources() being called after receive queues h

Re: svn commit: r368279 - head/sys/dev/nvme

2020-12-02 Thread Konstantin Belousov
On Wed, Dec 02, 2020 at 04:54:24PM +, Michal Meloun wrote: > Author: mmel > Date: Wed Dec 2 16:54:24 2020 > New Revision: 368279 > URL: https://svnweb.freebsd.org/changeset/base/368279 > > Log: > NVME: Multiple busdma related fixes. ... > - in nvme_qpair_submit_tracker(), don't do explic

Re: svn commit: r368197 - head/sbin/bectl

2020-12-02 Thread Gleb Smirnoff
Kyle, On Mon, Nov 30, 2020 at 08:28:58PM -0600, Kyle Evans wrote: K> > Log: K> > Print at least something when failing. K> > K> > Modified: K> > head/sbin/bectl/bectl.c K> > K> > Modified: head/sbin/bectl/bectl.c K> > =

Re: svn commit: r368197 - head/sbin/bectl

2020-12-02 Thread Kyle Evans
On Wed, Dec 2, 2020 at 12:02 PM Gleb Smirnoff wrote: > > Kyle, > > On Mon, Nov 30, 2020 at 08:28:58PM -0600, Kyle Evans wrote: > K> > Log: > K> > Print at least something when failing. > K> > > K> > Modified: > K> > head/sbin/bectl/bectl.c > K> > > K> > Modified: head/sbin/bectl/bectl.c > K>

Re: svn commit: r368279 - head/sys/dev/nvme

2020-12-02 Thread Warner Losh
On Wed, Dec 2, 2020 at 10:48 AM Konstantin Belousov wrote: > On Wed, Dec 02, 2020 at 04:54:24PM +, Michal Meloun wrote: > > Author: mmel > > Date: Wed Dec 2 16:54:24 2020 > > New Revision: 368279 > > URL: https://svnweb.freebsd.org/changeset/base/368279 > > > > Log: > > NVME: Multiple busd

Re: svn commit: r368197 - head/sbin/bectl

2020-12-02 Thread Gleb Smirnoff
Kyle, On Wed, Dec 02, 2020 at 12:08:43PM -0600, Kyle Evans wrote: K> > K> This should be gated on !cmd->silent, because some paths have K> > K> consumers that are specifically designed to not have to deal with K> > K> redirecting stderr. It was quite intentional that this didn't K> > K> previous

Re: svn commit: r368197 - head/sbin/bectl

2020-12-02 Thread Kyle Evans
On Wed, Dec 2, 2020 at 1:12 PM Gleb Smirnoff wrote: > > Kyle, > > On Wed, Dec 02, 2020 at 12:08:43PM -0600, Kyle Evans wrote: > K> > K> This should be gated on !cmd->silent, because some paths have > K> > K> consumers that are specifically designed to not have to deal with > K> > K> redirecting

Re: svn commit: r368279 - head/sys/dev/nvme

2020-12-02 Thread Konstantin Belousov
On Wed, Dec 02, 2020 at 11:17:01AM -0700, Warner Losh wrote: > On Wed, Dec 2, 2020 at 10:48 AM Konstantin Belousov > wrote: > > > On Wed, Dec 02, 2020 at 04:54:24PM +, Michal Meloun wrote: > > > Author: mmel > > > Date: Wed Dec 2 16:54:24 2020 > > > New Revision: 368279 > > > URL: https://sv

svn commit: r368282 - head/usr.sbin/crashinfo

2020-12-02 Thread Ed Maste
Author: emaste Date: Wed Dec 2 19:58:50 2020 New Revision: 368282 URL: https://svnweb.freebsd.org/changeset/base/368282 Log: crashinfo: Add references to the gdb port/package We intend to remove the obsolete GDB 6.1.1 from FreeBSD before FreeBSD 13. Reviewed by jhb Sponsored by: T

svn commit: r368283 - head/sys/dev/cxgbe

2020-12-02 Thread Navdeep Parhar
Author: np Date: Wed Dec 2 20:54:03 2020 New Revision: 368283 URL: https://svnweb.freebsd.org/changeset/base/368283 Log: cxgbe(4): Revert r367917. r367917 fixed the backpressure on the netmap rxq being stopped but that doesn't help if some other netmap rxq is starved (because it is stopp

svn commit: r368284 - head/sys/dev/uart

2020-12-02 Thread Mitchell Horne
Author: mhorne Date: Wed Dec 2 21:01:52 2020 New Revision: 368284 URL: https://svnweb.freebsd.org/changeset/base/368284 Log: uart: allow UART_DEV_DBGPORT for fdt consoles Allow fdt devices to be used as debug ports for gdb(4). A debug console can be specified with the "freebsd,debug-p

svn commit: r368287 - head/sbin/bectl

2020-12-02 Thread Gleb Smirnoff
Author: glebius Date: Wed Dec 2 21:53:28 2020 New Revision: 368287 URL: https://svnweb.freebsd.org/changeset/base/368287 Log: Fix r368197: suppress error printing for the "check" command. Reviewed by: kevans Modified: head/sbin/bectl/bectl.c Modified: head/sbin/bectl/bectl.c =

Re: svn commit: r366857 - head/libexec/rc/rc.d

2020-12-02 Thread John Baldwin
On 10/19/20 1:37 PM, Cy Schubert wrote: > Author: cy > Date: Mon Oct 19 20:37:38 2020 > New Revision: 366857 > URL: https://svnweb.freebsd.org/changeset/base/366857 > > Log: > Destroy cloned interfaces at netif stop, netif restart and shutdown. > This is especially important during shutdown be

svn commit: r368290 - in head/sys/powerpc: include powerpc

2020-12-02 Thread Brandon Bergren
Author: bdragon Date: Thu Dec 3 01:39:59 2020 New Revision: 368290 URL: https://svnweb.freebsd.org/changeset/base/368290 Log: [PowerPC64LE] Fix LE VSX/fpr interop In the PCB struct, we need to match the VSX register file layout correctly, as the VSRs shadow the FPRs. In LE, we need

Re: svn commit: r366857 - head/libexec/rc/rc.d

2020-12-02 Thread Cy Schubert
In message , John Baldwin wri tes: > On 10/19/20 1:37 PM, Cy Schubert wrote: > > Author: cy > > Date: Mon Oct 19 20:37:38 2020 > > New Revision: 366857 > > URL: https://svnweb.freebsd.org/changeset/base/366857 > > > > Log: > > Destroy cloned interfaces at netif stop, netif restart and shutdown.

svn commit: r368293 - head/sys/kern

2020-12-02 Thread Oleksandr Tymoshenko
Author: gonzo Date: Thu Dec 3 05:39:27 2020 New Revision: 368293 URL: https://svnweb.freebsd.org/changeset/base/368293 Log: Add support for hw.physmem tunable for ARM/ARM64/RISC-V platforms hw.physmem tunable allows to limit number of physical memory available to the system. It's handled

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

2020-12-02 Thread Cy Schubert
Author: cy Date: Thu Dec 3 05:49:59 2020 New Revision: 368294 URL: https://svnweb.freebsd.org/changeset/base/368294 Log: Remove trailing whitespace. MFC after:1 week Modified: head/lib/libc/gen/glob-compat11.c Modified: head/lib/libc/gen/glob-compat11.c