OpenBSD cvs log

created 2023-09-04T17:54:50Z
begin 2023-08-29T00:00:00Z
end 2023-08-30T00:00:00Z
path src/sys
commits 5

date 2023-08-29T12:09:40Z
author kettenis
files src/sys/dev/fdt/dwiic_fdt.c log diff annotate
src/sys/dev/fdt/files.fdt log diff annotate
src/sys/dev/ic/dwiic.c log diff annotate
src/sys/dev/ic/dwiicvar.h log diff annotate
message Add FDT support for dwiic(4)

date 2023-08-29T16:04:21Z
author kettenis
files src/sys/arch/riscv64/conf/GENERIC log diff annotate
message Enable dwiic(4) and axppmic(4).

date 2023-08-29T16:19:34Z
author claudio
files src/sys/arch/hppa/dev/cpu.c log diff annotate
src/sys/kern/init_main.c log diff annotate
src/sys/kern/kern_exit.c log diff annotate
src/sys/kern/kern_resource.c log diff annotate
src/sys/kern/kern_sched.c log diff annotate
src/sys/kern/kern_time.c log diff annotate
src/sys/kern/sched_bsd.c log diff annotate
src/sys/sys/proc.h log diff annotate
src/sys/sys/resourcevar.h log diff annotate
message Remove p_rtime from struct proc and replace it by passing the timespec
as argument to the tuagg_locked function.

- Remove incorrect use of p_rtime in other parts of the tree. p_rtime was
almost always 0 so including it in any sum did not alter the result.
- In main() the update of time can be further simplified since at that time
only the primary cpu is running.
- Add missing nanouptime() call in cpu_hatch() for hppa
- Rename tuagg_unlocked to tuagg_locked like it is done in the rest of
the tree.

OK cheloha@ dlg@

date 2023-08-29T23:26:40Z
author dlg
files src/sys/dev/usb/if_umb.c log diff annotate
src/sys/dev/usb/if_umb.h log diff annotate
message export mbim signal stats

tested by mbuhl@ gerhard@

date 2023-08-29T23:28:38Z
author dlg
files src/sys/dev/usb/if_umb.c log diff annotate
message fix handling of unknown error rate in mbim signal state info

from gerhard@:

> According to MBIM spec, table 10-58 (MBIM_SIGNAL_STATE_INFO) a value
> of 99 means the error rate is "Unknown or undetectable".

the code was using -99 before, but properly reports unknown/null now.