* [PATCH 0/3] Fix some races/bugs in GuC engine busyness
@ 2024-11-27 17:40 Umesh Nerlige Ramappa
2024-11-27 17:40 ` [PATCH 1/3] i915/guc: Reset engine utilization buffer before registration Umesh Nerlige Ramappa
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2024-11-27 17:40 UTC (permalink / raw)
To: intel-gfx, john.c.harrison
A few races and bugs in PMU busyness implementation are resulting in a wide
range of IGT failures. This series addresses some failures that are easily
reproduced.
To repro the issues, we run a couple iterations of igt@perf_pmu@busy-hang
followed by igt@perf_pmu@most-busy-idle-check-all test.
v2: Review rework
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Umesh Nerlige Ramappa (3):
i915/guc: Reset engine utilization buffer before registration
i915/guc: Ensure busyness counter increases motonically
i915/guc: Accumulate active runtime on gt reset
drivers/gpu/drm/i915/gt/intel_engine_types.h | 5 +++
.../gpu/drm/i915/gt/uc/intel_guc_submission.c | 41 ++++++++++++++++++-
2 files changed, 44 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH 1/3] i915/guc: Reset engine utilization buffer before registration 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa @ 2024-11-27 17:40 ` Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 2/3] i915/guc: Ensure busyness counter increases motonically Umesh Nerlige Ramappa ` (5 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-27 17:40 UTC (permalink / raw) To: intel-gfx, john.c.harrison On GT reset, we store total busyness counts for all engines and re-register the utilization buffer with GuC. At that time we should reset the buffer, so that we don't get spurious busyness counts on subsequent queries. To repro this issue, run igt@perf_pmu@busy-hang followed by igt@perf_pmu@most-busy-idle-check-all for a couple iterations. Fixes: 77cdd054dd2c ("drm/i915/pmu: Connect engine busyness stats from GuC to pmu") Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: John Harrison <John.C.Harrison@Intel.com> --- .../gpu/drm/i915/gt/uc/intel_guc_submission.c | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c index 353a9167c9a4..c71aedcbce43 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c @@ -1243,6 +1243,21 @@ static void __get_engine_usage_record(struct intel_engine_cs *engine, } while (++i < 6); } +static void __set_engine_usage_record(struct intel_engine_cs *engine, + u32 last_in, u32 id, u32 total) +{ + struct iosys_map rec_map = intel_guc_engine_usage_record_map(engine); + +#define record_write(map_, field_, val_) \ + iosys_map_wr_field(map_, 0, struct guc_engine_usage_record, field_, val_) + + record_write(&rec_map, last_switch_in_stamp, last_in); + record_write(&rec_map, current_context_index, id); + record_write(&rec_map, total_runtime, total); + +#undef record_write +} + static void guc_update_engine_gt_clks(struct intel_engine_cs *engine) { struct intel_engine_guc_stats *stats = &engine->stats.guc; @@ -1543,6 +1558,9 @@ static void guc_timestamp_ping(struct work_struct *wrk) static int guc_action_enable_usage_stats(struct intel_guc *guc) { + struct intel_gt *gt = guc_to_gt(guc); + struct intel_engine_cs *engine; + enum intel_engine_id id; u32 offset = intel_guc_engine_usage_offset(guc); u32 action[] = { INTEL_GUC_ACTION_SET_ENG_UTIL_BUFF, @@ -1550,6 +1568,9 @@ static int guc_action_enable_usage_stats(struct intel_guc *guc) 0, }; + for_each_engine(engine, gt, id) + __set_engine_usage_record(engine, 0, 0xffffffff, 0); + return intel_guc_send(guc, action, ARRAY_SIZE(action)); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/3] i915/guc: Ensure busyness counter increases motonically 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 1/3] i915/guc: Reset engine utilization buffer before registration Umesh Nerlige Ramappa @ 2024-11-27 17:40 ` Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset Umesh Nerlige Ramappa ` (4 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-27 17:40 UTC (permalink / raw) To: intel-gfx, john.c.harrison Active busyness of an engine is calculated using gt timestamp and the context switch in time. While capturing the gt timestamp, it's possible that the context switches out. This race could result in an active busyness value that is greater than the actual context runtime value by a small amount. This leads to a negative delta and throws off busyness calculations for the user. If a subsequent count is smaller than the previous one, just return the previous one, since we expect the busyness to catch up. Fixes: 77cdd054dd2c ("drm/i915/pmu: Connect engine busyness stats from GuC to pmu") Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: John Harrison <John.C.Harrison@Intel.com> --- drivers/gpu/drm/i915/gt/intel_engine_types.h | 5 +++++ drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/intel_engine_types.h b/drivers/gpu/drm/i915/gt/intel_engine_types.h index ba55c059063d..fe1f85e5dda3 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_types.h +++ b/drivers/gpu/drm/i915/gt/intel_engine_types.h @@ -343,6 +343,11 @@ struct intel_engine_guc_stats { * @start_gt_clk: GT clock time of last idle to active transition. */ u64 start_gt_clk; + + /** + * @total: The last value of total returned + */ + u64 total; }; union intel_engine_tlb_inv_reg { diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c index c71aedcbce43..56be9f385270 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c @@ -1378,9 +1378,12 @@ static ktime_t guc_engine_busyness(struct intel_engine_cs *engine, ktime_t *now) total += intel_gt_clock_interval_to_ns(gt, clk); } + if (total > stats->total) + stats->total = total; + spin_unlock_irqrestore(&guc->timestamp.lock, flags); - return ns_to_ktime(total); + return ns_to_ktime(stats->total); } static void guc_enable_busyness_worker(struct intel_guc *guc) -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 1/3] i915/guc: Reset engine utilization buffer before registration Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 2/3] i915/guc: Ensure busyness counter increases motonically Umesh Nerlige Ramappa @ 2024-11-27 17:40 ` Umesh Nerlige Ramappa 2024-12-05 22:11 ` John Harrison 2024-11-27 18:42 ` ✗ Fi.CI.SPARSE: warning for Fix some races/bugs in GuC engine busyness (rev4) Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-27 17:40 UTC (permalink / raw) To: intel-gfx, john.c.harrison On gt reset, if a context is running, then accumulate it's active time into the busyness counter since there will be no chance for the context to switch out and update it's run time. v2: Move comment right above the if (John) Fixes: 77cdd054dd2c ("drm/i915/pmu: Connect engine busyness stats from GuC to pmu") Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c index 56be9f385270..2876024041a7 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c @@ -1449,8 +1449,21 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) guc_update_pm_timestamp(guc, &unused); for_each_engine(engine, gt, id) { + struct intel_engine_guc_stats *stats = &engine->stats.guc; + guc_update_engine_gt_clks(engine); - engine->stats.guc.prev_total = 0; + + /* + * If resetting a running context, accumulate the active + * time as well since there will be no context switch. + */ + if (stats->running) { + u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; + + stats->total_gt_clks += clk; + } + stats->prev_total = 0; + stats->running = 0; } spin_unlock_irqrestore(&guc->timestamp.lock, flags); -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset 2024-11-27 17:40 ` [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset Umesh Nerlige Ramappa @ 2024-12-05 22:11 ` John Harrison 0 siblings, 0 replies; 13+ messages in thread From: John Harrison @ 2024-12-05 22:11 UTC (permalink / raw) To: Umesh Nerlige Ramappa, intel-gfx On 11/27/2024 09:40, Umesh Nerlige Ramappa wrote: > On gt reset, if a context is running, then accumulate it's active time > into the busyness counter since there will be no chance for the context > to switch out and update it's run time. > > v2: Move comment right above the if (John) > > Fixes: 77cdd054dd2c ("drm/i915/pmu: Connect engine busyness stats from GuC to pmu") > Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: John Harrison <John.C.Harrison@Intel.com> > --- > drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 15 ++++++++++++++- > 1 file changed, 14 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > index 56be9f385270..2876024041a7 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > @@ -1449,8 +1449,21 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) > > guc_update_pm_timestamp(guc, &unused); > for_each_engine(engine, gt, id) { > + struct intel_engine_guc_stats *stats = &engine->stats.guc; > + > guc_update_engine_gt_clks(engine); > - engine->stats.guc.prev_total = 0; > + > + /* > + * If resetting a running context, accumulate the active > + * time as well since there will be no context switch. > + */ > + if (stats->running) { > + u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; > + > + stats->total_gt_clks += clk; > + } > + stats->prev_total = 0; > + stats->running = 0; > } > > spin_unlock_irqrestore(&guc->timestamp.lock, flags); ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Fix some races/bugs in GuC engine busyness (rev4) 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa ` (2 preceding siblings ...) 2024-11-27 17:40 ` [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset Umesh Nerlige Ramappa @ 2024-11-27 18:42 ` Patchwork 2024-11-27 18:57 ` ✓ i915.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-11-27 18:42 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-gfx == Series Details == Series: Fix some races/bugs in GuC engine busyness (rev4) URL : https://patchwork.freedesktop.org/series/141522/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for Fix some races/bugs in GuC engine busyness (rev4) 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa ` (3 preceding siblings ...) 2024-11-27 18:42 ` ✗ Fi.CI.SPARSE: warning for Fix some races/bugs in GuC engine busyness (rev4) Patchwork @ 2024-11-27 18:57 ` Patchwork 2024-11-27 20:36 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-14 0:16 ` [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-11-27 18:57 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-gfx == Series Details == Series: Fix some races/bugs in GuC engine busyness (rev4) URL : https://patchwork.freedesktop.org/series/141522/ State : success == Summary == CI Bug Log - changes from CI_DRM_15754 -> Patchwork_141522v4 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_141522v4 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-adls-6: [PASS][1] -> [FAIL][2] ([i915#12903]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/bat-adls-6/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/bat-adls-6/igt@i915_pm_rpm@module-reload.html - bat-rpls-4: [PASS][3] -> [FAIL][4] ([i915#12903]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/bat-rpls-4/igt@i915_pm_rpm@module-reload.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arlh-2: [ABORT][5] -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/bat-arlh-2/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [ABORT][7] ([i915#12061]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/bat-arls-5/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [ABORT][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][11] ([i915#9197]) -> [PASS][12] +3 other tests pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_15754 -> Patchwork_141522v4 CI-20190529: 20190529 CI_DRM_15754: 24e36a5200d65a337d37827d4abcae11c9693f6f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_141522v4: 24e36a5200d65a337d37827d4abcae11c9693f6f @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/index.html ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for Fix some races/bugs in GuC engine busyness (rev4) 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa ` (4 preceding siblings ...) 2024-11-27 18:57 ` ✓ i915.CI.BAT: success " Patchwork @ 2024-11-27 20:36 ` Patchwork 2024-12-13 6:28 ` Umesh Nerlige Ramappa 2024-12-14 0:16 ` [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa 6 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2024-11-27 20:36 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100276 bytes --] == Series Details == Series: Fix some races/bugs in GuC engine busyness (rev4) URL : https://patchwork.freedesktop.org/series/141522/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15754_full -> Patchwork_141522v4_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_141522v4_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_141522v4_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_141522v4_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@gem_eio@in-flight-suspend.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk8/igt@gem_tiled_swapping@non-threaded.html * igt@kms_plane@pixel-format-source-clamping: - shard-tglu: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-tglu-6/igt@kms_plane@pixel-format-source-clamping.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3: - shard-dg2: [PASS][5] -> [WARN][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-5/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-1/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html * igt@perf_pmu@busy-accuracy-50: - shard-dg1: [PASS][7] -> [FAIL][8] +3 other tests fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-13/igt@perf_pmu@busy-accuracy-50.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@perf_pmu@busy-accuracy-50.html * igt@perf_pmu@most-busy-idle-check-all@vcs0: - shard-mtlp: [PASS][9] -> [FAIL][10] +3 other tests fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all@vcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@vcs0.html * igt@sysfs_heartbeat_interval@nopreempt: - shard-mtlp: [PASS][11] -> [ABORT][12] +1 other test abort [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-4/igt@sysfs_heartbeat_interval@nopreempt.html #### Warnings #### * igt@kms_prime@d3hot: - shard-tglu: [SKIP][13] ([i915#6524]) -> [ABORT][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-tglu-5/igt@kms_prime@d3hot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-6/igt@kms_prime@d3hot.html Known issues ------------ Here are the changes found in Patchwork_141522v4_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-reset-rebind: - shard-tglu: NOTRUN -> [ABORT][15] ([i915#12817] / [i915#5507]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +22 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +23 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8414]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-9/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#9323]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_persistence@hang: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-snb6/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@hostile: - shard-mtlp: NOTRUN -> [FAIL][29] ([i915#11980] / [i915#12580]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-rkl: [PASS][30] -> [DMESG-WARN][31] ([i915#12964]) +5 other tests dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-3/igt@gem_ctx_persistence@legacy-engines-mixed.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-7/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#280]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#8555]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3711]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#5107]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +14 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-range: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613] / [i915#7582]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#12193]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@random-engines: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap@big-bo: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gem_mmap_gtt@big-copy-odd.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +7 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +16 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][63] ([i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-regular-buffer: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [FAIL][67] ([i915#12940]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#13033]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +8 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-snb: NOTRUN -> [SKIP][72] +15 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-snb6/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4885]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4885]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@gem_userptr_blits@unsync-overlap.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][82] +9 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][83] -> [ABORT][84] ([i915#5566]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-glk2/igt@gen9_exec_parse@allowed-single.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-9/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@gen9_exec_parse@bb-start-param.html * igt@i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][90] ([i915#13029]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#8399]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#6590]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#6590]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#11681] / [i915#6621]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#11681] / [i915#6621]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#11681]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4387]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][99] -> [SKIP][100] ([i915#7984]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-6/igt@i915_power@sanity.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][101] ([i915#9311]) +1 other test dmesg-warn [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@i915_selftest@mock.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-tglu: NOTRUN -> [ABORT][102] ([i915#13010]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#12454] / [i915#12712]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#8709]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8709]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic_transition@modeset-transition: - shard-glk: NOTRUN -> [FAIL][107] ([i915#12238]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk8/igt@kms_atomic_transition@modeset-transition.html * igt@kms_atomic_transition@modeset-transition@2x-outputs: - shard-glk: NOTRUN -> [FAIL][108] ([i915#11859]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [FAIL][109] ([i915#11808] / [i915#5956]) +1 other test fail [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#5286]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#5286]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5286]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][113] +26 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6187]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#12313]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#10307] / [i915#6095]) +87 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#6095]) +107 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#12313]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#12313]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +71 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#6095]) +19 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6095]) +29 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#12313]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#6095]) +29 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +64 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3742]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828]) +9 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#7828]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#3116] / [i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3299]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3299]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][141] ([i915#7173]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#9424]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7118] / [i915#9424]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#13049]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#3555]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#3555]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#13049]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8814]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#13049]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#4103]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#9809]) +8 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4213]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#9723]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [PASS][159] -> [SKIP][160] ([i915#3555]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12402]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#12402]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#8812]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#3840]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#3840]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840] / [i915#9053]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3469]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4854]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#1839]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#1839]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#658]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#4881]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3637]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#9934]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3637]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#9934]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8381]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3637]) +8 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][181] ([i915#12745] / [i915#4839]) +1 other test incomplete [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][182] ([i915#4839]) +1 other test incomplete [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][183] ([i915#12964]) +3 other tests dmesg-warn [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-5/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg2: NOTRUN -> [FAIL][184] ([i915#11989]) +1 other test fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html - shard-dg1: [PASS][185] -> [FAIL][186] ([i915#11989] / [i915#12517] / [i915#12996]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-13/igt@kms_flip@flip-vs-absolute-wf_vblank.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][187] ([i915#11989]) +1 other test fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4.html * igt@kms_flip@plain-flip-fb-recreate: - shard-tglu-1: NOTRUN -> [FAIL][188] ([i915#11989]) +2 other tests fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: [PASS][189] -> [FAIL][190] ([i915#11989]) +3 other tests fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_flip@plain-flip-ts-check: - shard-rkl: [PASS][191] -> [FAIL][192] ([i915#11989]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-3/igt@kms_flip@plain-flip-ts-check.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-5/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@b-edp1: - shard-mtlp: [PASS][193] -> [FAIL][194] ([i915#11989]) +2 other tests fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check@b-edp1.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8810]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#2587] / [i915#2672]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-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][200] ([i915#2672]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/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-downscaling: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555] / [i915#8813]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#8813]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8810]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][208] +38 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-snb: [PASS][209] -> [SKIP][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][211] +43 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#5439]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3458]) +16 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#8708]) +16 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#5354]) +20 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][216] +144 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][217] +58 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3458]) +11 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#5439]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#10055]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#1825]) +41 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8708]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8708]) +13 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#6118]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#13012] / [i915#13030]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#12394]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#12339]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#12339]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#10656]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#10656]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#6301]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#6301]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2: [PASS][237] -> [INCOMPLETE][238] ([i915#10056] / [i915#13026]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-5/igt@kms_plane@pixel-format-source-clamping.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-1/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3: - shard-tglu: [PASS][239] -> [ABORT][240] ([i915#10354]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-tglu-6/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][241] ([i915#12169]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][242] ([i915#10647]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#11614] / [i915#3582]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#6953]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#12247]) +22 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#12247]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#6953] / [i915#9423]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#12247]) +22 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12247]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#12247] / [i915#3555] / [i915#6953]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#3555]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12343]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#5354]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3828]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#9519]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][258] -> [SKIP][259] ([i915#9519]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#9519]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#9519]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#6524] / [i915#6805]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#11520]) +8 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#9808]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#11520]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#12316]) +6 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][267] ([i915#11520]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#11520]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#11520]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#9683]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +16 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9732]) +13 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#9732]) +11 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#9688]) +23 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +15 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#4077] / [i915#9688]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#4235]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#12755] / [i915#5190]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#12755]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#3555]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-6/igt@kms_scaling_modes@scaling-mode-none.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#5030] / [i915#9041]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#5030]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#5030] / [i915#9041]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: NOTRUN -> [ABORT][284] ([i915#12231]) +1 other test abort [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-12/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8809]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][286] ([IGT#160] / [i915#6493]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#8623]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#8623]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#9906]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8808]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#9906]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#2437]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-9/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#2437] / [i915#9412]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#2437] / [i915#9412]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-12/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#2437]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#2437]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2437]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][298] ([i915#2437]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#7387]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-2/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#2434]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#2434]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][302] ([i915#4349]) +5 other tests fail [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-3/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@busy-idle@vcs1: - shard-mtlp: [PASS][303] -> [FAIL][304] ([i915#4349]) +1 other test fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-2/igt@perf_pmu@busy-idle@vcs1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@perf_pmu@busy-idle@vcs1.html * igt@perf_pmu@busy-idle@vecs0: - shard-dg1: [PASS][305] -> [FAIL][306] ([i915#4349]) +1 other test fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-18/igt@perf_pmu@busy-idle@vecs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@perf_pmu@busy-idle@vecs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#8850]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][308] ([i915#8850]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][309] ([i915#12549] / [i915#6806]) +1 other test fail [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg1: [PASS][310] -> [FAIL][311] ([i915#11943]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [PASS][312] -> [FAIL][313] ([i915#11943] / [i915#12515] / [i915#4349]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@most-busy-idle-check-all@bcs0: - shard-dg1: [PASS][314] -> [FAIL][315] ([i915#13077]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@bcs0.html - shard-mtlp: [PASS][316] -> [FAIL][317] ([i915#12515]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@bcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#8516]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#3708]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-18/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#3708]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3708]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-2/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#9917]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][323] ([i915#12910]) +9 other tests fail [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#4818]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ctx_freq@sysfs: - shard-dg2: [FAIL][325] ([i915#9561]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-6/igt@gem_ctx_freq@sysfs.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-10/igt@gem_ctx_freq@sysfs.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][327] ([i915#12543] / [i915#5784]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-13/igt@gem_eio@reset-stress.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@gem_eio@reset-stress.html * igt@i915_pm_rpm@system-suspend: - shard-dg2: [SKIP][329] -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-11/igt@i915_pm_rpm@system-suspend.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-8/igt@i915_pm_rpm@system-suspend.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-dg1: [INCOMPLETE][331] ([i915#12795]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-13/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-14/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][333] ([i915#2346]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][335] ([i915#11989]) -> [PASS][336] +3 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-snb2/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][337] ([i915#11989]) -> [PASS][338] +2 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a1-hdmi-a2.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [FAIL][339] ([i915#11989]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1: - shard-tglu: [FAIL][341] ([i915#11989]) -> [PASS][342] +1 other test pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-tglu-10/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [SKIP][343] -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][345] ([i915#9519]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create: - shard-glk: [ABORT][347] -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][349] ([i915#4349]) -> [PASS][350] +4 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@syncobj_timeline@reset-during-wait-for-submit: - shard-rkl: [DMESG-WARN][351] ([i915#12964]) -> [PASS][352] +5 other tests pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-5/igt@syncobj_timeline@reset-during-wait-for-submit.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-1/igt@syncobj_timeline@reset-during-wait-for-submit.html * igt@syncobj_timeline@single-wait-all-for-submit-available-submitted: - shard-dg2: [ABORT][353] -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-11/igt@syncobj_timeline@single-wait-all-for-submit-available-submitted.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-8/igt@syncobj_timeline@single-wait-all-for-submit-available-submitted.html #### Warnings #### * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [DMESG-FAIL][355] ([i915#12964]) -> [INCOMPLETE][356] ([i915#4817]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: [SKIP][357] ([i915#4538] / [i915#5286]) -> [SKIP][358] ([i915#4423] / [i915#4538] / [i915#5286]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][359] ([i915#7118] / [i915#9424]) -> [TIMEOUT][360] ([i915#7173]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-6/igt@kms_content_protection@legacy.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-dg1: [SKIP][361] -> [SKIP][362] ([i915#4423]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][363] ([i915#3458]) -> [SKIP][364] ([i915#10433] / [i915#3458]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][365] ([i915#4816]) -> [SKIP][366] ([i915#4070] / [i915#4816]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [FAIL][367] ([i915#8292]) -> [SKIP][368] ([i915#6953] / [i915#9423]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][369] ([i915#4281]) -> [SKIP][370] ([i915#3361]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][371] ([i915#3828]) -> [SKIP][372] ([i915#9340]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-glk: [DMESG-FAIL][373] ([i915#12231]) -> [ABORT][374] ([i915#12231]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15754/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/shard-glk1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231 [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12515]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12515 [i915#12517]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12517 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12795]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12795 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12940]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12940 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12996]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12996 [i915#13010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13010 [i915#13012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13012 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [i915#13033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13033 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13077 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6944]: http == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/index.html [-- Attachment #2: Type: text/html, Size: 121265 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ i915.CI.Full: failure for Fix some races/bugs in GuC engine busyness (rev4) 2024-11-27 20:36 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-12-13 6:28 ` Umesh Nerlige Ramappa 0 siblings, 0 replies; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-12-13 6:28 UTC (permalink / raw) To: intel-gfx On Wed, Nov 27, 2024 at 08:36:09PM +0000, Patchwork wrote: > Patch Details > >Series: Fix some races/bugs in GuC engine busyness (rev4) >URL: [1]https://patchwork.freedesktop.org/series/141522/ >State: failure >Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141522v4/index.html > > CI Bug Log - changes from CI_DRM_15754_full -> Patchwork_141522v4_full > >Summary > > FAILURE > > Serious unknown changes coming with Patchwork_141522v4_full absolutely > need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_141522v4_full, please notify your bug team > (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in > CI. > >Participating hosts (12 -> 12) > > No changes in participating hosts > >Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_141522v4_full: > > IGT changes > > Possible regressions > > * igt@gem_eio@in-flight-suspend: > > * shard-glk: NOTRUN -> [3]INCOMPLETE > > * igt@gem_tiled_swapping@non-threaded: > > * shard-glk: NOTRUN -> [4]FAIL > > * igt@kms_plane@pixel-format-source-clamping: > > * shard-tglu: [5]PASS -> [6]ABORT > > * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3: > > * shard-dg2: [7]PASS -> [8]WARN above are unrelated. > > * igt@perf_pmu@busy-accuracy-50: > > * shard-dg1: [9]PASS -> [10]FAIL +3 other tests fail > > * igt@perf_pmu@most-busy-idle-check-all@vcs0: > > * shard-mtlp: [11]PASS -> [12]FAIL +3 other tests fail Tried a couple 100 runs of these tests, but did not hit the issue on MTL. They do not seem related to the changes in this series. > > * igt@sysfs_heartbeat_interval@nopreempt: > > * shard-mtlp: [13]PASS -> [14]ABORT +1 other test abort > > Warnings > > * igt@kms_prime@d3hot: > > * shard-tglu: [15]SKIP ([16]i915#6524) -> [17]ABORT unrelated to this series Thanks, Umesh > >Known issues ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/3] Fix some races/bugs in GuC engine busyness 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa ` (5 preceding siblings ...) 2024-11-27 20:36 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-12-14 0:16 ` Umesh Nerlige Ramappa 6 siblings, 0 replies; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-12-14 0:16 UTC (permalink / raw) To: intel-gfx, john.c.harrison On Wed, Nov 27, 2024 at 09:40:03AM -0800, Umesh Nerlige Ramappa wrote: >A few races and bugs in PMU busyness implementation are resulting in a wide >range of IGT failures. This series addresses some failures that are easily >reproduced. > >To repro the issues, we run a couple iterations of igt@perf_pmu@busy-hang >followed by igt@perf_pmu@most-busy-idle-check-all test. > >v2: Review rework > >Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Pushed now. Thanks, Umesh > >Umesh Nerlige Ramappa (3): > i915/guc: Reset engine utilization buffer before registration > i915/guc: Ensure busyness counter increases motonically > i915/guc: Accumulate active runtime on gt reset > > drivers/gpu/drm/i915/gt/intel_engine_types.h | 5 +++ > .../gpu/drm/i915/gt/uc/intel_guc_submission.c | 41 ++++++++++++++++++- > 2 files changed, 44 insertions(+), 2 deletions(-) > >-- >2.34.1 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 0/3] Fix some races/bugs in GuC engine busyness @ 2024-11-18 23:22 Umesh Nerlige Ramappa 2024-11-18 23:22 ` [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset Umesh Nerlige Ramappa 0 siblings, 1 reply; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-18 23:22 UTC (permalink / raw) To: intel-gfx, john.c.harrison A few races and bugs in PMU busyness implementation are resulting in a wide range of IGT failures. This series addresses some failures that are easily reproduced. To repro the issues, we run a couple iterations of igt@perf_pmu@busy-hang followed by igt@perf_pmu@most-busy-idle-check-all test. Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Umesh Nerlige Ramappa (3): i915/guc: Reset engine utilization buffer before registration i915/guc: Ensure busyness counter increases motonically i915/guc: Accumulate active runtime on gt reset drivers/gpu/drm/i915/gt/intel_engine_types.h | 5 +++ .../gpu/drm/i915/gt/uc/intel_guc_submission.c | 41 ++++++++++++++++++- 2 files changed, 44 insertions(+), 2 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset 2024-11-18 23:22 Umesh Nerlige Ramappa @ 2024-11-18 23:22 ` Umesh Nerlige Ramappa 2024-11-22 0:37 ` John Harrison 0 siblings, 1 reply; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-18 23:22 UTC (permalink / raw) To: intel-gfx, john.c.harrison On gt reset, if a context is running, then accumulate it's active time into the busyness counter since there will be no chance for the context to switch out and update it's run time. Fixes: 77cdd054dd2c ("drm/i915/pmu: Connect engine busyness stats from GuC to pmu") Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c index 56be9f385270..0c204b7f3b2b 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c @@ -1449,8 +1449,21 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) guc_update_pm_timestamp(guc, &unused); for_each_engine(engine, gt, id) { + struct intel_engine_guc_stats *stats = &engine->stats.guc; + guc_update_engine_gt_clks(engine); - engine->stats.guc.prev_total = 0; + + if (stats->running) { + u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; + + /* + * If resetting a running context, accumulate the active + * time as well since there will be no context switch. + */ + stats->total_gt_clks += clk; + } + stats->prev_total = 0; + stats->running = 0; } spin_unlock_irqrestore(&guc->timestamp.lock, flags); -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset 2024-11-18 23:22 ` [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset Umesh Nerlige Ramappa @ 2024-11-22 0:37 ` John Harrison 2024-11-25 20:12 ` Umesh Nerlige Ramappa 0 siblings, 1 reply; 13+ messages in thread From: John Harrison @ 2024-11-22 0:37 UTC (permalink / raw) To: Umesh Nerlige Ramappa, intel-gfx On 11/18/2024 15:22, Umesh Nerlige Ramappa wrote: > On gt reset, if a context is running, then accumulate it's active time > into the busyness counter since there will be no chance for the context > to switch out and update it's run time. > > Fixes: 77cdd054dd2c ("drm/i915/pmu: Connect engine busyness stats from GuC to pmu") > Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> > --- > drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 15 ++++++++++++++- > 1 file changed, 14 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > index 56be9f385270..0c204b7f3b2b 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > @@ -1449,8 +1449,21 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) > > guc_update_pm_timestamp(guc, &unused); > for_each_engine(engine, gt, id) { > + struct intel_engine_guc_stats *stats = &engine->stats.guc; > + > guc_update_engine_gt_clks(engine); > - engine->stats.guc.prev_total = 0; > + I think the comment should be here given that this is the 'if' that it starts with. > + if (stats->running) { > + u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; > + > + /* > + * If resetting a running context, accumulate the active > + * time as well since there will be no context switch. > + */ Having the comment here implies the calculation below has some kind of condition, which it doesn't. Plus the comment also refers to the calculation above that determines the 'active time' it mentions. John. > + stats->total_gt_clks += clk; > + } > + stats->prev_total = 0; > + stats->running = 0; > } > > spin_unlock_irqrestore(&guc->timestamp.lock, flags); ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset 2024-11-22 0:37 ` John Harrison @ 2024-11-25 20:12 ` Umesh Nerlige Ramappa 0 siblings, 0 replies; 13+ messages in thread From: Umesh Nerlige Ramappa @ 2024-11-25 20:12 UTC (permalink / raw) To: John Harrison; +Cc: intel-gfx On Thu, Nov 21, 2024 at 04:37:31PM -0800, John Harrison wrote: >On 11/18/2024 15:22, Umesh Nerlige Ramappa wrote: >>On gt reset, if a context is running, then accumulate it's active time >>into the busyness counter since there will be no chance for the context >>to switch out and update it's run time. >> >>Fixes: 77cdd054dd2c ("drm/i915/pmu: Connect engine busyness stats from GuC to pmu") >>Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> >>--- >> drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 15 ++++++++++++++- >> 1 file changed, 14 insertions(+), 1 deletion(-) >> >>diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c >>index 56be9f385270..0c204b7f3b2b 100644 >>--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c >>+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c >>@@ -1449,8 +1449,21 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) >> guc_update_pm_timestamp(guc, &unused); >> for_each_engine(engine, gt, id) { >>+ struct intel_engine_guc_stats *stats = &engine->stats.guc; >>+ >> guc_update_engine_gt_clks(engine); >>- engine->stats.guc.prev_total = 0; >>+ > >I think the comment should be here given that this is the 'if' that it >starts with. >>+ if (stats->running) { >>+ u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; >>+ >>+ /* >>+ * If resetting a running context, accumulate the active >>+ * time as well since there will be no context switch. >>+ */ >Having the comment here implies the calculation below has some kind of >condition, which it doesn't. Plus the comment also refers to the >calculation above that determines the 'active time' it mentions. Sure, I will move it up. Thanks, Umesh > >John. > >>+ stats->total_gt_clks += clk; >>+ } >>+ stats->prev_total = 0; >>+ stats->running = 0; >> } >> spin_unlock_irqrestore(&guc->timestamp.lock, flags); > ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-12-14 0:17 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-27 17:40 [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 1/3] i915/guc: Reset engine utilization buffer before registration Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 2/3] i915/guc: Ensure busyness counter increases motonically Umesh Nerlige Ramappa 2024-11-27 17:40 ` [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset Umesh Nerlige Ramappa 2024-12-05 22:11 ` John Harrison 2024-11-27 18:42 ` ✗ Fi.CI.SPARSE: warning for Fix some races/bugs in GuC engine busyness (rev4) Patchwork 2024-11-27 18:57 ` ✓ i915.CI.BAT: success " Patchwork 2024-11-27 20:36 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-13 6:28 ` Umesh Nerlige Ramappa 2024-12-14 0:16 ` [PATCH 0/3] Fix some races/bugs in GuC engine busyness Umesh Nerlige Ramappa -- strict thread matches above, loose matches on Subject: below -- 2024-11-18 23:22 Umesh Nerlige Ramappa 2024-11-18 23:22 ` [PATCH 3/3] i915/guc: Accumulate active runtime on gt reset Umesh Nerlige Ramappa 2024-11-22 0:37 ` John Harrison 2024-11-25 20:12 ` Umesh Nerlige Ramappa
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox