Re: kern/59327: user stack pointer is not aligned properly

2025-04-21 Thread Rin Okuyama
Sorry, I forgot to mention PR#59327. rin Forwarded Message Subject: CVS commit: src/tests/kernel/arch/mips Date: Mon, 21 Apr 2025 14:17:38 + From: Rin Okuyama Reply-To: source-changes-d@NetBSD.org To: source-changes-f...@netbsd.org Module Name:src Committed By: rin

Re: CVS commit: src/sys

2025-04-13 Thread Rin Okuyama
On 2025/04/13 15:50, Thomas Klausner wrote: On Sun, Apr 13, 2025 at 02:34:03AM +, Rin Okuyama wrote: ... XXX This is KABI change, and cannot be pulled up into netbsd-{10,9}. If this changes the ABI, shouldn't the NetBSD Version in sys/param.h be bumped? Thomas Good que

Re: CVS commit: src/sys/dev

2025-04-12 Thread Rin Okuyama
Hi Michael, On 2025/04/12 21:00, Michael van Elst wrote: On Sat, Apr 12, 2025 at 08:14:28PM +0900, Rin Okuyama wrote: Hi Michael, thanks for kind review! Hi rin, PS For ld_sdmmc.c, IIUC, check for ld_sdmmc_dump() yields ``` if (blkno + blkcnt - 1 > sc->sc_sf->csd.capacity)

Re: CVS commit: src/sys/dev

2025-04-12 Thread Rin Okuyama
Hi Michael, thanks for kind review! On 2025/04/12 19:01, Michael van Elst wrote: On Sat, Apr 12, 2025 at 06:24:44PM +0900, Rin Okuyama wrote: Hi! I've made a draft patch to support dumping against > 2Gi blocks for backends like nvme(4) or virtio(4). Does it look reasonable to you?

Re: kern/59153 crash doesn't dump (Was: CVS commit: src/sys/dev)

2025-04-12 Thread Rin Okuyama
: Is this related to kern/59153? On Sat, 12 Apr 2025, Rin Okuyama wrote: Hi! I've made a draft patch to support dumping against > 2Gi blocks for backends like nvme(4) or virtio(4). Does it look reasonable to you? Thanks, rin On 2025/04/12 16:30, Michael van Elst wrote: Module Name:  

Re: CVS commit: src/sys/dev

2025-04-12 Thread Rin Okuyama
+* sc_dump takes only an 'int' as a disk address +*/ + if (blkno < 0 || blkno + nblk - 1 > INT_MAX) + return (EIO); + return (*sc->sc_dump)(sc, va, blkno, nblk); } From 853041872113cb0ce7b8676b0e080f19948ec125 Mon Sep 17 00:00:00 2

Re: CVS commit: src/sys/kern

2025-04-09 Thread Rin Okuyama
Hmm, I was still confused. On 2025/04/10 11:08, Rin Okuyama wrote: On 2025/04/09 14:38, Rin Okuyama wrote: Module Name:    src Committed By:    rin Date:    Wed Apr  9 05:38:01 UTC 2025 Modified Files: src/sys/kern: subr_log.c Log Message: logread: Stop reading msgbuf without

Re: CVS commit: src/sys/kern

2025-04-09 Thread Rin Okuyama
On 2025/04/09 14:38, Rin Okuyama wrote: Module Name:src Committed By: rin Date: Wed Apr 9 05:38:01 UTC 2025 Modified Files: src/sys/kern: subr_log.c Log Message: logread: Stop reading msgbuf without log_lock being held Oops, sorry, here I made typo; s/reading/writing

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

2025-01-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jan 9 06:55:25 UTC 2025 Modified Files: src/sys/arch/arm/cortex: gtmr.c Log Message: gtmr_delay: Put SPINLOCK_BACKOFF_HOOK in busy loop It is expanded as a `yield` instruction for aarch64. This slightly improves peak performan

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

2025-01-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jan 9 06:55:25 UTC 2025 Modified Files: src/sys/arch/arm/cortex: gtmr.c Log Message: gtmr_delay: Put SPINLOCK_BACKOFF_HOOK in busy loop It is expanded as a `yield` instruction for aarch64. This slightly improves peak performan

CVS commit: src/sys/netinet

2024-12-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Dec 20 00:49:08 UTC 2024 Modified Files: src/sys/netinet: ip_carp.c Log Message: carp_join_multicast: Stop allocating ip_moptions on stack It was just a waste of memory. NFC otherwise, and no regression observed for full ATF run

CVS commit: src/sys/netinet

2024-12-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Dec 20 00:49:08 UTC 2024 Modified Files: src/sys/netinet: ip_carp.c Log Message: carp_join_multicast: Stop allocating ip_moptions on stack It was just a waste of memory. NFC otherwise, and no regression observed for full ATF run

CVS commit: src/sys/stand/efiboot

2024-12-02 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Dec 2 09:58:08 UTC 2024 Modified Files: src/sys/stand/efiboot: Makefile.efiboot Log Message: stand/efiboot: Enable to override `DEFAULT_TIMEOUT` by `EFIBOOT_TIMEOUT` make(1) variable. To generate a diff of this commit: cvs rd

CVS commit: src/sys/stand/efiboot

2024-12-02 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Dec 2 09:58:08 UTC 2024 Modified Files: src/sys/stand/efiboot: Makefile.efiboot Log Message: stand/efiboot: Enable to override `DEFAULT_TIMEOUT` by `EFIBOOT_TIMEOUT` make(1) variable. To generate a diff of this commit: cvs rd

Can we remove SYSCTL_DESCR()? (Re: CVS commit: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm)

2024-11-07 Thread Rin Okuyama
On 2024/11/07 18:51, Rin Okuyama wrote: Module Name:src Committed By: rin Date: Thu Nov 7 09:51:00 UTC 2024 Modified Files: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm: vchiq_kmod_netbsd.c Log Message: vchiq: Use SYSCTL_DESCR() to comply with

CVS commit: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm

2024-11-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Nov 7 09:51:00 UTC 2024 Modified Files: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm: vchiq_kmod_netbsd.c Log Message: vchiq: Use SYSCTL_DESCR() to comply with SYSCTL_INCLUDE_DESCR option To generate a diff

CVS commit: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm

2024-11-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Nov 7 09:51:00 UTC 2024 Modified Files: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm: vchiq_kmod_netbsd.c Log Message: vchiq: Use SYSCTL_DESCR() to comply with SYSCTL_INCLUDE_DESCR option To generate a diff

CVS commit: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm

2024-11-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Nov 7 09:49:49 UTC 2024 Modified Files: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm: vchiq_kmod_netbsd.c Log Message: vchiq: Adjust newlines in arguments of sysctl_createv(9) No binary changes. To generate

CVS commit: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm

2024-11-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Nov 7 09:49:49 UTC 2024 Modified Files: src/sys/external/bsd/vchiq/dist/interface/vchiq_arm: vchiq_kmod_netbsd.c Log Message: vchiq: Adjust newlines in arguments of sysctl_createv(9) No binary changes. To generate

CVS commit: src/sys/dev/sysmon

2024-11-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Nov 7 09:47:40 UTC 2024 Modified Files: src/sys/dev/sysmon: swwdog.c Log Message: swwdog: Use SYSCTL_DESCR() to comply with SYSCTL_INCLUDE_DESCR option To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/dev/

CVS commit: src/sys/dev/sysmon

2024-11-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Nov 7 09:47:40 UTC 2024 Modified Files: src/sys/dev/sysmon: swwdog.c Log Message: swwdog: Use SYSCTL_DESCR() to comply with SYSCTL_INCLUDE_DESCR option To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/dev/

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

2024-11-05 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Nov 6 04:44:12 UTC 2024 Modified Files: src/distrib/sets/lists/xdebug: md.sparc Log Message: xdebug: md.sparc: Fix confusion for pnozz_drv.so.0.debug which was registered both as valid and obsolete files at the same time. To

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

2024-11-05 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Nov 6 04:44:12 UTC 2024 Modified Files: src/distrib/sets/lists/xdebug: md.sparc Log Message: xdebug: md.sparc: Fix confusion for pnozz_drv.so.0.debug which was registered both as valid and obsolete files at the same time. To

CVS commit: src/external/gpl3/gcc/dist/gcc/config/arm

2024-11-01 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Nov 1 09:22:26 UTC 2024 Modified Files: src/external/gpl3/gcc/dist/gcc/config/arm: arm_neon.h Log Message: gcc/arm_neon.h: vldrq_p128: Sprinkle const also for armeb and use `foo const *` instead of `const foo *`, as seen in the

CVS commit: src/external/gpl3/gcc/dist/gcc/config/arm

2024-11-01 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Nov 1 09:22:26 UTC 2024 Modified Files: src/external/gpl3/gcc/dist/gcc/config/arm: arm_neon.h Log Message: gcc/arm_neon.h: vldrq_p128: Sprinkle const also for armeb and use `foo const *` instead of `const foo *`, as seen in the

CVS commit: src/crypto/external/bsd/openssh/dist

2024-10-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Oct 29 03:20:32 UTC 2024 Modified Files: src/crypto/external/bsd/openssh/dist: kexmlkem768x25519.c libcrux_mlkem768_sha3.h mlkem768.sh Log Message: openssh: Fix mlkem768x25519-sha256 KEX algorithm for big-endian machi

CVS commit: src/crypto/external/bsd/openssh/dist

2024-10-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Oct 29 03:20:32 UTC 2024 Modified Files: src/crypto/external/bsd/openssh/dist: kexmlkem768x25519.c libcrux_mlkem768_sha3.h mlkem768.sh Log Message: openssh: Fix mlkem768x25519-sha256 KEX algorithm for big-endian machi

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

2024-10-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Oct 24 05:22:54 UTC 2024 Modified Files: src/distrib/sets/lists/xdebug: md.hppa Log Message: xdebug: md.hppa: Add missing ngle_drv.so.0.debug To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/distrib/sets/lists/xd

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

2024-10-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Oct 24 05:22:54 UTC 2024 Modified Files: src/distrib/sets/lists/xdebug: md.hppa Log Message: xdebug: md.hppa: Add missing ngle_drv.so.0.debug To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/distrib/sets/lists/xd

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

2024-10-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 23 12:47:39 UTC 2024 Modified Files: src/sys/arch/vax/boot/boot: boot.c Log Message: vax: boot: Fix my typo in comment. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/arch/vax/boot/

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

2024-10-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 23 12:47:39 UTC 2024 Modified Files: src/sys/arch/vax/boot/boot: boot.c Log Message: vax: boot: Fix my typo in comment. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/arch/vax/boot/

CVS commit: src/usr.sbin/postinstall

2024-10-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 23 10:16:52 UTC 2024 Modified Files: src/usr.sbin/postinstall: postinstall.in Log Message: postinstall: Do not obsolete 10-sub-pixel-rgb.conf This file revived for fontconfig 2.14.1, and has been recognized both as valid and

CVS commit: src/usr.sbin/postinstall

2024-10-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 23 10:16:52 UTC 2024 Modified Files: src/usr.sbin/postinstall: postinstall.in Log Message: postinstall: Do not obsolete 10-sub-pixel-rgb.conf This file revived for fontconfig 2.14.1, and has been recognized both as valid and

CVS commit: src/sys/dev/qbus

2024-10-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Oct 21 11:28:25 UTC 2024 Modified Files: src/sys/dev/qbus: files.uba Log Message: qbus/qt(4): Add missing dependency to `ifuba` To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/dev/qbus/files.uba Please no

CVS commit: src/share/man/man4

2024-10-10 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Oct 10 09:05:45 UTC 2024 Modified Files: src/share/man/man4: acpihed.4 acpivmgenid.4 apei.4 Log Message: acpi{hed,vmgenid}(4), apei(4): Sync HISTORY with reality These got successfully back-ported into 10.1 :) To generate a di

CVS commit: src/share/man/man4

2024-10-10 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Oct 10 09:05:45 UTC 2024 Modified Files: src/share/man/man4: acpihed.4 acpivmgenid.4 apei.4 Log Message: acpi{hed,vmgenid}(4), apei(4): Sync HISTORY with reality These got successfully back-ported into 10.1 :) To generate a di

CVS commit: src/crypto/external/bsd/openssh/dist

2024-10-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 9 01:49:20 UTC 2024 Modified Files: src/crypto/external/bsd/openssh/dist: auth.c auth2.c Log Message: sshd: Finally fix spurious blocklistd activation (PR bin/58369) Drop one more pfilter_notify() call from userauth_finish(

CVS commit: src/crypto/external/bsd/openssh/dist

2024-10-08 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 9 01:49:20 UTC 2024 Modified Files: src/crypto/external/bsd/openssh/dist: auth.c auth2.c Log Message: sshd: Finally fix spurious blocklistd activation (PR bin/58369) Drop one more pfilter_notify() call from userauth_finish(

CVS commit: src/sys/netinet

2024-10-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Oct 8 06:17:14 UTC 2024 Modified Files: src/sys/netinet: tcp_input.c Log Message: tcp_reass: Mitigate CVE-2018-6922 (SegmentSmack) at a level of FreeBSD, by introducing an arbitrary (100) limit to the length of TCP reassembly q

CVS commit: src/sys/netinet

2024-10-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Oct 8 06:17:14 UTC 2024 Modified Files: src/sys/netinet: tcp_input.c Log Message: tcp_reass: Mitigate CVE-2018-6922 (SegmentSmack) at a level of FreeBSD, by introducing an arbitrary (100) limit to the length of TCP reassembly q

Re: CVS commit: src/sys

2024-10-07 Thread Rin Okuyama
ATF failures seem to be fixed by mlelstv@: https://mail-index.netbsd.org/source-changes/2024/10/06/msg153736.html https://releng.netbsd.org/b5reports/i386/commits-2024.10.html#end Thanks, rin On 2024/10/07 21:00, Christos Zoulas wrote: no, i did not. I will fix asap. christos On Oct 6, 2024,

CVS commit: src/crypto/external/bsd/openssh/dist

2024-10-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Oct 3 08:14:13 UTC 2024 Modified Files: src/crypto/external/bsd/openssh/dist: kex.c Log Message: openssh: kex: Do not pass NULL as %s for logit() in our local diff newkeys->mac.name can be NULL since OpenSSH 6.2: http://cvsweb.

CVS commit: src/crypto/external/bsd/openssh/dist

2024-10-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Oct 3 08:14:13 UTC 2024 Modified Files: src/crypto/external/bsd/openssh/dist: kex.c Log Message: openssh: kex: Do not pass NULL as %s for logit() in our local diff newkeys->mac.name can be NULL since OpenSSH 6.2: http://cvsweb.

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

2024-10-01 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 2 01:56:02 UTC 2024 Modified Files: src/sys/external/bsd/common/include/linux: bitops.h Log Message: linux/bitops: Fix overestimate for BITS_TO_LONGS(9) Fortunately, this seems harmless except for allocating excessive buffe

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

2024-10-01 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Oct 2 01:56:02 UTC 2024 Modified Files: src/sys/external/bsd/common/include/linux: bitops.h Log Message: linux/bitops: Fix overestimate for BITS_TO_LONGS(9) Fortunately, this seems harmless except for allocating excessive buffe

CVS commit: src/sys/rump/net/lib/libshmif

2024-10-01 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Oct 1 08:55:58 UTC 2024 Modified Files: src/sys/rump/net/lib/libshmif: if_shmem.c Log Message: shmif: Fix logics for media change and status - shmif_mediachange: Drop check for if_link_state. Otherwise, there can be race b/w

CVS commit: src/sys/rump/net/lib/libshmif

2024-10-01 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Oct 1 08:55:58 UTC 2024 Modified Files: src/sys/rump/net/lib/libshmif: if_shmem.c Log Message: shmif: Fix logics for media change and status - shmif_mediachange: Drop check for if_link_state. Otherwise, there can be race b/w

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

2024-09-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 30 00:34:05 UTC 2024 Modified Files: src/sys/arch/vax/vsa: gpx.c Log Message: vax/gpx: Stop copy{in,out}(9) from/to 0-length buffers Found by GCC12 -Wmaybe-uninitialized. Authored by kalvisd@. To generate a diff of this c

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

2024-09-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 30 00:34:05 UTC 2024 Modified Files: src/sys/arch/vax/vsa: gpx.c Log Message: vax/gpx: Stop copy{in,out}(9) from/to 0-length buffers Found by GCC12 -Wmaybe-uninitialized. Authored by kalvisd@. To generate a diff of this c

CVS commit: src/sys/net/lagg

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Sep 26 06:08:24 UTC 2024 Modified Files: src/sys/net/lagg: if_laggproto.c Log Message: lagg: fill name of workqueue correctly Found by KASSERT failure for DIAGNOSTIC kernel. Authored by ozaki-r@. To generate a diff of this co

CVS commit: src/sys/net/lagg

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Sep 26 06:08:24 UTC 2024 Modified Files: src/sys/net/lagg: if_laggproto.c Log Message: lagg: fill name of workqueue correctly Found by KASSERT failure for DIAGNOSTIC kernel. Authored by ozaki-r@. To generate a diff of this co

CVS commit: src/sys/arch/luna68k/stand/boot

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 25 09:39:12 UTC 2024 Modified Files: src/sys/arch/luna68k/stand/boot: machdep.c Log Message: luna68k/boot: Silence GCC12 -Warray-bounds for regdump() Dereference to `(int *)(&rp) - 1` (SR in H/W exception frame) is blamed by

CVS commit: src/sys/arch/luna68k/stand/boot

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 25 09:39:12 UTC 2024 Modified Files: src/sys/arch/luna68k/stand/boot: machdep.c Log Message: luna68k/boot: Silence GCC12 -Warray-bounds for regdump() Dereference to `(int *)(&rp) - 1` (SR in H/W exception frame) is blamed by

CVS commit: src/sys/arch/luna68k/stand/boot

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 25 09:08:22 UTC 2024 Modified Files: src/sys/arch/luna68k/stand/boot: sc.c Log Message: luna68k/boot: XXX: Silence GCC12 -Warray-bounds for scident() sensebuf and inqbuf may be uninitialized for some cases. Real fix should

CVS commit: src/sys/arch/luna68k/stand/boot

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 25 09:08:22 UTC 2024 Modified Files: src/sys/arch/luna68k/stand/boot: sc.c Log Message: luna68k/boot: XXX: Silence GCC12 -Warray-bounds for scident() sensebuf and inqbuf may be uninitialized for some cases. Real fix should

CVS commit: src/sys/arch/atari/stand/tostools/libtos

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 25 08:32:44 UTC 2024 Modified Files: src/sys/arch/atari/stand/tostools/libtos: Makefile sysinfo.c Log Message: atari/stand: Rework sysinfo.c v.s. GCC12 -Warray-bounds sysinfo.c is also used for bootxxx. Convert `-Wno-error=.

CVS commit: src/sys/arch/atari/stand/tostools/libtos

2024-09-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 25 08:32:44 UTC 2024 Modified Files: src/sys/arch/atari/stand/tostools/libtos: Makefile sysinfo.c Log Message: atari/stand: Rework sysinfo.c v.s. GCC12 -Warray-bounds sysinfo.c is also used for bootxxx. Convert `-Wno-error=.

CVS commit: src/sys/arch/luna68k/stand/boot

2024-09-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Sep 24 11:17:54 UTC 2024 Modified Files: src/sys/arch/luna68k/stand/boot: init_main.c Log Message: luna68k: stand: Silence GCC12 -Warray-bounds for main() - LUNA1_BOOTINFOADDR (0x8c0) is in the 0-th page [0, 0x1000), which cau

CVS commit: src/sys/arch/luna68k/stand/boot

2024-09-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Sep 24 11:17:54 UTC 2024 Modified Files: src/sys/arch/luna68k/stand/boot: init_main.c Log Message: luna68k: stand: Silence GCC12 -Warray-bounds for main() - LUNA1_BOOTINFOADDR (0x8c0) is in the 0-th page [0, 0x1000), which cau

CVS commit: src/sys/arch/atari/stand/tostools/libtos

2024-09-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Sep 24 11:13:41 UTC 2024 Modified Files: src/sys/arch/atari/stand/tostools/libtos: Makefile Log Message: atari: libtos: Silence GCC12 -Warray-bounds for sysinfo.c ADDR_* defined in tosdefs.h are in the 0-th page, even if 4KB pag

CVS commit: src/sys/arch/atari/stand/tostools/libtos

2024-09-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Sep 24 11:13:41 UTC 2024 Modified Files: src/sys/arch/atari/stand/tostools/libtos: Makefile Log Message: atari: libtos: Silence GCC12 -Warray-bounds for sysinfo.c ADDR_* defined in tosdefs.h are in the 0-th page, even if 4KB pag

CVS commit: src/sys/arch/virt68k/virt68k

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:43:33 UTC 2024 Modified Files: src/sys/arch/virt68k/virt68k: trap.c Log Message: virt68k: trap: Fix ksi_code for T_TRAP{,15}|T_USER Fix ATF failures for lib/libc/sys/t_ptrace_wait*:{,set}step*. XXX It would be really

CVS commit: src/sys/arch/virt68k/virt68k

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:43:33 UTC 2024 Modified Files: src/sys/arch/virt68k/virt68k: trap.c Log Message: virt68k: trap: Fix ksi_code for T_TRAP{,15}|T_USER Fix ATF failures for lib/libc/sys/t_ptrace_wait*:{,set}step*. XXX It would be really

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

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:38:31 UTC 2024 Modified Files: src/sys/arch/virt68k/conf: GENERIC Log Message: virt68k: GENERIC: Add some features required by ATF - NULLFS, PUFFS, and putter - SYSV{MSG,SEM,SHM} - {,sw}crypto To generate a diff of t

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

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:38:31 UTC 2024 Modified Files: src/sys/arch/virt68k/conf: GENERIC Log Message: virt68k: GENERIC: Add some features required by ATF - NULLFS, PUFFS, and putter - SYSV{MSG,SEM,SHM} - {,sw}crypto To generate a diff of t

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:28:54 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Make backtrace for sparc ubsan little bit better To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/external

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:28:54 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Make backtrace for sparc ubsan little bit better To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/external

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:25:04 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Document sh3 switch Everything works just fine (at least for landisk) after PR toolchain/58411 fix. To generate a diff of

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:25:04 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Document sh3 switch Everything works just fine (at least for landisk) after PR toolchain/58411 fix. To generate a diff of

CVS commit: src/share/mk

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:21:14 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: bsd.own.mk: Switch sh3 to GCC12 No new regression observed for full ATF run on DIAGNOSTIC kernel for landisk. PR toolchain/58411 To generate a dif

CVS commit: src/share/mk

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:21:14 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: bsd.own.mk: Switch sh3 to GCC12 No new regression observed for full ATF run on DIAGNOSTIC kernel for landisk. PR toolchain/58411 To generate a dif

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

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:18:08 UTC 2024 Modified Files: src/sys/arch/landisk/conf: GENERIC Log Message: landisk: GENERIC: Enable DIAGNOSTIC PR kern/51254 has been fixed, and now DIAGNOSTIC kernel survives full ATF run. To generate a diff of

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

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 10:18:08 UTC 2024 Modified Files: src/sys/arch/landisk/conf: GENERIC Log Message: landisk: GENERIC: Enable DIAGNOSTIC PR kern/51254 has been fixed, and now DIAGNOSTIC kernel survives full ATF run. To generate a diff of

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 09:48:02 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Update sanitizers v.s. sparc While missing 64-bit atomic builtins is fixed, ubsan does not work due to CheckLocked assertion

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 09:48:02 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Update sanitizers v.s. sparc While missing 64-bit atomic builtins is fixed, ubsan does not work due to CheckLocked assertion

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 08:33:53 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Update m68* and i386 - m68*: Switched. - i386: -march=i586 is no longer required for lib*san. - i386: ATF successfully compl

CVS commit: src/external/gpl3/gcc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 08:33:53 UTC 2024 Modified Files: src/external/gpl3/gcc: README.gcc12 Log Message: README.gcc12: Update m68* and i386 - m68*: Switched. - i386: -march=i586 is no longer required for lib*san. - i386: ATF successfully compl

CVS commit: src/share/mk

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 08:18:49 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: bsd.own.mk: Switch m68k to GCC12 - No new regression for full ATF run on virt68k. - sun2 works at a level as GCC10. To generate a diff of this comm

CVS commit: src/share/mk

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 08:18:49 UTC 2024 Modified Files: src/share/mk: bsd.own.mk Log Message: bsd.own.mk: Switch m68k to GCC12 - No new regression for full ATF run on virt68k. - sun2 works at a level as GCC10. To generate a diff of this comm

CVS commit: src/doc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 07:35:44 UTC 2024 Modified Files: src/doc: HACKS Log Message: doc/HACKS: Belatedly add some more GCC12/m68k stack-protector hacks To generate a diff of this commit: cvs rdiff -u -r1.246 -r1.247 src/doc/HACKS Please note

CVS commit: src/doc

2024-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Sep 23 07:35:44 UTC 2024 Modified Files: src/doc: HACKS Log Message: doc/HACKS: Belatedly add some more GCC12/m68k stack-protector hacks To generate a diff of this commit: cvs rdiff -u -r1.246 -r1.247 src/doc/HACKS Please note

CVS commit: src/sys/arch/i386/stand

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Sep 21 03:42:27 UTC 2024 Modified Files: src/sys/arch/i386/stand/efiboot: version src/sys/arch/i386/stand/pxeboot: version Log Message: i386/stand: Document NFSv3 support to {efi,pxe}boot/version To generate a diff of t

CVS commit: src/sys/arch/i386/stand

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Sep 21 03:42:27 UTC 2024 Modified Files: src/sys/arch/i386/stand/efiboot: version src/sys/arch/i386/stand/pxeboot: version Log Message: i386/stand: Document NFSv3 support to {efi,pxe}boot/version To generate a diff of t

CVS commit: src/tests/lib/libm

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 22:24:51 UTC 2024 Modified Files: src/tests/lib/libm: t_remquo.c Log Message: t_remquo: Work around missing remquo(3) for vax Part of PR port-vax/57881 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tes

CVS commit: src/tests/lib/libm

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 22:24:51 UTC 2024 Modified Files: src/tests/lib/libm: t_remquo.c Log Message: t_remquo: Work around missing remquo(3) for vax Part of PR port-vax/57881 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tes

CVS commit: src/distrib

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:50:38 UTC 2024 Modified Files: src/distrib/hp300/miniroot: list src/distrib/mac68k/miniroot: list src/distrib/mvme68k/miniroot: list Log Message: distrib: Adjust for nawk/bin/awk to nawk/bin To generat

CVS commit: src/distrib

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:50:38 UTC 2024 Modified Files: src/distrib/hp300/miniroot: list src/distrib/mac68k/miniroot: list src/distrib/mvme68k/miniroot: list Log Message: distrib: Adjust for nawk/bin/awk to nawk/bin To generat

CVS commit: src/tools/awk

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:49:57 UTC 2024 Modified Files: src/tools/awk: Makefile Log Message: tools/awk: Adjust for nawk/bin/awk to nawk/bin To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/tools/awk/Makefile Please note that d

CVS commit: src/tools/awk

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:49:57 UTC 2024 Modified Files: src/tools/awk: Makefile Log Message: tools/awk: Adjust for nawk/bin/awk to nawk/bin To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/tools/awk/Makefile Please note that d

CVS commit: src/external/historical/nawk/bin

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:49:31 UTC 2024 Modified Files: src/external/historical/nawk/bin: Makefile Added Files: src/external/historical/nawk/bin: TODO awk.1 Removed Files: src/external/historical/nawk/bin/awk: Makefile TODO awk.1

CVS commit: src/external/historical/nawk/bin

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:49:31 UTC 2024 Modified Files: src/external/historical/nawk/bin: Makefile Added Files: src/external/historical/nawk/bin: TODO awk.1 Removed Files: src/external/historical/nawk/bin/awk: Makefile TODO awk.1

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

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:29:39 UTC 2024 Modified Files: src/sys/arch/riscv/starfive: jh7110_clkc.c Log Message: riscv/jh7110_clkc: Missing include To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/riscv/starfive/jh7110

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

2024-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 20 07:29:39 UTC 2024 Modified Files: src/sys/arch/riscv/starfive: jh7110_clkc.c Log Message: riscv/jh7110_clkc: Missing include To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/riscv/starfive/jh7110

CVS commit: src/sys/net

2024-09-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 18 23:20:20 UTC 2024 Modified Files: src/sys/net: if_tun.c Log Message: tun(4): Mark tunread_filtops `FILTEROP_MPSAFE` Filter handlers have already been MP-safe since 2018: https://mail-index.netbsd.org/source-changes/2018/0

CVS commit: src/sys/net

2024-09-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 18 23:20:20 UTC 2024 Modified Files: src/sys/net: if_tun.c Log Message: tun(4): Mark tunread_filtops `FILTEROP_MPSAFE` Filter handlers have already been MP-safe since 2018: https://mail-index.netbsd.org/source-changes/2018/0

CVS commit: src/sys/arch/i386/i386

2024-09-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 18 22:29:39 UTC 2024 Modified Files: src/sys/arch/i386/i386: db_interface.c Log Message: i386: DDB: Call x86_pause() (`pause` insn) when CPUs are paused as already done for amd64: https://mail-index.netbsd.org/source-changes

CVS commit: src/sys/arch/i386/i386

2024-09-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 18 22:29:39 UTC 2024 Modified Files: src/sys/arch/i386/i386: db_interface.c Log Message: i386: DDB: Call x86_pause() (`pause` insn) when CPUs are paused as already done for amd64: https://mail-index.netbsd.org/source-changes

Re: CVS commit: src/sys/arch/i386/stand/lib

2024-09-18 Thread Rin Okuyama
Hi, On 2024/09/19 3:33, Andrius V wrote: On Wed, Sep 18, 2024 at 3:44 AM Rin Okuyama wrote: Module Name:src Committed By: rin Date: Wed Sep 18 00:44:03 UTC 2024 Modified Files: src/sys/arch/i386/stand/lib: libi386.h Log Message: i386/stand: Remove XMS leftover from

Re: CVS commit: src/sys/arch/mac68k/dev

2024-09-17 Thread Rin Okuyama
Thank you very much for kind & rapid response!! rin On 2024/09/18 10:34, Nathanial Sloss wrote: Module Name:src Committed By: nat Date: Wed Sep 18 01:34:08 UTC 2024 Modified Files: src/sys/arch/mac68k/dev: adb.c Log Message: The delay is only required for machines with

Re: CVS commit: src/sys/arch/mac68k/dev

2024-09-17 Thread Rin Okuyama
Hi, Can you please localize this quirk only for the affected machines? It seems too much to me, to have 5 sec delay for irrelevant machines. Thanks, rin On 2024/09/15 5:56, Nathanial Sloss wrote: Module Name:src Committed By: nat Date: Sat Sep 14 20:56:51 UTC 2024 Modified Fil

  1   2   3   4   5   6   7   8   9   10   >