OpenBSD cvs log

created 2024-10-10T02:53:45Z
begin 2024-10-06T00:00:00Z
end 2024-10-07T00:00:00Z
path src/sys
commits 9

date 2024-10-06T00:13:42Z
author jsg
files src/sys/dev/videomode/edid.c log diff annotate
message Seperate -> Separate

date 2024-10-06T01:12:15Z
author jsg
files src/sys/dev/ic/atw.c log diff annotate
message remove unused atw_beacon_len_adjust variable

date 2024-10-06T01:28:39Z
author jsg
files src/sys/dev/usb/if_wi_usb.c log diff annotate
message remove unused wi_usb_cd, wi at usb uses wi_cd

date 2024-10-06T01:50:56Z
author jsg
files src/sys/kern/kern_sched.c log diff annotate
message remove unused sched_cost_load variable

date 2024-10-06T03:46:48Z
author jsg
files src/sys/dev/fdt/axppmic.c log diff annotate
message remove unused axppmic_rsb_cd, axppmic at rsb uses axppmic_cd

date 2024-10-06T16:24:02Z
author semarie
files src/sys/arch/amd64/amd64/cpu.c log diff annotate
message use rdmsr_safe() instead of rdmsr() for probing feature

the second could raise general protection fault on non-existant MSR

fix with help of jsg@
ok dv@

date 2024-10-06T22:47:38Z
author jsg
files src/sys/arch/arm/arm/genassym.cf log diff annotate
message remove unneeded includes and defines; ok miod@

date 2024-10-06T23:39:24Z
author jsg
files src/sys/kern/kern_pledge.c log diff annotate
message remove unused DEBUG_PLEDGE lines; ok deraadt@

date 2024-10-06T23:43:18Z
author jmatthew
files src/sys/dev/pci/if_bnxt.c log diff annotate
message Fix the rx refill timeout to only refill rings that are currently empty.
This is normally how the timeout works, but in this driver it's complicated
by the use of separate rx and ag rings.

This prevents the refill timeout from operating on a ring concurrently
with an rx interrupt, which leads to corruption and crashes as experienced
by bluhm@

ok dlg@
earlier version tested by and ok bluhm@