drm/amdgpu: avoid buffer overflow attach in smu_sys_set_pp_table()
From Jiang Liu
2498d2db1d35e88a2060ea191ae75dce853dd084 in linux-6.12.y/6.12.16
1abb2648698bf10783d2236a6b4a7ca5e8021699 in mainline linux
drm: Fix DSC BPP increment decoding
From Imre Deak
740bc21e25825c67444cd94ecd6b08669d48e95c in linux-6.12.y/6.12.16
e00a2e5d485faf53c7a24b9d1b575a642227947f in mainline linux
drm/amdgpu: bail out when failed to load fw in psp_init_cap_microcode()
From Jiang Liu
d1d10bd595539ed82ab59b60249f9bdf0994f678 in linux-6.12.y/6.12.16
a0a455b4bc7483ad60e8b8a50330c1e05bb7bfcf in mainline linux
amdkfd: properly free gang_ctx_bo when failed to init user queue
From Zhu Lingshan
ae5ab1c1ae504f622cc1ff48830a9ed48428146d in linux-6.12.y/6.12.16
a33f7f9660705fb2ecf3467b2c48965564f392ce in mainline linux
drm/i915/selftests: avoid using uninitialized context
From Krzysztof Karas
19a6d7c28278247e2433cfd7860fb0ea36aee2cd in linux-6.12.y/6.12.16
53139b3f9998ea07289e7b70b909fea2264a0de9 in mainline linux
drm/i915/dp_mst: Fix connector initialization in intel_dp_add_mst_connector()
From Imre Deak
d58f65df2dcb59acd3965907507cfa608fe924b4 in mainline linux
avoids a NULL deref when using a thunderbolt dock, reported by lorenz
on bugs@
Johnny Epsom reported the same problem with a usb-c dock on misc@
add comments for more revisions of known ids
747e rev d8 is Radeon RX 7800M
7480 rev c2 is Radeon RX 7650 GRE
found in AMD Software: Adrenalin Edition 25.2.2
Move kassert from resolve to add case in rtrequest().
In case RTM_RESOLVE there is already an assertion about ifa_ifp !=
NULL. Move it down after the fallthrough to cover also RTM_ADD.
This should give a better hint from syzkaller what is going wrong.
Reported-by: syzbot+f77fe03091e5efd9aaf9 at syzkaller.appspotmail.com
OK claudio@
U-Boot typically doesn't support setting EFI varibles. In that case
the EFIIOC_VAR_SET ioctl will return ENOSYS. Handle this the same way
as EPERM to avoid needlessly alarming the user.
ok deraadt@, jca@
install.md runs too early for dmesg.boot to be available, use plain dmesg(1)
Should have been in r1.63 "With ACPI >= 5, assume UEFI and default to GPT",
otherwise an early grep ENOENT error shows and default detection fails.
Reminded by kevlo, thanks.
Remove acme-challenge location from HTTPS server configuration as
RFC8555 8.3 explicitly states that the challenge must be over HTTP.
From Lucas de Sena (lucas AT seninha.org), thanks!
ok sdk@
replace "if (!task_del) taskq_barrier" with "taskq_del_barrier".
as per src/sys/kern/kern_task.c r1.36, it's possible for a task to
be re-added while it's currently running. in this situation the "if
(!task_del)" skips the barrier but doesn't do anything about the
currently running code, which taskq_del_barrier properly handles.
----------------------------------------------------------------------