mbox series

[PULL] drm-misc-fixes

Message ID 20230105074909.qd2h23hpxac4lxi7@houat (mailing list archive)
State New, archived
Headers show
Series [PULL] drm-misc-fixes | expand

Pull-request

git://anongit.freedesktop.org/drm/drm-misc tags/drm-misc-fixes-2023-01-05

Message

Maxime Ripard Jan. 5, 2023, 7:49 a.m. UTC
Hi Dave, Daniel,

Here's this week drm-misc-fixes PR

Maxime

drm-misc-fixes-2023-01-05:
Several fixes to fix the error path of dma_buf_export, add a missing
structure declaration resulting in a compiler warning, fix the GEM
handle refcounting in panfrost, fix a corrupted image with AFBC on
meson, a memleak in virtio, improper plane width for imx, and a lockup
in drm_sched_entity_kill()
The following changes since commit 88603b6dc419445847923fcb7fe5080067a30f98:

  Linux 6.2-rc2 (2023-01-01 13:53:16 -0800)

are available in the Git repository at:

  git://anongit.freedesktop.org/drm/drm-misc tags/drm-misc-fixes-2023-01-05

for you to fetch changes up to 69555549cfa42e10f2fdd2699ed4e34d9d4f392b:

  drm/scheduler: Fix lockup in drm_sched_entity_kill() (2023-01-03 14:49:59 +0300)

----------------------------------------------------------------
Several fixes to fix the error path of dma_buf_export, add a missing
structure declaration resulting in a compiler warning, fix the GEM
handle refcounting in panfrost, fix a corrupted image with AFBC on
meson, a memleak in virtio, improper plane width for imx, and a lockup
in drm_sched_entity_kill()

----------------------------------------------------------------
Carlo Caione (1):
      drm/meson: Reduce the FIFO lines held when AFBC is not used

Christian König (1):
      dma-buf: fix dma_buf_export init order v2

Dmitry Osipenko (1):
      drm/scheduler: Fix lockup in drm_sched_entity_kill()

Ma Jun (1):
      drm/plane-helper: Add the missing declaration of drm_atomic_state

Maxime Ripard (1):
      Merge drm/drm-fixes into drm-misc-fixes

Philipp Zabel (1):
      drm/imx: ipuv3-plane: Fix overlay plane width

Steven Price (1):
      drm/panfrost: Fix GEM handle creation ref-counting

Xiu Jianfeng (1):
      drm/virtio: Fix memory leak in virtio_gpu_object_create()

 drivers/dma-buf/dma-buf-sysfs-stats.c    |  7 +--
 drivers/dma-buf/dma-buf-sysfs-stats.h    |  4 +-
 drivers/dma-buf/dma-buf.c                | 82 +++++++++++++++-----------------
 drivers/gpu/drm/imx/ipuv3-plane.c        | 14 +++---
 drivers/gpu/drm/meson/meson_viu.c        |  5 +-
 drivers/gpu/drm/panfrost/panfrost_drv.c  | 27 +++++++----
 drivers/gpu/drm/panfrost/panfrost_gem.c  | 16 +------
 drivers/gpu/drm/panfrost/panfrost_gem.h  |  5 +-
 drivers/gpu/drm/scheduler/sched_entity.c |  2 +-
 drivers/gpu/drm/scheduler/sched_main.c   |  4 +-
 drivers/gpu/drm/virtio/virtgpu_object.c  |  6 ++-
 include/drm/drm_plane_helper.h           |  1 +
 12 files changed, 80 insertions(+), 93 deletions(-)

Comments

Daniel Vetter Jan. 5, 2023, 10:10 a.m. UTC | #1
On Thu, Jan 05, 2023 at 08:49:09AM +0100, Maxime Ripard wrote:
> Hi Dave, Daniel,
> 
> Here's this week drm-misc-fixes PR
> 
> Maxime
> 
> drm-misc-fixes-2023-01-05:
> Several fixes to fix the error path of dma_buf_export, add a missing
> structure declaration resulting in a compiler warning, fix the GEM
> handle refcounting in panfrost, fix a corrupted image with AFBC on
> meson, a memleak in virtio, improper plane width for imx, and a lockup
> in drm_sched_entity_kill()
> The following changes since commit 88603b6dc419445847923fcb7fe5080067a30f98:
> 
>   Linux 6.2-rc2 (2023-01-01 13:53:16 -0800)
> 
> are available in the Git repository at:
> 
>   git://anongit.freedesktop.org/drm/drm-misc tags/drm-misc-fixes-2023-01-05
> 
> for you to fetch changes up to 69555549cfa42e10f2fdd2699ed4e34d9d4f392b:

Pülled, danke vielmals.
-Daniel

> 
>   drm/scheduler: Fix lockup in drm_sched_entity_kill() (2023-01-03 14:49:59 +0300)
> 
> ----------------------------------------------------------------
> Several fixes to fix the error path of dma_buf_export, add a missing
> structure declaration resulting in a compiler warning, fix the GEM
> handle refcounting in panfrost, fix a corrupted image with AFBC on
> meson, a memleak in virtio, improper plane width for imx, and a lockup
> in drm_sched_entity_kill()
> 
> ----------------------------------------------------------------
> Carlo Caione (1):
>       drm/meson: Reduce the FIFO lines held when AFBC is not used
> 
> Christian König (1):
>       dma-buf: fix dma_buf_export init order v2
> 
> Dmitry Osipenko (1):
>       drm/scheduler: Fix lockup in drm_sched_entity_kill()
> 
> Ma Jun (1):
>       drm/plane-helper: Add the missing declaration of drm_atomic_state
> 
> Maxime Ripard (1):
>       Merge drm/drm-fixes into drm-misc-fixes
> 
> Philipp Zabel (1):
>       drm/imx: ipuv3-plane: Fix overlay plane width
> 
> Steven Price (1):
>       drm/panfrost: Fix GEM handle creation ref-counting
> 
> Xiu Jianfeng (1):
>       drm/virtio: Fix memory leak in virtio_gpu_object_create()
> 
>  drivers/dma-buf/dma-buf-sysfs-stats.c    |  7 +--
>  drivers/dma-buf/dma-buf-sysfs-stats.h    |  4 +-
>  drivers/dma-buf/dma-buf.c                | 82 +++++++++++++++-----------------
>  drivers/gpu/drm/imx/ipuv3-plane.c        | 14 +++---
>  drivers/gpu/drm/meson/meson_viu.c        |  5 +-
>  drivers/gpu/drm/panfrost/panfrost_drv.c  | 27 +++++++----
>  drivers/gpu/drm/panfrost/panfrost_gem.c  | 16 +------
>  drivers/gpu/drm/panfrost/panfrost_gem.h  |  5 +-
>  drivers/gpu/drm/scheduler/sched_entity.c |  2 +-
>  drivers/gpu/drm/scheduler/sched_main.c   |  4 +-
>  drivers/gpu/drm/virtio/virtgpu_object.c  |  6 ++-
>  include/drm/drm_plane_helper.h           |  1 +
>  12 files changed, 80 insertions(+), 93 deletions(-)