OpenBSD cvs log

created 2022-05-07T19:50:41Z
begin 2022-05-04T00:00:00Z
end 2022-05-05T00:00:00Z
path src/sys
commits 11

date 2022-05-04T02:24:26Z
author dv
files src/sys/arch/amd64/amd64/vmm.c log diff annotate
message Missed removing some memory scaling in vmm, vmctl.

Continuation of commitid RbITgDkOsW8SMssz removing use of megabytes
instead of bytes in vmm(4) and vmctl(8). Missed this spot that only
manifests after a vm is started and has its runtime details
inspected.

date 2022-05-04T05:14:35Z
author jsg
files src/sys/dev/pci/drm/include/drm/i915_pciids.h log diff annotate
message drm/i915/adl_s: Update ADL-S PCI IDs

From Tejas Upadhyay
c79b846f892d64f169d3dba18fd2500a83805e3a in mainline linux

date 2022-05-04T05:17:14Z
author jsg
files src/sys/dev/pci/drm/include/drm/i915_pciids.h log diff annotate
message drm/i915/dg1: Add new PCI id

From Jose Roberto de Souza
5f0d4214938db66969a50d4b1262307e39f4f2b2 in mainline linux

date 2022-05-04T05:20:33Z
author jsg
files src/sys/dev/pci/drm/i915/i915_drv.h log diff annotate
src/sys/dev/pci/drm/i915/i915_pci.c log diff annotate
src/sys/dev/pci/drm/i915/intel_device_info.c log diff annotate
src/sys/dev/pci/drm/i915/intel_device_info.h log diff annotate
src/sys/dev/pci/drm/include/drm/i915_pciids.h log diff annotate
message drm/i915/rpl-s: Add PCI IDS for Raptor Lake S

From Anusha Srivatsa
52407c220c44c8dcc6aa8aa35ffc8a2db3c849a9 in mainline linux

date 2022-05-04T05:25:28Z
author jsg
files src/sys/dev/pci/drm/i915/i915_drv.h log diff annotate
src/sys/dev/pci/drm/i915/i915_pci.c log diff annotate
src/sys/dev/pci/drm/i915/intel_device_info.c log diff annotate
src/sys/dev/pci/drm/i915/intel_device_info.h log diff annotate
src/sys/dev/pci/drm/include/drm/i915_pciids.h log diff annotate
message drm/i915/adl-n: Enable ADL-N platform

From Tejas Upadhyay
7e28d0b26759846485978ada860ef4a427e06c8f in mainline linux

date 2022-05-04T08:10:43Z
author jsg
files src/sys/dev/pci/pcidevs log diff annotate
message update Intel ADL-S graphics ids, add ADL-N RPL-S RPL-P

date 2022-05-04T08:11:11Z
author jsg
files src/sys/dev/pci/pcidevs.h log diff annotate
src/sys/dev/pci/pcidevs_data.h log diff annotate
message regen

date 2022-05-04T14:58:26Z
author mpi
files src/sys/uvm/uvm.h log diff annotate
src/sys/uvm/uvm_map.c log diff annotate
src/sys/uvm/uvm_page.c log diff annotate
src/sys/uvm/uvm_pdaemon.c log diff annotate
message Merge swap-backed and object-backed inactive page lists.

ok millert@, kettenis@

date 2022-05-04T15:29:58Z
author bluhm
files src/sys/netinet/ip_spd.c log diff annotate
message In ipsp_spd_lookup() rename the parameter tdbp to tdbin as it is
always the incoming TDB that has to be checked.
from markus@

date 2022-05-04T16:52:10Z
author claudio
files src/sys/net/route.c log diff annotate
src/sys/net/route.h log diff annotate
src/sys/netinet/ip_icmp.c log diff annotate
src/sys/netinet/ip_input.c log diff annotate
src/sys/netinet/ip_mroute.c log diff annotate
src/sys/netinet/ip_mroute.h log diff annotate
src/sys/netinet6/icmp6.c log diff annotate
src/sys/netinet6/ip6_input.c log diff annotate
src/sys/netinet6/ip6_mroute.c log diff annotate
src/sys/netinet6/ip6_mroute.h log diff annotate
message Move rttimer callback function from the rttimer itself to rttimer_queue.
All users use the same callback per queue so that makes sense.
Also replace rt_timer_queue_destroy() with rt_timer_queue_flush().
OK bluhm@

date 2022-05-04T21:24:33Z
author bluhm
files src/sys/kern/kern_malloc.c log diff annotate
src/sys/kern/kern_time.c log diff annotate
message Introduce mutex for ratecheck(9) and ppsratecheck(9). A global
mutex with spl high for all function calls is used for now. It
protects the lasttime and curpps parameter. This solution is MP
safe for the usual use case, allows progress, and can be optimized
later. Remove a useless #if 1 while there.
OK claudio@