* [PATCH] drm/i915/fbdev: Discard large BIOS framebuffers
@ 2025-01-21 10:42 Atharva Tiwari
2025-01-21 12:05 ` Jani Nikula
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Atharva Tiwari @ 2025-01-21 10:42 UTC (permalink / raw)
Cc: evepolonium, Jani Nikula, Rodrigo Vivi, Joonas Lahtinen,
Tvrtko Ursulin, David Airlie, Simona Vetter, intel-gfx, intel-xe,
dri-devel, linux-kernel
On certain 4K panels, the BIOS framebuffer
exceeds the panel's required dimensions,
leading to display corruption.
This patch introduces a validation check to address the issue.
Signed-off-by: Atharva Tiwari <evepolonium@gmail.com>
---
drivers/gpu/drm/i915/display/intel_fbdev.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
index 00852ff5b247..e8cf06772c31 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
@@ -197,10 +197,10 @@ static int intelfb_create(struct drm_fb_helper *helper,
ifbdev->fb = NULL;
if (fb &&
- (sizes->fb_width > fb->base.width ||
- sizes->fb_height > fb->base.height)) {
+ (sizes->fb_width != fb->base.width ||
+ sizes->fb_height != fb->base.height)) {
drm_dbg_kms(&dev_priv->drm,
- "BIOS fb too small (%dx%d), we require (%dx%d),"
+ "BIOS fb dimensions mismatch (%dx%d), we require (%dx%d),"
" releasing it\n",
fb->base.width, fb->base.height,
sizes->fb_width, sizes->fb_height);
--
2.39.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] drm/i915/fbdev: Discard large BIOS framebuffers 2025-01-21 10:42 [PATCH] drm/i915/fbdev: Discard large BIOS framebuffers Atharva Tiwari @ 2025-01-21 12:05 ` Jani Nikula 2025-01-21 18:55 ` ✓ i915.CI.BAT: success for " Patchwork 2025-01-22 10:33 ` ✗ i915.CI.Full: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Jani Nikula @ 2025-01-21 12:05 UTC (permalink / raw) To: Atharva Tiwari Cc: evepolonium, Rodrigo Vivi, Joonas Lahtinen, Tvrtko Ursulin, David Airlie, Simona Vetter, intel-gfx, intel-xe, dri-devel, linux-kernel, Ville Syrjala On Tue, 21 Jan 2025, Atharva Tiwari <evepolonium@gmail.com> wrote: > On certain 4K panels, the BIOS framebuffer > exceeds the panel's required dimensions, > leading to display corruption. > This patch introduces a validation check to address the issue. > > Signed-off-by: Atharva Tiwari <evepolonium@gmail.com> See [1], [2], and [3]. Please add your dmesg with debugs enabled to [3]. BR, Jani. [1] https://lore.kernel.org/r/31D69334-DEF9-41B7-968B-B847796926FF@outlook.com [2] https://lore.kernel.org/r/Yd7ZnBlU0sjP4qcG@intel.com [3] https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13466 > --- > drivers/gpu/drm/i915/display/intel_fbdev.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c > index 00852ff5b247..e8cf06772c31 100644 > --- a/drivers/gpu/drm/i915/display/intel_fbdev.c > +++ b/drivers/gpu/drm/i915/display/intel_fbdev.c > @@ -197,10 +197,10 @@ static int intelfb_create(struct drm_fb_helper *helper, > ifbdev->fb = NULL; > > if (fb && > - (sizes->fb_width > fb->base.width || > - sizes->fb_height > fb->base.height)) { > + (sizes->fb_width != fb->base.width || > + sizes->fb_height != fb->base.height)) { > drm_dbg_kms(&dev_priv->drm, > - "BIOS fb too small (%dx%d), we require (%dx%d)," > + "BIOS fb dimensions mismatch (%dx%d), we require (%dx%d)," > " releasing it\n", > fb->base.width, fb->base.height, > sizes->fb_width, sizes->fb_height); -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 4+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/fbdev: Discard large BIOS framebuffers 2025-01-21 10:42 [PATCH] drm/i915/fbdev: Discard large BIOS framebuffers Atharva Tiwari 2025-01-21 12:05 ` Jani Nikula @ 2025-01-21 18:55 ` Patchwork 2025-01-22 10:33 ` ✗ i915.CI.Full: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2025-01-21 18:55 UTC (permalink / raw) To: Atharva Tiwari; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3822 bytes --] == Series Details == Series: drm/i915/fbdev: Discard large BIOS framebuffers URL : https://patchwork.freedesktop.org/series/143796/ State : success == Summary == CI Bug Log - changes from CI_DRM_15993 -> Patchwork_143796v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/index.html Participating hosts (39 -> 38) ------------------------------ Missing (1): fi-bsw-nick Known issues ------------ Here are the changes found in Patchwork_143796v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-twl-2: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-twl-2/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/bat-twl-2/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [PASS][3] -> [FAIL][4] ([i915#13401]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/bat-dg2-11/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][5] -> [SKIP][6] ([i915#9197]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-apl-1/igt@dmabuf@all-tests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-arls-5/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-arlh-2/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/bat-arlh-2/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401 [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_15993 -> Patchwork_143796v1 CI-20190529: 20190529 CI_DRM_15993: 44010d7f04695da899c2860de32625a71011fbab @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8203: 3dce04be4ed4c0e729d80f70caff8ae8a869b5c0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_143796v1: 44010d7f04695da899c2860de32625a71011fbab @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/index.html [-- Attachment #2: Type: text/html, Size: 4622 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/fbdev: Discard large BIOS framebuffers 2025-01-21 10:42 [PATCH] drm/i915/fbdev: Discard large BIOS framebuffers Atharva Tiwari 2025-01-21 12:05 ` Jani Nikula 2025-01-21 18:55 ` ✓ i915.CI.BAT: success for " Patchwork @ 2025-01-22 10:33 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2025-01-22 10:33 UTC (permalink / raw) To: Atharva Tiwari; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100274 bytes --] == Series Details == Series: drm/i915/fbdev: Discard large BIOS framebuffers URL : https://patchwork.freedesktop.org/series/143796/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15993_full -> Patchwork_143796v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_143796v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_143796v1_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 (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_143796v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@create: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-6/igt@gem_eio@create.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-4/igt@gem_eio@create.html * igt@i915_pm_rpm@gem-mmap-type: - shard-dg2: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-1/igt@i915_pm_rpm@gem-mmap-type.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-7/igt@i915_pm_rpm@gem-mmap-type.html * igt@kms_pm_rpm@cursor: - shard-rkl: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_pm_rpm@cursor.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-mtlp: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-1/igt@kms_psr@psr-sprite-mmap-cpu.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-1/igt@kms_psr@psr-sprite-mmap-cpu.html Known issues ------------ Here are the changes found in Patchwork_143796v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9318]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@debugfs_test@basic-hwmon.html - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9318]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@drm_fdinfo@busy@rcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +19 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb7/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@create-ext: - shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#13193]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-5/igt@gem_eio@create-ext.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-4/igt@gem_eio@create-ext.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][28] -> [ABORT][29] ([i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@gem_eio@hibernate.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][30] ([i915#8898]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4036]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4525]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#6344]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html - shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#6344]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][38] ([i915#11965]) +2 other tests fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +10 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@out-order: - shard-rkl: [PASS][46] -> [DMESG-WARN][47] ([i915#12964]) +2 other tests dmesg-warn [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-3/igt@gem_exec_schedule@out-order.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@gem_exec_schedule@out-order.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3@smem: - shard-glk: [PASS][49] -> [INCOMPLETE][50] ([i915#13196]) +1 other test incomplete [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk3/igt@gem_exec_suspend@basic-s3@smem.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-glk4/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#2190]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@gem_pread@bench.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][68] ([i915#2658]) +1 other test warn [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-3/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_pread@snoop.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][72] ([i915#12917] / [i915#12964]) +1 other test timeout [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#13398]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4079]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu-1: NOTRUN -> [FAIL][81] ([i915#13557]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@gem_tiled_swapping@non-threaded.html - shard-snb: NOTRUN -> [ABORT][82] ([i915#13263] / [i915#13449]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb7/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4879]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3282] / [i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3282] / [i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@gen9_exec_parse@bb-large.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4881]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][99] ([i915#9820]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][102] ([i915#2681]) +1 other test warn [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681] / [i915#6621]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#11681]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#6245]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6245]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#5723]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][111] ([i915#7443]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#7707]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4212]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#8709]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#8709]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-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][117] ([i915#8709]) +7 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#12967] / [i915#6228]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#12967]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][121] ([i915#9531]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#9531]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][123] ([i915#1769]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#5286]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#5286]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5286]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3638]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3638]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][134] +8 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5190]) +9 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +7 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +14 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#12313]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6095]) +74 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#12313]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +34 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +61 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +135 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#12805]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#12805]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#6095]) +17 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][149] ([i915#12964]) +1 other test dmesg-fail [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +167 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#3742]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-3/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][154] +10 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@vga-edid-read: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +9 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_content_protection@atomic.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116] / [i915#9424]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3116] / [i915#3299]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][165] ([i915#7118] / [i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3555]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8814]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13049]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#13049]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#13049]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8814]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#13049]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][177] +14 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#13046] / [i915#5354]) +6 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#9067]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#4103]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#4103]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9833]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/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][184] ([i915#3804]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3555]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#12402]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#8812]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#3469]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3469]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][198] ([i915#1839]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9337]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#9337]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9337]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-9/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#4881]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3637]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#8381]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9934]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#3637]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3637]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9934]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9934]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-dg1: [PASS][211] -> [FAIL][212] ([i915#11989]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-18/igt@kms_flip@flip-vs-blocking-wf-vblank.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a3: - shard-dg1: NOTRUN -> [FAIL][213] ([i915#11989]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a3.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-snb: [PASS][214] -> [INCOMPLETE][215] ([i915#12745] / [i915#4839]) +1 other test incomplete [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@nonexisting-fb-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][216] ([i915#12964]) +12 other tests dmesg-warn [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_flip@nonexisting-fb-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-mtlp: [PASS][217] -> [FAIL][218] ([i915#11989]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#8813]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#2672]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672] / [i915#3555]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/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][230] ([i915#2672]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/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-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][232] +51 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#8708]) +19 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-snb: [PASS][234] -> [SKIP][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +24 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8708]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#8708]) +19 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#5439]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3023]) +15 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][241] +80 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#5439]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#10055]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#9766]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#9766]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9766]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3458]) +17 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][248] +48 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3458]) +14 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#1825]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#5354]) +23 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#12713]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#1187] / [i915#12713]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#12713]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_hdr@static-toggle.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-4/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#10656]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#12388]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#12394] / [i915#13522]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#12339]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#12388]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#12388]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#12388]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#12394] / [i915#13522]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#6301]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8806]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#6953] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#6953]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#6953]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#3555]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#12247]) +12 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#12247]) +22 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#6953] / [i915#9423]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#6953]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#6953]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#6953]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#6953]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#12247]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12247]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#12247] / [i915#6953]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#12247]) +12 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#3555]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#5354]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#5354]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9812]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9812]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#3361]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9685]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#9340]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#8430]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#8430]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][298] ([i915#8430]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#9519]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#9519]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#4077]) +14 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#9519]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][303] -> [SKIP][304] ([i915#9519]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#6524]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#6524]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#6524]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#6524]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#11520]) +3 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#11520]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#11520]) +8 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-9/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][313] ([i915#11520]) +5 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12316]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][315] ([i915#11520]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#9683]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#9683]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#9683]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#9683]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#9732]) +20 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html * igt@kms_psr@pr-basic: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#9732]) +10 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_psr@pr-basic.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +17 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#9732]) +18 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +25 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#9685]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9685]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#4884]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_rotation_crc@exhaust-fences.html - shard-dg2: NOTRUN -> [SKIP][329] ([i915#4235]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#5289]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#5289]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#12755] / [i915#5190]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#5289]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5289]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#12755]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#12755]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][337] ([i915#13179]) +1 other test abort [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-3/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#3555]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][339] -> [FAIL][340] ([IGT#160]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_sysfs_edid_timing.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-4/igt@kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][341] ([IGT#160] / [i915#6493]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#8623]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#8623]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][344] ([i915#8623]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][345] ([i915#8623]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#3555] / [i915#8808]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#11920]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][348] -> [FAIL][349] ([i915#10393]) +1 other test fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-6/igt@kms_vrr@negative-basic.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#9906]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#9906]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#2437]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#2437]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#2437] / [i915#9412]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][355] +160 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb7/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#8850]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#8850]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#8850]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][359] -> [FAIL][360] ([i915#4349]) +1 other test fail [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#8516]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#8516]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#3708]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html - shard-dg2: NOTRUN -> [SKIP][364] ([i915#3708]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#3708] / [i915#4077]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-14/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#3291] / [i915#3708]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#3291] / [i915#3708]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][368] ([i915#3708]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][369] ([i915#3708]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][370] ([i915#12910]) +18 other tests fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][371] ([i915#12910]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#4818]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-shared-fd: - shard-rkl: [DMESG-WARN][373] ([i915#12964]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-7/igt@core_setmaster@master-drop-set-shared-fd.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-5/igt@core_setmaster@master-drop-set-shared-fd.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][375] ([i915#13427]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][377] ([i915#10729]) -> [PASS][378] +1 other test pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][379] ([i915#9820]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@reset: - shard-snb: [DMESG-FAIL][381] -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb4/igt@i915_pm_rps@reset.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb7/igt@i915_pm_rps@reset.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-glk: [FAIL][383] ([i915#10991] / [i915#12766]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2: - shard-glk: [FAIL][385] ([i915#10991]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][387] ([i915#11808]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][389] -> [PASS][390] +1 other test pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][391] ([i915#13566]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][393] ([i915#11989]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-glk: [DMESG-FAIL][395] ([i915#118]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-dg1: [DMESG-WARN][397] ([i915#4423]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_plane_alpha_blend@constant-alpha-mid.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][399] ([i915#4281]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][401] ([i915#9340]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][403] ([i915#9519]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@perf_pmu@busy-accuracy-98@vcs0: - shard-mtlp: [FAIL][405] ([i915#4349]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-7/igt@perf_pmu@busy-accuracy-98@vcs0.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-8/igt@perf_pmu@busy-accuracy-98@vcs0.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][407] ([i915#4349]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][409] ([i915#5493]) -> [DMESG-WARN][410] ([i915#5493]) +1 other test dmesg-warn [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [DMESG-WARN][411] ([i915#10887] / [i915#13475]) -> [DMESG-WARN][412] ([i915#13475]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: [SKIP][413] ([i915#3638] / [i915#4423]) -> [SKIP][414] ([i915#3638]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: [SKIP][415] ([i915#3299] / [i915#4423]) -> [SKIP][416] ([i915#3299]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-17/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][417] ([i915#9424]) -> [SKIP][418] ([i915#9433]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-18/igt@kms_content_protection@mei-interface.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][419] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][420] ([i915#7118] / [i915#9424]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_content_protection@type1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/shard-dg == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143796v1/index.html [-- Attachment #2: Type: text/html, Size: 109917 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-01-22 10:33 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-01-21 10:42 [PATCH] drm/i915/fbdev: Discard large BIOS framebuffers Atharva Tiwari 2025-01-21 12:05 ` Jani Nikula 2025-01-21 18:55 ` ✓ i915.CI.BAT: success for " Patchwork 2025-01-22 10:33 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox