OpenBSD cvs log

created 2023-08-19T10:50:18Z
begin 2023-03-21T00:00:00Z
end 2023-03-26T00:00:00Z
path src/sys
commits 10

date 2023-03-21T09:44:35Z
author jsg
files src/sys/dev/pci/drm/include/linux/device.h log diff annotate
src/sys/dev/pci/drm/include/linux/fs.h log diff annotate
src/sys/dev/pci/drm/include/linux/ftrace.h log diff annotate
src/sys/dev/pci/drm/include/linux/hrtimer.h log diff annotate
src/sys/dev/pci/drm/include/linux/i2c.h log diff annotate
src/sys/dev/pci/drm/include/linux/interrupt.h log diff annotate
src/sys/dev/pci/drm/include/linux/io-mapping.h log diff annotate
src/sys/dev/pci/drm/include/linux/io.h log diff annotate
src/sys/dev/pci/drm/include/linux/kgdb.h log diff annotate
src/sys/dev/pci/drm/include/linux/kref.h log diff annotate
src/sys/dev/pci/drm/include/linux/mm.h log diff annotate
src/sys/dev/pci/drm/include/linux/perf_event.h log diff annotate
src/sys/dev/pci/drm/include/linux/sched.h log diff annotate
src/sys/dev/pci/drm/include/linux/seq_file.h log diff annotate
src/sys/dev/pci/drm/include/linux/swap.h log diff annotate
src/sys/dev/pci/drm/include/linux/vmalloc.h log diff annotate
src/sys/dev/pci/drm/include/linux/workqueue.h log diff annotate
src/sys/dev/pci/drm/include/linux/ww_mutex.h log diff annotate
message remove uneeded includes

date 2023-03-22T17:01:07Z
author denis
files src/sys/dev/pci/if_bnxt.c log diff annotate
message Reverse bus_space_unmap(9) order

When `unmap_1` is reached we should bus_space_unmap() sc_hwrm_* and not sc_db_*.

ok miod@

date 2023-03-22T21:41:28Z
author jsg
files src/sys/dev/ic/dwqe.c log diff annotate
message fix GMAC_CHAN_RX_CONTROL write
ok patrick@ kettenis@

date 2023-03-23T01:41:12Z
author jsg
files src/sys/net/pf.c log diff annotate
message fix off-by-one in pf_state_expires() bounds test
such a value would have triggered a KASSERT()
ok sashan@ deraadt@

date 2023-03-23T11:40:42Z
author jsg
files src/sys/arch/arm64/dev/aplpinctrl.c log diff annotate
message avoid use after free
ok miod@ kettenis@

date 2023-03-23T13:15:02Z
author jsg
files src/sys/dev/fdt/rkclock.c log diff annotate
message correct rk3308 clk_32k_sel mask
ok jmatthew@

date 2023-03-25T05:49:50Z
author deraadt
files src/sys/conf/newvers.sh log diff annotate
message we are now hacking on 7.3-current

date 2023-03-25T10:14:58Z
author kettenis
files src/sys/dev/fdt/if_dwqe_fdt.c log diff annotate
message The "snps,reset-*" properties are deprecatedand are being replaced with
"reset-*" proprties on the PHY device tree nodes. Add support for this.

ok dlg@

date 2023-03-25T15:59:23Z
author kn
files src/sys/netinet6/nd6.c log diff annotate
message sync nd6_resolve() uptime handling with arpresolve()

makes the two familiar functions look more alike; OK bluhm

date 2023-03-25T16:01:37Z
author kn
files src/sys/netinet6/nd6.c log diff annotate
message sync nd6_resolve() EINVAL handling with arpresolve()

Less diff between them; merging three returns into one also reduces
upcoming unlock diffs. OK bluhm