CVS commit: src/sys/dev/qbus

2024-03-24 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 25 05:37:45 UTC 2024 Modified Files: src/sys/dev/qbus: if_qe.c Log Message: vax/qe(4): supply an ipf->if_init() so that if_init() doesn't crash. convert the existing qeinit() to one compatible with if_init. should fix

CVS commit: src/sys/dev/qbus

2024-03-24 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 25 05:37:45 UTC 2024 Modified Files: src/sys/dev/qbus: if_qe.c Log Message: vax/qe(4): supply an ipf->if_init() so that if_init() doesn't crash. convert the existing qeinit() to one compatible with if_init. should fix

CVS commit: src/sys/dev/pci

2024-03-23 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Mar 24 03:29:03 UTC 2024 Modified Files: src/sys/dev/pci: ehci_pci.c Log Message: ehci(4): properly handle failed attach thinkpad a475 fails to attach an ehci instance: ehci0: pre-2.0 USB rev, device ignored which ends up

CVS commit: src/sys/dev/pci

2024-03-23 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Mar 24 03:29:03 UTC 2024 Modified Files: src/sys/dev/pci: ehci_pci.c Log Message: ehci(4): properly handle failed attach thinkpad a475 fails to attach an ehci instance: ehci0: pre-2.0 USB rev, device ignored which ends up

CVS commit: src/usr.sbin/usbdevs

2024-03-23 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Mar 24 03:23:19 UTC 2024 Modified Files: src/usr.sbin/usbdevs: usbdevs.c Log Message: usbdevs(8): don't assume usb bus count is the same as max usb bus unit keep track of the highest usbN value, not the count of busses. fixes

CVS commit: src/usr.sbin/usbdevs

2024-03-23 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Mar 24 03:23:19 UTC 2024 Modified Files: src/usr.sbin/usbdevs: usbdevs.c Log Message: usbdevs(8): don't assume usb bus count is the same as max usb bus unit keep track of the highest usbN value, not the count of busses. fixes

CVS commit: src/usr.bin/audio/record

2024-03-20 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Mar 20 20:19:31 UTC 2024 Modified Files: src/usr.bin/audio/record: record.c Log Message: match message & conversion function name properly. probably should make this into an array with two members. To generate a diff of this

CVS commit: src/usr.bin/audio/record

2024-03-20 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Mar 20 20:19:31 UTC 2024 Modified Files: src/usr.bin/audio/record: record.c Log Message: match message & conversion function name properly. probably should make this into an array with two members. To generate a diff of this

CVS commit: src/usr.bin/audio/common

2024-03-20 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Mar 20 20:18:39 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: audio_wav_parse_hdr: handle zero-length data files again the previous clean up turns zero-length data into no data and thus an error, instead

CVS commit: src/usr.bin/audio/common

2024-03-20 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Mar 20 20:18:39 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: audio_wav_parse_hdr: handle zero-length data files again the previous clean up turns zero-length data into no data and thus an error, instead

CVS commit: src/usr.bin/audio/common

2024-03-13 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Mar 14 00:00:31 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: fix some sizeof() confusion. using "const char search[4]" as a function parameter means that "search" is actually a pointer type so "sizeof

CVS commit: src/usr.bin/audio/common

2024-03-13 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Mar 14 00:00:31 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: fix some sizeof() confusion. using "const char search[4]" as a function parameter means that "search" is actually a pointer type so "sizeof

CVS commit: src/usr.bin/audio/common

2024-03-11 Thread matthew green
Module Name:src Committed By: mrg Date: Tue Mar 12 00:34:38 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: audioplay(1): handle mis-aligned RIFF chunks. put the code to find RIFF chunks into a new find_riff_chunk() function, and handle mis-aligned

CVS commit: src/usr.bin/audio/common

2024-03-11 Thread matthew green
Module Name:src Committed By: mrg Date: Tue Mar 12 00:34:38 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: audioplay(1): handle mis-aligned RIFF chunks. put the code to find RIFF chunks into a new find_riff_chunk() function, and handle mis-aligned

CVS commit: src/usr.bin/audio/common

2024-03-11 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 11 23:12:29 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: minor clean up in the RIFF/WAVE header checking. use memcmp() not strncmp() to check for "RIFF" and "WAVE". avoid endian convesion on

CVS commit: src/usr.bin/audio/common

2024-03-11 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 11 23:12:29 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: minor clean up in the RIFF/WAVE header checking. use memcmp() not strncmp() to check for "RIFF" and "WAVE". avoid endian convesion on

CVS commit: src/usr.bin/audio/common

2024-03-11 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 11 19:17:52 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: be sure to byte swap ext.len when checking/printing it. noted by rillig@. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20

CVS commit: src/usr.bin/audio/common

2024-03-11 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 11 19:17:52 UTC 2024 Modified Files: src/usr.bin/audio/common: wav.c Log Message: be sure to byte swap ext.len when checking/printing it. noted by rillig@. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20

CVS commit: src/sys/dev/ic

2024-03-09 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Mar 10 04:49:22 UTC 2024 Modified Files: src/sys/dev/ic: nvme.c Log Message: nvme(4): don't write to INTMC register if in intx mode this matches the handling of INTMS, both of which have the same restrictions on access in MSI-X

CVS commit: src/sys/dev/ic

2024-03-09 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Mar 10 04:49:22 UTC 2024 Modified Files: src/sys/dev/ic: nvme.c Log Message: nvme(4): don't write to INTMC register if in intx mode this matches the handling of INTMS, both of which have the same restrictions on access in MSI-X

CVS commit: src/sys/dev/pci

2024-03-09 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 22:03:32 UTC 2024 Modified Files: src/sys/dev/pci: if_aq.c Log Message: aq(4): always poll for link status some devices don't have working link status and rather than have a likely incomplete list of issues, always poll

CVS commit: src/sys/dev/pci

2024-03-09 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 22:03:32 UTC 2024 Modified Files: src/sys/dev/pci: if_aq.c Log Message: aq(4): always poll for link status some devices don't have working link status and rather than have a likely incomplete list of issues, always poll

CVS commit: src/sys/external/bsd/common/include/linux

2024-03-09 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 09:55:52 UTC 2024 Modified Files: src/sys/external/bsd/common/include/linux: printk.h Log Message: drm(4): make pr_debug equivalent to aprint_debug significantly reduces the default spam from amdgpu(4). To generate a

CVS commit: src/sys/external/bsd/common/include/linux

2024-03-09 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 09:55:52 UTC 2024 Modified Files: src/sys/external/bsd/common/include/linux: printk.h Log Message: drm(4): make pr_debug equivalent to aprint_debug significantly reduces the default spam from amdgpu(4). To generate a

CVS commit: src/sys/modules

2024-03-08 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 06:53:48 UTC 2024 Modified Files: src/sys/modules: Makefile Log Message: skip this subdir for "make includes". it's excessively slow and does nothing (nor should it.) To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/modules

2024-03-08 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 06:53:48 UTC 2024 Modified Files: src/sys/modules: Makefile Log Message: skip this subdir for "make includes". it's excessively slow and does nothing (nor should it.) To generate a diff of this commit: cvs rdiff -u

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

2024-03-08 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 06:51:24 UTC 2024 Modified Files: src/external/gpl3/gdb/dist/gdb/doc: Makefile.in Log Message: avoid rebuilding texi files in the read-only source tree To generate a diff of this commit: cvs rdiff -u -r1.1.1.10 -r1.2

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

2024-03-08 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 06:51:24 UTC 2024 Modified Files: src/external/gpl3/gdb/dist/gdb/doc: Makefile.in Log Message: avoid rebuilding texi files in the read-only source tree To generate a diff of this commit: cvs rdiff -u -r1.1.1.10 -r1.2

CVS commit: src/distrib/sets

2024-03-08 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 06:50:15 UTC 2024 Modified Files: src/distrib/sets: Makefile Log Message: allow XZ_OPT to be overriden. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/distrib/sets/Makefile Please note that diffs

CVS commit: src/distrib/sets

2024-03-08 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Mar 9 06:50:15 UTC 2024 Modified Files: src/distrib/sets: Makefile Log Message: allow XZ_OPT to be overriden. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/distrib/sets/Makefile Please note that diffs

CVS commit: src/sys/dev/usb

2024-03-07 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Mar 8 07:05:02 UTC 2024 Modified Files: src/sys/dev/usb: ehcireg.h Log Message: give some anonymous structures names To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/sys/dev/usb/ehcireg.h Please note that

CVS commit: src/sys/dev/usb

2024-03-07 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Mar 8 07:05:02 UTC 2024 Modified Files: src/sys/dev/usb: ehcireg.h Log Message: give some anonymous structures names To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/sys/dev/usb/ehcireg.h Please note that

CVS commit: src/usr.bin/audio/common

2024-03-07 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Mar 8 06:57:59 UTC 2024 Modified Files: src/usr.bin/audio/common: libaudio.h wav.c Log Message: audio_wav_parse_hdr(): avoid buffer overreads and clean up reimplement most of this function using a new method of buffer

CVS commit: src/usr.bin/audio/common

2024-03-07 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Mar 8 06:57:59 UTC 2024 Modified Files: src/usr.bin/audio/common: libaudio.h wav.c Log Message: audio_wav_parse_hdr(): avoid buffer overreads and clean up reimplement most of this function using a new method of buffer

CVS commit: src/usr.bin/audio/play

2024-03-03 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 4 06:29:35 UTC 2024 Modified Files: src/usr.bin/audio/play: audioplay.1 play.c Log Message: audioplay: add -n flag that doesn't write audio data. this will be used in an upcoming testsuite for the wav parser. To generate

CVS commit: src/usr.bin/audio/play

2024-03-03 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Mar 4 06:29:35 UTC 2024 Modified Files: src/usr.bin/audio/play: audioplay.1 play.c Log Message: audioplay: add -n flag that doesn't write audio data. this will be used in an upcoming testsuite for the wav parser. To generate

CVS commit: src/sys/kern

2024-02-29 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Mar 1 04:32:38 UTC 2024 Modified Files: src/sys/kern: kern_idle.c kern_softint.c subr_workqueue.c subr_xcall.c Log Message: check that l_nopreempt (preemption count) doesn't change after callbacks check that the idle loop,

CVS commit: src/sys/kern

2024-02-29 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Mar 1 04:32:38 UTC 2024 Modified Files: src/sys/kern: kern_idle.c kern_softint.c subr_workqueue.c subr_xcall.c Log Message: check that l_nopreempt (preemption count) doesn't change after callbacks check that the idle loop,

CVS commit: src/lib

2024-02-26 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Feb 26 20:16:16 UTC 2024 Modified Files: src/lib: Makefile Log Message: revert previous - it doesn't mean what i thought and some builds broke. To generate a diff of this commit: cvs rdiff -u -r1.298 -r1.299 src/lib/Makefile

CVS commit: src/lib

2024-02-26 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Feb 26 20:16:16 UTC 2024 Modified Files: src/lib: Makefile Log Message: revert previous - it doesn't mean what i thought and some builds broke. To generate a diff of this commit: cvs rdiff -u -r1.298 -r1.299 src/lib/Makefile

CVS commit: src/lib

2024-02-25 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 20:25:09 UTC 2024 Modified Files: src/lib: Makefile Log Message: skip sanitizers if MKSANITIZER "no". To generate a diff of this commit: cvs rdiff -u -r1.297 -r1.298 src/lib/Makefile Please note that diffs are not

CVS commit: src/lib

2024-02-25 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 20:25:09 UTC 2024 Modified Files: src/lib: Makefile Log Message: skip sanitizers if MKSANITIZER "no". To generate a diff of this commit: cvs rdiff -u -r1.297 -r1.298 src/lib/Makefile Please note that diffs are not

CVS commit: src/external/gpl3/gcc/lib

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 06:07:28 UTC 2024 Modified Files: src/external/gpl3/gcc/lib: Makefile.sanitizer Log Message: sanitizer needs at least i586 on x86 and at least v8 on sparc, unfortunately. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/external/gpl3/gcc/lib

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 06:07:28 UTC 2024 Modified Files: src/external/gpl3/gcc/lib: Makefile.sanitizer Log Message: sanitizer needs at least i586 on x86 and at least v8 on sparc, unfortunately. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/external/gpl3/gcc/lib/libiberty

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 03:55:44 UTC 2024 Modified Files: src/external/gpl3/gcc/lib/libiberty: defs.mk Log Message: regen. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/external/gpl3/gcc/lib/libiberty/defs.mk Please note

CVS commit: src/external/gpl3/gcc/lib/libiberty

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 03:55:44 UTC 2024 Modified Files: src/external/gpl3/gcc/lib/libiberty: defs.mk Log Message: regen. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/external/gpl3/gcc/lib/libiberty/defs.mk Please note

CVS commit: src/tools/gcc

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 02:24:19 UTC 2024 Modified Files: src/tools/gcc: gcc-version.mk Log Message: version our GCC 12 as "nb2 20240221" now. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/tools/gcc/gcc-version.mk Please

CVS commit: src/tools/gcc

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 02:24:19 UTC 2024 Modified Files: src/tools/gcc: gcc-version.mk Log Message: version our GCC 12 as "nb2 20240221" now. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/tools/gcc/gcc-version.mk Please

CVS commit: src/external/gpl3/gcc

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 01:21:06 UTC 2024 Modified Files: src/external/gpl3/gcc/lib/libgcc/arch/m68000: defs.mk src/external/gpl3/gcc/lib/libgcc/arch/vax: auto-target.h src/external/gpl3/gcc/lib/libstdc++-v3/arch/aarch64:

CVS commit: src/external/gpl3/gcc/dist/libsanitizer/tsan

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 01:12:16 UTC 2024 Modified Files: src/external/gpl3/gcc/dist/libsanitizer/tsan: tsan_rtl.h Log Message: add some missing alignment. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 \

CVS commit: src/external/gpl3/gcc/dist/libsanitizer/tsan

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 01:12:16 UTC 2024 Modified Files: src/external/gpl3/gcc/dist/libsanitizer/tsan: tsan_rtl.h Log Message: add some missing alignment. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 \

CVS commit: src/external/gpl3/gcc/usr.bin

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 00:28:02 UTC 2024 Modified Files: src/external/gpl3/gcc/usr.bin: Makefile Makefile.backend src/external/gpl3/gcc/usr.bin/backend: Makefile Added Files: src/external/gpl3/gcc/usr.bin: Makefile.isl Log

CVS commit: src/external/gpl3/gcc/usr.bin

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 25 00:28:02 UTC 2024 Modified Files: src/external/gpl3/gcc/usr.bin: Makefile Makefile.backend src/external/gpl3/gcc/usr.bin/backend: Makefile Added Files: src/external/gpl3/gcc/usr.bin: Makefile.isl Log

CVS commit: src/lib/libm/src

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Feb 24 19:32:09 UTC 2024 Modified Files: src/lib/libm/src: namespace.h s_atanl.c s_remquo.c s_remquof.c s_remquol.c Log Message: fix some fallout from 32-bit fixes for long double functions. apply namespace.h to

CVS commit: src/lib/libm/src

2024-02-24 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Feb 24 19:32:09 UTC 2024 Modified Files: src/lib/libm/src: namespace.h s_atanl.c s_remquo.c s_remquof.c s_remquol.c Log Message: fix some fallout from 32-bit fixes for long double functions. apply namespace.h to

CVS commit: src/tools

2024-02-22 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Feb 23 05:34:41 UTC 2024 Modified Files: src/tools: Makefile Added Files: src/tools/isl: Makefile Log Message: build isl tool for GCC 12. To generate a diff of this commit: cvs rdiff -u -r1.215 -r1.216

CVS commit: src/tools

2024-02-22 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Feb 23 05:34:41 UTC 2024 Modified Files: src/tools: Makefile Added Files: src/tools/isl: Makefile Log Message: build isl tool for GCC 12. To generate a diff of this commit: cvs rdiff -u -r1.215 -r1.216

CVS commit: src/external/mit/isl

2024-02-22 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Feb 23 05:33:04 UTC 2024 Added Files: src/external/mit/isl/include: Makefile gitversion.h isl_config.h src/external/mit/isl/include/isl: Makefile stdint.h src/external/mit/isl/lib/libisl: Makefile Log Message:

CVS commit: src/external/mit/isl

2024-02-22 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Feb 23 05:33:04 UTC 2024 Added Files: src/external/mit/isl/include: Makefile gitversion.h isl_config.h src/external/mit/isl/include/isl: Makefile stdint.h src/external/mit/isl/lib/libisl: Makefile Log Message:

CVS commit: src/tools/gcc

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:47:27 UTC 2024 Modified Files: src/tools/gcc: Makefile Log Message: enable isl support for GCC 12. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/tools/gcc/Makefile Please note that diffs are

CVS commit: src/tools/gcc

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:47:27 UTC 2024 Modified Files: src/tools/gcc: Makefile Log Message: enable isl support for GCC 12. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/tools/gcc/Makefile Please note that diffs are

CVS commit: src/tools/gcc

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:40:21 UTC 2024 Modified Files: src/tools/gcc: Makefile Log Message: Include the local NetBSD GCC version so that bumps to it trigger rebuilds unfortunately, this will cause one rebuild to get the new name. To

CVS commit: src/tools/gcc

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:40:21 UTC 2024 Modified Files: src/tools/gcc: Makefile Log Message: Include the local NetBSD GCC version so that bumps to it trigger rebuilds unfortunately, this will cause one rebuild to get the new name. To

CVS commit: src/sbin/newfs

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:11:29 UTC 2024 Modified Files: src/sbin/newfs: mkfs.c Log Message: if the window size works but is 0, assume it didn't work and use 80. To generate a diff of this commit: cvs rdiff -u -r1.135 -r1.136

CVS commit: src/sbin/newfs

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:11:29 UTC 2024 Modified Files: src/sbin/newfs: mkfs.c Log Message: if the window size works but is 0, assume it didn't work and use 80. To generate a diff of this commit: cvs rdiff -u -r1.135 -r1.136

CVS commit: src/external/mit/isl/dist

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:10:30 UTC 2024 Modified Files: src/external/mit/isl/dist: Makefile.in Log Message: apply some NetBSD_DISABLED_* To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/isl/dist/Makefile.in

CVS commit: src/external/mit/isl/dist

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Feb 22 02:10:30 UTC 2024 Modified Files: src/external/mit/isl/dist: Makefile.in Log Message: apply some NetBSD_DISABLED_* To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/isl/dist/Makefile.in

CVS commit: src/external/gpl3/gcc/lib

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Feb 21 09:06:57 UTC 2024 Modified Files: src/external/gpl3/gcc/lib/libstdc++-v3: Makefile src/external/gpl3/gcc/lib/libsupc++: Makefile.common Log Message: build the C++20 sstream-inst.cc. fixes link errors in

CVS commit: src/external/gpl3/gcc/lib

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Feb 21 09:06:57 UTC 2024 Modified Files: src/external/gpl3/gcc/lib/libstdc++-v3: Makefile src/external/gpl3/gcc/lib/libsupc++: Makefile.common Log Message: build the C++20 sstream-inst.cc. fixes link errors in

CVS commit: src/tools/gcc

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Feb 21 08:24:46 UTC 2024 Modified Files: src/tools/gcc: mknative-gcc Log Message: fetch G_CPP20_SOURCES. To generate a diff of this commit: cvs rdiff -u -r1.117 -r1.118 src/tools/gcc/mknative-gcc Please note that diffs are

CVS commit: src/tools/gcc

2024-02-21 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Feb 21 08:24:46 UTC 2024 Modified Files: src/tools/gcc: mknative-gcc Log Message: fetch G_CPP20_SOURCES. To generate a diff of this commit: cvs rdiff -u -r1.117 -r1.118 src/tools/gcc/mknative-gcc Please note that diffs are

CVS commit: src/sys/arch/x86/x86

2024-02-19 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Feb 19 20:10:09 UTC 2024 Modified Files: src/sys/arch/x86/x86: tsc.c Log Message: remove unintended printf() in previous. (thx dh) To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/sys/arch/x86/x86/tsc.c

CVS commit: src/sys/arch/x86/x86

2024-02-19 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Feb 19 20:10:09 UTC 2024 Modified Files: src/sys/arch/x86/x86: tsc.c Log Message: remove unintended printf() in previous. (thx dh) To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/sys/arch/x86/x86/tsc.c

