CVS commit: src/lib/libc/include

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Mar 3 00:57:21 UTC 2025 Added Files: src/lib/libc/include: atfork.h Log Message: __libc_atfork: Add header file missed in previous commit. PR lib/59112: libpthread constructors use malloc PR lib/59117: arc4random has some

CVS commit: src/lib/libc/include

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Mar 3 00:57:21 UTC 2025 Added Files: src/lib/libc/include: atfork.h Log Message: __libc_atfork: Add header file missed in previous commit. PR lib/59112: libpthread constructors use malloc PR lib/59117: arc4random has some

Re: CVS commit: src/lib/libc/gen

2025-03-02 Thread Robert Elz
Date:Mon, 03 Mar 2025 06:50:47 +0700 From:Robert Elz Message-ID: <13328.1740959...@jacaranda.noi.kre.to> | This is the wrong solution, Further, given that it doesn't even build, please revert it. I will implement a sane solution in the next day or two (I'll even t

Re: CVS commit: src/lib/libc/gen

2025-03-02 Thread Robert Elz
Date:Sun, 2 Mar 2025 22:46:24 + From:"Taylor R Campbell" Message-ID: <20250302224624.1a707f...@cvs.netbsd.org> | Log Message: | libc: New __libc_atfork. | | This uses caller-provided storage for the callback queues. | | Use it in arc4random(3) in order

CVS commit: src/tests/lib/libc/stdlib

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 23:11:19 UTC 2025 Modified Files: src/tests/lib/libc/stdlib: h_sort.c Log Message: tests/lib/libc/stdlib/h_sort: Reserve room for a NUL byte. PR lib/58931: qsort_r() missing To generate a diff of this commit: cvs

CVS commit: src/tests/lib/libc/stdlib

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 23:11:19 UTC 2025 Modified Files: src/tests/lib/libc/stdlib: h_sort.c Log Message: tests/lib/libc/stdlib/h_sort: Reserve room for a NUL byte. PR lib/58931: qsort_r() missing To generate a diff of this commit: cvs

CVS commit: src/lib/libc/gen

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 22:54:12 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c Log Message: arc4random(3): Don't ifdef out the self-test. The runtime cost of this test is negligible (64 bytes of data and a handful of instructions

CVS commit: src/lib/libc/gen

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 22:54:12 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c Log Message: arc4random(3): Don't ifdef out the self-test. The runtime cost of this test is negligible (64 bytes of data and a handful of instructions

CVS commit: src/lib/libc/gen

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 22:53:45 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c Log Message: arc4random(3): Update comments to reflect removal of failure modes. PR lib/59117: arc4random has some failure modes it shouldn't To gen

CVS commit: src/lib/libc/gen

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 22:53:45 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c Log Message: arc4random(3): Update comments to reflect removal of failure modes. PR lib/59117: arc4random has some failure modes it shouldn't To gen

CVS commit: src/lib/libc/gen

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 22:46:24 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c pthread_atfork.c Log Message: libc: New __libc_atfork. This uses caller-provided storage for the callback queues. Use it in arc4random(3) in order to

CVS commit: src/lib/libc/gen

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 22:46:24 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c pthread_atfork.c Log Message: libc: New __libc_atfork. This uses caller-provided storage for the callback queues. Use it in arc4random(3) in order to

CVS commit: src/sys/lib/libkern

2025-03-02 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Mar 2 22:04:07 UTC 2025 Modified Files: src/sys/lib/libkern: xlat_mbr_fstype.c Log Message: xlat_mbr_fstype: handle MBR_PTYPE_EFI as FS_MSDOS To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/lib/libker

CVS commit: src

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 21:35:59 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c src/lib/libc/include: arc4random.h src/tests/lib/libc/gen: t_arc4random.c Log Message: arc4random(3): Avoid failure due to thread key l

CVS commit: src

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 21:35:59 UTC 2025 Modified Files: src/lib/libc/gen: arc4random.c src/lib/libc/include: arc4random.h src/tests/lib/libc/gen: t_arc4random.c Log Message: arc4random(3): Avoid failure due to thread key l

CVS commit: src/sys/lib/libkern

2025-03-02 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Mar 2 22:04:07 UTC 2025 Modified Files: src/sys/lib/libkern: xlat_mbr_fstype.c Log Message: xlat_mbr_fstype: handle MBR_PTYPE_EFI as FS_MSDOS To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/lib/libker

CVS commit: src/tests/lib/libc/stdlib

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 20:00:32 UTC 2025 Modified Files: src/tests/lib/libc/stdlib: h_sort.c t_sort.sh Log Message: t_sort: Test mergesort for stability too. These test cases are trivial, but they're enough to trigger unstable heapsort an

CVS commit: src/tests/lib/libc/stdlib

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 20:00:32 UTC 2025 Modified Files: src/tests/lib/libc/stdlib: h_sort.c t_sort.sh Log Message: t_sort: Test mergesort for stability too. These test cases are trivial, but they're enough to trigger unstable heapsort an

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

2025-03-02 Thread Christos Zoulas
Yes, unfortunately I committed the version from my tree by accident and not the one that was on the web server. I already fixed it. christos signature.asc Description: Message signed with OpenPGP

