* [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine
@ 2024-11-25 15:27 Eugene Kobyak
2024-11-25 19:31 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Eugene Kobyak @ 2024-11-25 15:27 UTC (permalink / raw)
To: intel-gfx; +Cc: John.C.Harrison, andi.shyti
When the intel_context structure contains NULL,
it raises a NULL pointer dereference error in drm_info().
Fixes: e8a3319c31a1 ("drm/i915: Allow error capture without a request")
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12309
Signed-off-by: Eugene Kobyak <eugene.kobyak@intel.com>
---
drivers/gpu/drm/i915/i915_gpu_error.c | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
index 135ded17334e..1c614c74c2cf 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/drivers/gpu/drm/i915/i915_gpu_error.c
@@ -1643,9 +1643,16 @@ capture_engine(struct intel_engine_cs *engine,
return NULL;
intel_engine_get_hung_entity(engine, &ce, &rq);
- if (rq && !i915_request_started(rq))
- drm_info(&engine->gt->i915->drm, "Got hung context on %s with active request %lld:%lld [0x%04X] not yet started\n",
- engine->name, rq->fence.context, rq->fence.seqno, ce->guc_id.id);
+ if (rq && !i915_request_started(rq)) {
+ char guc_id[9];
+ if (ce)
+ scnprintf(guc_id, sizeof(guc_id), "[0x%04X]", ce->guc_id.id);
+ else
+ scnprintf(guc_id, sizeof(guc_id), " ");
+
+ drm_info(&engine->gt->i915->drm, "Got hung context on %s with active request %lld:%lld%s not yet started\n",
+ engine->name, rq->fence.context, rq->fence.seqno, guc_id);
+ }
if (rq) {
capture = intel_engine_coredump_add_request(ee, rq, ATOMIC_MAYFAIL);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) 2024-11-25 15:27 [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Eugene Kobyak @ 2024-11-25 19:31 ` Patchwork 2024-11-25 19:49 ` ✓ i915.CI.BAT: success " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-25 19:31 UTC (permalink / raw) To: Eugene Kobyak; +Cc: intel-gfx == Series Details == Series: drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) URL : https://patchwork.freedesktop.org/series/141559/ State : warning == Summary == Error: dim checkpatch failed 33ae63ef191c drm/i915: Fixed NULL pointer dereference in capture_engine -:27: WARNING:LINE_SPACING: Missing a blank line after declarations #27: FILE: drivers/gpu/drm/i915/i915_gpu_error.c:1648: + char guc_id[9]; + if (ce) total: 0 errors, 1 warnings, 0 checks, 19 lines checked ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) 2024-11-25 15:27 [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Eugene Kobyak 2024-11-25 19:31 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) Patchwork @ 2024-11-25 19:49 ` Patchwork 2024-11-25 22:33 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-25 19:49 UTC (permalink / raw) To: Eugene Kobyak; +Cc: intel-gfx == Series Details == Series: drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) URL : https://patchwork.freedesktop.org/series/141559/ State : success == Summary == CI Bug Log - changes from CI_DRM_15742 -> Patchwork_141559v3 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/index.html Participating hosts (44 -> 44) ------------------------------ Additional (1): fi-cfl-8109u Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_141559v3 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@kms_dsc@dsc-basic: - fi-cfl-8109u: NOTRUN -> [SKIP][3] +11 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/fi-cfl-8109u/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][4] ([i915#12903]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][6] ([i915#9197]) -> [PASS][7] +3 other tests pass [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_15742 -> Patchwork_141559v3 CI-20190529: 20190529 CI_DRM_15742: 2b9104b225382ff5ecb9cba445ac145eaa3f00b2 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8124: 8124 Patchwork_141559v3: 2b9104b225382ff5ecb9cba445ac145eaa3f00b2 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/index.html ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) 2024-11-25 15:27 [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Eugene Kobyak 2024-11-25 19:31 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) Patchwork 2024-11-25 19:49 ` ✓ i915.CI.BAT: success " Patchwork @ 2024-11-25 22:33 ` Patchwork 2024-11-28 11:00 ` [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Andi Shyti 2024-11-28 12:57 ` Jani Nikula 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-25 22:33 UTC (permalink / raw) To: Eugene Kobyak; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100292 bytes --] == Series Details == Series: drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) URL : https://patchwork.freedesktop.org/series/141559/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15742_full -> Patchwork_141559v3_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_141559v3_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_141559v3_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 (11 -> 10) ------------------------------ Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_141559v3_full: ### IGT changes ### #### Possible regressions #### * igt@core_getversion@all-cards: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@core_getversion@all-cards.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@core_getversion@all-cards.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2: [PASS][3] -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@core_setmaster@master-drop-set-shared-fd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@core_setmaster@master-drop-set-shared-fd.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][7] -> [WARN][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@i915_suspend@basic-s3-without-i915.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-4.html * igt@kms_plane@pixel-format: - shard-tglu: NOTRUN -> [ABORT][10] +1 other test abort [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_plane@pixel-format.html * igt@kms_plane@pixel-format-source-clamping: - shard-tglu: [PASS][11] -> [ABORT][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-7/igt@kms_plane@pixel-format-source-clamping.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_plane@pixel-format-source-clamping.html #### Warnings #### * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [DMESG-FAIL][13] ([i915#12964]) -> [INCOMPLETE][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-2/igt@gem_workarounds@suspend-resume-context.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html Known issues ------------ Here are the changes found in Patchwork_141559v3_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8411]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9318]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@memory-info-idle: - shard-dg2: [PASS][17] -> [SKIP][18] ([i915#12506]) +12 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@drm_fdinfo@memory-info-idle.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@drm_fdinfo@memory-info-idle.html * igt@fbdev@unaligned-write: - shard-dg2: [PASS][19] -> [SKIP][20] ([i915#2582]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@fbdev@unaligned-write.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@fbdev@unaligned-write.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3281]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4873]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_caching@writes.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][25] ([i915#7297]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#6335]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@engines-persistence: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#2575]) +10 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_ctx_persistence@engines-persistence.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-rkl: [PASS][31] -> [ABORT][32] ([i915#7975] / [i915#8213]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-3/igt@gem_eio@hibernate.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-4/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#6334]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_exec_capture@capture-invisible.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_141559v3/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_reloc@basic-softpin: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#7276]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) +1 other test abort [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#12936]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#12193]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg2: [PASS][53] -> [SKIP][54] ([i915#12936]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@gem_lmem_swapping@verify-ccs.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#284]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_media_vme.html * igt@gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@basic-read-write: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-2/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#4270]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#4270]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@write-bad-handle: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#8411]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4885]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][81] +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gen9_exec_parse@shadow-peek.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][87] ([i915#13029]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#6412]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: NOTRUN -> [FAIL][89] ([i915#12942]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [PASS][90] -> [FAIL][91] ([i915#12548] / [i915#3591]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rpm@reg-read-ioctl: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#13014]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@i915_pm_rpm@reg-read-ioctl.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#11681] / [i915#6621]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#11681]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@i915_pm_rps@thresholds.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#11681]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@i915_pm_rps@thresholds.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html * igt@intel_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#7707]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg1: NOTRUN -> [FAIL][99] ([i915#12518] / [i915#12766]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#8709]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_atomic@atomic-plane-damage@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][101] ([i915#12964]) +9 other tests dmesg-warn [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_atomic@atomic-plane-damage@pipe-a-hdmi-a-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#9531]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition: - shard-glk: [PASS][103] -> [FAIL][104] ([i915#12238]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-glk2/igt@kms_atomic_transition@modeset-transition.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-glk8/igt@kms_atomic_transition@modeset-transition.html * igt@kms_atomic_transition@modeset-transition@2x-outputs: - shard-glk: [PASS][105] -> [FAIL][106] ([i915#11859]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-glk2/igt@kms_atomic_transition@modeset-transition@2x-outputs.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][107] +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#5286]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/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: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#6187]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4423] / [i915#4538]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#6095]) +54 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#6095]) +44 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#12313]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#12313]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#6095]) +112 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#6095]) +121 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#12805]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#6095]) +20 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#12313]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#6095]) +133 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +14 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7213]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][131] +13 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#7828]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#7828]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][139] ([i915#7173]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3299]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3299]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3116]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7118]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#7116] / [i915#7118]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][146] ([i915#1339] / [i915#7173]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3555]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#13049]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#13049]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#13049]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: [PASS][154] -> [SKIP][155] +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#4103]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#4103]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][158] +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4103] / [i915#4213]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-move@pipe-b: - shard-rkl: [PASS][160] -> [DMESG-WARN][161] ([i915#12964]) +7 other tests dmesg-warn [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-1/igt@kms_cursor_legacy@torture-move@pipe-b.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-4/igt@kms_cursor_legacy@torture-move@pipe-b.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#9723]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#8588]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3804]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#1257]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#12402]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3840] / [i915#9053]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#658]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][171] -> [FAIL][172] ([i915#2122]) +1 other test fail [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-glk1/igt@kms_flip@2x-blocking-wf_vblank@ac-hdmi-a1-hdmi-a2.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-glk2/igt@kms_flip@2x-blocking-wf_vblank@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9934]) +7 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9934]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3637]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#3637]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#9934]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check.html - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][179] -> [FAIL][180] ([i915#2122]) +1 other test fail [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [PASS][181] -> [DMESG-WARN][182] ([i915#4423]) +1 other test dmesg-warn [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg1-18/igt@kms_flip@flip-vs-suspend-interruptible.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - shard-dg1: NOTRUN -> [DMESG-WARN][183] ([i915#4423]) +3 other tests dmesg-warn [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: [PASS][184] -> [SKIP][185] +30 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2672] / [i915#3555]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/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-valid-mode: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#2672]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555] / [i915#5190]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672] / [i915#3555]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555] / [i915#8813]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#8813]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#5274]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +6 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8708]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#1825]) +10 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#8708]) +8 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3023]) +10 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][207] +65 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +8 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9766]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3458]) +8 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5354]) +16 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][212] +33 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_getfb@getfb-handle-closed: - shard-dg2: [PASS][213] -> [SKIP][214] ([i915#2575]) +185 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@kms_getfb@getfb-handle-closed.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@kms_getfb@getfb-handle-closed.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#13012]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#12713]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#12388]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#10656]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-8/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#12339]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][225] ([i915#12964]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3: - shard-tglu: [PASS][226] -> [ABORT][227] ([i915#10354]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-7/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#12247]) +9 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#12247]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#12247]) +5 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg2: [PASS][231] -> [SKIP][232] ([i915#2575] / [i915#9423]) +6 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#3555]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#12247]) +8 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#5354]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#9685]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#9295]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#12937]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@kms_pm_rpm@basic-pci-d3-state.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9519]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][242] -> [SKIP][243] ([i915#9519]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#9519]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#9519]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][246] -> [SKIP][247] ([i915#9519]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#6524]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#11520]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9808]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#12316]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#11520]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][254] ([i915#11520]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#11520]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#11520]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#9683]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#9683]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#4348]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#9683]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-render: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +7 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#9732]) +14 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-sprite-blt: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#9688]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#4077] / [i915#9688]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#1072] / [i915#9732]) +8 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#9732]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_psr@psr2-primary-render.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#1072] / [i915#9732]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#12755]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#5190]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#5289]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12755]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#3555]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][273] -> [FAIL][274] ([IGT#160]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@kms_sysfs_edid_timing.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@kms_sysfs_edid_timing.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#9906]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#11920]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][277] -> [SKIP][278] ([i915#3555] / [i915#9906]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@kms_vrr@negative-basic.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-6/igt@kms_vrr@negative-basic.html - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#9906]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#9906]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#2437] / [i915#9412]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#2437]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#2436]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12506]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#2433]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#8850]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][288] ([i915#12549] / [i915#6806]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#8516]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: NOTRUN -> [FAIL][290] ([i915#4349]) +3 other tests fail [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-mtlp: NOTRUN -> [FAIL][291] ([i915#4349]) +4 other tests fail [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-6/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#3708]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#3291] / [i915#3708]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@prime_vgem@basic-read.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#9917]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][295] ([i915#12910]) +9 other tests fail [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html #### Possible fixes #### * igt@api_intel_allocator@two-level-inception: - shard-dg2: [SKIP][296] -> [PASS][297] +24 other tests pass [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@api_intel_allocator@two-level-inception.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@api_intel_allocator@two-level-inception.html * igt@core_setmaster@master-drop-set-root: - shard-dg2: [FAIL][298] ([i915#12909]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@core_setmaster@master-drop-set-root.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@core_setmaster@master-drop-set-root.html * igt@dumb_buffer@map-valid: - shard-dg2: [INCOMPLETE][300] -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-1/igt@dumb_buffer@map-valid.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-6/igt@dumb_buffer@map-valid.html * igt@fbdev@info: - shard-dg2: [SKIP][302] ([i915#1849] / [i915#2582]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@fbdev@info.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@fbdev@info.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][304] ([i915#12392]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-massive: - shard-dg2: [SKIP][306] ([i915#2575]) -> [PASS][307] +124 other tests pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_create@create-massive.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@gem_create@create-massive.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [TIMEOUT][308] ([i915#3778] / [i915#7016]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@gem_exec_endless@dispatch@bcs0.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][310] ([i915#7975] / [i915#8213]) -> [PASS][311] +1 other test pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-17/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-dg2: [SKIP][312] ([i915#12936]) -> [PASS][313] +1 other test pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-rkl: [DMESG-WARN][314] ([i915#12917] / [i915#12964]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-3/igt@gem_userptr_blits@map-fixed-invalidate.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-7/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-rkl: [FAIL][316] -> [PASS][317] +1 other test pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-3/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-4/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@sysfs-read: - shard-dg2: [SKIP][318] ([i915#13014]) -> [PASS][319] +1 other test pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@i915_pm_rpm@sysfs-read.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@i915_pm_rpm@sysfs-read.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][320] ([i915#7984]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-mtlp-3/igt@i915_power@sanity.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_selftest@live@objects: - shard-dg2: [FAIL][322] -> [PASS][323] +37 other tests pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@i915_selftest@live@objects.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@i915_selftest@live@objects.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [FAIL][324] ([i915#11808] / [i915#5956]) -> [PASS][325] +1 other test pass [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][326] ([i915#11808]) -> [PASS][327] +1 other test pass [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [FAIL][328] ([i915#2122]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1: - shard-tglu: [FAIL][330] ([i915#2122]) -> [PASS][331] +2 other tests pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-rkl: [DMESG-WARN][332] ([i915#12964]) -> [PASS][333] +7 other tests pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_hdr@bpc-switch: - shard-dg2: [SKIP][334] ([i915#3555] / [i915#8228]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-5/igt@kms_hdr@bpc-switch.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-10/igt@kms_hdr@bpc-switch.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2: [SKIP][336] ([i915#2575] / [i915#9423]) -> [PASS][337] +4 other tests pass [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][338] ([i915#4281]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@i2c: - shard-dg2: [SKIP][340] ([i915#12937]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@kms_pm_rpm@i2c.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][342] ([i915#9519]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@perf_pmu@busy: - shard-dg2: [SKIP][344] ([i915#12506]) -> [PASS][345] +5 other tests pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@perf_pmu@busy.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@perf_pmu@busy.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][346] ([i915#4349]) -> [PASS][347] +4 other tests pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@most-busy-idle-check-all@bcs0: - shard-dg1: [FAIL][348] -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@bcs0.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: [SKIP][350] ([i915#8411]) -> [SKIP][351] ([i915#2575]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@api_intel_bb@blit-reloc-keep-cache.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: [SKIP][352] ([i915#2575]) -> [SKIP][353] ([i915#8411]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: [SKIP][354] -> [SKIP][355] ([i915#11078]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@virtual-busy: - shard-dg2: [SKIP][356] ([i915#8414]) -> [SKIP][357] ([i915#12506]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@drm_fdinfo@virtual-busy.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@drm_fdinfo@virtual-busy.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2: [SKIP][358] ([i915#12506]) -> [SKIP][359] ([i915#8414]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@drm_fdinfo@virtual-busy-idle.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_basic@multigpu-create-close: - shard-dg2: [SKIP][360] ([i915#7697]) -> [SKIP][361] ([i915#2575]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_basic@multigpu-create-close.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: [SKIP][362] ([i915#2575]) -> [SKIP][363] ([i915#3936]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_busy@semaphore.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@gem_busy@semaphore.html * igt@gem_ctx_persistence@hang: - shard-dg2: [SKIP][364] ([i915#2575]) -> [SKIP][365] ([i915#8555]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_ctx_persistence@hang.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: [SKIP][366] ([i915#280]) -> [SKIP][367] ([i915#2575]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@gem_ctx_sseu@invalid-args.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@kms: - shard-dg2: [FAIL][368] ([i915#5784]) -> [SKIP][369] ([i915#2575]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@gem_eio@kms.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: [SKIP][370] ([i915#2575]) -> [SKIP][371] ([i915#4812]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: [SKIP][372] ([i915#4771]) -> [SKIP][373] ([i915#2575]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_fence@submit3: - shard-dg2: [SKIP][374] ([i915#4812]) -> [SKIP][375] ([i915#2575]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@gem_exec_fence@submit3.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: [SKIP][376] ([i915#2575]) -> [SKIP][377] ([i915#3539] / [i915#4852]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: [SKIP][378] ([i915#5107]) -> [SKIP][379] ([i915#2575]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-dg2: [SKIP][380] -> [SKIP][381] ([i915#2575]) +8 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@gem_exec_params@secure-non-master.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: [SKIP][382] ([i915#3281]) -> [SKIP][383] ([i915#2575]) +8 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_exec_reloc@basic-softpin.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: [SKIP][384] ([i915#2575]) -> [SKIP][385] ([i915#3281]) +9 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: [SKIP][386] ([i915#4537] / [i915#4812]) -> [SKIP][387] ([i915#2575]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: [SKIP][388] ([i915#2575]) -> [SKIP][389] ([i915#4537] / [i915#4812]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2: [SKIP][390] ([i915#2575]) -> [SKIP][391] ([i915#4860]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-threaded-none.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: [SKIP][392] ([i915#4077]) -> [SKIP][393] ([i915#2575]) +13 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_mmap_gtt@basic-small-bo.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@hang: - shard-dg2: [SKIP][394] ([i915#2575]) -> [SKIP][395] ([i915#4077]) +6 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_mmap_gtt@hang.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: [SKIP][396] ([i915#4083]) -> [SKIP][397] ([i915#2575]) +4 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@gem_mmap_wc@invalid-flags.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write: - shard-dg2: [SKIP][398] ([i915#2575]) -> [SKIP][399] ([i915#4083]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_mmap_wc@write.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@gem_mmap_wc@write.html * igt@gem_pread@snoop: - shard-dg2: [SKIP][400] ([i915#3282]) -> [SKIP][401] ([i915#2575]) +3 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_pread@snoop.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: [SKIP][402] ([i915#4270]) -> [SKIP][403] ([i915#2575]) +3 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: [SKIP][404] ([i915#2575]) -> [SKIP][405] ([i915#4270]) +2 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@new-obj: - shard-dg2: [SKIP][406] ([i915#2575]) -> [SKIP][407] ([i915#3282]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_readwrite@new-obj.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: [SKIP][408] ([i915#2575] / [i915#5190]) -> [SKIP][409] ([i915#5190] / [i915#8428]) +2 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: [SKIP][410] ([i915#5190] / [i915#8428]) -> [SKIP][411] ([i915#2575] / [i915#5190]) +5 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: [SKIP][412] ([i915#4079]) -> [SKIP][413] ([i915#2575]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@gem_render_tiled_blits@basic.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_render_tiled_blits@basic.html * igt@gem_userptr_blits@access-control: - shard-dg2: [SKIP][414] ([i915#2575]) -> [SKIP][415] ([i915#3297]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_userptr_blits@access-control.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: [SKIP][416] ([i915#3297]) -> [SKIP][417] ([i915#2575]) +1 other test skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@gem_userptr_blits@dmabuf-unsync.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: [SKIP][418] ([i915#2575]) -> [SKIP][419] ([i915#3297] / [i915#4880]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: [SKIP][420] ([i915#3297] / [i915#4880]) -> [SKIP][421] ([i915#2575]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: [SKIP][422] ([i915#2856]) -> [SKIP][423] ([i915#2575]) +3 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-7/igt@gen9_exec_parse@bb-start-far.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: [SKIP][424] ([i915#2575]) -> [SKIP][425] ([i915#2856]) +1 other test skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][426] ([i915#10887] / [i915#12817] / [i915#13010] / [i915#9820]) -> [ABORT][427] ([i915#13010]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-dg2: [INCOMPLETE][428] ([i915#12455]) -> [SKIP][429] ([i915#2575]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rpm@gem-evict-pwrite: - shard-dg2: [SKIP][430] ([i915#13014]) -> [SKIP][431] ([i915#4077]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-7/igt@i915_pm_rpm@gem-evict-pwrite.html * igt@i915_pm_rps@basic-api: - shard-dg2: [SKIP][432] ([i915#11681] / [i915#6621]) -> [SKIP][433] ([i915#2575]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-4/igt@i915_pm_rps@basic-api.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@i915_pm_rps@basic-api.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: [SKIP][434] ([i915#6188]) -> [SKIP][435] ([i915#2575]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [DMESG-WARN][436] ([i915#12964]) -> [INCOMPLETE][437] ([i915#12964] / [i915#4817]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][438] ([i915#4817]) -> [DMESG-FAIL][439] ([i915#12964]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-rkl-5/igt@i915_suspend@debugfs-reader.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: [SKIP][440] ([i915#4212]) -> [SKIP][441] ([i915#2575]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15742/shard-dg2-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/shard-dg2-11/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-ti == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141559v3/index.html [-- Attachment #2: Type: text/html, Size: 109642 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine 2024-11-25 15:27 [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Eugene Kobyak ` (2 preceding siblings ...) 2024-11-25 22:33 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-11-28 11:00 ` Andi Shyti 2024-11-28 12:57 ` Jani Nikula 4 siblings, 0 replies; 6+ messages in thread From: Andi Shyti @ 2024-11-28 11:00 UTC (permalink / raw) To: Eugene Kobyak; +Cc: intel-gfx, John.C.Harrison, andi.shyti Hi, On Mon, Nov 25, 2024 at 03:27:11PM +0000, Eugene Kobyak wrote: > When the intel_context structure contains NULL, > it raises a NULL pointer dereference error in drm_info(). > > Fixes: e8a3319c31a1 ("drm/i915: Allow error capture without a request") > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12309 > > Signed-off-by: Eugene Kobyak <eugene.kobyak@intel.com> > --- > drivers/gpu/drm/i915/i915_gpu_error.c | 13 ++++++++++--- > 1 file changed, 10 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c > index 135ded17334e..1c614c74c2cf 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.c > +++ b/drivers/gpu/drm/i915/i915_gpu_error.c > @@ -1643,9 +1643,16 @@ capture_engine(struct intel_engine_cs *engine, > return NULL; > > intel_engine_get_hung_entity(engine, &ce, &rq); > - if (rq && !i915_request_started(rq)) > - drm_info(&engine->gt->i915->drm, "Got hung context on %s with active request %lld:%lld [0x%04X] not yet started\n", > - engine->name, rq->fence.context, rq->fence.seqno, ce->guc_id.id); > + if (rq && !i915_request_started(rq)) { > + char guc_id[9]; > + if (ce) > + scnprintf(guc_id, sizeof(guc_id), "[0x%04X]", ce->guc_id.id); > + else > + scnprintf(guc_id, sizeof(guc_id), " "); > + > + drm_info(&engine->gt->i915->drm, "Got hung context on %s with active request %lld:%lld%s not yet started\n", > + engine->name, rq->fence.context, rq->fence.seqno, guc_id); > + } I've discussed offline with Eugene this scenario and we tested the cases when ce is NULL. I'm looking forward to your v4. Thanks, Andi ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine 2024-11-25 15:27 [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Eugene Kobyak ` (3 preceding siblings ...) 2024-11-28 11:00 ` [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Andi Shyti @ 2024-11-28 12:57 ` Jani Nikula 4 siblings, 0 replies; 6+ messages in thread From: Jani Nikula @ 2024-11-28 12:57 UTC (permalink / raw) To: Eugene Kobyak, intel-gfx; +Cc: John.C.Harrison, andi.shyti On Mon, 25 Nov 2024, Eugene Kobyak <eugene.kobyak@intel.com> wrote: > When the intel_context structure contains NULL, > it raises a NULL pointer dereference error in drm_info(). > > Fixes: e8a3319c31a1 ("drm/i915: Allow error capture without a request") > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12309 > Superfluous newline in the middle of commit trailers. Please use the imperative mood in the subject, i.e. s/Fixed/Fix/. BR, Jani. > Signed-off-by: Eugene Kobyak <eugene.kobyak@intel.com> > --- > drivers/gpu/drm/i915/i915_gpu_error.c | 13 ++++++++++--- > 1 file changed, 10 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c > index 135ded17334e..1c614c74c2cf 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.c > +++ b/drivers/gpu/drm/i915/i915_gpu_error.c > @@ -1643,9 +1643,16 @@ capture_engine(struct intel_engine_cs *engine, > return NULL; > > intel_engine_get_hung_entity(engine, &ce, &rq); > - if (rq && !i915_request_started(rq)) > - drm_info(&engine->gt->i915->drm, "Got hung context on %s with active request %lld:%lld [0x%04X] not yet started\n", > - engine->name, rq->fence.context, rq->fence.seqno, ce->guc_id.id); > + if (rq && !i915_request_started(rq)) { > + char guc_id[9]; > + if (ce) > + scnprintf(guc_id, sizeof(guc_id), "[0x%04X]", ce->guc_id.id); > + else > + scnprintf(guc_id, sizeof(guc_id), " "); > + > + drm_info(&engine->gt->i915->drm, "Got hung context on %s with active request %lld:%lld%s not yet started\n", > + engine->name, rq->fence.context, rq->fence.seqno, guc_id); > + } > > if (rq) { > capture = intel_engine_coredump_add_request(ee, rq, ATOMIC_MAYFAIL); -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-28 12:57 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-25 15:27 [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Eugene Kobyak 2024-11-25 19:31 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fixed NULL pointer dereference in capture_engine (rev3) Patchwork 2024-11-25 19:49 ` ✓ i915.CI.BAT: success " Patchwork 2024-11-25 22:33 ` ✗ i915.CI.Full: failure " Patchwork 2024-11-28 11:00 ` [PATCH v3] drm/i915: Fixed NULL pointer dereference in capture_engine Andi Shyti 2024-11-28 12:57 ` Jani Nikula
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox