Hey Linus, Weekly fixes, some fbcon font handling fixes, then amdgpu/xe/i915 with a few, and a few misc fixes for other drivers. Seems about right for this stage, and I don't know of anything outstanding.
Regards, Dave. drm-fixes-2025-09-26: drm fixes for 6.17-rc8 (or final) fbcon: - fix OOB access in font allocation - fix integer overflow in font handling amdgpu: - Backlight fix - DC preblend fix - DCN 3.5 fix - Cleanup output_tf_change xe: - Don't expose sysfs attributes not applicable for VFs - Fix build with CONFIG_MODULES=n - Don't copy pinned kernel bos twice on suspend i915: - Set O_LARGEFILE in __create_shmem() - Guard reg_val against a INVALID_TRANSCODER [ddi] ast: - sleeps causing cpu stall fix panthor: - scheduler race condition fix gma500: - NULL ptr deref in hdmi teardown fix The following changes since commit 07e27ad16399afcd693be20211b0dfae63e0615f: Linux 6.17-rc7 (2025-09-21 15:08:52 -0700) are available in the Git repository at: https://gitlab.freedesktop.org/drm/kernel.git tags/drm-fixes-2025-09-26 for you to fetch changes up to ec73e5984e01bfdf92234eaf5a2c3e54aa67f2aa: Merge tag 'drm-xe-fixes-2025-09-25' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes (2025-09-26 14:12:33 +1000) ---------------------------------------------------------------- drm fixes for 6.17-rc8 (or final) fbcon: - fix OOB access in font allocation - fix integer overflow in font handling amdgpu: - Backlight fix - DC preblend fix - DCN 3.5 fix - Cleanup output_tf_change xe: - Don't expose sysfs attributes not applicable for VFs - Fix build with CONFIG_MODULES=n - Don't copy pinned kernel bos twice on suspend i915: - Set O_LARGEFILE in __create_shmem() - Guard reg_val against a INVALID_TRANSCODER [ddi] ast: - sleeps causing cpu stall fix panthor: - scheduler race condition fix gma500: - NULL ptr deref in hdmi teardown fix ---------------------------------------------------------------- Adrián Larumbe (1): drm/panthor: Defer scheduler entitiy destruction to queue release Alvin Lee (1): drm/amd/display: Use mpc.preblend flag to indicate preblend Dave Airlie (4): Merge tag 'amd-drm-fixes-6.17-2025-09-24' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes Merge tag 'drm-intel-fixes-2025-09-25' of https://gitlab.freedesktop.org/drm/i915/kernel into drm-fixes Merge tag 'drm-misc-fixes-2025-09-25' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-fixes Merge tag 'drm-xe-fixes-2025-09-25' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes Leo Li (1): drm/amd/display: Init DCN35 clocks from pre-os HW values Lucas De Marchi (1): drm/xe: Fix build with CONFIG_MODULES=n Matthew Schwartz (1): drm/amd/display: Only restore backlight after amdgpu_dm_init or dm_resume Melissa Wen (1): drm/amd/display: remove output_tf_change flag Michal Wajdeczko (1): drm/xe/vf: Don't expose sysfs attributes not applicable for VFs Nirmoy Das (1): drm/ast: Use msleep instead of mdelay for edid read Samasth Norway Ananda (1): fbcon: fix integer overflow in fbcon_do_set_font Suraj Kandpal (1): drm/i915/ddi: Guard reg_val against a INVALID_TRANSCODER Taotao Chen (1): drm/i915: set O_LARGEFILE in __create_shmem() Thomas Hellström (1): drm/xe: Don't copy pinned kernel bos twice on suspend Thomas Zimmermann (1): fbcon: Fix OOB access in font allocation Zabelin Nikita (1): drm/gma500: Fix null dereference in hdmi teardown drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 12 +- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 7 ++ .../drm/amd/display/amdgpu_dm/amdgpu_dm_color.c | 2 +- .../drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c | 2 +- .../amd/display/dc/clk_mgr/dcn35/dcn35_clk_mgr.c | 121 ++++++++++++++++++++- drivers/gpu/drm/amd/display/dc/dc.h | 1 - .../drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c | 6 +- .../drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c | 6 +- drivers/gpu/drm/ast/ast_dp.c | 2 +- drivers/gpu/drm/gma500/oaktrail_hdmi.c | 2 +- drivers/gpu/drm/i915/display/intel_ddi.c | 5 +- drivers/gpu/drm/i915/gem/i915_gem_shmem.c | 7 ++ drivers/gpu/drm/panthor/panthor_sched.c | 8 +- drivers/gpu/drm/xe/xe_bo_evict.c | 4 +- drivers/gpu/drm/xe/xe_configfs.c | 2 +- drivers/gpu/drm/xe/xe_device_sysfs.c | 2 +- drivers/video/fbdev/core/fbcon.c | 13 ++- 17 files changed, 167 insertions(+), 35 deletions(-)