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

2024-06-12 Thread Rin Okuyama
Thank you, too, for clarification! rin On 2024/06/13 5:10, Nick Hudson wrote: Thanks for the fix. The bug affects enable and disable in the all (-1) indexes case and references out of bounds data. Nick On 12/06/2024 08:36, Rin Okuyama wrote: Hmm, there was a confusion for my side. This

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

2024-06-12 Thread Nick Hudson
Thanks for the fix. The bug affects enable and disable in the all (-1) indexes case and references out of bounds data. Nick On 12/06/2024 08:36, Rin Okuyama wrote: Hmm, there was a confusion for my side. This bug affected cases where (1) index >= 1 is explicitly specified for

CVS commit: src/sys/dev/marvell

2024-06-12 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Wed Jun 12 20:03:56 UTC 2024 Modified Files: src/sys/dev/marvell: gtidmac.c Log Message: MVXORE_XEXCDPR and MVXORE_XEXBCR macros expect two params now, thus adjust params accordingly, needed in order to fix GTIDMAC_DEBUG build

CVS commit: src/sys/dev/marvell

2024-06-12 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Wed Jun 12 20:03:56 UTC 2024 Modified Files: src/sys/dev/marvell: gtidmac.c Log Message: MVXORE_XEXCDPR and MVXORE_XEXBCR macros expect two params now, thus adjust params accordingly, needed in order to fix GTIDMAC_DEBUG build

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

2024-06-12 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Jun 12 19:12:44 UTC 2024 Modified Files: src/sys/arch/sparc64/dev: vdsk.c Log Message: arch/sparc64/dev/dsk.c: Nix trailing whitespace. No functional change intended. To generate a diff of this commit: cvs rdiff -u

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

2024-06-12 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Jun 12 19:12:44 UTC 2024 Modified Files: src/sys/arch/sparc64/dev: vdsk.c Log Message: arch/sparc64/dev/dsk.c: Nix trailing whitespace. No functional change intended. To generate a diff of this commit: cvs rdiff -u

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

2024-06-12 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Jun 12 18:16:48 UTC 2024 Modified Files: src/distrib/sets/lists/base32: ad.mipsn64eb Log Message: base32/ad.mipsn64eb: Nix stray backtick on n32/libarchive.so.5.1 line. To generate a diff of this commit: cvs rdiff -u

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

2024-06-12 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Jun 12 18:16:48 UTC 2024 Modified Files: src/distrib/sets/lists/base32: ad.mipsn64eb Log Message: base32/ad.mipsn64eb: Nix stray backtick on n32/libarchive.so.5.1 line. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/pci

2024-06-12 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Jun 12 16:51:54 UTC 2024 Modified Files: src/sys/dev/pci: ld_virtio.c Log Message: ld@virtio(4): Fix maximum size parameters. - SEG_MAX is the maximum number of segments. - SIZE_MAX is the maximum number of bytes in a

CVS commit: src/sys/dev/pci

2024-06-12 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Jun 12 16:51:54 UTC 2024 Modified Files: src/sys/dev/pci: ld_virtio.c Log Message: ld@virtio(4): Fix maximum size parameters. - SEG_MAX is the maximum number of segments. - SIZE_MAX is the maximum number of bytes in a

CVS commit: src/sys/dev/marvell

2024-06-12 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Wed Jun 12 09:51:27 UTC 2024 Modified Files: src/sys/dev/marvell: gtmpsc.c Log Message: Make gtmpsc_intr_rx/tx always static __inline to fix DEBUG enabled build. Currently code depends on STATIC macro which is defined as empty

CVS commit: src/sys/dev/marvell

2024-06-12 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Wed Jun 12 09:51:27 UTC 2024 Modified Files: src/sys/dev/marvell: gtmpsc.c Log Message: Make gtmpsc_intr_rx/tx always static __inline to fix DEBUG enabled build. Currently code depends on STATIC macro which is defined as empty

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

2024-06-12 Thread Rin Okuyama
Hmm, there was a confusion for my side. This bug affected cases where (1) index >= 1 is explicitly specified for fdtbus_powerdomain_enable_index(), as well as (2) all indices are implicitly specified by fdtbus_powerdomain_enable(). s/enable/disable/ functions were affected also. Thanks, rin

CVS commit: src/sys/dev/fdt

2024-06-12 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 12 06:39:28 UTC 2024 Modified Files: src/sys/dev/fdt: fdt_powerdomain.c Log Message: fdt_powerdomain: Fix bug by which pd index >= 1 couldn't be enabled Length in bytes was mistakenly used as number of uint32_t variables.

CVS commit: src/sys/dev/fdt

2024-06-12 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 12 06:39:28 UTC 2024 Modified Files: src/sys/dev/fdt: fdt_powerdomain.c Log Message: fdt_powerdomain: Fix bug by which pd index >= 1 couldn't be enabled Length in bytes was mistakenly used as number of uint32_t variables.

CVS commit: src/sys/dev/clk

2024-06-12 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 12 06:23:56 UTC 2024 Modified Files: src/sys/dev/clk: clk.c Log Message: clk(4): clk_set_rate: Add KASSERT to check `clk != NULL` To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/clk/clk.c Please

CVS commit: src/sys/dev/clk

2024-06-12 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 12 06:23:56 UTC 2024 Modified Files: src/sys/dev/clk: clk.c Log Message: clk(4): clk_set_rate: Add KASSERT to check `clk != NULL` To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/clk/clk.c Please

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

2024-06-12 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 12 06:21:37 UTC 2024 Modified Files: src/sys/dev/pci/igc: if_igc.c Log Message: igc: Add missing '\n' to a DPRINTF message To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/dev/pci/igc/if_igc.c Please

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

2024-06-12 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jun 12 06:21:37 UTC 2024 Modified Files: src/sys/dev/pci/igc: if_igc.c Log Message: igc: Add missing '\n' to a DPRINTF message To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/dev/pci/igc/if_igc.c Please