OpenBSD cvs log

created 2020-01-31T15:08:30Z
begin 2020-01-28T00:00:00Z
end 2020-01-29T00:00:00Z
path src/sys
commits 8

date 2020-01-28T02:24:48Z
author jsg
files src/sys/dev/pci/drm/drm_dp_mst_topology.c log diff annotate
message drm/dp_mst: Skip validating ports during destruction, just ref

From Lyude Paul
035e304f95c3b3ed11ef8a0de48269ef4faad2e7 in linux 4.19.y/4.19.99
c54c7374ff44de5e609506aca7c0deae4703b6d1 in mainline linux

date 2020-01-28T02:28:41Z
author jsg
files src/sys/dev/pci/drm/drm_fb_helper.c log diff annotate
message drm/fb-helper: generic: Fix setup error path

From Noralf Tronnes
66779aa306b37b3789e7acae0b60017b7c3a51d3 in linux 4.19.y/4.19.99
6e1490cf439aa86b104e5124c36275b964238e1f in mainline linux

date 2020-01-28T02:30:47Z
author jsg
files src/sys/dev/pci/drm/drm_fb_helper.c log diff annotate
message drm/fb-helper: generic: Call drm_client_add() after setup is done

From Noralf Tronnes
6c5df6f63e8f98fe89c41c879385105bd0952248 in linux 4.19.y/4.19.99
6e3f17ee73f7e3c2ef0e2c8fd8624b2ece8ef2c9 in mainline linux

date 2020-01-28T02:33:18Z
author jsg
files src/sys/dev/pci/drm/include/drm/drm_panel.h log diff annotate
message drm/panel: make drm_panel.h self-contained

From Jani Nikula
e34d8d2b2e2f49d1aa933a1e5f15d3e9ee9aa54b in linux 4.19.y/4.19.99
bf3f5e98559360661a3d2af340d46522512c0b00 in mainline linux

date 2020-01-28T02:37:20Z
author jsg
files src/sys/dev/pci/drm/radeon/cik.c log diff annotate
src/sys/dev/pci/drm/radeon/r600.c log diff annotate
src/sys/dev/pci/drm/radeon/si.c log diff annotate
message drm/radeon: fix bad DMA from INTERRUPT_CNTL2

From Sam Bobroff
6fab6dbff4a5843b8f44f87a2454450961c1f0bc in linux 4.19.y/4.19.99
62d91dd2851e8ae2ca552f1b090a3575a4edf759 in mainline linux

date 2020-01-28T14:06:16Z
author patrick
files src/sys/dev/acpi/acpivout.c log diff annotate
message Make acpivout(4) call ws_[gs]et_param instead of directly
calling the ACPI methods. On some machines, like my X395,
those ACPI methods don't allow changing the brightness, so
this allows acpivout(4) to e.g. use amdgpu(4)'s code.

In comparison to the previously committed and backed out
version we now schedule the brightness change on the ACPI
task queue so that we don't run into any recursive locking
issues. Additionally the diff has been modified according
to the recent commit where we make sure that a 5% brightness
change does not result in the same brightness level.

ok jcs@ kn@

date 2020-01-28T14:09:31Z
author patrick
files src/sys/dev/fdt/pwmbl.c log diff annotate
message The default-brightness-level property actually contains an index
into the brightness-levels array.

date 2020-01-28T16:26:09Z
author visa
files src/sys/net/if_pppx.c log diff annotate
src/sys/net/if_tun.c log diff annotate
src/sys/net/switchctl.c log diff annotate
message Simplify filterops routines where klist_invalidate() is used.
klist_invalidate() detaches knotes from the list and rewires them
synchronously so that the original filterops routines do not get
called after the invalidation.

OK anton@, mpi@