CVS commit: src

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 16:35:41 UTC 2025 Modified Files: src/common/lib/libc/stdlib: heapsort.c src/distrib/sets/lists/comp: mi src/distrib/sets/lists/debug: mi src/distrib/sets/lists/tests: mi src/include: s

CVS commit: src

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 16:35:41 UTC 2025 Modified Files: src/common/lib/libc/stdlib: heapsort.c src/distrib/sets/lists/comp: mi src/distrib/sets/lists/debug: mi src/distrib/sets/lists/tests: mi src/include: s

CVS commit: src/bin/csh

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 14:20:38 UTC 2025 Modified Files: src/bin/csh: time.c Log Message: bin/csh/time.c: Break overlong line. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/bin/csh/time.c Please note that diffs are n

CVS commit: src/bin/csh

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 14:20:38 UTC 2025 Modified Files: src/bin/csh: time.c Log Message: bin/csh/time.c: Break overlong line. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/bin/csh/time.c Please note that diffs are n

CVS commit: src/sbin/efi

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 14:18:04 UTC 2025 Modified Files: src/sbin/efi: devpath2.c Log Message: efi(8): Avoid hard-coding sizeof(devpath_t) as magic constants. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sbin/efi/devpa

CVS commit: src/sbin/efi

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 14:18:04 UTC 2025 Modified Files: src/sbin/efi: devpath2.c Log Message: efi(8): Avoid hard-coding sizeof(devpath_t) as magic constants. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sbin/efi/devpa

CVS commit: src/sys/dev/scsipi

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 14:13:22 UTC 2025 Modified Files: src/sys/dev/scsipi: sd.c Log Message: sd(4): Break overlong lines. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.341 -r1.342 src/sys/dev/scsip

CVS commit: src/sys/dev/scsipi

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 14:13:22 UTC 2025 Modified Files: src/sys/dev/scsipi: sd.c Log Message: sd(4): Break overlong lines. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.341 -r1.342 src/sys/dev/scsip

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

2025-03-02 Thread Taylor R Campbell
> Module Name:src > Committed By: christos > Date: Thu Feb 27 10:55:27 UTC 2025 > > Modified Files: > src/lib/libc/arch/arm/misc: arm_initfini.c > > Log Message: > use the latest version that does not abort on error. > > @@ -46,6 +46,7 @@ > #include > #include > #inc

CVS commit: src/sys/dev/acpi

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 13:47:36 UTC 2025 Modified Files: src/sys/dev/acpi: amdgpio.c Log Message: amdgpio(4): Fix whitespace nits. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/ac

CVS commit: src/sys/dev/acpi

2025-03-02 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Mar 2 13:47:36 UTC 2025 Modified Files: src/sys/dev/acpi: amdgpio.c Log Message: amdgpio(4): Fix whitespace nits. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/ac

CVS commit: src/sys/arch/vax/vsa

2025-03-02 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 2 13:43:39 UTC 2025 Modified Files: src/sys/arch/vax/vsa: dz_vsbus.c Log Message: vax/dz(4): restore dz_print() to print line number of children To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/arch/v

CVS commit: src/sys/arch/vax/vsa

2025-03-02 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 2 13:43:39 UTC 2025 Modified Files: src/sys/arch/vax/vsa: dz_vsbus.c Log Message: vax/dz(4): restore dz_print() to print line number of children To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/arch/v

Re: CVS commit: src/sys/dev/pci

2025-03-02 Thread Taylor R Campbell
> Module Name:src > Committed By: joe > Date: Tue Feb 25 02:10:13 UTC 2025 > > Modified Files: > src/sys/dev/pci: if_iavf.c > > Log Message: > initialize post to 0 > > this prevents the use of unitialized variable when we hit an error branch > on the first attempt/iterati

CVS commit: src/sys/arch/vax/vsa

2025-03-02 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 2 11:11:48 UTC 2025 Modified Files: src/sys/arch/vax/vsa: dz_vsbus.c Log Message: vax/dz(4): fix console detection when it's not on line 0 To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/sys/arch/vax/vsa

CVS commit: src/sys/arch/vax/vsa

2025-03-02 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 2 11:11:48 UTC 2025 Modified Files: src/sys/arch/vax/vsa: dz_vsbus.c Log Message: vax/dz(4): fix console detection when it's not on line 0 To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/sys/arch/vax/vsa

CVS commit: src/sys/compat/netbsd32

2025-03-02 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Feb 28 17:58:06 UTC 2025 Modified Files: src/sys/compat/netbsd32: netbsd32_compat_16.c Log Message: PR/59100: Onno van der Linden: i386 compat32 broken on amd64 To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 s

CVS commit: src/sys/arch/riscv/riscv

2025-03-02 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Mar 2 08:14:26 UTC 2025 Modified Files: src/sys/arch/riscv/riscv: locore.S riscv_machdep.c Log Message: risc-v: ensure the boot stacks are mapped so that pmap_extract works To generate a diff of this commit: cvs rdiff -u -r1

CVS commit: src/sys/arch/riscv/riscv

2025-03-02 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Mar 2 08:14:26 UTC 2025 Modified Files: src/sys/arch/riscv/riscv: locore.S riscv_machdep.c Log Message: risc-v: ensure the boot stacks are mapped so that pmap_extract works To generate a diff of this commit: cvs rdiff -u -r1