created | 2020-10-25T07:39:17Z |
---|---|
begin | 2020-10-22T00:00:00Z |
end | 2020-10-23T00:00:00Z |
path | src/sys |
commits | 8 |
date | 2020-10-22T11:24:01Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwx.c | log | diff | annotate |
message |
Do not write unneeded data into the iwx(4) MAC context removal command. This extra data seems to trigger an assertion in the firmware and the Linux iwlwifi driver does not send this data either. tested by Nicola Dell'Uomo and jmc@ |
date | 2020-10-22T12:25:20Z | |||
---|---|---|---|---|
author | sashan | |||
files | src/sys/net/pf_ioctl.c | log | diff | annotate |
message |
- missing NET_UNLOCK() in pf_ioctl.c error path Reported-by: [email protected] OK anton@ |
date | 2020-10-22T13:41:49Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/powerpc64/powerpc64/trap.c | log | diff | annotate |
message |
uvm_grow() doesn't need KERNEL_LOCK anymore, and onfault never did. minor refactorings to narrow KERNEL_LOCK just around uvm_fault() ok kettenis |
date | 2020-10-22T13:41:51Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/alpha/alpha/trap.c | log | diff | annotate |
src/sys/arch/amd64/amd64/trap.c | log | diff | annotate | |
src/sys/arch/hppa/hppa/trap.c | log | diff | annotate | |
src/sys/arch/mips64/mips64/trap.c | log | diff | annotate | |
message |
uvm_grow() doesn't need KERNEL_LOCK anymore, and onfault never did. minor refactorings to narrow KERNEL_LOCK just around uvm_fault() ok kettenis |
date | 2020-10-22T14:31:27Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/dev/ic/bwfm.c | log | diff | annotate |
message |
Switch away from splsoftnet() and change the code to splnet(). splsoftnet was used for the upper layers of the network stack and should no longer be used. OK patrick@ |
date | 2020-10-22T15:54:10Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/powerpc64/powerpc64/pmap.c | log | diff | annotate |
message |
Use the DBZ instruction to zero memory a cache line at a time. This is what we already do on powerpc and seems to be what everybody does for 64-bit POWER systems. ok deraadt@, patrick@ |
date | 2020-10-22T18:11:13Z | |||
---|---|---|---|---|
author | robert | |||
files | src/sys/dev/pci/azalia_codec.c | log | diff | annotate |
src/sys/dev/pci/pcidevs | log | diff | annotate | |
src/sys/dev/pci/pcidevs.h | log | diff | annotate | |
src/sys/dev/pci/pcidevs_data.h | log | diff | annotate | |
message |
add support for AMD 17h/3xh HD Audio and the ALC887 codec ok deraadt@ |
date | 2020-10-22T23:35:43Z | |||
---|---|---|---|---|
author | mortimer | |||
files | src/sys/arch/powerpc64/include/asm.h | log | diff | annotate |
src/sys/arch/powerpc64/powerpc64/locore.S | log | diff | annotate | |
message |
Add retguard to OPAL functions in powerpc64 locore. ok deraadt@ kettenis@ |