CVS commit: src/sys/arch/x86/x86

2024-02-19 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Feb 19 09:22:31 UTC 2024 Modified Files: src/sys/arch/x86/x86: tsc.c Log Message: make TSC get a quality of -100 on AMD Family 15h and 16h this should "fix" PR#56322 and is known as AMD errata "778: Processor Core Time Stamp

CVS commit: src/sys/arch/x86/x86

2024-02-19 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Feb 19 09:22:31 UTC 2024 Modified Files: src/sys/arch/x86/x86: tsc.c Log Message: make TSC get a quality of -100 on AMD Family 15h and 16h this should "fix" PR#56322 and is known as AMD errata "778: Processor Core Time Stamp

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

2024-02-18 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 18 10:49:43 UTC 2024 Modified Files: src/sys/arch/arm/conf: Makefile.arm Log Message: if we're building with GCC and MACHINE_CPU is aarch64, error out since that isn't going to work. doing this better in config(1) is

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

2024-02-18 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 18 10:49:43 UTC 2024 Modified Files: src/sys/arch/arm/conf: Makefile.arm Log Message: if we're building with GCC and MACHINE_CPU is aarch64, error out since that isn't going to work. doing this better in config(1) is

CVS commit: src/external/lgpl3/gmp/dist

2024-02-06 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Feb 7 07:12:17 UTC 2024 Modified Files: src/external/lgpl3/gmp/dist: config.sub Log Message: add turbosparc to the list of known sparc machines. reported by Ken Wellsch on port-sparc. config.guess knows that this CPU is a

CVS commit: src/external/lgpl3/gmp/dist

2024-02-06 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Feb 7 07:12:17 UTC 2024 Modified Files: src/external/lgpl3/gmp/dist: config.sub Log Message: add turbosparc to the list of known sparc machines. reported by Ken Wellsch on port-sparc. config.guess knows that this CPU is a

CVS commit: src/sys/dev/usb

2024-02-06 Thread matthew green
Module Name:src Committed By: mrg Date: Tue Feb 6 23:57:41 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c ehcireg.h Log Message: avoid different struct type problem. To generate a diff of this commit: cvs rdiff -u -r1.321 -r1.322 src/sys/dev/usb/ehci.c cvs rdiff -u

CVS commit: src/sys/dev/usb

2024-02-06 Thread matthew green
Module Name:src Committed By: mrg Date: Tue Feb 6 23:57:41 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c ehcireg.h Log Message: avoid different struct type problem. To generate a diff of this commit: cvs rdiff -u -r1.321 -r1.322 src/sys/dev/usb/ehci.c cvs rdiff -u

CVS commit: src/libexec/httpd

2024-02-03 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 4 05:54:21 UTC 2024 Modified Files: src/libexec/httpd: bozohttpd.8 Log Message: note this documents bozohttpd 20240126. To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 src/libexec/httpd/bozohttpd.8 Please

CVS commit: src/libexec/httpd

2024-02-03 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 4 05:54:21 UTC 2024 Modified Files: src/libexec/httpd: bozohttpd.8 Log Message: note this documents bozohttpd 20240126. To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 src/libexec/httpd/bozohttpd.8 Please

CVS commit: src

2024-02-03 Thread matthew green
users display for Unix @@ -39,18 +39,18 @@ * Wolfram Schneider * Arne Helme * Luke Mewburn - * matthew green + * matthew green * Simon Burge * Tomas Svensson * Andrew Doran * * - * $Id: m_netbsd.c,v 1.29 2023/12/14 07:18:44 mrg Exp $ + * $Id: m_netbsd.c,v 1.30 2024/02

CVS commit: src

2024-02-03 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Feb 4 05:43:07 UTC 2024 Modified Files: src/compat: README src/external/bsd/top/dist/machine: m_netbsd.c src/lib/libc/sys: swapctl.2 src/libexec/httpd/libbozohttpd: libbozohttpd.3

CVS commit: src/usr.bin/gzip

2024-02-03 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Feb 3 22:40:29 UTC 2024 Modified Files: src/usr.bin/gzip: gzip.c Log Message: bump copyright and version. To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122 src/usr.bin/gzip/gzip.c Please note that diffs are not

CVS commit: src/usr.bin/gzip

2024-02-03 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Feb 3 22:40:29 UTC 2024 Modified Files: src/usr.bin/gzip: gzip.c Log Message: bump copyright and version. To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122 src/usr.bin/gzip/gzip.c Please note that diffs are not

CVS commit: src/distrib/utils/embedded/files

2024-01-28 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Jan 29 05:46:55 UTC 2024 Modified Files: src/distrib/utils/embedded/files: creds_msdos Log Message: properly quote arguments. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: src/distrib/utils/embedded/files

2024-01-28 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Jan 29 05:46:55 UTC 2024 Modified Files: src/distrib/utils/embedded/files: creds_msdos Log Message: properly quote arguments. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

re: CVS commit: src

2024-01-27 Thread matthew green
"Taylor R Campbell" writes: > Mark /var/run/named obsolete in the set lists. XXX This isn't quite > right, because it is legitimate for /var/run/named to exist in a > running installation, but it doesn't exist in a freshly installed > system any more. Maybe we should just remove the entry from

CVS commit: src/libexec/httpd

2024-01-26 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Jan 26 23:19:44 UTC 2024 Modified Files: src/libexec/httpd: CHANGES bozohttpd.8 bozohttpd.c Log Message: add some missing changes and bump the version. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55

CVS commit: src/libexec/httpd

2024-01-26 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Jan 26 23:19:44 UTC 2024 Modified Files: src/libexec/httpd: CHANGES bozohttpd.8 bozohttpd.c Log Message: add some missing changes and bump the version. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55

CVS commit: src/sbin/blkdiscard

2024-01-24 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 25 02:42:17 UTC 2024 Modified Files: src/sbin/blkdiscard: blkdiscard.8 blkdiscard.c Log Message: blkdiscard: avoid asserting when passed a bsd disklabel raw device PR#57856 shows when using blkdiscard on eg, /dev/ld0 it

CVS commit: src/sbin/blkdiscard

2024-01-24 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 25 02:42:17 UTC 2024 Modified Files: src/sbin/blkdiscard: blkdiscard.8 blkdiscard.c Log Message: blkdiscard: avoid asserting when passed a bsd disklabel raw device PR#57856 shows when using blkdiscard on eg, /dev/ld0 it

CVS commit: src/sbin/blkdiscard

2024-01-24 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 25 02:06:56 UTC 2024 Modified Files: src/sbin/blkdiscard: blkdiscard.c Log Message: determine the tty width instead off writing 100 chars before a new line. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/sbin/blkdiscard

2024-01-24 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 25 02:06:56 UTC 2024 Modified Files: src/sbin/blkdiscard: blkdiscard.c Log Message: determine the tty width instead off writing 100 chars before a new line. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/distrib/sets/lists/tests

2024-01-24 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 25 01:43:59 UTC 2024 Modified Files: src/distrib/sets/lists/tests: mi Log Message: add missing mtree subdir and it's Atffile. To generate a diff of this commit: cvs rdiff -u -r1.1300 -r1.1301

CVS commit: src/distrib/sets/lists/tests

2024-01-24 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 25 01:43:59 UTC 2024 Modified Files: src/distrib/sets/lists/tests: mi Log Message: add missing mtree subdir and it's Atffile. To generate a diff of this commit: cvs rdiff -u -r1.1300 -r1.1301

re: CVS commit: src/sys/arch/macppc/conf

2024-01-17 Thread matthew green
> Log Message: > macppc: enable FFS_EI in GENERIC > > I'd say it should be enabled for anything with USB. > > ok macallan yay. i think we should enable it basically everywhere that it is not a space issue. USB is just one common way, but i can also modify or create my own images anyway, and

CVS commit: src/usr.bin/gzip

2024-01-14 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Jan 14 18:12:59 UTC 2024 Modified Files: src/usr.bin/gzip: gzip.c Log Message: set file flags after setting other modes otherwise permission to set modes may be revoked by the flags. from PR#57855. thanks! XXX: pullup-all

  1   2   3   4   5   6   7   8   9   10   >