All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel.vetter@ffwll.ch>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: DRI Development <dri-devel@lists.freedesktop.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Dave Airlie <airlied@gmail.com>
Subject: [PULL] drm-fixes
Date: Sat, 7 Jan 2023 00:05:01 +0100	[thread overview]
Message-ID: <Y7ipHUfN00F3abQf@phenom.ffwll.local> (raw)

Hi Linus

Still not much, but more than last week. Dave should be back next week
from the beaching.

drm-fixes-2023-01-06:
drm-fixes for 6.2-rc3

drivers:
- i915-gvt fixes
- amdgpu/kfd fixes
- panfrost bo refcounting fix
- meson afbc corruption fix
- imx plane width fix

core:
- drm/sched fixes
- drm/mm kunit test fix
- dma-buf export error handling fixes

Cheers, Daniel

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 tags/drm-fixes-2023-01-06

for you to fetch changes up to 5193326c4c5a656c733b6d2c6537e3f36319bcac:

  Merge tag 'drm-intel-fixes-2023-01-05' of git://anongit.freedesktop.org/drm/drm-intel into drm-fixes (2023-01-06 10:16:49 +0100)

----------------------------------------------------------------
drm-fixes for 6.2-rc3

drivers:
- i915-gvt fixes
- amdgpu/kfd fixes
- panfrost bo refcounting fix
- meson afbc corruption fix
- imx plane width fix

core:
- drm/sched fixes
- drm/mm kunit test fix
- dma-buf export error handling fixes

----------------------------------------------------------------
Arnd Bergmann (1):
      drm/tests: reduce drm_mm_test stack usage

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

Dan Carpenter (1):
      drm/i915: unpin on error in intel_vgpu_shadow_mm_pin()

Daniel Vetter (4):
      Merge tag 'drm-misc-next-fixes-2023-01-03' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
      Merge tag 'drm-misc-fixes-2023-01-05' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
      Merge tag 'amd-drm-fixes-6.2-2023-01-04' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
      Merge tag 'drm-intel-fixes-2023-01-05' of git://anongit.freedesktop.org/drm/drm-intel into drm-fixes

Dmitry Osipenko (2):
      drm/scheduler: Fix lockup in drm_sched_entity_kill()
      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

Michel Dänzer (1):
      Revert "drm/amd/display: Enable Freesync Video Mode by default"

Mukul Joshi (1):
      drm/amdkfd: Fix kernel warning during topology setup

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

Rodrigo Vivi (1):
      Merge tag 'gvt-fixes-2023-01-05' of https://github.com/intel/gvt-linux into drm-intel-fixes

Samson Tam (1):
      drm/amd/display: Uninitialized variables causing 4k60 UCLK to stay at DPM1 and not DPM0

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

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

Zheng Wang (1):
      drm/i915/gvt: fix double free bug in split_2MB_gtt_entry

Zhenyu Wang (2):
      drm/i915/gvt: fix gvt debugfs destroy
      drm/i915/gvt: fix vgpu debugfs clean in remove

Zhi Wang (1):
      drm/i915/gvt: use atomic operations to change the vGPU status

 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/amd/amdgpu/amdgpu.h                |  1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c            | 27 +++++++
 drivers/gpu/drm/amd/amdkfd/kfd_topology.c          |  2 +-
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  | 12 ++--
 .../dc/dml/dcn32/display_mode_vba_util_32.c        |  6 +-
 drivers/gpu/drm/i915/gvt/debugfs.c                 | 36 ++++++++--
 drivers/gpu/drm/i915/gvt/dmabuf.c                  |  3 +-
 drivers/gpu/drm/i915/gvt/gtt.c                     | 21 ++++--
 drivers/gpu/drm/i915/gvt/gvt.h                     | 15 ++--
 drivers/gpu/drm/i915/gvt/interrupt.c               |  2 +-
 drivers/gpu/drm/i915/gvt/kvmgt.c                   | 35 ++++-----
 drivers/gpu/drm/i915/gvt/scheduler.c               |  4 +-
 drivers/gpu/drm/i915/gvt/vgpu.c                    | 12 ++--
 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/tests/Makefile                     |  2 +
 drivers/gpu/drm/tests/drm_mm_test.c                |  6 +-
 drivers/gpu/drm/virtio/virtgpu_object.c            |  6 +-
 include/drm/drm_plane_helper.h                     |  1 +
 27 files changed, 204 insertions(+), 153 deletions(-)

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

WARNING: multiple messages have this Message-ID (diff)
From: Daniel Vetter <daniel.vetter@ffwll.ch>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	DRI Development <dri-devel@lists.freedesktop.org>
Subject: [PULL] drm-fixes
Date: Sat, 7 Jan 2023 00:05:01 +0100	[thread overview]
Message-ID: <Y7ipHUfN00F3abQf@phenom.ffwll.local> (raw)

Hi Linus

Still not much, but more than last week. Dave should be back next week
from the beaching.

drm-fixes-2023-01-06:
drm-fixes for 6.2-rc3

drivers:
- i915-gvt fixes
- amdgpu/kfd fixes
- panfrost bo refcounting fix
- meson afbc corruption fix
- imx plane width fix

core:
- drm/sched fixes
- drm/mm kunit test fix
- dma-buf export error handling fixes

Cheers, Daniel

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 tags/drm-fixes-2023-01-06

for you to fetch changes up to 5193326c4c5a656c733b6d2c6537e3f36319bcac:

  Merge tag 'drm-intel-fixes-2023-01-05' of git://anongit.freedesktop.org/drm/drm-intel into drm-fixes (2023-01-06 10:16:49 +0100)

----------------------------------------------------------------
drm-fixes for 6.2-rc3

drivers:
- i915-gvt fixes
- amdgpu/kfd fixes
- panfrost bo refcounting fix
- meson afbc corruption fix
- imx plane width fix

core:
- drm/sched fixes
- drm/mm kunit test fix
- dma-buf export error handling fixes

----------------------------------------------------------------
Arnd Bergmann (1):
      drm/tests: reduce drm_mm_test stack usage

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

Dan Carpenter (1):
      drm/i915: unpin on error in intel_vgpu_shadow_mm_pin()

Daniel Vetter (4):
      Merge tag 'drm-misc-next-fixes-2023-01-03' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
      Merge tag 'drm-misc-fixes-2023-01-05' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
      Merge tag 'amd-drm-fixes-6.2-2023-01-04' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
      Merge tag 'drm-intel-fixes-2023-01-05' of git://anongit.freedesktop.org/drm/drm-intel into drm-fixes

Dmitry Osipenko (2):
      drm/scheduler: Fix lockup in drm_sched_entity_kill()
      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

Michel Dänzer (1):
      Revert "drm/amd/display: Enable Freesync Video Mode by default"

Mukul Joshi (1):
      drm/amdkfd: Fix kernel warning during topology setup

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

Rodrigo Vivi (1):
      Merge tag 'gvt-fixes-2023-01-05' of https://github.com/intel/gvt-linux into drm-intel-fixes

Samson Tam (1):
      drm/amd/display: Uninitialized variables causing 4k60 UCLK to stay at DPM1 and not DPM0

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

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

Zheng Wang (1):
      drm/i915/gvt: fix double free bug in split_2MB_gtt_entry

Zhenyu Wang (2):
      drm/i915/gvt: fix gvt debugfs destroy
      drm/i915/gvt: fix vgpu debugfs clean in remove

Zhi Wang (1):
      drm/i915/gvt: use atomic operations to change the vGPU status

 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/amd/amdgpu/amdgpu.h                |  1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c            | 27 +++++++
 drivers/gpu/drm/amd/amdkfd/kfd_topology.c          |  2 +-
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  | 12 ++--
 .../dc/dml/dcn32/display_mode_vba_util_32.c        |  6 +-
 drivers/gpu/drm/i915/gvt/debugfs.c                 | 36 ++++++++--
 drivers/gpu/drm/i915/gvt/dmabuf.c                  |  3 +-
 drivers/gpu/drm/i915/gvt/gtt.c                     | 21 ++++--
 drivers/gpu/drm/i915/gvt/gvt.h                     | 15 ++--
 drivers/gpu/drm/i915/gvt/interrupt.c               |  2 +-
 drivers/gpu/drm/i915/gvt/kvmgt.c                   | 35 ++++-----
 drivers/gpu/drm/i915/gvt/scheduler.c               |  4 +-
 drivers/gpu/drm/i915/gvt/vgpu.c                    | 12 ++--
 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/tests/Makefile                     |  2 +
 drivers/gpu/drm/tests/drm_mm_test.c                |  6 +-
 drivers/gpu/drm/virtio/virtgpu_object.c            |  6 +-
 include/drm/drm_plane_helper.h                     |  1 +
 27 files changed, 204 insertions(+), 153 deletions(-)

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

             reply	other threads:[~2023-01-06 23:05 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-06 23:05 Daniel Vetter [this message]
2023-01-06 23:05 ` [PULL] drm-fixes Daniel Vetter
2023-01-06 23:58 ` pr-tracker-bot
2023-01-06 23:58   ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2022-09-30 22:19 Daniel Vetter
2022-09-30 22:19 ` Daniel Vetter
2022-09-30 23:29 ` pr-tracker-bot
2022-09-30 23:29   ` pr-tracker-bot
2021-10-01 16:57 Daniel Vetter
2021-10-01 17:45 ` pr-tracker-bot
2021-04-16 13:32 Daniel Vetter
2021-04-16 13:32 ` Daniel Vetter
2021-04-16 15:15 ` pr-tracker-bot
2021-04-16 15:15   ` pr-tracker-bot
2021-01-08 15:57 Daniel Vetter
2021-01-08 15:57 ` Daniel Vetter
2021-01-08 23:49 ` pr-tracker-bot
2021-01-08 23:49   ` pr-tracker-bot
2020-03-06 21:08 Daniel Vetter
2020-03-06 21:08 ` Daniel Vetter
2020-03-06 22:20 ` pr-tracker-bot
2020-03-06 22:20   ` pr-tracker-bot
2019-07-26 19:45 Daniel Vetter
2019-07-26 21:40 ` pr-tracker-bot
2019-01-11 23:06 Daniel Vetter
2019-01-11 23:06 ` Daniel Vetter
2019-01-12 18:45 ` pr-tracker-bot
2019-01-12 18:45   ` pr-tracker-bot
2018-12-21 13:39 Daniel Vetter
2012-11-23 16:58 [pull] drm-fixes Daniel Vetter
2012-11-25 19:57 ` Daniel Vetter

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=Y7ipHUfN00F3abQf@phenom.ffwll.local \
    --to=daniel.vetter@ffwll.ch \
    --cc=airlied@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.