CVS commit: src/sys/uvm

2020-10-24 Thread Chuck Silvers
Module Name:src Committed By: chs Date: Sun Oct 25 00:05:26 UTC 2020 Modified Files: src/sys/uvm: uvm_anon.c Log Message: Handle PG_PAGEOUT in uvm_anon_release() too. To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 src/sys/uvm/uvm_anon.c Please note that

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 23:27:33 UTC 2020 Modified Files: src/usr.bin/make: dir.c Log Message: make(1): remove UNCONST from Dir_Expand That code is called so seldom that one more memory allocation doesn't hurt. It needs a wildcard character

CVS commit: src/external/gpl3/gdb/dist/gdb

2020-10-24 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 24 23:06:15 UTC 2020 Modified Files: src/external/gpl3/gdb/dist/gdb: bsd-kvm.c Log Message: Now that we are adding the thread in the bsd_kvm_ops target namespace, make sure that the inferior's top namespace is that too.

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 20:51:49 UTC 2020 Modified Files: src/usr.bin/make: buf.c make.h str.c var.c Log Message: make(1): remove macros MIN and MAX These macros typically evaluate one of their arguments twice. Until 2020-08-31, they had

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 20:29:40 UTC 2020 Modified Files: src/usr.bin/make: main.c make.h Log Message: make(1): convert macros for debug flags into enum To generate a diff of this commit: cvs rdiff -u -r1.387 -r1.388 src/usr.bin/make/main.c

CVS commit: src/usr.sbin/sysinst

2020-10-24 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 24 16:13:15 UTC 2020 Modified Files: src/usr.sbin/sysinst: menus.mi msg.mi.de msg.mi.en msg.mi.es msg.mi.fr msg.mi.pl util.c Log Message: When looking for available CD media, skip those that are already

CVS commit: src/sys/arch/sparc64/dev

2020-10-24 Thread Julian Coleman
Module Name:src Committed By: jdc Date: Sat Oct 24 15:16:39 UTC 2020 Modified Files: src/sys/arch/sparc64/dev: pcf8591_envctrl.c Log Message: Add support for automatically changing the CPU fan speed on the E250 in a similar way to the SB1000/SB2000. The fan control

CVS commit: src/sys/arch/arm/arm32

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 14:51:59 UTC 2020 Modified Files: src/sys/arch/arm/arm32: bus_dma.c Log Message: Fix the logic around "parent is a subset and can be re-used" in bus_dmatag_subregion. Thanks to mrg@ for spotting the problem. To

CVS commit: src/tests/lib/libcurses/director

2020-10-24 Thread Roy Marples
Module Name:src Committed By: roy Date: Sat Oct 24 14:45:06 UTC 2020 Modified Files: src/tests/lib/libcurses/director: testlang_parse.y Log Message: Remove extra parens To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19

CVS commit: src/lib/libossaudio

2020-10-24 Thread Roy Marples
Module Name:src Committed By: roy Date: Sat Oct 24 14:43:53 UTC 2020 Modified Files: src/lib/libossaudio: ossaudio.c Log Message: libossaudio: return newfd here as we return retval elsewhere To generate a diff of this commit: cvs rdiff -u -r1.57 -r1.58

CVS commit: src/tests/lib/libcurses

2020-10-24 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 24 14:21:26 UTC 2020 Modified Files: src/tests/lib/libcurses/check_files: Makefile src/tests/lib/libcurses/tests: Makefile Log Message: Add the new tests + check files, sort. To generate a diff of this commit:

CVS commit: src/sys/arch/sparc64/sparc64

2020-10-24 Thread Julian Coleman
Module Name:src Committed By: jdc Date: Sat Oct 24 13:47:53 UTC 2020 Modified Files: src/sys/arch/sparc64/sparc64: ofw_patch.c Log Message: Add E250 i2c devices missing from the OFW tree. Normalise the spelling of "temperature". To generate a diff of this commit: cvs

CVS commit: src/sbin/mount

2020-10-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sat Oct 24 10:51:34 UTC 2020 Modified Files: src/sbin/mount: mount.8 Log Message: file systems that are used as what spools? To generate a diff of this commit: cvs rdiff -u -r1.87 -r1.88 src/sbin/mount/mount.8 Please note that

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 10:36:23 UTC 2020 Modified Files: src/usr.bin/make: lst.c lst.h main.c suff.c Log Message: make(1): remove unused Lst_Find and Lst_FindFrom To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 10:32:25 UTC 2020 Modified Files: src/usr.bin/make: meta.c Log Message: make(1): inline Lst_Find in meta_oodate To generate a diff of this commit: cvs rdiff -u -r1.129 -r1.130 src/usr.bin/make/meta.c Please note

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 10:18:29 UTC 2020 Modified Files: src/usr.bin/make: lst.c Log Message: make(1): clean up comments in list functions To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 src/usr.bin/make/lst.c Please note

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 10:17:21 UTC 2020 Modified Files: src/usr.bin/make: meta.c Log Message: make(1): make Lst_RemoveIf simpler in meta_oodate Using Lst_Find and Lst_FindFrom to implement Lst_RemoveIf was a bad idea. It made the code

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 09:28:50 UTC 2020 Modified Files: src/usr.bin/make: main.c Log Message: make(1): inline ReadMakefileFailed, eliminating some void pointers To generate a diff of this commit: cvs rdiff -u -r1.385 -r1.386

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 09:18:09 UTC 2020 Modified Files: src/usr.bin/make: dir.c Log Message: make(1): inline DirFindName To generate a diff of this commit: cvs rdiff -u -r1.172 -r1.173 src/usr.bin/make/dir.c Please note that diffs are

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 09:03:54 UTC 2020 Modified Files: src/usr.bin/make: lst.c Log Message: make(1): clean up code in lst.c To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 src/usr.bin/make/lst.c Please note that diffs are

CVS commit: src/sys/compat/linux/common

2020-10-24 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Sat Oct 24 09:01:56 UTC 2020 Modified Files: src/sys/compat/linux/common: linux_socket.c Log Message: Fix compat with Linux programs that use longer namelen for sockets Linux is less strict than NetBSD and permits namelen to be

CVS commit: src/sys/dev/pci

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 09:00:35 UTC 2020 Modified Files: src/sys/dev/pci: ld_virtio.c Log Message: Use BUS_DMA_WAITOK in ld_virtio_alloc_reqs which is called at attached time... To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28

CVS commit: src/sys/dev/acpi

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 08:57:06 UTC 2020 Modified Files: src/sys/dev/acpi: vmbus_acpi.c Log Message: Test the 64bit dma tag with BUS_DMA_TAG_VALID before using it. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3

CVS commit: src/usr.bin/make

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 08:56:27 UTC 2020 Modified Files: src/usr.bin/make: lst.c Log Message: make(1): refactor LstNodeNew To generate a diff of this commit: cvs rdiff -u -r1.83 -r1.84 src/usr.bin/make/lst.c Please note that diffs are not

CVS commit: src/sys/dev/acpi

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 08:55:23 UTC 2020 Modified Files: src/sys/dev/acpi: xhci_acpi.c Log Message: Fix DMA size reporting. Previously it could report 64bit DMA when the tag wasn't available (and it fell back to 32bit tag) To generate a

CVS commit: src/usr.bin/make/unit-tests

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 08:50:17 UTC 2020 Modified Files: src/usr.bin/make/unit-tests: cond-short.mk directive-for.mk dotwait.mk escape.mk export-all.mk export-env.mk export.mk forloop.mk job-output-long-lines.mk

CVS commit: src/usr.bin/make/unit-tests

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 08:46:08 UTC 2020 Modified Files: src/usr.bin/make/unit-tests: cond-cmp-numeric-eq.mk cond-cmp-numeric-ge.mk cond-cmp-numeric-gt.mk cond-cmp-numeric-le.mk cond-cmp-numeric-lt.mk

CVS commit: src/usr.bin/make/unit-tests

2020-10-24 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 24 08:34:59 UTC 2020 Modified Files: src/usr.bin/make/unit-tests: cond1.mk doterror.mk error.mk escape.mk export-all.mk export-env.mk export.mk forloop.mk forsubst.mk moderrs.mk modmisc.mk modts.mk

CVS commit: src/sys/dev/acpi

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 07:21:01 UTC 2020 Modified Files: src/sys/dev/acpi: virtio_acpi.c Log Message: Use the 64bit DMA tag if its valid. There appears to be a bug in virtio / ld_virtio and bounce buffers that was triggered when the

CVS commit: src

2020-10-24 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Sat Oct 24 07:14:30 UTC 2020 Modified Files: src/sys/arch/x86/include: cpufunc.h fpu.h src/sys/arch/x86/x86: fpu.c src/sys/dev/nvmm/x86: nvmm_x86_svm.c nvmm_x86_vmx.c src/tests/lib/libc/sys:

CVS commit: src/sys/arch/arm/acpi

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 07:08:22 UTC 2020 Modified Files: src/sys/arch/arm/acpi: acpi_machdep.c acpi_pci_graviton.c acpi_pci_n1sdp.c acpipchb.c Log Message: Trailing whitespace To generate a diff of this commit: cvs rdiff -u

CVS commit: src/lib/libc/arch/hppa

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 07:05:52 UTC 2020 Modified Files: src/lib/libc/arch/hppa: genassym.cf Log Message: Add _UC_GREGS_* defines for all general registers To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3

CVS commit: src/lib/libc/arch/arm

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 07:03:12 UTC 2020 Modified Files: src/lib/libc/arch/arm: genassym.cf Log Message: Provide _UC_REGS_* defines for all registers To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3

CVS commit: src/lib/libc/arch/aarch64/sys

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 07:02:20 UTC 2020 Modified Files: src/lib/libc/arch/aarch64/sys: __sigtramp2.S Log Message: Update the unwinder comment to better reflect ARM64 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: src/etc/mtree

2020-10-24 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 24 07:03:01 UTC 2020 Modified Files: src/etc/mtree: NetBSD.dist.base Log Message: Register the usr/share/gdb dir To generate a diff of this commit: cvs rdiff -u -r1.224 -r1.225 src/etc/mtree/NetBSD.dist.base Please note

CVS commit: src/lib/libc/arch/aarch64/sys

2020-10-24 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 24 07:00:26 UTC 2020 Modified Files: src/lib/libc/arch/aarch64/sys: __sigtramp2.S Log Message: s/ARM/ARM64/ in comment To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5