created | 2022-05-29T00:19:47Z |
---|---|
begin | 2022-05-25T00:00:00Z |
end | 2022-05-26T00:00:00Z |
path | src/sys |
commits | 7 |
date | 2022-05-25T03:03:58Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/dev/fdt/ahci_fdt.c | log | diff | annotate |
message |
marvell,armada-3700-ahci seems to work. ok kettenis@ patrick@ |
date | 2022-05-25T09:49:17Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/pci/if_aq_pci.c | log | diff | annotate |
message |
As with if_em.c r1.350, and for the same reasons (arm64 systems with non cache coherent PCIe), map the rx and tx rings coherent. tested by kevlo@ on rockpro64 ok dlg@ |
date | 2022-05-25T12:25:25Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/i915/display/intel_opregion.c | log | diff | annotate |
message |
Revert "drm/i915/opregion: check port number bounds for SWSCI display power state" From Greg Thelen 11e6a90ffd6294083b808d34ccc5a5ea18ed603e in linux 5.15.y/5.15.42 |
date | 2022-05-25T12:29:12Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/amd/amdgpu/amdgpu.h | log | diff | annotate |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_acpi.c | log | diff | annotate | |
src/sys/dev/pci/drm/amd/amdgpu/amdgpu_drv.c | log | diff | annotate | |
message |
drm/amd: Don't reset dGPUs if the system is going to s2idle From Mario Limonciello 9d3ec4e5bf032f53137e11075846cec9c474ce4b in linux 5.15.y/5.15.42 7123d39dc24dcd21ff23d75f46f926b15269b9da in mainline linux |
date | 2022-05-25T12:33:48Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/i915/i915_reg.h | log | diff | annotate |
src/sys/dev/pci/drm/i915/display/intel_dmc.c | log | diff | annotate | |
message |
drm/i915/dmc: Add MMIO range restrictions From Anusha Srivatsa aaf0f01d074d6fd39ec1b01477f69cd688bf6c9d in linux 5.15.y/5.15.42 54395a33718af1c04b5098203335b25382291a16 in mainline linux |
date | 2022-05-25T12:37:23Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/drm_dp_mst_topology.c | log | diff | annotate |
message |
drm/dp/mst: fix a possible memory leak in fetch_monitor_name() From Hangyu Hua deec86168170d085d4f91445c1f72a900ed02372 in linux 5.15.y/5.15.42 6e03b13cc7d9427c2c77feed1549191015615202 in mainline linux |
date | 2022-05-25T19:48:46Z | |||
---|---|---|---|---|
author | mvs | |||
files | src/sys/netinet/ip_output.c | log | diff | annotate |
message |
Call if_put(9) after we finish with `ia' within ip_getmoptions(). if_put(9) call means we finish work with `ifp' and it could be destroyed. `ia' is the pointer to 'in_ifaddr' data belongs to `ifp', so we need to release corresponding `ifp' after we finish deal with `ia'. `if_addrlist' list destruction and ip_getmoptions() are serialized with kernel and net locks so this is not critical, but looks inconsistent. ok bluhm@ |