created | 2023-10-08T08:17:14Z |
---|---|
begin | 2023-10-06T00:00:00Z |
end | 2023-10-07T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2023-10-06T08:58:13Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/kern_sig.c | log | diff | annotate |
message |
In sys___thrsigdivert() switch tsleep_nsec() to use the nowake ident channel instead of inventing an own one. OK kettenis@ mvs@ |
date | 2023-10-06T09:34:19Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/arch/sparc64/stand/ofwboot/elf64_exec.c | log | diff | annotate |
src/sys/arch/sparc64/stand/ofwboot/vers.c | log | diff | annotate | |
message |
clean up old 6.7 softraid migration code ofwboot still passes an old/small .openbsd.bootdata size from before 6.7 when boothowto was added. Report the exact size from now on such that a future diff can rectify the corresponding check in autoconf.c:bootstrap(). All this was done to keep old/new bootloaders working with new/old kernels, but 6.7 is long gone and we should all be running current code. OK stsp |
date | 2023-10-06T15:15:29Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwx.c | log | diff | annotate |
message |
Ignore thermal dual-chain requests from iwx(4) firmware. Linux only acts on these requests in 11ax mode on 160MHz channels so we can simply ignore this request for now. Prevents a warning from being printed when we receive such a request: iwx0: unhandled firmware response 0x5f6/0x20000008 rx ring 64[3] Observed on AX210 hardware by bluhm@ |
date | 2023-10-06T15:15:41Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwxreg.h | log | diff | annotate |
message |
Ignore thermal dual-chain requests from iwx(4) firmware. Linux only acts on these requests in 11ax mode on 160MHz channels so we can simply ignore this request for now. Prevents a warning from being printed when we receive such a request: iwx0: unhandled firmware response 0x5f6/0x20000008 rx ring 64[3] Observed on AX210 hardware by bluhm@ |
date | 2023-10-06T16:06:11Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/dev/usb/ucom.c | log | diff | annotate |
src/sys/dev/usb/usb_subr.c | log | diff | annotate | |
message |
Rename 'ifaceidx' variables and parameters to 'ifaceno'. More consistent with existing code and thus less cnance for confusion. requested by kettenis@ |