* [PATCH] drm/atomic: Filter out redundant DPMS calls
@ 2025-02-19 16:02 Ville Syrjala
2025-02-19 17:06 ` Hamza Mahfooz
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Ville Syrjala @ 2025-02-19 16:02 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Video players (eg. mpv) do periodic XResetScreenSaver() calls to
keep the screen on while the video playing. The modesetting ddx
plumbs these straight through into the kernel as DPMS setproperty
ioctls, without any filtering whatsoever. When implemented via
atomic these end up as full commits on the crtc, which leads to a
dropped frame every time XResetScreenSaver() is called.
Let's just filter out redundant DPMS property changes in the
kernel to avoid this issue.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/drm_atomic_uapi.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c
index 2765ba90ad8f..c2726af6698e 100644
--- a/drivers/gpu/drm/drm_atomic_uapi.c
+++ b/drivers/gpu/drm/drm_atomic_uapi.c
@@ -957,6 +957,10 @@ int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state,
if (mode != DRM_MODE_DPMS_ON)
mode = DRM_MODE_DPMS_OFF;
+
+ if (connector->dpms == mode)
+ goto out;
+
connector->dpms = mode;
crtc = connector->state->crtc;
--
2.45.3
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH] drm/atomic: Filter out redundant DPMS calls 2025-02-19 16:02 [PATCH] drm/atomic: Filter out redundant DPMS calls Ville Syrjala @ 2025-02-19 17:06 ` Hamza Mahfooz 2025-02-19 19:10 ` Ville Syrjälä 2025-02-19 17:55 ` ✓ i915.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 10+ messages in thread From: Hamza Mahfooz @ 2025-02-19 17:06 UTC (permalink / raw) To: Ville Syrjala; +Cc: dri-devel, intel-gfx On Wed, Feb 19, 2025 at 06:02:39PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Video players (eg. mpv) do periodic XResetScreenSaver() calls to > keep the screen on while the video playing. The modesetting ddx > plumbs these straight through into the kernel as DPMS setproperty > ioctls, without any filtering whatsoever. When implemented via > atomic these end up as full commits on the crtc, which leads to a > dropped frame every time XResetScreenSaver() is called. > > Let's just filter out redundant DPMS property changes in the > kernel to avoid this issue. Do you know if this has any impact on the DPMS timeout (as set by DPMSSetTimeouts())? > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/drm_atomic_uapi.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c > index 2765ba90ad8f..c2726af6698e 100644 > --- a/drivers/gpu/drm/drm_atomic_uapi.c > +++ b/drivers/gpu/drm/drm_atomic_uapi.c > @@ -957,6 +957,10 @@ int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state, > > if (mode != DRM_MODE_DPMS_ON) > mode = DRM_MODE_DPMS_OFF; > + > + if (connector->dpms == mode) > + goto out; > + > connector->dpms = mode; > > crtc = connector->state->crtc; > -- > 2.45.3 ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/atomic: Filter out redundant DPMS calls 2025-02-19 17:06 ` Hamza Mahfooz @ 2025-02-19 19:10 ` Ville Syrjälä 0 siblings, 0 replies; 10+ messages in thread From: Ville Syrjälä @ 2025-02-19 19:10 UTC (permalink / raw) To: Hamza Mahfooz; +Cc: dri-devel, intel-gfx On Wed, Feb 19, 2025 at 12:06:20PM -0500, Hamza Mahfooz wrote: > On Wed, Feb 19, 2025 at 06:02:39PM +0200, Ville Syrjala wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > Video players (eg. mpv) do periodic XResetScreenSaver() calls to > > keep the screen on while the video playing. The modesetting ddx > > plumbs these straight through into the kernel as DPMS setproperty > > ioctls, without any filtering whatsoever. When implemented via > > atomic these end up as full commits on the crtc, which leads to a > > dropped frame every time XResetScreenSaver() is called. > > > > Let's just filter out redundant DPMS property changes in the > > kernel to avoid this issue. > > Do you know if this has any impact on the DPMS timeout (as set by > DPMSSetTimeouts())? That's all in userspace. > > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > --- > > drivers/gpu/drm/drm_atomic_uapi.c | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c > > index 2765ba90ad8f..c2726af6698e 100644 > > --- a/drivers/gpu/drm/drm_atomic_uapi.c > > +++ b/drivers/gpu/drm/drm_atomic_uapi.c > > @@ -957,6 +957,10 @@ int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state, > > > > if (mode != DRM_MODE_DPMS_ON) > > mode = DRM_MODE_DPMS_OFF; > > + > > + if (connector->dpms == mode) > > + goto out; > > + > > connector->dpms = mode; > > > > crtc = connector->state->crtc; > > -- > > 2.45.3 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for drm/atomic: Filter out redundant DPMS calls 2025-02-19 16:02 [PATCH] drm/atomic: Filter out redundant DPMS calls Ville Syrjala 2025-02-19 17:06 ` Hamza Mahfooz @ 2025-02-19 17:55 ` Patchwork 2025-02-20 7:11 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-20 9:53 ` [PATCH] " Simona Vetter 3 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-02-19 17:55 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5454 bytes --] == Series Details == Series: drm/atomic: Filter out redundant DPMS calls URL : https://patchwork.freedesktop.org/series/145110/ State : success == Summary == CI Bug Log - changes from CI_DRM_16159 -> Patchwork_145110v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/index.html Participating hosts (45 -> 43) ------------------------------ Missing (2): fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in Patchwork_145110v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-adls-6: [PASS][1] -> [FAIL][2] ([i915#13633]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/bat-adls-6/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-adls-6/igt@i915_pm_rpm@module-reload.html - bat-dg1-7: [PASS][3] -> [FAIL][4] ([i915#13633]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-twl-1: NOTRUN -> [ABORT][5] ([i915#12919] / [i915#13503]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-twl-1/igt@i915_selftest@live.html - bat-arlh-2: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061] / [i915#12435]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/bat-arlh-2/igt@i915_selftest@live.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: NOTRUN -> [ABORT][8] ([i915#12919]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/bat-arlh-2/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-arlh-2/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@too-high: - bat-apl-1: NOTRUN -> [DMESG-WARN][11] ([i915#11621]) +26 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-apl-1/igt@kms_addfb_basic@too-high.html * igt@kms_busy@basic@flip: - bat-apl-1: NOTRUN -> [DMESG-WARN][12] ([i915#11621] / [i915#180] / [i915#1982]) +3 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-apl-1/igt@kms_busy@basic@flip.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][13] -> [SKIP][14] ([i915#9197]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1: - bat-apl-1: NOTRUN -> [DMESG-WARN][15] ([i915#11621] / [i915#180]) +26 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-apl-1: NOTRUN -> [SKIP][16] +13 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-apl-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-6: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/bat-arls-6/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 [i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_16159 -> Patchwork_145110v1 CI-20190529: 20190529 CI_DRM_16159: cdb6a0fd9cbfc26c75833c6f7a43eefa10c70144 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8238: 7df82badac410a7ce2505df6064d44f0e094650c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_145110v1: cdb6a0fd9cbfc26c75833c6f7a43eefa10c70144 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/index.html [-- Attachment #2: Type: text/html, Size: 6813 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for drm/atomic: Filter out redundant DPMS calls 2025-02-19 16:02 [PATCH] drm/atomic: Filter out redundant DPMS calls Ville Syrjala 2025-02-19 17:06 ` Hamza Mahfooz 2025-02-19 17:55 ` ✓ i915.CI.BAT: success for " Patchwork @ 2025-02-20 7:11 ` Patchwork 2025-02-20 9:53 ` [PATCH] " Simona Vetter 3 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-02-20 7:11 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 107779 bytes --] == Series Details == Series: drm/atomic: Filter out redundant DPMS calls URL : https://patchwork.freedesktop.org/series/145110/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16159_full -> Patchwork_145110v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_145110v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_145110v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_145110v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-glk: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html Known issues ------------ Here are the changes found in Patchwork_145110v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2-9: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-tglu: [PASS][7] -> [ABORT][8] ([i915#12817] / [i915#5507]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2-9: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@isolation: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +8 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@drm_fdinfo@isolation.html * igt@drm_fdinfo@virtual-busy-hang: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#13008]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#13356]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#12392] / [i915#13356]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2-9: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [PASS][22] -> [FAIL][23] ([i915#9561]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-2/igt@gem_ctx_freq@sysfs.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-11/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][29] ([i915#7975]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@gem_eio@hibernate.html * igt@gem_eio@throttle: - shard-mtlp: [PASS][30] -> [ABORT][31] ([i915#13193]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-mtlp-3/igt@gem_eio@throttle.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-7/igt@gem_eio@throttle.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_balancer@sliced: - shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2-9: NOTRUN -> [SKIP][39] ([i915#3539]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +13 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc-active: - shard-dg2-9: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_exec_reloc@basic-wc-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-glk: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random-engines: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][49] ([i915#5493]) +1 other test timeout [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@basic-small-copy: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_gtt@basic-write: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@gem_mmap_gtt@basic-write.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4077]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-offset: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#4083]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +11 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][62] ([i915#2658]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-dg2-9: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [PASS][64] -> [TIMEOUT][65] ([i915#12917] / [i915#12964]) +1 other test timeout [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-8/igt@gem_pxp@display-protected-crc.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][66] ([i915#12964]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: [PASS][67] -> [TIMEOUT][68] ([i915#12964]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-3/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#4270]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-2.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [TIMEOUT][72] ([i915#12917] / [i915#12964]) +4 other tests timeout [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_readwrite@read-bad-handle.html * igt@gem_readwrite@read-write: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@gem_readwrite@read-write.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@access-control: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_workarounds@suspend-resume: - shard-glk: [PASS][85] -> [INCOMPLETE][86] ([i915#13356]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk1/igt@gem_workarounds@suspend-resume.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk4/igt@gem_workarounds@suspend-resume.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][87] +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@batch-without-end: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][94] -> [ABORT][95] ([i915#9820]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#6412]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][98] ([i915#2681]) +4 other tests warn [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][99] +43 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681] / [i915#6621]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#11681]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@i915_pm_rps@thresholds.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][104] ([i915#7443]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: NOTRUN -> [DMESG-FAIL][105] ([i915#12964]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#7707]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4212]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#8709]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#8709]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@test-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#10333]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][111] -> [FAIL][112] ([i915#5956]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +10 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][120] +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-9: NOTRUN -> [SKIP][124] ([i915#5190]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][126] +29 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +129 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +14 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#12313]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#6095]) +34 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#12313]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#6095]) +115 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +110 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][135] ([i915#6095]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +8 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][137] ([i915#12796]) +1 other test incomplete [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +44 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +39 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3742]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][143] ([i915#3742]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][145] +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +14 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-dg2-9: NOTRUN -> [SKIP][154] ([i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#7118] / [i915#9424]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_content_protection@uevent.html - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#13049]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#13049]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#3555]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#13049]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#8814]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#13046] / [i915#5354]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#4103]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#13046] / [i915#5354]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9809]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#4103]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions: - shard-dg1: [PASS][171] -> [DMESG-WARN][172] ([i915#4423]) +2 other tests dmesg-warn [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-13/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9833]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#9723]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#13691]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][177] ([i915#13691]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3804]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2-9: NOTRUN -> [SKIP][179] ([i915#3555]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#13707]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13707]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#13707]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3840] / [i915#9053]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3469]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr2: - shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#658]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3637]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9934]) +8 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#9934]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#3637]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3637]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#9934]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][197] ([i915#12964]) +23 other tests dmesg-warn [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [PASS][198] -> [FAIL][199] ([i915#11989]) +1 other test fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][200] ([i915#11989]) +1 other test fail [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555] / [i915#8813]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#8813]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][207] ([i915#2672]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) +8 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672]) +8 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555] / [i915#5190]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8708]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2-9: NOTRUN -> [FAIL][215] ([i915#6880]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#5354]) +12 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][217] +33 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][218] ([i915#3458]) +7 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#1825]) +9 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8708]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8708]) +6 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5439]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][223] ([i915#5439]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3023]) +37 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#8708]) +11 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][227] +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#5354]) +10 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#1825]) +52 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3458]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][231] +55 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2-9: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#3555] / [i915#8228]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#13688]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#12388]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#12394]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#12394]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#10656]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#13522]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#6301]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#6301]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#11614] / [i915#3582]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#9423]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-dg2-9: NOTRUN -> [SKIP][249] ([i915#12247]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#12247]) +11 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#12247]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#12247]) +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#12247]) +8 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#6953]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#6953]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5354]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9812]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#9685]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [FAIL][260] ([i915#12913]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#3361]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html - shard-tglu-1: NOTRUN -> [FAIL][262] ([i915#9295]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3828]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3828]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2-9: NOTRUN -> [SKIP][265] ([i915#8430]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9519]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#9519]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][268] -> [SKIP][269] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-rkl: [PASS][270] -> [SKIP][271] ([i915#12916]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-8/igt@kms_pm_rpm@drm-resources-equal.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-3/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@i2c: - shard-dg2: [PASS][272] -> [FAIL][273] ([i915#8717]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-1/igt@kms_pm_rpm@i2c.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#9519]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#9519]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][277] -> [DMESG-WARN][278] ([i915#12964]) +9 other tests dmesg-warn [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2-9: NOTRUN -> [SKIP][279] ([i915#6524] / [i915#6805]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#6524]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][281] ([i915#6524]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#11520]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][283] ([i915#11520]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#11520]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#11520]) +11 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#11520]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#12316]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#11520]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-dg2-9: NOTRUN -> [SKIP][289] ([i915#11520]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#9683]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9683]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9683]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#9732]) +12 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#9688]) +6 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][295] ([i915#1072] / [i915#9732]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9732]) +8 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +5 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#1072] / [i915#9732]) +34 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#9685]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][301] ([i915#9685]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#5289]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#5289]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#5190]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][305] ([i915#13179]) +1 other test abort [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3555]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-9: NOTRUN -> [SKIP][307] ([i915#8623]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#8623]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9906]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9906]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9906]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#8808] / [i915#9906]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#2437]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-2/igt@kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][314] ([i915#2437]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-9/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#2437]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#2437]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-9: NOTRUN -> [SKIP][317] ([i915#2437] / [i915#9412]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#2435]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@invalid-init: - shard-dg2-9: NOTRUN -> [FAIL][319] ([i915#13663]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@perf_pmu@invalid-init.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#8516]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][321] ([i915#9351]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][322] ([i915#9351]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#3708]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-read: - shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#3291] / [i915#3708]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#3291] / [i915#3708]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#3708]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#9917]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2-9: NOTRUN -> [SKIP][328] ([i915#9917]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9917]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][330] ([i915#12910]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][331] ([i915#13427]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-reset@vecs0: - shard-mtlp: [ABORT][333] ([i915#13193]) -> [PASS][334] +4 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-mtlp-7/igt@gem_ctx_isolation@preservation-reset@vecs0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-4/igt@gem_ctx_isolation@preservation-reset@vecs0.html * igt@gem_eio@in-flight-immediate: - shard-rkl: [ABORT][335] -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-5/igt@gem_eio@in-flight-immediate.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@gem_eio@in-flight-immediate.html * igt@gem_exec_balancer@nop: - shard-rkl: [DMESG-WARN][337] ([i915#12964]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-7/igt@gem_exec_balancer@nop.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@gem_exec_balancer@nop.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][339] ([i915#12455]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][341] ([i915#3591]) -> [PASS][342] +1 other test pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][343] ([i915#5956]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-dg1: [ABORT][345] -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-128x42.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x128@pipe-c-hdmi-a-1: - shard-glk: [DMESG-FAIL][347] ([i915#118] / [i915#1982]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk8/igt@kms_cursor_crc@cursor-random-128x128@pipe-c-hdmi-a-1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk2/igt@kms_cursor_crc@cursor-random-128x128@pipe-c-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-256x256: - shard-dg1: [DMESG-WARN][349] ([i915#4423]) -> [PASS][350] +4 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-19/igt@kms_cursor_crc@cursor-random-256x256.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-13/igt@kms_cursor_crc@cursor-random-256x256.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [FAIL][351] ([i915#13566]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][353] ([i915#3555]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [FAIL][355] ([i915#11989]) -> [PASS][356] +1 other test pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-snb6/igt@kms_flip@flip-vs-blocking-wf-vblank.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: [FAIL][357] ([i915#6880]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-mtlp: [DMESG-WARN][359] ([i915#1982]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][361] ([i915#3555] / [i915#8228]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg2-6/igt@kms_hdr@static-toggle.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg2-10/igt@kms_hdr@static-toggle.html * igt@kms_plane@pixel-format: - shard-glk: [INCOMPLETE][363] ([i915#10056] / [i915#118] / [i915#13026]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk6/igt@kms_plane@pixel-format.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk8/igt@kms_plane@pixel-format.html * igt@kms_plane@pixel-format@pipe-a-plane-0: - shard-glk: [DMESG-WARN][365] ([i915#118]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk6/igt@kms_plane@pixel-format@pipe-a-plane-0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk8/igt@kms_plane@pixel-format@pipe-a-plane-0.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][367] ([i915#9519]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][369] ([i915#10393]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-mtlp-8/igt@kms_vrr@negative-basic.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-mtlp-3/igt@kms_vrr@negative-basic.html * igt@perf@blocking@0-rcs0: - shard-rkl: [FAIL][371] ([i915#10538]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-5/igt@perf@blocking@0-rcs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-4/igt@perf@blocking@0-rcs0.html #### Warnings #### * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [TIMEOUT][373] ([i915#12917] / [i915#12964]) -> [SKIP][374] ([i915#13717]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-context.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-dg1: [SKIP][375] ([i915#4538] / [i915#5286]) -> [SKIP][376] ([i915#4423] / [i915#4538] / [i915#5286]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-14/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-18/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc: - shard-dg1: [SKIP][377] ([i915#4423] / [i915#6095]) -> [SKIP][378] ([i915#6095]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-dg1: [SKIP][379] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][380] ([i915#11151] / [i915#7828]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][381] ([i915#12745] / [i915#1982] / [i915#4839]) -> [INCOMPLETE][382] ([i915#12745] / [i915#4839]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][383] ([i915#1982] / [i915#4839]) -> [INCOMPLETE][384] ([i915#4839]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg1: [SKIP][385] ([i915#9934]) -> [SKIP][386] ([i915#4423] / [i915#9934]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-17/igt@kms_flip@2x-modeset-vs-vblank-race.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-16/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][387] ([i915#4423]) -> [SKIP][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][389] ([i915#4070] / [i915#4816]) -> [SKIP][390] ([i915#4816]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: [SKIP][391] ([i915#4423] / [i915#5354]) -> [SKIP][392] ([i915#5354]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-dg1-13/igt@kms_pm_backlight@fade-with-dpms.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-dg1-12/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [FAIL][393] ([i915#10959]) -> [SKIP][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16159/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12913 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_16159 -> Patchwork_145110v1 CI-20190529: 20190529 CI_DRM_16159: cdb6a0fd9cbfc26c75833c6f7a43eefa10c70144 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8238: 7df82badac410a7ce2505df6064d44f0e094650c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_145110v1: cdb6a0fd9cbfc26c75833c6f7a43eefa10c70144 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_145110v1/index.html [-- Attachment #2: Type: text/html, Size: 137030 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/atomic: Filter out redundant DPMS calls 2025-02-19 16:02 [PATCH] drm/atomic: Filter out redundant DPMS calls Ville Syrjala ` (2 preceding siblings ...) 2025-02-20 7:11 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-02-20 9:53 ` Simona Vetter 2025-02-20 10:00 ` Simona Vetter 2025-02-28 19:47 ` Ville Syrjälä 3 siblings, 2 replies; 10+ messages in thread From: Simona Vetter @ 2025-02-20 9:53 UTC (permalink / raw) To: Ville Syrjala; +Cc: dri-devel, intel-gfx On Wed, Feb 19, 2025 at 06:02:39PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Video players (eg. mpv) do periodic XResetScreenSaver() calls to > keep the screen on while the video playing. The modesetting ddx > plumbs these straight through into the kernel as DPMS setproperty > ioctls, without any filtering whatsoever. When implemented via > atomic these end up as full commits on the crtc, which leads to a > dropped frame every time XResetScreenSaver() is called. I think you should add here that it's just an empty commit, because we do filter out redundant commits where crtc->active_changed does nothing. Except we still run the entire machinery with timestamps and drm_event and everything. And I don't think it's worth to filter that out at the atomic level, because it's really only legacy ioctl that had this "complete noop" behaviour. With the commit message augmented: Reviewed-by: Simona Vetter <simona.vetter@ffwll.ch> Might also be nice to have a igt for this? Plus also wondering whether we should cc: stable it. Cheers, Sima > Let's just filter out redundant DPMS property changes in the > kernel to avoid this issue. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/drm_atomic_uapi.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c > index 2765ba90ad8f..c2726af6698e 100644 > --- a/drivers/gpu/drm/drm_atomic_uapi.c > +++ b/drivers/gpu/drm/drm_atomic_uapi.c > @@ -957,6 +957,10 @@ int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state, > > if (mode != DRM_MODE_DPMS_ON) > mode = DRM_MODE_DPMS_OFF; > + > + if (connector->dpms == mode) > + goto out; > + > connector->dpms = mode; > > crtc = connector->state->crtc; > -- > 2.45.3 > -- Simona Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/atomic: Filter out redundant DPMS calls 2025-02-20 9:53 ` [PATCH] " Simona Vetter @ 2025-02-20 10:00 ` Simona Vetter 2025-02-20 15:27 ` Ville Syrjälä 2025-02-28 19:47 ` Ville Syrjälä 1 sibling, 1 reply; 10+ messages in thread From: Simona Vetter @ 2025-02-20 10:00 UTC (permalink / raw) To: Ville Syrjala; +Cc: dri-devel, intel-gfx On Thu, Feb 20, 2025 at 10:53:57AM +0100, Simona Vetter wrote: > On Wed, Feb 19, 2025 at 06:02:39PM +0200, Ville Syrjala wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > Video players (eg. mpv) do periodic XResetScreenSaver() calls to > > keep the screen on while the video playing. The modesetting ddx > > plumbs these straight through into the kernel as DPMS setproperty > > ioctls, without any filtering whatsoever. When implemented via > > atomic these end up as full commits on the crtc, which leads to a > > dropped frame every time XResetScreenSaver() is called. > > I think you should add here that it's just an empty commit, because we do > filter out redundant commits where crtc->active_changed does nothing. > Except we still run the entire machinery with timestamps and drm_event and > everything. > > And I don't think it's worth to filter that out at the atomic level, > because it's really only legacy ioctl that had this "complete noop" > behaviour. > > With the commit message augmented: > > Reviewed-by: Simona Vetter <simona.vetter@ffwll.ch> Ok, one more thing: Please also augment the dpms property uapi doc text with a note that we make this guarantee. Otherwise this feels a bit too much opaque magic. Maybe even a one-liner comment in the code that this is uapi? -Sima > > Might also be nice to have a igt for this? Plus also wondering whether we > should cc: stable it. > > Cheers, Sima > > > Let's just filter out redundant DPMS property changes in the > > kernel to avoid this issue. > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > --- > > drivers/gpu/drm/drm_atomic_uapi.c | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c > > index 2765ba90ad8f..c2726af6698e 100644 > > --- a/drivers/gpu/drm/drm_atomic_uapi.c > > +++ b/drivers/gpu/drm/drm_atomic_uapi.c > > @@ -957,6 +957,10 @@ int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state, > > > > if (mode != DRM_MODE_DPMS_ON) > > mode = DRM_MODE_DPMS_OFF; > > + > > + if (connector->dpms == mode) > > + goto out; > > + > > connector->dpms = mode; > > > > crtc = connector->state->crtc; > > -- > > 2.45.3 > > > > -- > Simona Vetter > Software Engineer, Intel Corporation > http://blog.ffwll.ch -- Simona Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/atomic: Filter out redundant DPMS calls 2025-02-20 10:00 ` Simona Vetter @ 2025-02-20 15:27 ` Ville Syrjälä 2025-02-21 14:42 ` Simona Vetter 0 siblings, 1 reply; 10+ messages in thread From: Ville Syrjälä @ 2025-02-20 15:27 UTC (permalink / raw) To: Simona Vetter; +Cc: dri-devel, intel-gfx On Thu, Feb 20, 2025 at 11:00:28AM +0100, Simona Vetter wrote: > On Thu, Feb 20, 2025 at 10:53:57AM +0100, Simona Vetter wrote: > > On Wed, Feb 19, 2025 at 06:02:39PM +0200, Ville Syrjala wrote: > > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > Video players (eg. mpv) do periodic XResetScreenSaver() calls to > > > keep the screen on while the video playing. The modesetting ddx > > > plumbs these straight through into the kernel as DPMS setproperty > > > ioctls, without any filtering whatsoever. When implemented via > > > atomic these end up as full commits on the crtc, which leads to a > > > dropped frame every time XResetScreenSaver() is called. > > > > I think you should add here that it's just an empty commit, because we do > > filter out redundant commits where crtc->active_changed does nothing. > > Except we still run the entire machinery with timestamps and drm_event and > > everything. Yeah, it'll take at least one frame. And it's a blocking ioctl as well. > > > > And I don't think it's worth to filter that out at the atomic level, > > because it's really only legacy ioctl that had this "complete noop" > > behaviour. Yep, I think we can expect atomic userspace to do better. Oh, and you can't even set the DPMS property via the atomic uapi directly. > > > > With the commit message augmented: > > > > Reviewed-by: Simona Vetter <simona.vetter@ffwll.ch> > > Ok, one more thing: Please also augment the dpms property uapi doc text > with a note that we make this guarantee. Otherwise this feels a bit too > much opaque magic. Maybe even a one-liner comment in the code that this is > uapi? Something like this perhaps? + * On atomic drivers any DPMS setproperty ioctl where the value does not + * change is completely skipped, otherwise an atomic commit will occur. + * On legacy drivers the exact behavior is driver specific. > -Sima > > > > > Might also be nice to have a igt for this? Plus also wondering whether we > > should cc: stable it. > > > > Cheers, Sima > > > > > Let's just filter out redundant DPMS property changes in the > > > kernel to avoid this issue. > > > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > --- > > > drivers/gpu/drm/drm_atomic_uapi.c | 4 ++++ > > > 1 file changed, 4 insertions(+) > > > > > > diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c > > > index 2765ba90ad8f..c2726af6698e 100644 > > > --- a/drivers/gpu/drm/drm_atomic_uapi.c > > > +++ b/drivers/gpu/drm/drm_atomic_uapi.c > > > @@ -957,6 +957,10 @@ int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state, > > > > > > if (mode != DRM_MODE_DPMS_ON) > > > mode = DRM_MODE_DPMS_OFF; > > > + > > > + if (connector->dpms == mode) > > > + goto out; > > > + > > > connector->dpms = mode; > > > > > > crtc = connector->state->crtc; > > > -- > > > 2.45.3 > > > > > > > -- > > Simona Vetter > > Software Engineer, Intel Corporation > > http://blog.ffwll.ch > > -- > Simona Vetter > Software Engineer, Intel Corporation > http://blog.ffwll.ch -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/atomic: Filter out redundant DPMS calls 2025-02-20 15:27 ` Ville Syrjälä @ 2025-02-21 14:42 ` Simona Vetter 0 siblings, 0 replies; 10+ messages in thread From: Simona Vetter @ 2025-02-21 14:42 UTC (permalink / raw) To: Ville Syrjälä; +Cc: Simona Vetter, dri-devel, intel-gfx On Thu, Feb 20, 2025 at 05:27:10PM +0200, Ville Syrjälä wrote: > On Thu, Feb 20, 2025 at 11:00:28AM +0100, Simona Vetter wrote: > > On Thu, Feb 20, 2025 at 10:53:57AM +0100, Simona Vetter wrote: > > > On Wed, Feb 19, 2025 at 06:02:39PM +0200, Ville Syrjala wrote: > > > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > > Video players (eg. mpv) do periodic XResetScreenSaver() calls to > > > > keep the screen on while the video playing. The modesetting ddx > > > > plumbs these straight through into the kernel as DPMS setproperty > > > > ioctls, without any filtering whatsoever. When implemented via > > > > atomic these end up as full commits on the crtc, which leads to a > > > > dropped frame every time XResetScreenSaver() is called. > > > > > > I think you should add here that it's just an empty commit, because we do > > > filter out redundant commits where crtc->active_changed does nothing. > > > Except we still run the entire machinery with timestamps and drm_event and > > > everything. > > Yeah, it'll take at least one frame. And it's a blocking ioctl as well. > > > > > > > And I don't think it's worth to filter that out at the atomic level, > > > because it's really only legacy ioctl that had this "complete noop" > > > behaviour. > > Yep, I think we can expect atomic userspace to do better. > Oh, and you can't even set the DPMS property via the atomic uapi > directly. > > > > > > > With the commit message augmented: > > > > > > Reviewed-by: Simona Vetter <simona.vetter@ffwll.ch> > > > > Ok, one more thing: Please also augment the dpms property uapi doc text > > with a note that we make this guarantee. Otherwise this feels a bit too > > much opaque magic. Maybe even a one-liner comment in the code that this is > > uapi? > > Something like this perhaps? > + * On atomic drivers any DPMS setproperty ioctl where the value does not > + * change is completely skipped, otherwise an atomic commit will occur. > + * On legacy drivers the exact behavior is driver specific. Perfect! -Sima > > > -Sima > > > > > > > > Might also be nice to have a igt for this? Plus also wondering whether we > > > should cc: stable it. > > > > > > Cheers, Sima > > > > > > > Let's just filter out redundant DPMS property changes in the > > > > kernel to avoid this issue. > > > > > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > --- > > > > drivers/gpu/drm/drm_atomic_uapi.c | 4 ++++ > > > > 1 file changed, 4 insertions(+) > > > > > > > > diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c > > > > index 2765ba90ad8f..c2726af6698e 100644 > > > > --- a/drivers/gpu/drm/drm_atomic_uapi.c > > > > +++ b/drivers/gpu/drm/drm_atomic_uapi.c > > > > @@ -957,6 +957,10 @@ int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state, > > > > > > > > if (mode != DRM_MODE_DPMS_ON) > > > > mode = DRM_MODE_DPMS_OFF; > > > > + > > > > + if (connector->dpms == mode) > > > > + goto out; > > > > + > > > > connector->dpms = mode; > > > > > > > > crtc = connector->state->crtc; > > > > -- > > > > 2.45.3 > > > > > > > > > > -- > > > Simona Vetter > > > Software Engineer, Intel Corporation > > > http://blog.ffwll.ch > > > > -- > > Simona Vetter > > Software Engineer, Intel Corporation > > http://blog.ffwll.ch > > -- > Ville Syrjälä > Intel -- Simona Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/atomic: Filter out redundant DPMS calls 2025-02-20 9:53 ` [PATCH] " Simona Vetter 2025-02-20 10:00 ` Simona Vetter @ 2025-02-28 19:47 ` Ville Syrjälä 1 sibling, 0 replies; 10+ messages in thread From: Ville Syrjälä @ 2025-02-28 19:47 UTC (permalink / raw) To: Simona Vetter; +Cc: dri-devel, intel-gfx On Thu, Feb 20, 2025 at 10:53:57AM +0100, Simona Vetter wrote: > On Wed, Feb 19, 2025 at 06:02:39PM +0200, Ville Syrjala wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > Video players (eg. mpv) do periodic XResetScreenSaver() calls to > > keep the screen on while the video playing. The modesetting ddx > > plumbs these straight through into the kernel as DPMS setproperty > > ioctls, without any filtering whatsoever. When implemented via > > atomic these end up as full commits on the crtc, which leads to a > > dropped frame every time XResetScreenSaver() is called. > > I think you should add here that it's just an empty commit, because we do > filter out redundant commits where crtc->active_changed does nothing. > Except we still run the entire machinery with timestamps and drm_event and > everything. > > And I don't think it's worth to filter that out at the atomic level, > because it's really only legacy ioctl that had this "complete noop" > behaviour. > > With the commit message augmented: > > Reviewed-by: Simona Vetter <simona.vetter@ffwll.ch> > > Might also be nice to have a igt for this? kms_flip was basically doing everything we want already, so added one more subtest for this: https://lore.kernel.org/igt-dev/20250228194240.20023-1-ville.syrjala@linux.intel.com/T/#u > Plus also wondering whether we > should cc: stable it. I guess we could. I've been running this for who knows how long anyway (just never got around to sending it), so should be fairly safe. -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-02-28 19:47 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-19 16:02 [PATCH] drm/atomic: Filter out redundant DPMS calls Ville Syrjala 2025-02-19 17:06 ` Hamza Mahfooz 2025-02-19 19:10 ` Ville Syrjälä 2025-02-19 17:55 ` ✓ i915.CI.BAT: success for " Patchwork 2025-02-20 7:11 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-20 9:53 ` [PATCH] " Simona Vetter 2025-02-20 10:00 ` Simona Vetter 2025-02-20 15:27 ` Ville Syrjälä 2025-02-21 14:42 ` Simona Vetter 2025-02-28 19:47 ` Ville Syrjälä
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox