From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
To: Simona Vetter <simona.vetter@ffwll.ch>, Dave Airlie <airlied@gmail.com>
Cc: dim-tools@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
"Oded Gabbay" <ogabbay@kernel.org>,
"Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
"Matthew Brost" <matthew.brost@intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"Rodrigo Vivi" <rodrigo.vivi@intel.com>,
"Tvrtko Ursulin" <tursulin@ursulin.net>,
"Joonas Lahtinen" <joonas.lahtinen@linux.intel.com>,
"Jani Nikula" <jani.nikula@linux.intel.com>
Subject: [PULL] drm-misc-fixes
Date: Thu, 2 Jul 2026 18:03:51 +0200 [thread overview]
Message-ID: <786bdc92-0ce3-4c0f-9668-b0fa8a0047ea@linux.intel.com> (raw)
Hi Dave, Sima,
drm-misc-fixes for v7.2-rc2!
Kind regards,
~Maarten Lankhorst
drm-misc-fixes-2026-07-02:
drm-misc-fixes for v7.2-rc2:
- Fix potential null pointer dereference in dma-buf.
- Handle 0 in dma_fence_dedup_array.
- Use the correct callback in dma_fence_timeline_name.
- Fix device removal handling in amdxdna.
- kernel-doc fixes.
- Include header fix for drm_ras.h
- Handle edids better in virtio.
- Use the clk_bulk api for error handling in malidp.
- More clk handling fixes for komeda.
- panthor scheduler block fallout fixes.
- panthor unplug fixes.
- other panthor fixes.
- Fix unnecessary WARN_ON in topology probe after teardown.
- Add refcount to amdxdna job to fix use-after free.
- Fix increasing args->size in ioctl's of drm/imagination.
- Handle stride correctly in pvr_set_uobj_array.
- Only call imagination's drm_sched_entity_fini once.
The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482:
Linux 7.2-rc1 (2026-06-28 12:01:31 -0700)
are available in the Git repository at:
https://gitlab.freedesktop.org/drm/misc/kernel.git tags/drm-misc-fixes-2026-07-02
for you to fetch changes up to 8dc8f3f4c2382fb7d1b1986ba8f33a2466cd3d7a:
drm/imagination: Fix user array stride in pvr_set_uobj_array() (2026-07-02 11:16:18 +0100)
----------------------------------------------------------------
drm-misc-fixes for v7.2-rc2:
- Fix potential null pointer dereference in dma-buf.
- Handle 0 in dma_fence_dedup_array.
- Use the correct callback in dma_fence_timeline_name.
- Fix device removal handling in amdxdna.
- kernel-doc fixes.
- Include header fix for drm_ras.h
- Handle edids better in virtio.
- Use the clk_bulk api for error handling in malidp.
- More clk handling fixes for komeda.
- panthor scheduler block fallout fixes.
- panthor unplug fixes.
- other panthor fixes.
- Fix unnecessary WARN_ON in topology probe after teardown.
- Add refcount to amdxdna job to fix use-after free.
- Fix increasing args->size in ioctl's of drm/imagination.
- Handle stride correctly in pvr_set_uobj_array.
- Only call imagination's drm_sched_entity_fini once.
----------------------------------------------------------------
André Draszik (1):
dma-fence: use correct callback in dma_fence_timeline_name()
Baineng Shou (1):
dma-fence: Make dma_fence_dedup_array() robust against 0-count input
Boris Brezillon (10):
drm/panthor: Always use the IRQ-safe variant when acquiring the fence lock
drm/panthor: Keep the reset work disabled until everything is initialized
drm/panthor: Fix potential invalid pointer deref in group_process_tiler_oom()
drm/panthor: Fix theoretical IOMEM access in suspended state
drm/panthor: Don't overrule pending immediate ticks in sched_resume_tick()
drm/panthor: Fix panthor_pwr_unplug()
drm/panthor: Drop a needless check in panthor_fw_unplug()
drm/panthor: Fix a leak when a group is evicted before the tiler OOM is serviced
drm/panthor: Interrupt group start/resumption if group_bind_locked() fails
drm/panthor: Keep interrupts masked until they are needed
Brajesh Gupta (2):
drm/imagination: Fix double call to drm_sched_entity_fini()
drm/imagination: Fix returned size for DRM_IOCTL_PVR_DEV_QUERY
Bryam Vargas (1):
drm/virtio: bound EDID block reads to the response buffer
Gustavo Kenji Mendonça Kaneko (2):
drm/arm/malidp: use clk_bulk API in runtime PM resume and suspend
drm/arm/komeda: fix error handling for clk_prepare_enable() and callers
Jani Nikula (3):
drm/dp: fix kernel-doc for struct drm_dp_as_sdp
drm/fixed: fix kernel-doc for drm_sm2fixp()
drm/ras: include linux/types.h in drm_ras.h
Lizhi Hou (4):
accel/amdxdna: Fix amdxdna_client lifetime race during device removal
accel/amdxdna: Fix notifier_wq lifetime race during device removal
accel/amdxdna: Fix iommu domain lifetime race during device removal
accel/amdxdna: Fix use-after-free in debug BO command handling
Luca Coelho (1):
drm/dp_mst: Handle torn-down topology gracefully in drm_dp_mst_topology_queue_probe()
Maarten Lankhorst (1):
Merge drm/drm-fixes into drm-misc-fixes
Philipp Stanner (1):
dma-buf: dma-fence: Fix potential NULL pointer dereference
Shuvam Pandey (1):
drm/imagination: Fix user array stride in pvr_set_uobj_array()
drivers/accel/amdxdna/aie2_ctx.c | 68 +++++++++++----
drivers/accel/amdxdna/amdxdna_ctx.h | 1 +
drivers/accel/amdxdna/amdxdna_iommu.c | 43 +++++++---
drivers/accel/amdxdna/amdxdna_pci_drv.c | 38 ++++-----
drivers/accel/amdxdna/amdxdna_pci_drv.h | 1 +
drivers/dma-buf/dma-fence-unwrap.c | 3 +
drivers/dma-buf/dma-fence.c | 6 +-
drivers/gpu/drm/arm/display/komeda/komeda_dev.c | 6 +-
drivers/gpu/drm/arm/display/komeda/komeda_drv.c | 14 +--
drivers/gpu/drm/arm/malidp_drv.c | 22 +++--
drivers/gpu/drm/display/drm_dp_mst_topology.c | 4 +-
drivers/gpu/drm/imagination/pvr_context.c | 18 ++--
drivers/gpu/drm/imagination/pvr_drv.c | 19 +++--
drivers/gpu/drm/imagination/pvr_queue.c | 6 +-
drivers/gpu/drm/imagination/pvr_queue.h | 2 +-
drivers/gpu/drm/imagination/pvr_vm.c | 6 +-
drivers/gpu/drm/panthor/panthor_device.c | 4 +
drivers/gpu/drm/panthor/panthor_device.h | 17 ++--
drivers/gpu/drm/panthor/panthor_fw.c | 6 +-
drivers/gpu/drm/panthor/panthor_gpu.c | 3 +-
drivers/gpu/drm/panthor/panthor_mmu.c | 9 +-
drivers/gpu/drm/panthor/panthor_pwr.c | 10 ++-
drivers/gpu/drm/panthor/panthor_sched.c | 108 +++++++++++++-----------
drivers/gpu/drm/virtio/virtgpu_vq.c | 3 +-
include/drm/display/drm_dp_helper.h | 1 +
include/drm/drm_fixed.h | 3 +-
include/drm/drm_ras.h | 2 +
27 files changed, 265 insertions(+), 158 deletions(-)
next reply other threads:[~2026-07-02 16:03 UTC|newest]
Thread overview: 120+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-02 16:03 Maarten Lankhorst [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-06-25 8:31 [PULL] drm-misc-fixes Maarten Lankhorst
2026-06-12 8:14 Thomas Zimmermann
2026-06-05 7:26 Thomas Zimmermann
2026-05-29 7:00 Thomas Zimmermann
2026-06-01 15:28 ` Jani Nikula
2026-06-01 15:38 ` Jani Nikula
2026-06-01 15:49 ` Jani Nikula
2026-06-01 17:26 ` Thomas Zimmermann
2026-06-01 19:23 ` Saarinen, Jani
2026-06-02 7:01 ` Saarinen, Jani
2026-06-01 19:52 ` Jani Nikula
2026-06-02 6:36 ` Thomas Zimmermann
2026-06-02 8:02 ` Thomas Zimmermann
2026-05-21 7:14 Thomas Zimmermann
2026-05-15 7:08 Thomas Zimmermann
2026-05-07 11:52 Thomas Zimmermann
2026-04-30 6:45 Thomas Zimmermann
2026-04-23 5:41 Maxime Ripard
2026-04-09 8:15 Maxime Ripard
2026-04-02 7:52 Maxime Ripard
2026-03-26 7:17 Maxime Ripard
2026-03-19 7:20 Maxime Ripard
2026-03-12 7:30 Maxime Ripard
2026-03-06 6:41 Maxime Ripard
2026-03-05 8:09 Maxime Ripard
2026-02-26 8:36 Maxime Ripard
2026-02-05 9:53 Maarten Lankhorst
2026-01-29 17:01 Maarten Lankhorst
2026-01-22 9:50 Maarten Lankhorst
2026-01-16 11:46 Maarten Lankhorst
2026-01-07 9:45 Maarten Lankhorst
2025-12-30 19:40 Maarten Lankhorst
2025-12-18 10:05 Maarten Lankhorst
2025-12-10 11:29 Maarten Lankhorst
2025-11-27 8:10 Thomas Zimmermann
2025-11-20 15:13 Thomas Zimmermann
2025-11-13 13:23 Thomas Zimmermann
2025-11-06 13:12 Thomas Zimmermann
2025-10-30 19:56 Thomas Zimmermann
2025-10-31 18:10 ` Simona Vetter
2025-10-23 8:34 Thomas Zimmermann
2025-10-24 11:36 ` Simona Vetter
2025-10-16 14:16 Thomas Zimmermann
2025-10-09 12:00 Thomas Zimmermann
2025-09-25 11:32 Maxime Ripard
2025-09-18 8:24 Maxime Ripard
2025-09-11 16:04 Maxime Ripard
2025-09-03 7:57 Maxime Ripard
2025-08-28 6:32 Maxime Ripard
2025-08-21 8:12 Maxime Ripard
2025-07-23 9:18 Maarten Lankhorst
2025-07-16 7:42 Maarten Lankhorst
2025-07-10 8:59 Maarten Lankhorst
2025-07-11 12:15 ` Simona Vetter
2025-07-03 15:26 Maarten Lankhorst
2025-06-27 7:04 Maarten Lankhorst
2025-06-19 8:12 Maarten Lankhorst
2025-06-12 11:53 Maarten Lankhorst
2025-06-06 7:28 Thomas Zimmermann
2025-06-06 13:03 ` Simona Vetter
2025-05-28 15:35 Thomas Zimmermann
2025-06-06 12:38 ` Simona Vetter
2025-05-22 11:49 Thomas Zimmermann
2025-05-15 12:55 Thomas Zimmermann
2025-05-08 10:49 Thomas Zimmermann
2025-04-30 8:24 Maxime Ripard
2025-04-22 15:12 Thomas Zimmermann
2025-04-17 8:40 Thomas Zimmermann
2025-04-10 12:24 Thomas Zimmermann
2025-03-20 8:38 Maxime Ripard
2025-03-13 7:36 Maxime Ripard
2025-03-06 10:32 Maxime Ripard
2025-02-27 14:10 Maxime Ripard
2025-02-20 8:30 Maxime Ripard
2025-02-13 15:30 Maxime Ripard
2025-02-06 9:15 Maxime Ripard
2025-01-24 8:29 Thomas Zimmermann
2025-01-24 10:42 ` Simona Vetter
2025-01-15 9:22 Maarten Lankhorst
2025-01-02 8:47 Maarten Lankhorst
2024-12-19 18:10 Maarten Lankhorst
2024-12-05 19:48 Maarten Lankhorst
2024-11-28 13:59 Thomas Zimmermann
2024-11-21 13:18 Thomas Zimmermann
2024-11-14 14:22 Thomas Zimmermann
2024-11-08 8:50 Thomas Zimmermann
2024-10-31 14:43 Thomas Zimmermann
2024-10-24 12:49 Thomas Zimmermann
2024-10-17 11:55 Thomas Zimmermann
2024-10-10 13:37 Thomas Zimmermann
2024-10-02 15:15 Thomas Zimmermann
2024-09-26 12:10 Thomas Zimmermann
2024-09-12 8:49 Maxime Ripard
2024-09-05 14:19 Maxime Ripard
2024-08-29 14:51 Maxime Ripard
2024-08-22 12:39 Thomas Zimmermann
2024-08-15 13:17 Thomas Zimmermann
2024-08-08 7:48 Maxime Ripard
2024-08-01 9:00 Maxime Ripard
2024-07-11 9:51 Maarten Lankhorst
2024-07-04 12:27 Maarten Lankhorst
2024-07-04 14:49 ` Daniel Vetter
2024-06-26 15:35 Maarten Lankhorst
2024-06-14 8:13 Maarten Lankhorst
2024-06-06 22:09 Maarten Lankhorst
2024-05-30 19:23 Thomas Zimmermann
2024-05-23 18:47 Thomas Zimmermann
2024-05-16 7:26 Thomas Zimmermann
2024-05-10 7:20 Thomas Zimmermann
2024-05-02 19:21 Thomas Zimmermann
2024-04-25 10:24 Thomas Zimmermann
2024-04-18 7:22 Thomas Zimmermann
2024-04-11 7:34 Thomas Zimmermann
2024-04-04 10:48 Thomas Zimmermann
2024-03-28 13:44 Thomas Zimmermann
2024-03-07 8:44 Maxime Ripard
2024-02-29 13:37 Maxime Ripard
2024-02-29 13:54 ` Matthew Auld
2024-03-06 14:26 ` Maxime Ripard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=786bdc92-0ce3-4c0f-9668-b0fa8a0047ea@linux.intel.com \
--to=maarten.lankhorst@linux.intel.com \
--cc=airlied@gmail.com \
--cc=dim-tools@lists.freedesktop.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=joonas.lahtinen@linux.intel.com \
--cc=matthew.brost@intel.com \
--cc=mripard@kernel.org \
--cc=ogabbay@kernel.org \
--cc=rodrigo.vivi@intel.com \
--cc=simona.vetter@ffwll.ch \
--cc=thomas.hellstrom@linux.intel.com \
--cc=tursulin@ursulin.net \
--cc=tzimmermann@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox