* [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks
@ 2024-06-07 14:51 Andi Shyti
2024-06-07 15:16 ` Rodrigo Vivi
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Andi Shyti @ 2024-06-07 14:51 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Nirmoy Das, Janusz Krzysztofik, Chris Wilson, Andi Shyti,
Andi Shyti
The forcewake count and domains listing is multi process critical
and the uncore provides a spinlock for such cases.
Lock the forcewake evaluation section in the fw_domains_show()
debugfs interface.
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
index 4fcba42cfe34..0437fd8217e0 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
@@ -71,6 +71,8 @@ static int fw_domains_show(struct seq_file *m, void *data)
struct intel_uncore_forcewake_domain *fw_domain;
unsigned int tmp;
+ spin_lock_irq(&uncore->lock);
+
seq_printf(m, "user.bypass_count = %u\n",
uncore->user_forcewake_count);
@@ -79,6 +81,8 @@ static int fw_domains_show(struct seq_file *m, void *data)
intel_uncore_forcewake_domain_to_str(fw_domain->id),
READ_ONCE(fw_domain->wake_count));
+ spin_unlock_irq(&uncore->lock);
+
return 0;
}
DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(fw_domains);
--
2.45.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks 2024-06-07 14:51 [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks Andi Shyti @ 2024-06-07 15:16 ` Rodrigo Vivi 2024-06-11 13:35 ` Andi Shyti 2024-06-07 17:17 ` ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 8+ messages in thread From: Rodrigo Vivi @ 2024-06-07 15:16 UTC (permalink / raw) To: Andi Shyti Cc: intel-gfx, dri-devel, Nirmoy Das, Janusz Krzysztofik, Chris Wilson, Andi Shyti On Fri, Jun 07, 2024 at 04:51:31PM +0200, Andi Shyti wrote: > The forcewake count and domains listing is multi process critical > and the uncore provides a spinlock for such cases. > > Lock the forcewake evaluation section in the fw_domains_show() > debugfs interface. > > Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> > --- > drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > index 4fcba42cfe34..0437fd8217e0 100644 > --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > @@ -71,6 +71,8 @@ static int fw_domains_show(struct seq_file *m, void *data) > struct intel_uncore_forcewake_domain *fw_domain; > unsigned int tmp; > > + spin_lock_irq(&uncore->lock); > + > seq_printf(m, "user.bypass_count = %u\n", > uncore->user_forcewake_count); > > @@ -79,6 +81,8 @@ static int fw_domains_show(struct seq_file *m, void *data) > intel_uncore_forcewake_domain_to_str(fw_domain->id), > READ_ONCE(fw_domain->wake_count)); > > + spin_unlock_irq(&uncore->lock); I was going to ask to move all of this to a function inside intel_uncore.c so we keep the lock access in there.... But then I noticed it is already spread all over :( Well, perhaps we should start from here to set the precedence and move things to its own component... but well, I won't block or make it hard, we do need this change and the overall uncore cleanup could be orthogonal. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > + > return 0; > } > DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(fw_domains); > -- > 2.45.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks 2024-06-07 15:16 ` Rodrigo Vivi @ 2024-06-11 13:35 ` Andi Shyti 0 siblings, 0 replies; 8+ messages in thread From: Andi Shyti @ 2024-06-11 13:35 UTC (permalink / raw) To: Rodrigo Vivi Cc: Andi Shyti, intel-gfx, dri-devel, Nirmoy Das, Janusz Krzysztofik, Chris Wilson, Andi Shyti Hi Rodrigo, ... > > diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > > index 4fcba42cfe34..0437fd8217e0 100644 > > --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > > +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > > @@ -71,6 +71,8 @@ static int fw_domains_show(struct seq_file *m, void *data) > > struct intel_uncore_forcewake_domain *fw_domain; > > unsigned int tmp; > > > > + spin_lock_irq(&uncore->lock); > > + > > seq_printf(m, "user.bypass_count = %u\n", > > uncore->user_forcewake_count); > > > > @@ -79,6 +81,8 @@ static int fw_domains_show(struct seq_file *m, void *data) > > intel_uncore_forcewake_domain_to_str(fw_domain->id), > > READ_ONCE(fw_domain->wake_count)); > > > > + spin_unlock_irq(&uncore->lock); > > I was going to ask to move all of this to a function inside intel_uncore.c > so we keep the lock access in there.... But then I noticed it is already > spread all over :( Yeah... maybe some refactoring might be needed there. > Well, perhaps we should start from here to set the precedence and move > things to its own component... but well, I won't block or make it hard, > we do need this change and the overall uncore cleanup could be orthogonal. > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Thanks, Andi ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/gt: debugfs: Evaluate forcewake usage within locks 2024-06-07 14:51 [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks Andi Shyti 2024-06-07 15:16 ` Rodrigo Vivi @ 2024-06-07 17:17 ` Patchwork 2024-06-08 4:46 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-06-10 9:24 ` [PATCH] " Nirmoy Das 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-06-07 17:17 UTC (permalink / raw) To: Andi Shyti; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 2898 bytes --] == Series Details == Series: drm/i915/gt: debugfs: Evaluate forcewake usage within locks URL : https://patchwork.freedesktop.org/series/134618/ State : success == Summary == CI Bug Log - changes from CI_DRM_14903 -> Patchwork_134618v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/index.html Participating hosts (36 -> 35) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_134618v1 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_module_load@load: - bat-dg2-9: [DMESG-WARN][1] ([i915#10014]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/bat-dg2-9/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/bat-dg2-9/igt@i915_module_load@load.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - {bat-mtlp-9}: [DMESG-WARN][3] ([i915#11009]) -> [PASS][4] +2 other tests pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - {bat-mtlp-9}: [SKIP][5] ([i915#10580]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10014]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10014 [i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580 [i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911 [i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009 [i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121 Build changes ------------- * Linux: CI_DRM_14903 -> Patchwork_134618v1 CI-20190529: 20190529 CI_DRM_14903: 29955874be9f82296c8cc21cdd66a7cdf51faee2 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_134618v1: 29955874be9f82296c8cc21cdd66a7cdf51faee2 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/index.html [-- Attachment #2: Type: text/html, Size: 3404 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/gt: debugfs: Evaluate forcewake usage within locks 2024-06-07 14:51 [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks Andi Shyti 2024-06-07 15:16 ` Rodrigo Vivi 2024-06-07 17:17 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-06-08 4:46 ` Patchwork 2024-06-10 9:24 ` [PATCH] " Nirmoy Das 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-06-08 4:46 UTC (permalink / raw) To: Andi Shyti; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 79852 bytes --] == Series Details == Series: drm/i915/gt: debugfs: Evaluate forcewake usage within locks URL : https://patchwork.freedesktop.org/series/134618/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14903_full -> Patchwork_134618v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_134618v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_134618v1_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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_134618v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk4/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html #### Warnings #### * igt@gem_exec_suspend@basic-s3@lmem0: - shard-dg1: [FAIL][3] ([i915#11279]) -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-15/igt@gem_exec_suspend@basic-s3@lmem0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_exec_suspend@basic-s3@lmem0.html Known issues ------------ Here are the changes found in Patchwork_134618v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#9318]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +20 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][15] ([i915#7975] / [i915#8213]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-dg2: NOTRUN -> [FAIL][16] ([i915#11269]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#4771]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@sliced: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#4812]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#6334]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg1: NOTRUN -> [FAIL][21] ([i915#9606]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][22] ([i915#2846]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][24] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][25] ([i915#2842]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +14 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +13 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4860]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#2190]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4565]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-glk: NOTRUN -> [SKIP][36] ([i915#4613]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][37] ([i915#10378]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: [PASS][38] -> [FAIL][39] ([i915#10378]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][41] ([i915#5493]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#8289]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@big-bo-tiledx: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +9 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_mmap_gtt@big-bo-tiledx.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4077]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +11 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@gem_partial_pwrite_pread@write.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4270]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4270]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190] / [i915#8428]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#8411]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4079]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@gem_set_tiling_vs_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4879]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#3297]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume: - shard-dg2: NOTRUN -> [FAIL][62] ([i915#10177]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#2527]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#2856]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#2527]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4881]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#6227]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][69] -> [ABORT][70] ([i915#9820]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg1: NOTRUN -> [FAIL][71] ([i915#11279]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#8925]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][73] ([i915#9311]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][74] ([i915#9311]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: NOTRUN -> [FAIL][75] ([i915#10031] / [i915#11279]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@sysfs-reader: - shard-dg2: NOTRUN -> [FAIL][76] ([i915#10031] / [i915#11279]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4212]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4212]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3826]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#8709]) +11 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#9531]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4538] / [i915#5286]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#5286]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#5286]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#5286]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3638]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3638]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5190]) +11 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4538]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#10656]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@basic-force-joiner: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#10656]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#10656]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#10307] / [i915#10434] / [i915#6095]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#6095]) +65 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#6095]) +19 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#10307] / [i915#6095]) +146 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#6095]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-snb: NOTRUN -> [SKIP][99] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-snb5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][100] +196 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3742]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#7213]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#7828]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#7828]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#7828]) +9 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#7828]) +10 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#7118] / [i915#9424]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#9424]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3299]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3116]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#9424]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#6944] / [i915#9424]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#7118]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3555]) +6 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#3359]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#3555]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3359]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#3359]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-glk: [PASS][119] -> [DMESG-FAIL][120] ([i915#118]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-glk7/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4103] / [i915#4213]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][123] -> [FAIL][124] ([i915#2346]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#9067]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#4103]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#9723]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#8812]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#3840]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3555] / [i915#3840]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3840] / [i915#9053]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: NOTRUN -> [FAIL][132] ([i915#11139] / [i915#11279]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#2065] / [i915#4854]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#1839]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#658]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#658]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3637]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][138] +46 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [PASS][139] -> [FAIL][140] ([i915#2122]) +3 other tests fail [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#9934]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][142] +28 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#8381]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend@b-dp4: - shard-dg2: NOTRUN -> [FAIL][144] ([i915#11279]) +2 other tests fail [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_flip@flip-vs-suspend@b-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#2672]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#2587] / [i915#2672]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#2672]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#5354]) +40 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#8708]) +21 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3023]) +24 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][151] +23 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#1825]) +44 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][153] +20 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#5439]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3458]) +20 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3458]) +10 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#8708]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#433]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8228]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8228]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8228]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#4816]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][163] ([i915#11274] / [i915#11279]) +3 other tests fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8821]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555]) +8 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][166] ([i915#8292]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9423]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#9423]) +11 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#9423]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#5235]) +7 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#5235] / [i915#9423]) +11 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#5235]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#5354]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#9685]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3828]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#9340]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#9519]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][178] -> [SKIP][179] ([i915#9519]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9683]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#1072] / [i915#9732]) +13 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#1072] / [i915#9732]) +9 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#9732]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1072] / [i915#9732]) +24 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#5289]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#4235] / [i915#5190]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][188] ([i915#5465]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html - shard-rkl: [PASS][189] -> [FAIL][190] ([i915#5465]) +1 other test fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-rkl-5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][191] ([IGT#2] / [i915#6493]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-tglu: [PASS][192] -> [FAIL][193] ([i915#9196]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][194] ([i915#9196]) +1 other test fail [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4: - shard-dg1: [PASS][195] -> [FAIL][196] ([i915#9196]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][197] ([i915#10305] / [i915#11279]) +1 other test fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][198] ([i915#10305] / [i915#11279]) +1 other test fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-4.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9906]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#9906]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#2437]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][202] ([i915#2437]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk9/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#2437]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#7387]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#2433]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][206] -> [FAIL][207] ([i915#4349]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#8516]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#8516]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3291] / [i915#3708]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@prime_vgem@basic-read.html - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3291] / [i915#3708]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#3708]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3708]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3708]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9917]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9917]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9917]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][218] ([i915#9781]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_create_bo@create-bo-zeroed: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#2575]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-9/igt@v3d/v3d_create_bo@create-bo-zeroed.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2575]) +13 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_cl@job-perfmon: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#2575]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@v3d/v3d_submit_cl@job-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#7711]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#7711]) +9 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@vc4/vc4_wait_bo@bad-bo.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#7711]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-16/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][225] ([i915#7742]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][227] ([i915#6268]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][229] ([i915#5784]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-16/igt@gem_eio@reset-stress.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-14/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@nop: - shard-glk: [INCOMPLETE][231] ([i915#9856]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-glk9/igt@gem_exec_balancer@nop.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-glk4/igt@gem_exec_balancer@nop.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][233] ([i915#2842]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg1: [FAIL][235] ([i915#10378]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-snb: [SKIP][237] -> [PASS][238] +3 other tests pass [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-snb5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-tglu: [DMESG-WARN][239] ([i915#10166]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-tglu-7/igt@kms_cursor_legacy@torture-bo@pipe-a.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-8/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][241] ([i915#2122]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-snb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][243] ([i915#9519]) -> [PASS][244] +1 other test pass [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-rkl-6/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][245] ([i915#9196]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html #### Warnings #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [FAIL][247] ([i915#11265] / [i915#11279]) -> [FAIL][248] ([i915#11265]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_isolation@preservation-s3@vcs1: - shard-dg2: [FAIL][249] ([i915#10086]) -> [FAIL][250] ([i915#10086] / [i915#11279]) +1 other test fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-4/igt@gem_ctx_isolation@preservation-s3@vcs1.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-10/igt@gem_ctx_isolation@preservation-s3@vcs1.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][251] ([i915#2842]) -> [FAIL][252] ([i915#2876]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg1: [FAIL][253] -> [FAIL][254] ([i915#11279]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-18/igt@gem_exec_suspend@basic-s0@smem.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-17/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s3@smem: - shard-dg2: [FAIL][255] -> [FAIL][256] ([i915#11279]) +1 other test fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-3/igt@gem_exec_suspend@basic-s3@smem.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-3/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [INCOMPLETE][257] ([i915#10047] / [i915#9820]) -> [INCOMPLETE][258] ([i915#10047] / [i915#9697] / [i915#9820]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][259] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][260] ([i915#10131] / [i915#10887]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: [FAIL][261] ([i915#10031] / [i915#11279]) -> [FAIL][262] ([i915#10031]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-8/igt@i915_suspend@basic-s2idle-without-i915.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [SKIP][263] -> [INCOMPLETE][264] ([i915#8816]) +1 other test incomplete [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-snb5/igt@kms_content_protection@atomic-dpms.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-snb7/igt@kms_content_protection@atomic-dpms.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a4: - shard-dg1: [FAIL][265] ([i915#10545]) -> [FAIL][266] ([i915#10545] / [i915#11279]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-16/igt@kms_flip@flip-vs-suspend@c-hdmi-a4.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-15/igt@kms_flip@flip-vs-suspend@c-hdmi-a4.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a4: - shard-dg1: [FAIL][267] ([i915#10545] / [i915#11279]) -> [FAIL][268] ([i915#10545]) +1 other test fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-16/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-15/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [SKIP][269] ([i915#3458]) -> [SKIP][270] ([i915#10433] / [i915#3458]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][271] ([i915#10433] / [i915#3458]) -> [SKIP][272] ([i915#3458]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-dg2: [FAIL][273] ([i915#11279] / [i915#11284]) -> [FAIL][274] ([i915#11284]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_psr@fbc-psr-primary-mmap-cpu: - shard-dg2: [SKIP][275] ([i915#1072] / [i915#9732]) -> [SKIP][276] ([i915#1072] / [i915#9673] / [i915#9732]) +8 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-cpu.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-cpu.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg2: [SKIP][277] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][278] ([i915#1072] / [i915#9732]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-11/igt@kms_psr@pr-primary-mmap-gtt.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-6/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][279] ([i915#10305] / [i915#11279]) -> [FAIL][280] ([i915#10305]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-18/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-4.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-17/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-4.html * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-4: - shard-dg1: [FAIL][281] ([i915#10305]) -> [FAIL][282] ([i915#10305] / [i915#11279]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg1-18/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-4.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg1-17/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-4.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][283] ([i915#9100]) -> [FAIL][284] ([i915#7484]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14903/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031 [i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047 [i915#10086]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10086 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10177 [i915#10305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10305 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10545 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#11139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11139 [i915#11265]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11265 [i915#11269]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11269 [i915#11274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11274 [i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279 [i915#11284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11284 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [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#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#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9856 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_14903 -> Patchwork_134618v1 CI-20190529: 20190529 CI_DRM_14903: 29955874be9f82296c8cc21cdd66a7cdf51faee2 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_134618v1: 29955874be9f82296c8cc21cdd66a7cdf51faee2 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134618v1/index.html [-- Attachment #2: Type: text/html, Size: 98479 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks 2024-06-07 14:51 [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks Andi Shyti ` (2 preceding siblings ...) 2024-06-08 4:46 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-06-10 9:24 ` Nirmoy Das 2024-06-11 13:58 ` Tvrtko Ursulin 3 siblings, 1 reply; 8+ messages in thread From: Nirmoy Das @ 2024-06-10 9:24 UTC (permalink / raw) To: Andi Shyti, intel-gfx, dri-devel Cc: Nirmoy Das, Janusz Krzysztofik, Chris Wilson, Andi Shyti Hi Andi, On 6/7/2024 4:51 PM, Andi Shyti wrote: > The forcewake count and domains listing is multi process critical > and the uncore provides a spinlock for such cases. > > Lock the forcewake evaluation section in the fw_domains_show() > debugfs interface. > > Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Needs a Fixes tag, below seems to be correct one. Fixes: 9dd4b065446a ("drm/i915/gt: Move pm debug files into a gt aware debugfs") Cc: <stable@vger.kernel.org> # v5.6+ Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Regards, Nirmoy > --- > drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > index 4fcba42cfe34..0437fd8217e0 100644 > --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > @@ -71,6 +71,8 @@ static int fw_domains_show(struct seq_file *m, void *data) > struct intel_uncore_forcewake_domain *fw_domain; > unsigned int tmp; > > + spin_lock_irq(&uncore->lock); > + > seq_printf(m, "user.bypass_count = %u\n", > uncore->user_forcewake_count); > > @@ -79,6 +81,8 @@ static int fw_domains_show(struct seq_file *m, void *data) > intel_uncore_forcewake_domain_to_str(fw_domain->id), > READ_ONCE(fw_domain->wake_count)); > > + spin_unlock_irq(&uncore->lock); > + > return 0; > } > DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(fw_domains); ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks 2024-06-10 9:24 ` [PATCH] " Nirmoy Das @ 2024-06-11 13:58 ` Tvrtko Ursulin 2024-06-11 14:44 ` Nirmoy Das 0 siblings, 1 reply; 8+ messages in thread From: Tvrtko Ursulin @ 2024-06-11 13:58 UTC (permalink / raw) To: Nirmoy Das, Andi Shyti, intel-gfx, dri-devel Cc: Nirmoy Das, Janusz Krzysztofik, Chris Wilson, Andi Shyti On 10/06/2024 10:24, Nirmoy Das wrote: > Hi Andi, > > On 6/7/2024 4:51 PM, Andi Shyti wrote: >> The forcewake count and domains listing is multi process critical >> and the uncore provides a spinlock for such cases. >> >> Lock the forcewake evaluation section in the fw_domains_show() >> debugfs interface. >> >> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> > > Needs a Fixes tag, below seems to be correct one. > > > Fixes: 9dd4b065446a ("drm/i915/gt: Move pm debug files into a gt aware > debugfs") > > Cc: <stable@vger.kernel.org> # v5.6+ > > Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> What is the back story here and why would it need backporting? IGT cares about the atomic view of user_forcewake_count and individual domains or what? Regards, Tvrtko > > Regards, > > Nirmoy > > >> --- >> drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ++++ >> 1 file changed, 4 insertions(+) >> >> diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >> b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >> index 4fcba42cfe34..0437fd8217e0 100644 >> --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >> +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >> @@ -71,6 +71,8 @@ static int fw_domains_show(struct seq_file *m, void >> *data) >> struct intel_uncore_forcewake_domain *fw_domain; >> unsigned int tmp; >> + spin_lock_irq(&uncore->lock); >> + >> seq_printf(m, "user.bypass_count = %u\n", >> uncore->user_forcewake_count); >> @@ -79,6 +81,8 @@ static int fw_domains_show(struct seq_file *m, void >> *data) >> intel_uncore_forcewake_domain_to_str(fw_domain->id), >> READ_ONCE(fw_domain->wake_count)); >> + spin_unlock_irq(&uncore->lock); >> + >> return 0; >> } >> DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(fw_domains); ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks 2024-06-11 13:58 ` Tvrtko Ursulin @ 2024-06-11 14:44 ` Nirmoy Das 0 siblings, 0 replies; 8+ messages in thread From: Nirmoy Das @ 2024-06-11 14:44 UTC (permalink / raw) To: Tvrtko Ursulin, Andi Shyti, intel-gfx, dri-devel Cc: Nirmoy Das, Janusz Krzysztofik, Chris Wilson, Andi Shyti On 6/11/2024 3:58 PM, Tvrtko Ursulin wrote: > > On 10/06/2024 10:24, Nirmoy Das wrote: >> Hi Andi, >> >> On 6/7/2024 4:51 PM, Andi Shyti wrote: >>> The forcewake count and domains listing is multi process critical >>> and the uncore provides a spinlock for such cases. >>> >>> Lock the forcewake evaluation section in the fw_domains_show() >>> debugfs interface. >>> >>> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> >> >> Needs a Fixes tag, below seems to be correct one. >> >> >> Fixes: 9dd4b065446a ("drm/i915/gt: Move pm debug files into a gt >> aware debugfs") >> >> Cc: <stable@vger.kernel.org> # v5.6+ >> >> Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> > > What is the back story here and why would it need backporting? IGT > cares about the atomic view of user_forcewake_count and individual > domains or what? There is no serious back story. This came from a static code analyzer report. I keep forgetting debugfs isn't mounted on production systems so we don't have to backport this patch. Thanks, Nirmoy > > Regards, > > Tvrtko > > >> >> Regards, >> >> Nirmoy >> >> >>> --- >>> drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ++++ >>> 1 file changed, 4 insertions(+) >>> >>> diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >>> b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >>> index 4fcba42cfe34..0437fd8217e0 100644 >>> --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >>> +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >>> @@ -71,6 +71,8 @@ static int fw_domains_show(struct seq_file *m, >>> void *data) >>> struct intel_uncore_forcewake_domain *fw_domain; >>> unsigned int tmp; >>> + spin_lock_irq(&uncore->lock); >>> + >>> seq_printf(m, "user.bypass_count = %u\n", >>> uncore->user_forcewake_count); >>> @@ -79,6 +81,8 @@ static int fw_domains_show(struct seq_file *m, >>> void *data) >>> intel_uncore_forcewake_domain_to_str(fw_domain->id), >>> READ_ONCE(fw_domain->wake_count)); >>> + spin_unlock_irq(&uncore->lock); >>> + >>> return 0; >>> } >>> DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(fw_domains); ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-06-11 14:44 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-07 14:51 [PATCH] drm/i915/gt: debugfs: Evaluate forcewake usage within locks Andi Shyti 2024-06-07 15:16 ` Rodrigo Vivi 2024-06-11 13:35 ` Andi Shyti 2024-06-07 17:17 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-06-08 4:46 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-06-10 9:24 ` [PATCH] " Nirmoy Das 2024-06-11 13:58 ` Tvrtko Ursulin 2024-06-11 14:44 ` Nirmoy Das
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox